
passionate-codes-load-webpages-faster.blogspot.com
How to load web pages fasterThis blog guides you how to maintain simple coding standards so that your page loads faster.
http://passionate-codes-load-webpages-faster.blogspot.com/
This blog guides you how to maintain simple coding standards so that your page loads faster.
http://passionate-codes-load-webpages-faster.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
1 seconds
PAGES IN
THIS WEBSITE
0
SSL
EXTERNAL LINKS
0
SITE IP
172.217.9.225
LOAD TIME
1 sec
SCORE
6.2
How to load web pages faster | passionate-codes-load-webpages-faster.blogspot.com Reviews
https://passionate-codes-load-webpages-faster.blogspot.com
This blog guides you how to maintain simple coding standards so that your page loads faster.
passionate-codes-java-concepts.blogspot.com
Basic concepts of Java
Basic concepts of Java. Friday, 15 November 2013. What is mutable object and immutable object? If a object value is changeable then we can call it as Mutable object. (Ex., StringBuffer, …) If you are not allowed to change the value of an object, it is immutable object. (Ex., String, Integer, Float, …). Eg public class Test138. Public static void stringReplace (String text). Text = text.replace ('j' , 'c'); /* Line 5 */. Public static void bufferReplace (StringBuffer text). String a="123"; is same as.
passionate-codes-jquery-ajax-js.blogspot.com
Javascript Jquery Ajax
Friday, 1 May 2015. 1] Send and receive data using Jquery/Ajax. 2] Send data to new window using Jquery Ajax. 3] On click 2 values into text box. 4] Send data to new window from Html Form. 5] jQuery ReplaceAll method. 6] Replace string Between 2 tags in Jquery. 7] Compress and Encode a String in Javascript. Subscribe to: Posts (Atom). 160; http:/ passionatecodes. View my complete profile. Simple theme. Powered by Blogger.
passionate-codes-load-webpages-faster.blogspot.com
How to load web pages faster
How to load web pages faster. Saturday, 2 May 2015. Tips for fast loading of web pages. 1] Reduce page weight:. Reducing page weight through the elimination of unnecessary whitespace and comments. Commonly known as minimization, and by moving inline script and CSS into external files, can improve download performance with minimal need for other changes in the page structure. 2] Specify sizes for images and tables. 3] Use async and defer, if possible. Eg: script src="demo async.js" async. Even though thes...
passionate-codes-log4j.blogspot.com
Log4j
Apache log4j is a Java-based logging utility. Sunday, 7 December 2014. What is log4j.properties file. 3 components to work with Log4j. Subscribe to: Posts ( Atom ). Writing about myself is one of the toughest thing, all I can say is strong passion in coding made me a JAVA developer. I run this Blog with loads of passion hence the name Passionate Codes . I have strong interest in JAVA technologies and would keep on posting in my BLOG. 160; http:/ passionatecodes. View my complete profile.
passionate-codes-notepad-tricks.blogspot.com
Notepad++ Tricks
Sunday, 15 March 2015. 1] Remove empty lines and spaces. To get rid of leading space(s) and all empty lines (even if the empty line contains spaces or tabs). 1 Go to Search - Replace. 2 Select " Regular expression. For "Find what" and leave "Replace with" blank. 4 Click Replace all. 1) means beginning of the line. 2) s* means any number (even 0) of whitespace characters. Whitespace characters include tab, space, newline, and carriage return. 2] Join 2 lines. 3] Convert to LOWER or UPPER case.