Posts archive for October, 2006

Speed up Firefox start up time with Firefox Preloader

advertisement

Many people complain that the Mozilla Firefox take up a lot of time during start up. To speed up firefox start up time you can try to install Firefox Preloader.

Firefox Preloader is a free utility that is designed to speed up firefox start up. By loading parts of Mozilla Firefox into memory before it is used it improve the speed of the startup time.

Continue reading Speed up Firefox start up time with Firefox Preloader »

Turn on MySQL query cache to speed up query performance?

advertisement

Many times developers looking for ways to speed up query, in mysql we can enable query cache to speed up query performance. Whenever query cache is enable, it will cache the query in memory and boost query performance.

As we know, speed is always the most important element in developing a website especially for those high traffic database driven website. You can try to turn on query cache to speed up query.

To speed up query, enable the MySQL query cache, before that you need to set few variables in mysql configuration file (usually is my.cnf or my.ini)

Continue reading Turn on MySQL query cache to speed up query performance? »

Javascript: open new window with window.open()

advertisement

What is window.open() in javascript?
window.open() is the javascript function tat use to open new window. Many advertiser use use this javascript window.open() function to pop up or open new window (or even pop under) for their advertisement.

How to use window.open() function?
To open a new window in javascript, simply follow the script below:-

window.open (“http://www.sillycorner.com”,”windowName”);

Below is the javascript window.open function details:-

window.open (url,windowname,attributes);

Continue reading Javascript: open new window with window.open() »