MY mENU


Wednesday 18 April 2012

Speed up IE Start Up


This tweak tells Internet Explorer to simply 'run', without loading any webpages. If you use a 'blank' page, that is still a page, and slows access. Notice the 'about:blank' in the address bar. The blank html page must still be loaded. To load IE with 'nothing' [nothing is different than blank]:
1. Right-click on any shortcut you have to IE
[You should create a shortcut out of your desktop IE icon, and delete the original icon]
2. Click Properties
3. Add -nohome [with a space before the dash] after the endquotes in the Target field.
4. Click OK

JAR Files in java


1. JAR stands for “Java Archive”. The 1.1 JDK comes with a utility called ‘jar’ that creates JAR files. Example syntax: jar -cf Jungle.jar Panther.class Leopard.class
2. Directories are processed recursively
3. Can specify a JAR file in a Web page by adding ‘archive=”jars/Jungle.jar” ’ to the tag. E.g.
4. You can also define more than one JAR file in the archive value by listing them all within the quotes and separating their names with commas.