<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3657291658353691681</id><updated>2024-08-28T17:38:25.676+05:30</updated><category term="internet"/><title type='text'>Lakshmanan&#39;s Home Page</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-7510842834452075119</id><published>2009-01-30T22:09:00.000+05:30</published><updated>2009-01-30T22:12:20.176+05:30</updated><title type='text'>10 Amazing Windows Command Line Tricks</title><content type='html'>Whatever eye candy the graphical interface of windows may offer but it could never match the functionality that could be achieved with command line. Here we’ve listed 10 useful commands and tricks for Windows command line.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Super Hide your files &lt;br /&gt;&lt;br /&gt;Besides normal hidden files, windows file system provides another attribute for files that makes them super hidden so that they aren’t visible form explorer or with normal dir command. Use the command&lt;br /&gt;&lt;br /&gt;attrib +s +h pathtofile&lt;br /&gt;&lt;br /&gt;to super hide a file. Replace + symbol with - to remove super hidden attribute from file.&lt;br /&gt;&lt;br /&gt;You can also use this command to show hidden files in usb drives, simply use &lt;br /&gt;&lt;br /&gt;attrib -s -h *.* c command.&lt;br /&gt;2. Join multiple mp3 files &lt;br /&gt;&lt;br /&gt;Here’s a nice trick that otherwise would require some software to perform. You can join multiple mp3 files to form a single mp3 file. Simply move to the folder in command line where mp3 files are stored that you want to combine and run the command&lt;br /&gt;&lt;br /&gt;copy /b *.mp3 newfile.mp3&lt;br /&gt;&lt;br /&gt;The wildcard *.mp3 will combine all mp3 files to form a newfile.mp3 file. You can control which files are combined using wildcard parameters. &lt;br /&gt;&lt;br /&gt;Here’s a nice trick using this method to embed mp3 file in a jpg image file.&lt;br /&gt;3. Map a Drive Letter to a Folder&lt;br /&gt;&lt;br /&gt;Most of the time, our hard drives get filled with huge amount of data folder, files etc that moving to a folder you occasionally use becomes a heck. However, there’s a dos command that lets you map a drive letter to a folder. e.g. to map the folder C:\windows to M drive use the command:&lt;br /&gt;&lt;br /&gt;subst M: C:\Windows&lt;br /&gt;&lt;br /&gt;However the mapped drive gets lost once you restart your pc, you can then create a batch file including the above command and schedule it to run at system startup.&lt;br /&gt;4. Change colors of command Window&lt;br /&gt;&lt;br /&gt;Perhaps you need to take a print out of dos window and don’t want to waste ink on black background of dos window. Windows command line provides a command to change background and text color of dos window in a snap.&lt;br /&gt;&lt;br /&gt;Simply use color bf to change colors. b is the code for background color and f is code for text color. To know color codes type color /? at command line.&lt;br /&gt;5. Use previously entered Command&lt;br /&gt;&lt;br /&gt;Just typed a long command moments ago and need to run that again but the effort involved to type again is making you sick! But don’t worry as command line keeps track of your previously entered commands which are accessible by pressing F7 key.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Alternatively you can use Up Arrow key to use earlier commands you used.&lt;br /&gt;&lt;br /&gt;F1 &amp; F2 also offer similar kind of functionality but in a different way, try them out.&lt;br /&gt;6. Run Multiple commands at once&lt;br /&gt;&lt;br /&gt;Multiple commands can be concatenated using &amp;&amp; and run at once with single press of Enter. Simply type in your commands and concatenate them with &amp;&amp; at once.&lt;br /&gt;&lt;br /&gt;e.g. color f8 &amp;&amp; dir &amp;&amp; time&lt;br /&gt;&lt;br /&gt;would run all the three commands one after another with a single press of Enter.&lt;br /&gt;7. Filter output of commands&lt;br /&gt;&lt;br /&gt;Some commands like systeminfo provide a whole bunch of information about your pc but what if you need info only about updates installed or Processor or Virtual Memory. You can filter the output using find. Here’s how to get only updates list from systeminfo.&lt;br /&gt;&lt;br /&gt;systeminfo | find &quot;Update&quot;&lt;br /&gt;&lt;br /&gt;This will only show updates installed on your system.&lt;br /&gt;8. Drag Drop Folder paths&lt;br /&gt;&lt;br /&gt;No need to type in long folder paths at command line, simply drag n drop that file or folder from explorer onto command line window to copy its path.&lt;br /&gt;9. Move selected files to another folder&lt;br /&gt;&lt;br /&gt;If you need to move only doc files to another folder or project documents created this month to another folder from a folder containing large number of files, you would rather end up using Ctrl+click to select individual file in Windows Explorer. But thanks to command line, you can use wildcards to move selected files.&lt;br /&gt;&lt;br /&gt;Use move *.doc newfolderpath&lt;br /&gt;&lt;br /&gt;to move only doc files to new folder. Any wildcard combination can be used here.&lt;br /&gt;10. Take screenshots of webpages&lt;br /&gt;&lt;br /&gt;To take screenshots of web pages, you would need a tiny utility called IEcapt.exe and then place it in c:\Windows directory, now go to command line and type in&lt;br /&gt;&lt;br /&gt;iecapt urltocapture pathofoutputimage&lt;br /&gt;&lt;br /&gt;to get a screenshot of the webpage.</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/7510842834452075119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/7510842834452075119?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/7510842834452075119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/7510842834452075119'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2009/01/10-amazing-windows-command-line-tricks.html' title='10 Amazing Windows Command Line Tricks'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-7549006802395873658</id><published>2007-05-01T10:02:00.002+05:30</published><updated>2007-05-01T10:03:50.596+05:30</updated><title type='text'>Recover permanently deleted files and folders in Windows</title><content type='html'>Have you ever accidently deleted important files from your hard disk permanently ?Most people think that the file is gone and it cannot be recovered.But that is not true.You need not worry.&lt;br /&gt;&lt;br /&gt;Recover My Files 3.98 is a file recovery software that can:&lt;br /&gt;&lt;br /&gt;Recover deleted files even if emptied from the Recycle Bin.    &lt;br /&gt;Recover formatted hard drives, even if you have reinstalled Windows!!!    &lt;br /&gt;Recover your files after a hard disk crash.    &lt;br /&gt;Get back files after a partitioning error.    &lt;br /&gt;Recover deleted documents, photos, videos, music and emails.    &lt;br /&gt;Recover from hard drive, camera card, USB, Zip, floppy disk or other media.&lt;br /&gt;&lt;br /&gt;This software is really worth giving a try.It can also recover files that are deleted due to virus,spyware or trojan infection.Data from formatted drives can also be effectively recovered.&lt;br /&gt;&lt;br /&gt;Recover My Files is fast and easy. No technical or data recovery software skill is required.All data recovery is done at the action of a mouse click.It has a very simple and user friendly interface.&lt;br /&gt;&lt;br /&gt;Download link: &lt;a href=&quot;http://www.divshare.com/download/132632-04e&quot;&gt;Recover my files 3.98&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/7549006802395873658/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/7549006802395873658?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/7549006802395873658'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/7549006802395873658'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/05/recover-permanently-deleted-files-and.html' title='Recover permanently deleted files and folders in Windows'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-3935950935747844663</id><published>2007-05-01T10:02:00.001+05:30</published><updated>2007-05-01T10:02:26.903+05:30</updated><title type='text'>Use the Notepad as your personal diary</title><content type='html'>There is a simple feature in Notepad that can make it work like a personal diary for you.Here is how to go about it:&lt;br /&gt;&lt;br /&gt;1.Firstly open a blank Notepad file.&lt;br /&gt;&lt;br /&gt;2. Now write .LOG as the first line in the file, then press enter. Now save the file and close it.&lt;br /&gt;&lt;br /&gt;3.Open the notepad file now and you will find that the current date and time has been appended(put) at the end and the cursor is in the next line.&lt;br /&gt;&lt;br /&gt;4. Type your notes and then save and close the file.&lt;br /&gt;&lt;br /&gt;5. Each time you open the file, Notepad repeats the process,that is it appends the date and time to the end of the file and places the cursor below it.&lt;br /&gt;This way you can keep track of all your entries,you can easily monitor which article you wrote when.This can work very much like a personal diary.Try it out and let me know how you find it?</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/3935950935747844663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/3935950935747844663?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3935950935747844663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3935950935747844663'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/05/use-notepad-as-your-personal-diary.html' title='Use the Notepad as your personal diary'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-6084173423954827185</id><published>2007-05-01T09:59:00.001+05:30</published><updated>2007-05-01T09:59:55.864+05:30</updated><title type='text'>Rename the Recycle Bin</title><content type='html'>Hey its very easy&lt;br /&gt;--&gt; Start&lt;br /&gt;--&gt; Run and type &quot;regedit&quot;&lt;br /&gt;&lt;br /&gt;--&gt;HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}&lt;br /&gt;&lt;br /&gt;In Right side panel double click on Recycle Bin and change the name of Recycle Bin as u want click ok and exit&lt;br /&gt;&lt;br /&gt;Restart your Computer</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/6084173423954827185/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/6084173423954827185?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6084173423954827185'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6084173423954827185'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/05/rename-recycle-bin.html' title='Rename the Recycle Bin'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-795286043128074296</id><published>2007-05-01T09:56:00.000+05:30</published><updated>2007-05-01T09:57:19.261+05:30</updated><title type='text'>Discover Hidden Music in Windows XP</title><content type='html'>Did you know, there is a hidden music in Windows XP that you have never heard..&lt;br /&gt;&lt;br /&gt;To hear this sound, first of all go to Folder Options and under the &quot;View&quot; tab, check &quot;Show hidden files and folder&quot; and uncheck &quot;Hide protected system files&quot;.&lt;br /&gt;&lt;br /&gt;Now navigate to the drive where Windows XP is installed.So if C:\ is the drive where Windows XP is installed, goto&lt;br /&gt;&lt;br /&gt;C:\WINDOWS\system32\oobe\images&lt;br /&gt;&lt;br /&gt;There you will find a file Title.wma.Open in with your favorite media player and listen to it.</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/795286043128074296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/795286043128074296?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/795286043128074296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/795286043128074296'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/05/discover-hidden-music-in-windows-xp.html' title='Discover Hidden Music in Windows XP'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-6492068106954233644</id><published>2007-04-06T22:46:00.000+05:30</published><updated>2007-04-06T23:00:52.080+05:30</updated><title type='text'>Great Computer Tricks</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;This is how to create &quot;con&quot; folder.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Do u ever tried to create the con folder.........................&lt;br /&gt;&lt;br /&gt;no.......... then try it...........&lt;br /&gt;&lt;br /&gt;they r two ways of creating confolder......&lt;br /&gt;&lt;br /&gt;1. By using Command Prompt.&lt;br /&gt;2. Without using Command Prompt.&lt;br /&gt;&lt;br /&gt;if u want to knoww, then just leave a message (in the comment) and ur mail id too............&lt;br /&gt;&lt;br /&gt;i ll reply u within 15hrs :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Way to get xp product code from cd&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It really work&lt;br /&gt;There is a way to get the xp product code from the cd&lt;br /&gt;just explorer the cd then&lt;br /&gt;open the folder I386&lt;br /&gt;then open the file UNATTEND.TXT and&lt;br /&gt;scroll down to the last line&lt;br /&gt;and it goes to show what dumbasses microsoft are u have a product code.&lt;br /&gt;Have fun u never need to search for a product code for xp again...!!!!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Hidden unknown fact in microsoft word&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Bill Gates still doesn&#39;t know why it happens:&lt;br /&gt;Try out yourself...&lt;br /&gt;Open Microsoft Word and type&lt;br /&gt;=rand(200,99)&lt;br /&gt;and then HIT ENTER....see what happens.&lt;br /&gt;it won&#39;t hurt ur system!!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Better Background for Microsoft Doc......&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We hav white backgrond for our doc........... as default... but v can hav a blue also.... lets hav a view&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1.) Open a Word Document by going to Start, All Programs, Microsoft Word.&lt;br /&gt;2.) From the menu bar, click Tools.&lt;br /&gt;3.) Select Options from the drop down menu.&lt;br /&gt;4.) The Options dialogue box will open. Select the General tab.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXthg7y61tlNjjEoWNc3sK3Syzn4Lh4TRVY54edTLUHzTWIpY2Fq-4wUkGdIzgbORSkDXtRtvMmDhKrd-r26sGUyg7G6nqhnNrka8cPtMZnRIQ20W5VyeC314tdw8lo8Jd7HxZA2bUBNQ/s1600-h/stuff+properties.JPG&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXthg7y61tlNjjEoWNc3sK3Syzn4Lh4TRVY54edTLUHzTWIpY2Fq-4wUkGdIzgbORSkDXtRtvMmDhKrd-r26sGUyg7G6nqhnNrka8cPtMZnRIQ20W5VyeC314tdw8lo8Jd7HxZA2bUBNQ/s320/stuff+properties.JPG&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5050365821935615314&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5.) Now you will find a check box that says &quot;Blue background, white text.&quot; Click to select it so that you have a tick mark on the box.&lt;br /&gt;&lt;br /&gt;6.) Click OK to save the changes and to close the options dialogue box.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvAfqwzgaVI5-Vc2tZkHXR5Ig4m4iF8qwUkBEBsrBlTDrZjqe7no1MkuxDkZLuK1R39oLY896TS42m1RH8peoBnEp-cax8c8Gfw5YiPBxtLLrhyyk0utUHjwJpsjcFmYPo3uWCjWI8Xh4/s1600-h/stuff+properties.JPG&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvAfqwzgaVI5-Vc2tZkHXR5Ig4m4iF8qwUkBEBsrBlTDrZjqe7no1MkuxDkZLuK1R39oLY896TS42m1RH8peoBnEp-cax8c8Gfw5YiPBxtLLrhyyk0utUHjwJpsjcFmYPo3uWCjWI8Xh4/s320/stuff+properties.JPG&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5050366075338685794&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now, go back to your Word document. See the difference?&lt;br /&gt;Yes, now it has a blue background and when you type, the text will be all white. Try this for a few days and you should see a drastic change on the eye strain you&#39;ve been experiencing.&lt;br /&gt;&lt;br /&gt;Try this for yourself and feel the difference!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Password Protect Folders in XP with &amp; with out software&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;folder lock with software&lt;br /&gt;&lt;br /&gt;click here&lt;br /&gt;&lt;br /&gt;http://www.esnips.com/doc/7f993235-e6dc-4ccc-b107-7ee46b69f793/pc-security(reg)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;now just download it and make it full version by the side txt files key....&lt;br /&gt;.................................................&lt;br /&gt;folder lock without software&lt;br /&gt;1&lt;br /&gt;If you have a log in password for your account, this can be used to protect folders from other users. Your hard drive must be f&lt;br /&gt;&lt;br /&gt;ormatted using NTFS (which it probably is unless you&#39;re dual booting with another operating system). Here&#39;s what to do...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Right-click the folder that you want to make private and choose &quot;Properties&quot;&lt;br /&gt;&lt;br /&gt;(or Alt+Double-click). Go to the &quot;Sharing&quot; tab and check the &quot;Make this folder private&quot; box.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirRzRRCeZiBj2WY3pHBUK1ouBwYhf9-tajAcqJpJbQIgwp2PnXizNZWDeGMuTwUrb-auyofd3oQZQDFQ21v2D7nmVUbe2RY3fuD3MZs1EXC0p1DaVcGo6v2HLxWGpt_ulhln-wC2NMklc/s1600-h/stuff+properties.JPG&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirRzRRCeZiBj2WY3pHBUK1ouBwYhf9-tajAcqJpJbQIgwp2PnXizNZWDeGMuTwUrb-auyofd3oQZQDFQ21v2D7nmVUbe2RY3fuD3MZs1EXC0p1DaVcGo6v2HLxWGpt_ulhln-wC2NMklc/s320/stuff+properties.JPG&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5050366637979401586&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Click Apply . If you do not have a password on your account, a box will pop up asking if you want to assign a password. This must be done if you want to make the folder private, so click Yes . You will need to use your password to log on to your computer from then on.&lt;br /&gt;Type in a password then confirm it. Click the &quot;Create Password&quot; button then close the Password window.&lt;br /&gt;Click OK in the Properties dialog box.&lt;br /&gt;Now anyone else logged on to your computer can&#39;t access that file without knowing your password.&lt;br /&gt;-----------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;2&lt;br /&gt;if ur folder is zipped then directly u can open the file in it and see .... ADD A PASSWORD&lt;br /&gt;&lt;br /&gt;and confirm ur password and it ll b safe&lt;br /&gt;-----------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Posted by Rajesh at 4:24 AM 1 comments Links to this post  &lt;br /&gt;&lt;br /&gt;Make Frnds scare for VIRUS&lt;br /&gt;&lt;br /&gt;Open notepad and type this:&lt;br /&gt;&lt;br /&gt;lol=msgbox (&quot;Warning a virus has been detected on your PC. Press YES to format your hard disk now or press NO to format your hard disk after system reboot&quot;,20,&quot;Warning&quot;)&lt;br /&gt;&lt;br /&gt;Then save it as Virus.VBS&lt;br /&gt;&lt;br /&gt;and go to the folder that contains it and open it if a window pops out saying a virus has been detected it&#39;s working. Press yes or no to close the window and put it in the startup folder of the victim&#39;s account.&lt;br /&gt;On startup the window should appear.&lt;br /&gt;Note: This does not harm your computer as it does not contain virus.&lt;br /&gt;&lt;br /&gt;The Yes and no button does not do anything except closing the window. And you can edit the virus in the sentence: Warning a virus has detected on your PC to any kind of virus eg.Trojan Horse like this lol=msgbox (&quot;Warning a Trojan horse has been detected on your PC. Press YES to format your hard disk now or press NO to format format your hard disk after system reboot&quot;,20,&quot;Warning&quot;)&lt;br /&gt;&lt;br /&gt;Oh in between make sure your victim does not panic and really reformat his harddisk. hahaha &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Folder Options missing&lt;br /&gt;&lt;br /&gt;Many of us sometimes find the folder options missing in windows explorer.&lt;br /&gt;&lt;br /&gt;Here&#39;s the solution&lt;br /&gt;Open Run and then type &quot;gpedit.msc&quot;.&lt;br /&gt;Now goto&lt;br /&gt;User Configuration &gt; Administrative templates &gt; Windows Component &gt; Windows Explorer.&lt;br /&gt;&lt;br /&gt;Click on Windows Explorer you will find the 3rd option on the right side of screen&lt;br /&gt;&quot;Removes the Folder Option menu item from the Tools menu&quot;&lt;br /&gt;&lt;br /&gt;Just check it,&lt;br /&gt;&lt;br /&gt;if it is not configured then change it to enable by double clicking on it and after applying again set it to not configured.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hopes that you will find the option after restarting windows.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6492068106954233644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6492068106954233644'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/04/great-computer-tricks.html' title='Great Computer Tricks'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXthg7y61tlNjjEoWNc3sK3Syzn4Lh4TRVY54edTLUHzTWIpY2Fq-4wUkGdIzgbORSkDXtRtvMmDhKrd-r26sGUyg7G6nqhnNrka8cPtMZnRIQ20W5VyeC314tdw8lo8Jd7HxZA2bUBNQ/s72-c/stuff+properties.JPG" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-5790798976529990175</id><published>2007-03-18T17:00:00.000+05:30</published><updated>2007-03-18T17:21:29.820+05:30</updated><title type='text'>All about fun</title><content type='html'>Party trick &lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_m-6VyBFqJfg/Rf0jdQh4HBI/AAAAAAAAAGA/wEwEjnCKr94/s1600-h/talenthn5.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://1.bp.blogspot.com/_m-6VyBFqJfg/Rf0jdQh4HBI/AAAAAAAAAGA/wEwEjnCKr94/s320/talenthn5.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043226143285058578&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;                    If Bill Gates Was Born in Cheenai &lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH80PEow5e4y7cMOVnWBnecyyEZ-HfHTXeH02IfwVRLQ0JKBrxiVFoPdy0iCaWglcC9pjnmXgRt6fU3Wc8R5TU-UGrNZh6PxjiMOE-sefcOePrjMqMQeJtf5sj5PnVqll3oP11-F2eHvU/s1600-h/ifbillgateswasborninchemn7.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH80PEow5e4y7cMOVnWBnecyyEZ-HfHTXeH02IfwVRLQ0JKBrxiVFoPdy0iCaWglcC9pjnmXgRt6fU3Wc8R5TU-UGrNZh6PxjiMOE-sefcOePrjMqMQeJtf5sj5PnVqll3oP11-F2eHvU/s320/ifbillgateswasborninchemn7.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043227006573485090&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;                                    Work Load &lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQZ3r_YtPT6raE3A-DIL_3KDv4vu0hZ-9u1ZCjg7Yc2XNibUFU13oqxB1Ay7pMS3rhSQqgyoi6VgMakBusRLOp3tLewo-gIXRL_DiEWE9jELY1kHQcFuitYF33r1U3B_xm6khJB7jnsS0/s1600-h/pic03625zt2.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQZ3r_YtPT6raE3A-DIL_3KDv4vu0hZ-9u1ZCjg7Yc2XNibUFU13oqxB1Ay7pMS3rhSQqgyoi6VgMakBusRLOp3tLewo-gIXRL_DiEWE9jELY1kHQcFuitYF33r1U3B_xm6khJB7jnsS0/s320/pic03625zt2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043227393120541746&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;                            Colgate Ad  &lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLITywGDtkQ1PDlGJTzvXMZ45Ice6o_LkLv-6v30shFNmF0mFY9bdNdhoFxsPWp-evqTsn0OLmk7wzv-duJ6CrEn3A7C1zoy1GswNevnId-0Ijm03nu229DNtlOipabiI7O8TrcRnJqDU/s1600-h/9xn1.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLITywGDtkQ1PDlGJTzvXMZ45Ice6o_LkLv-6v30shFNmF0mFY9bdNdhoFxsPWp-evqTsn0OLmk7wzv-duJ6CrEn3A7C1zoy1GswNevnId-0Ijm03nu229DNtlOipabiI7O8TrcRnJqDU/s320/9xn1.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043228904949029954&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;                             Team Work&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjMGWuurkk0gcUwHBDOcwpW_GUzUUpvAyeY6gZ7fFgJcMpSusdrghsC0wHE5yDYx1KDT4gKQlQXBz5xWHsHSRdY6Od1qtc9Mm0zG7JL4DhKBMAOrF22lnb-klXkz1iaY_FTA5neCq9aro/s1600-h/teamworkdj7.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjMGWuurkk0gcUwHBDOcwpW_GUzUUpvAyeY6gZ7fFgJcMpSusdrghsC0wHE5yDYx1KDT4gKQlQXBz5xWHsHSRdY6Od1qtc9Mm0zG7JL4DhKBMAOrF22lnb-klXkz1iaY_FTA5neCq9aro/s320/teamworkdj7.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043229304380988498&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;                                     I M Powerful &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQfZ8CFuRWSlm4zV3hIBqVeDQ3SJkekz4S7H6WDLQMK-l92IqG0A_Kru0Vyz3AeCg5d2EO7PQ8pd3-LJMi1m4RD6z5STs1SFJ1KymU6NTBSTZce9Pj1UxHiYOKTLvlTwHP0WIAyFFA4IE/s1600-h/jpegnameguzelgrubum18ejjz2.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQfZ8CFuRWSlm4zV3hIBqVeDQ3SJkekz4S7H6WDLQMK-l92IqG0A_Kru0Vyz3AeCg5d2EO7PQ8pd3-LJMi1m4RD6z5STs1SFJ1KymU6NTBSTZce9Pj1UxHiYOKTLvlTwHP0WIAyFFA4IE/s320/jpegnameguzelgrubum18ejjz2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5043229884201573474&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/5790798976529990175/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/5790798976529990175?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/5790798976529990175'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/5790798976529990175'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/03/all-about-fun.html' title='All about fun'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_m-6VyBFqJfg/Rf0jdQh4HBI/AAAAAAAAAGA/wEwEjnCKr94/s72-c/talenthn5.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-6571500833732564003</id><published>2007-03-09T19:52:00.000+05:30</published><updated>2007-03-09T19:53:24.742+05:30</updated><title type='text'>ONE CLICK COMPUTER LOCK, !!!!!!!</title><content type='html'>One-Click computer Lock&lt;br /&gt;&lt;br /&gt;Now What u have to do is to just follow the steps to create a one-click Computer Lock shortcut on your desktop:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. On your desktop, right-click on a blank spot and point to New, then click on Shortcut.&lt;br /&gt;&lt;br /&gt;2- Now click BROWSE Button and then gave any Path where u want to place that shortcut. ( best place for this is Desktop)&lt;br /&gt;&lt;br /&gt;3- Now click Next and then type any name (of ur choice) for that Icon (icon for Lock of Computer)&lt;br /&gt;&lt;br /&gt;4- Now right-click the newly created icon and choose its Propertes (pop-up-menu)&lt;br /&gt;&lt;br /&gt;5- Now click on Shortcut Tab&lt;br /&gt;&lt;br /&gt;6- in Front of TARGET address bar. just copy and paste the following line&lt;br /&gt;&lt;br /&gt;%windir%\system32\rundll32.exe user32.dll,LockWorkStation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7- Then click on OK button to exit from properties menu of that shortcut..</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/6571500833732564003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/6571500833732564003?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6571500833732564003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/6571500833732564003'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/03/one-click-computer-lock.html' title='ONE CLICK COMPUTER LOCK, !!!!!!!'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-413570334749949156</id><published>2007-03-09T19:38:00.001+05:30</published><updated>2007-03-09T19:38:41.152+05:30</updated><title type='text'>Windows+Run commands</title><content type='html'>Accessibility Controls - access.cpl&lt;br /&gt;Accessibility Wizard - accwiz&lt;br /&gt;Add Hardware Wizard - hdwwiz.cpl&lt;br /&gt;Add/Remove Programs - appwiz.cpl&lt;br /&gt;Administrative Tools - control admintools&lt;br /&gt;Automatic Updates - wuaucpl.cpl&lt;br /&gt;Bluetooth Transfer Wizard - fsquirt&lt;br /&gt;Calculator - calc&lt;br /&gt;Certificate Manager - certmgr.msc&lt;br /&gt;Character Map - charmap&lt;br /&gt;Check Disk Utility - chkdsk&lt;br /&gt;Clipboard Viewer - clipbrd&lt;br /&gt;Command Prompt - cmd&lt;br /&gt;Component Services - dcomcnfg&lt;br /&gt;Computer Management - compmgmt.msc&lt;br /&gt;Control Panel - control&lt;br /&gt;Date and Time Properties - timedate.cpl&lt;br /&gt;DDE Shares - ddeshare&lt;br /&gt;Device Manager - devmgmt.msc&lt;br /&gt;Direct X Troubleshooter - dxdiag&lt;br /&gt;Disk Cleanup Utility - cleanmgr&lt;br /&gt;Disk Defragment - dfrg.msc&lt;br /&gt;Disk Management - diskmgmt.msc&lt;br /&gt;Disk Partition Manager - diskpart&lt;br /&gt;Display Properties - control desktop&lt;br /&gt;Display Properties - desk.cpl&lt;br /&gt;Dr. Watson System Troubleshooting Utility - drwtsn32&lt;br /&gt;Driver Verifier Utility - verifier&lt;br /&gt;Event Viewer - eventvwr.msc&lt;br /&gt;Files and Settings Transfer Tool - migwiz&lt;br /&gt;File Signature Verification Tool - sigverif&lt;br /&gt;Findfast - findfast.cpl&lt;br /&gt;Firefox - firefox&lt;br /&gt;Folders Properties - control folders&lt;br /&gt;Fonts - control fonts&lt;br /&gt;Fonts Folder - fonts&lt;br /&gt;Free Cell Card Game - freecell&lt;br /&gt;Game Controllers - joy.cpl&lt;br /&gt;Group Policy Editor (for xp professional) - gpedit.msc&lt;br /&gt;Hearts Card Game - mshearts&lt;br /&gt;Help and Support - helpctr&lt;br /&gt;HyperTerminal - hypertrm&lt;br /&gt;Iexpress Wizard - iexpress&lt;br /&gt;Indexing Service - ciadv.msc&lt;br /&gt;Internet Connection Wizard - icwconn1&lt;br /&gt;Internet Explorer - iexplore&lt;br /&gt;Internet Properties - inetcpl.cpl&lt;br /&gt;Keyboard Properties - control keyboard&lt;br /&gt;Local Security Settings - secpol.msc&lt;br /&gt;Local Users and Groups - lusrmgr.msc&lt;br /&gt;Logs You Out Of Windows - logoff&lt;br /&gt;Malicious Software Removal Tool - mrt&lt;br /&gt;Microsoft Chat - winchat&lt;br /&gt;Microsoft Movie Maker - moviemk&lt;br /&gt;Microsoft Paint - mspaint&lt;br /&gt;Microsoft Syncronization Tool - mobsync&lt;br /&gt;Minesweeper Game - winmine&lt;br /&gt;Mouse Properties - control mouse&lt;br /&gt;Mouse Properties - main.cpl&lt;br /&gt;Netmeeting - conf&lt;br /&gt;Network Connections - control netconnection</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/413570334749949156/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/413570334749949156?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/413570334749949156'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/413570334749949156'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/03/windowsrun-commands.html' title='Windows+Run commands'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-3946954425456274837</id><published>2007-03-03T16:55:00.000+05:30</published><updated>2007-03-05T20:38:46.196+05:30</updated><title type='text'>Firefox is Best</title><content type='html'>The following lists 101 things that one can do with the Mozilla browser component  that one cannot do with IE (version 6.0). I used the Windows version of IE the list will vary slightly for the Mac version. &lt;br /&gt;&lt;br /&gt;Some notes about how items were selected for this list: &lt;br /&gt;&lt;br /&gt;The list only considers features provided in the download of IE provided directly from Microsoft. It does not include things that could be done via additional software or add-ons. If I had included such things, I would, in order to ensure an equal comparison, need to include the add-ons available for Mozilla in the list also. Since this would cause the list to grow infintely large, no such items are considered for either browser. &lt;br /&gt;On the same note, I do not include things that can be done by changing registry keys or manually modifying configuration files. IE does indeed have some features that are only enabled by modifying registry keys. Mozilla has many hidden settings as well. This list includes neither. &lt;br /&gt;This list compares IE 6.0 and Mozilla 1.2 &lt;br /&gt;&lt;br /&gt;Note also that this is a not supposed to be a list of advantages of one browser over another. It is a list of features of Mozilla not found in IE. You may feel that some of the items in the list are disadvantages. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now that is over with, on with the list! &lt;br /&gt;&lt;br /&gt;Tabbed browsing&lt;br /&gt;&lt;br /&gt;Lets you display more than one site in a window using multiple tabs. You can open a new tab by selecting Navigator Tab from the New submenu of the File menu (or press Ctrl+T). You can also open a link in a new tab by using the right-click menu. You will find configuration options in the Tabbed Browsing preferences panel. &lt;br /&gt;&lt;br /&gt;Note that CrazyBrowser is a different product than IE. &lt;br /&gt;&lt;br /&gt;Popup blocking&lt;br /&gt;&lt;br /&gt;Block all those popup ads. To disable popup windows, select Advanced and then Scripts &amp; Plugins from the Preferences window. Then uncheck the box that reads &quot;Open unrequested windows&quot;. &lt;br /&gt;&lt;br /&gt;Prevent scripts from doing various things&lt;br /&gt;&lt;br /&gt;You can prevent scripts from moving windows, closing them, changing the status bar and setting cookies. To change these settings, select Advanced and then Scripts &amp; Plugins from the Preferences window. Then uncheck the desired boxes. &lt;br /&gt;&lt;br /&gt;Site Navigation toolbar&lt;br /&gt;&lt;br /&gt;Displays content from the link tags provided by a document, allowing one to navigate to various parts of a site. &lt;br /&gt;&lt;br /&gt;Sidebar&lt;br /&gt;&lt;br /&gt;The sidebar provides a number of tabs by default, and others can be added by the user. &lt;br /&gt;&lt;br /&gt;Can add custom panels to sidebar&lt;br /&gt;&lt;br /&gt;Custom sidebars can be implemented in HTML or XUL and can be installed from a remote site without much hassle. Sites can add sidebars using the window.sidebar.addPanel() function. &lt;br /&gt;&lt;br /&gt;More control over text zooming&lt;br /&gt;&lt;br /&gt;Can zoom text to any size. IE only supports five sizes and has no keyboard shortcut that I could determine. For sites that use fairly small fonts, having more larger sizes in necessary for those without perfect vision. &lt;br /&gt;&lt;br /&gt;Note that using the mouse isn&#39;t a keyboard shortcut. &lt;br /&gt;&lt;br /&gt;Can zoom any text, even that with fixed pixel sizes&lt;br /&gt;&lt;br /&gt;Can zoom text no matter what units were specified, an often cited issue with IE. &lt;br /&gt;&lt;br /&gt;Can select from multiple stylesheets provided by page&lt;br /&gt;&lt;br /&gt;When a page provides multiple (or alternate) stylesheets, one can select between them by choosing from the Use Style sub-menu in the View menu. &lt;br /&gt;&lt;br /&gt;Page info dialog&lt;br /&gt;&lt;br /&gt;Provides additional information about encoding, MIME type, referrer and meta tags. Some of this information is also available in IE&#39;s properties dialog although it isn&#39;t as detailed and the window isn&#39;t resizable. &lt;br /&gt;&lt;br /&gt;Detailed form/link/media info dialog&lt;br /&gt;&lt;br /&gt;The page info dialog provides tabs which have lists of the form elements, links, images and other media in a page. You can even preview images and save them from this window. &lt;br /&gt;&lt;br /&gt;Save plugins&lt;br /&gt;&lt;br /&gt;Mozilla saves plugins when saving a Web page as complete. You can also save them from the Page Info window. &lt;br /&gt;&lt;br /&gt;Themes&lt;br /&gt;&lt;br /&gt;Provides two themes by default (Classic and Modern), but others may be installed. &lt;br /&gt;&lt;br /&gt;There is a theming system that is part of Windows XP, however this isn&#39;t supported by Microsoft. It also isn&#39;t part of any other version of Windows. Mozilla&#39;s themes work on all versions of Windows and on all platforms; you can change your theme by selecting Apply Theme from the View menu. &lt;br /&gt;&lt;br /&gt;Bookmark window displays more detail&lt;br /&gt;&lt;br /&gt;Displays more information about the bookmark in the bookmark window. IE&#39;s favorites dialog is a bit awkward and is modal, which means you can&#39;t interact with the browser window while it is open. You also cannot add bookmarks from the window. &lt;br /&gt;&lt;br /&gt;Bookmark keywords&lt;br /&gt;&lt;br /&gt;Keywords to look up bookmarks quickly. Keywords have the advantage that the part entered after the keyword is filled in where &#39;%s&#39; appears in the bookmarks&#39;s URL. &lt;br /&gt;&lt;br /&gt;Bookmarks can be checked at a certain schedule&lt;br /&gt;&lt;br /&gt;One can set bookmarks to be checked at various schedules and notify when the content has changed. At least, in theory. IE has something like this, which is intended for synchronizing content for offline viewing. It can only check once per day, and provides no notification that the page has changed other than changing the icon or sending an email. Mozilla can check updates on certain days only and at any interval. &lt;br /&gt;&lt;br /&gt;Cookie Manager&lt;br /&gt;&lt;br /&gt;The cookie manager lets you view the cookies that have been set, their values and their expiry times. &lt;br /&gt;&lt;br /&gt;Some people have mentioned that one can view Cookies by pressing a View Files button in the Options, but that just provides a list of all cached files. While the list does include cookies, hidden amongst the other files, it isn&#39;t tailored to cookies (it is just a generic file listing), so one cannot really view the data or expiry times easily. &lt;br /&gt;&lt;br /&gt;Can delete cookies individually&lt;br /&gt;&lt;br /&gt;The cookie manager lets you delete individual cookies without having to search around your file system. In IE&#39;s file view, it&#39;s tricky to distinguish cookies from similar domains, and all cookies from the same domain are stored in the same file. &lt;br /&gt;&lt;br /&gt;Block images from third party sites&lt;br /&gt;&lt;br /&gt;One can block images that come from a third party domain. This means that you can block images found on a page that come from a site other than that of the page. To set this in Mozilla, open Privacy &amp; Security from the Preferences Window, and then select the Images panel. Choose &quot;Accept images that come from the originating server only&quot;. &lt;br /&gt;&lt;br /&gt;Can block images from certain sites&lt;br /&gt;&lt;br /&gt;Images can be blocked from particular domains, such as those that commonly display ads. You can disable an image from a site by right-clicking on an image, and then selecting &quot;Block images from this Server&quot;. You can change the list of blocked images from the Image Manager, opened from the Tools menu. &lt;br /&gt;&lt;br /&gt;Download Manager&lt;br /&gt;&lt;br /&gt;The download manager provides a tabular view of all of the files that you have ever downloaded, allowing you to open them without having to search around on your file system. It provides progress indicators in the window as items download. &lt;br /&gt;&lt;br /&gt;On the topic of downloading files, IE does not begin to download a file until you have selected where to save it to, while Mozilla begins as soon as the link is clicked, downloading in the background while you are selecting a place to save it. &lt;br /&gt;&lt;br /&gt;Can pause downloads&lt;br /&gt;&lt;br /&gt;In Mozilla, one cause pause downloads. Some people may find this useful during long downloads. &lt;br /&gt;&lt;br /&gt;View Source&lt;br /&gt;&lt;br /&gt;View the syntax coloured source of a page, without having to view it in Notepad. &lt;br /&gt;&lt;br /&gt;Some people have mentioned that one can edit the page using Notepad (or at least a copy of it). True, but that&#39;s what Edit in the File menu is for. Some people like a simple source viewer for viewing content. &lt;br /&gt;&lt;br /&gt;JavaScript Console&lt;br /&gt;&lt;br /&gt;The console displays a log of errors that you can easily scroll through, or ignore if so desired. &lt;br /&gt;&lt;br /&gt;JavaScript Console displays script warnings&lt;br /&gt;&lt;br /&gt;The console separates warnings and errors. The warnings allow you to see obsolete script usage and so forth. &lt;br /&gt;&lt;br /&gt;JavaScript Debugger&lt;br /&gt;&lt;br /&gt;This is a utility for debugging JavaScript. &lt;br /&gt;&lt;br /&gt;DOM Inspector&lt;br /&gt;&lt;br /&gt;View the structure of a document using a nifty tree view. Also lets you view script properties and style applied to each element. You can open it from the Tools -&gt; Web Development men. &lt;br /&gt;&lt;br /&gt;DOM Inspector image capture&lt;br /&gt;&lt;br /&gt;The DOM Inspector has a tool to capture an image of part of a page, although it doesn&#39;t seem to work all too well. &lt;br /&gt;&lt;br /&gt;Select text and perform search&lt;br /&gt;&lt;br /&gt;Select some text, bring up the context menu, and choose &#39;Search&#39; to search for the selected text. &lt;br /&gt;&lt;br /&gt;Can select custom search engine&lt;br /&gt;&lt;br /&gt;You can select any search engine you wish, not just one that has been chosen for you. &lt;br /&gt;&lt;br /&gt;Can display search results in sidebar&lt;br /&gt;&lt;br /&gt;When one does a search via a search engine, results are automatically interpreted and displayed in the sidebar. You can then view pages without hiding the search results. &lt;br /&gt;&lt;br /&gt;Supports any Sherlock search plugin&lt;br /&gt;&lt;br /&gt;Supports the Macintosh Sherlock search format, so any search engine that supports it can be used. &lt;br /&gt;&lt;br /&gt;Can manage saved passwords&lt;br /&gt;&lt;br /&gt;Lets you view and delete stored login and passwords. Choose the Password Manager from the Tools menu. &lt;br /&gt;&lt;br /&gt;Can fill-in complete forms automatically&lt;br /&gt;&lt;br /&gt;Stores complete forms which can be later be filled in automatically. This is useful if you want to register for something 600 times. To fill in a form, choose Fill In Form from the Edit menu. &lt;br /&gt;&lt;br /&gt;Master password encrypts info&lt;br /&gt;&lt;br /&gt;A single master password can be used to protect all of your other passwords. &lt;br /&gt;&lt;br /&gt;Can disable tooltips&lt;br /&gt;&lt;br /&gt;Not very exciting, but useful if someone thinks they get in the way. &lt;br /&gt;&lt;br /&gt;Caret Browsing&lt;br /&gt;&lt;br /&gt;Press F7 and a cursor appears on the page. This can be used to navigate a page and select text using only the keyboard. &lt;br /&gt;&lt;br /&gt;Some people thought this was this the same as setting contenteditable=&quot;true&quot; on an element. While that does show a cursor in IE, it actually allows the content to be edited, and disables all links and mouse events with-in the content. Caret browsing in Mozilla is designed to allow one to browse, navigate links and select text using only the keyboard. &lt;br /&gt;&lt;br /&gt;Type Ahead Find&lt;br /&gt;&lt;br /&gt;Press a few keys to search for links with that text. More information &lt;br /&gt;&lt;br /&gt;View Selection Source&lt;br /&gt;&lt;br /&gt;Select some text, bring up the context menu, and choose &#39;View Selection Source&#39; to view the source just for the selected content. This can also be used to view the generated source after an XSLT transformation. &lt;br /&gt;&lt;br /&gt;Properties dialog lets you see info about various tags&lt;br /&gt;&lt;br /&gt;Right click on certain links and images and so on, and view info about them, such as language and whether links will open in a new window. The window can also be resized. &lt;br /&gt;&lt;br /&gt;View scripts and stylesheets directly&lt;br /&gt;&lt;br /&gt;Mozilla can display scripts and stylesheets directly as plain text without a separate application which is useful if you just want a quick peek at something. &lt;br /&gt;&lt;br /&gt;More font options&lt;br /&gt;&lt;br /&gt;One has more control over the fonts used, including customizing the various CSS fonts. To change this, select Appearance and then Fonts from the Preferences window. &lt;br /&gt;&lt;br /&gt;Can set minimum font sizes&lt;br /&gt;&lt;br /&gt;Can set the minimum font size that text is displayed in which is useful on some sites. To change this, select Appearance and then Fonts from the Preferences window. &lt;br /&gt;&lt;br /&gt;Mouse wheel options&lt;br /&gt;&lt;br /&gt;Pressing Alt and scrolling the wheel will navigate back and forward in the browser history. One can also configure the wheel for other modifier keys for scrolling and changing the font size. &lt;br /&gt;&lt;br /&gt;Multiple profiles&lt;br /&gt;&lt;br /&gt;Can handle multiple profiles so you can use one for testing, or share them between multiple persons. You can do something like this in Windows with multiple user accounts, although it affects all applications. &lt;br /&gt;&lt;br /&gt;May be installed quickly and anywhere&lt;br /&gt;&lt;br /&gt;Mozilla may be installed on any drive and at any location. It may installed on a network drive and run directly from there. In fact, it really doesn&#39;t have to be installed at all. &lt;br /&gt;&lt;br /&gt;Can be easily uninstalled&lt;br /&gt;&lt;br /&gt;One can uninstall in the same manner as one does with other applications. &lt;br /&gt;&lt;br /&gt;May have multiple versions installed at once&lt;br /&gt;&lt;br /&gt;One can have as many different versions of Mozilla installed at once which is useful if you need to test on various versions. &lt;br /&gt;&lt;br /&gt;Cross-platform&lt;br /&gt;&lt;br /&gt;Mozilla is available for a number of different platforms. (8 to 12 depending on the exact version). It has the same the same features on all of them. IE only runs on Windows and Mac and supports quite a different set of features on each. Limited versions of IE for Unix platforms were available at one time, but are no longer available. &lt;br /&gt;&lt;br /&gt;XUL&lt;br /&gt;&lt;br /&gt;The XML User Interface Language is used to create complex user interfaces using markup. &lt;br /&gt;&lt;br /&gt;XBL&lt;br /&gt;&lt;br /&gt;The eXtensible Bindings Language is used to create custom widgets or elements and bind them to other XUL, XML or HTML elements. &lt;br /&gt;&lt;br /&gt;RDF&lt;br /&gt;&lt;br /&gt;Mozilla can read and manipulate Resource Description Framework files. &lt;br /&gt;&lt;br /&gt;MathML&lt;br /&gt;&lt;br /&gt;MathML is a markup language for displaying math equations. &lt;br /&gt;&lt;br /&gt;XPCOM&lt;br /&gt;&lt;br /&gt;Native interface accessible via C++ or JavaScript which lets you perform various Mozilla functions. &lt;br /&gt;&lt;br /&gt;Properly handles MIME types&lt;br /&gt;&lt;br /&gt;Properly displays content using the content type supplied by the server instead of various other incorrect things. You can learn more information about this. &lt;br /&gt;&lt;br /&gt;Supports documents sent as application/xhtml+xml (XHTML)&lt;br /&gt;&lt;br /&gt;The debate is still on whether this content type should be used for XHTML, but Mozilla supports it. Mozilla also supports XHTML sent as text/xml. &lt;br /&gt;&lt;br /&gt;Can render XML documents with styling&lt;br /&gt;&lt;br /&gt;Can render XML documents with associated style sheets. IE must convert the documents into HTML before displaying them. &lt;br /&gt;&lt;br /&gt;Link Prefetching&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Mozilla allows one to set documents or images to prefetch in the background. They are loaded after the document has finished loading so as to not affect performance. Usually, this would be used for the next page in a sequence.&lt;br /&gt;&lt;br /&gt;More information &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Displays ABBR/ACRONYM underlined and with titles in tooltips&lt;br /&gt;&lt;br /&gt;Content in these tags are displayed with an underline and the titles of various elements are displayed in a tooltip. (IE does display tooltips for acronyms though). &lt;br /&gt;&lt;br /&gt;Supports blinking text&lt;br /&gt;&lt;br /&gt;You can make text blink. This list isn&#39;t subjective. Of course the &lt;blink&gt; tag is supported, but you can also use the CSS &#39;text-decoration: blink&#39; &lt;br /&gt;&lt;br /&gt;CSS min/max-width/height&lt;br /&gt;&lt;br /&gt;Set minimum or maximum sizes on content to constrain it. For more information see the CSS specification for min/max-width and min/max-height. &lt;br /&gt;&lt;br /&gt;CSS position:fixed&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This feature allows content to be fixed to a particular part of the window. If the user scrolls the document, the content stays where it is. &lt;br /&gt;&lt;br /&gt;For an example of this, go to the W3C&#39;s CSS page, and watch the menu in the upper right corner as you scroll the document. &lt;br /&gt;&lt;br /&gt;CSS display:table and related display types&lt;br /&gt;&lt;br /&gt;Allowing one to create custom table element. &lt;br /&gt;&lt;br /&gt;CSS generated content&lt;br /&gt;&lt;br /&gt;Generated content refers to :before, :after, the content property and so on. &lt;br /&gt;&lt;br /&gt;CSS2 selectors&lt;br /&gt;&lt;br /&gt;Select elements for styling based on attribute values among other things. &lt;br /&gt;&lt;br /&gt;Supports a handful of CSS3 selectors&lt;br /&gt;&lt;br /&gt;Matching on attribute substrings, selected text and so on. &lt;br /&gt;&lt;br /&gt;Supports some extension CSS properties&lt;br /&gt;&lt;br /&gt;user-focus,user-select,border-radius, and many more. Mostly used in themes, but they can also be used by Web pages as well if you really need to. &lt;br /&gt;&lt;br /&gt;XML Base&lt;br /&gt;&lt;br /&gt;For specifying the base of an XML document. I really don&#39;t know if this is supported in other browsers. &lt;br /&gt;&lt;br /&gt;FixPtr support&lt;br /&gt;&lt;br /&gt;FixPtr is for referring to parts of XML documents. &lt;br /&gt;&lt;br /&gt;Simple XLink support&lt;br /&gt;&lt;br /&gt;This is used for links in XML documents. &lt;br /&gt;&lt;br /&gt;XML-RPC&lt;br /&gt;&lt;br /&gt;Simple API for doing XML-RPC. &lt;br /&gt;&lt;br /&gt;Built-in SOAP API&lt;br /&gt;&lt;br /&gt;Fairly extensive set of SOAP functions are available without any extra libraries needed. &lt;br /&gt;&lt;br /&gt;PNG alpha transparency&lt;br /&gt;&lt;br /&gt;For viewing partially transparent images. See a demo. &lt;br /&gt;&lt;br /&gt;MNG image support&lt;br /&gt;&lt;br /&gt;MNG is an animated image format, usually used for animated PNG images. &lt;br /&gt;&lt;br /&gt;Supports &#39;favicons&#39; in any image format&lt;br /&gt;&lt;br /&gt;Supports any image format that Mozilla supports (GIF,JPEG,PNG,MNG,XBM,BMP,ICO). You can even make them animated if you&#39;re insane. IE only supports the BMP and ICO format. &lt;br /&gt;&lt;br /&gt;Display icons in tabs and address bar&lt;br /&gt;&lt;br /&gt;Displays site icons in the tabs and in the address bar. &lt;br /&gt;&lt;br /&gt;Available for more languages/locales&lt;br /&gt;&lt;br /&gt;Mozilla is available for many different languages, including ones you&#39;ve never heard of before. IE 6.0 is currently available for 24 languages. Mozilla 1.1 or later is available for 29. Mozilla 1.0 or later is available for over 40 languages. &lt;br /&gt;&lt;br /&gt;Support for standard event handling&lt;br /&gt;&lt;br /&gt;Supports the standard capturing/bubbling event model. &lt;br /&gt;&lt;br /&gt;Support for additional DOM0/DOM1/Core features&lt;br /&gt;&lt;br /&gt;Supports almost all of DOM0 and DOM1. &lt;br /&gt;&lt;br /&gt;DOM2 namespace handling&lt;br /&gt;&lt;br /&gt;Supports the various DOM methods that deal with namespaces. &lt;br /&gt;&lt;br /&gt;DOM2 Style interfaces&lt;br /&gt;&lt;br /&gt;Supports most of the standard DOM style interfaces. &lt;br /&gt;&lt;br /&gt;DOM2 TreeWalker interface&lt;br /&gt;&lt;br /&gt;The TreeWalker interface is used to navigate through a document. &lt;br /&gt;&lt;br /&gt;DOM2 Range interface&lt;br /&gt;&lt;br /&gt;Supports the Range interface for grabbing blocks of content. &lt;br /&gt;&lt;br /&gt;DOM3 XPath interface&lt;br /&gt;&lt;br /&gt;Supports retrieving elements using XPath expressions in HTML/XML/XUL documents using the DOM3 XPath interface. &lt;br /&gt;&lt;br /&gt;Can set size of printed output&lt;br /&gt;&lt;br /&gt;This may vary based on your printer, but one can scale the printed document or fit it to the page. Useful for those sites that are just a bit too large. &lt;br /&gt;&lt;br /&gt;Can bookmark groups of pages (in tabs)&lt;br /&gt;&lt;br /&gt;You can bookmark a set of pages and them open them all at once in multiple tabs. To do this, choose Bookmark This Group of Tabs from the Bookmarks menu. &lt;br /&gt;&lt;br /&gt;Can set multiple pages as a home page.&lt;br /&gt;&lt;br /&gt;You can set a group as your home page, so multiple pages appear when you start Mozilla. To set this, open the pages you wish in tabs, and then choose Use Current Group in the Navigator preferences panel. &lt;br /&gt;&lt;br /&gt;Can search bookmarks&lt;br /&gt;&lt;br /&gt;You can search bookmarks without having to search through your file system. &lt;br /&gt;&lt;br /&gt;Easily create and add custom components&lt;br /&gt;&lt;br /&gt;XPInstall can be used to easily install custom components, using an install script written in JavaScript. No special tool is required except a ZIP utility. &lt;br /&gt;&lt;br /&gt;Supports finger protocol&lt;br /&gt;&lt;br /&gt;Can use the finger protocol. This has been disabled in newer versions of Mozilla. &lt;br /&gt;&lt;br /&gt;Supports data: URLs&lt;br /&gt;&lt;br /&gt;data URLs can be used to embed data in a URL. &lt;br /&gt;&lt;br /&gt;HTTP Pipelining&lt;br /&gt;&lt;br /&gt;Allows for better performance when viewing pages. &lt;br /&gt;&lt;br /&gt;Supports JavaScript getters/setters&lt;br /&gt;&lt;br /&gt;For adding custom properties to objects that invoke code when retreived or modified. For an example, see the IEEmu which implements some of the non-standard properties of IE. &lt;br /&gt;&lt;br /&gt;JavaScript supports strict error checking&lt;br /&gt;&lt;br /&gt;Which means displaying errors for things you didn&#39;t think were errors. (Think Perl&#39;s strict mode. &lt;br /&gt;&lt;br /&gt;Easily accessible preferences file&lt;br /&gt;&lt;br /&gt;Preferences are all stored in a single file (prefs.js) which one can easily edit to add custom settings which have no UI. &lt;br /&gt;&lt;br /&gt;Preferences can be moved around easily&lt;br /&gt;&lt;br /&gt;One can easily copy preferences, bookmarks and other settings to another system as they are all stored in a single directory. &lt;br /&gt;&lt;br /&gt;Various security related features&lt;br /&gt;&lt;br /&gt;Surely you knew Mozilla had better security features. &lt;br /&gt;&lt;br /&gt;Supports the jar protocol&lt;br /&gt;&lt;br /&gt;Supports the jar: protocol for referring to HTML pages or images inside JAR or ZIP files. This might be used to compress a downloaded site. &lt;br /&gt;&lt;br /&gt;Open Source&lt;br /&gt;&lt;br /&gt;So keen developers can always find out exactly why Mozilla behaves the way it does, or change it if they so desire. &lt;br /&gt;&lt;br /&gt;Bugzilla&lt;br /&gt;&lt;br /&gt;This is Mozilla&#39;s bug tracking system, where you can find information about problems you encounter and can help get them fixed. &lt;br /&gt;&lt;br /&gt;Giant lizards are cool&lt;br /&gt;&lt;br /&gt;Much more exciting than a blue e.</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/3946954425456274837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/3946954425456274837?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3946954425456274837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3946954425456274837'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2007/03/following-lists-101-things-that-one-can.html' title='Firefox is Best'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3657291658353691681.post-3718976265637866842</id><published>2006-12-03T13:55:00.000+05:30</published><updated>2006-12-03T13:57:47.643+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="internet"/><title type='text'>Make Your Firefox Speed</title><content type='html'>The following steps will allow you to  make your firefox browser faster&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Follow these steps carefully...............&lt;br /&gt;&lt;br /&gt;1.First in the URL bar, Type &quot;about:config&quot;. This will bring up a list of commands and variables you can edit&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. The second step is to put &quot;network.http.pipelining&quot; in the filter and change the value to &quot;true&quot;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. After that you will want to put &quot;network.http.proxy.pipelining&quot; in the filter.&lt;br /&gt;Like the last one, make that value set to &quot;true&quot; also.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Next, locate &quot;network.http.pipelining.maxrequests&quot; and change the value to some number higher, say 10,20 or even 30, it would make up to 10,20 or 30 requests at once.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5. The last step is to right click anywhere and select &quot;New&quot; then &quot;Integer&quot;. Name it &quot;nglayout.initialpaint.delay&quot; and make its value &quot;0&quot;. This will make the browser respond faster on the information of the websites it receives.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6. Close out FireFox (make sure FireFox is closed by viewing the Task Manager) and restart it and enjoy the new mega speed&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;now your firrefox is all set to be superfast</content><link rel='replies' type='application/atom+xml' href='http://lakshmanan87.blogspot.com/feeds/3718976265637866842/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/3657291658353691681/3718976265637866842?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3718976265637866842'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3657291658353691681/posts/default/3718976265637866842'/><link rel='alternate' type='text/html' href='http://lakshmanan87.blogspot.com/2006/12/make-your-firefox-speed.html' title='Make Your Firefox Speed'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>