Get Firefox!

Home Free Software Faq Blog GNU/Linux Faq Free Media Faq's NRI Faq Immigration Faq Plea for Action Notes My P2P Search Portal About me..

Sat, 25 Apr 2009

Reduce the number of clicks on Windows

On Windows XP and other variants of Windows , you can get rid of double clicking .By default when you want to execute an application by clicking on the desktop or in Windows explorer you have to double click it.
But if you want to reduce the number of times you click  your mouse , you can change this default behaviour by Enabling single click in Windows Explorer.
Here are the instructions to Enable single click.
  1. Open Windows Explorer(Not internet Explorer) by pressing the Win+E key or by typing explorer in Start->Run
  2. Click on Tools in the menu
  3. Click on Folder Options
  4. Check the radio button "Single Click to open am item(point to select)"
  5. Then check the radio button "Underline icon titles only when I point at them"
This will significantly reduce your double clicks.This option is applicable to the Windows Desktop also.

posted at: 18:35 | category: /windows | permanent link to this entry

Firefox Tweaks

Over a period of time i have collected some tweaks which really speed up firefox.
Here are the tweaks.If you want to just copy paste in your prefs.js you can scroll to the bottom of this post and copy paste it.
Various config options with description

user_pref("browser.cache.disk_cache_ssl", true);//Enable Disk cache for SSL.Be careful if you are on a public computer don't use.
user_pref("browser.chrome.favicons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("browser.chrome.site_icons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("network.dns.disableIPv6", true);//If you don't use firefox on a ipv6 network disable it as it will increase your browsing speed as it will not wait for Ipv6 dns requests.
user_pref("network.dnsCacheEntries", 120);//Number of DNS entries to keep in memory.
user_pref("network.dnsCacheExpiration", 600);//Number of seconds DNS entries are cached.
user_pref("network.http.pipelining", true);//Enable pipelining
user_pref("network.http.pipelining.maxrequests", 8);//Max requests for pipelining
user_pref("network.http.pipelining.ssl", true);//enable pipelining for SSL that is HTTPS
user_pref("network.http.proxy.pipelining", true);//Enable pipelining for Proxy
user_pref("network.prefetch-next", false);//Disable fetching all links on a given page.This is useless and wastes precious internet bandwidth by downloading each and every link on any page you search

Code to copy paste in prefs.js in your profile directory.

user_pref("browser.backspace_action", 0);
user_pref("browser.cache.disk.capacity", 120000);
user_pref("browser.cache.disk_cache_ssl", true);
user_pref("browser.chrome.favicons", false);
user_pref("browser.chrome.site_icons", false);
user_pref("network.dns.disableIPv6", true);
user_pref("network.dnsCacheEntries", 120);
user_pref("network.dnsCacheExpiration", 600);
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.pipelining.ssl", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.prefetch-next", false);

posted at: 16:21 | category: /firefox | permanent link to this entry