<?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-6931577571659345586</id><updated>2025-11-06T15:52:48.652+05:30</updated><category term="PHP"/><category term="JavaScript"/><category term="HTML"/><category term="google"/><category term="yahoo"/><category term="Mysql"/><category term="performance"/><category term="browser"/><category term="useful scripts"/><category term="AJAX"/><category term="APIs"/><category term="web 2.0"/><category term="Perl and Shell"/><category term="linux"/><category term="debugging"/><category term="blog"/><category term="feeds"/><category term="microsoft"/><category term="rss"/><category term="seo"/><category term="technology"/><category term="bugs"/><category term="facebook"/><category term="feature"/><category term="firefox"/><category term="kernel"/><category term="mount"/><category term="osCommerce"/><category term="payment gateways"/><category term="reviews"/><category term="search engine"/><category term="social networking"/><category term="startup"/><category term="unicode"/><category term="usb"/><title type='text'>Lamp Technologies :: Blog</title><subtitle type='html'>Lamp Technologies | We are Agile</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-1551054400702988364</id><published>2012-01-03T11:43:00.001+05:30</published><updated>2012-01-03T16:54:02.864+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Perl and Shell"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><title type='text'>Some quick tips</title><content type='html'>Find and replace text within all files within a directory&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;find PATH_TO_DIRECTORY -type f | xargs perl -pi -e &#39;s/SEARCH_KEYWORD/REPLACE_KEYWORD/g&#39;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Find a text in files in a directory and subdirectories&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;find PATH_TO_DIRECTORY -exec grep -l &#39;SEARCH_KEYWORD&#39; {} \;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Find all modified file in last few days within a directory (exclude some sub-directory for e.g. CVS)&lt;br /&gt;&lt;i&gt;Create 2 files as below under DIRECTORY (e.g. find all modified files between 1st July 2011 and 31st July 2011)&lt;/i&gt;&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;touch -t 201107010000.01 FILE_1 /* 2011[year]07[month]01[day] */&lt;br /&gt;touch -t 201107312359.59 FILE_2 /* 2011[year]07[month]31[day] */&lt;br /&gt;find PATH_TO_DIRECTORY -type f -newer FILE_1 ! -newer FILE_2 -exec ls -ogh {} \; | grep -vw &#39;EXCLUDE_SUB_DIRECTORY&#39; | cut -f4,5,6 -d&#39; &#39;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Batch resize image using ImageMagick&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;cd PATH_TO_IMAGE_DIRECTORY&lt;br /&gt;mogrify -resize WIDTHxHEIGHT *&lt;br /&gt;mogrify -resize WIDTHxHEIGHT -quality 80 * (to reduce quality)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Copy directory structure without the files&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;find * -type d -exec mkdir PATH_TO_DIRECTORY/\{\} \;&lt;br /&gt;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/1551054400702988364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2012/01/some-quick-tips.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1551054400702988364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1551054400702988364'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2012/01/some-quick-tips.html' title='Some quick tips'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-7526544938372987924</id><published>2010-04-14T15:01:00.004+05:30</published><updated>2010-04-18T12:24:10.849+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Perl and Shell"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><title type='text'>Webpage screen capturing using khtml2png</title><content type='html'>Recently, we were working on one PHP project, where we required to have &quot;webpage screen capturing&quot; functionality. I googled on net and found some tools... some window based, some paid... obviously I was looking for *FREE* tool :). As we are working on Lamp (Linux, Apache, MySQL &amp; PHP), I was wondering if I get some Linux based tool.&lt;br /&gt;&lt;br /&gt;One solution I found was, using html2ps and then ps2png/ps2jpg/ps2gif to convert it to image. Then ImageMagicK for image manipulation. Somehow I stuck with some weird memory related errors, some package conflicts, some formatting issues etc. So, after spending one day on nothing; I dropped this solution.&lt;br /&gt;&lt;br /&gt;Then I tried khtml2png (&lt;a href=&quot;http://khtml2png.sourceforge.net/&quot; target=&quot;_blank&quot;&gt;http://khtml2png.sourceforge.net&lt;/a&gt;) and after some r&amp;d, it worked for us.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Some points to remember...&lt;/span&gt;&lt;br /&gt;- You need to have VPS/dedicated hosting to setup these tools. On shared hosting, its not possible to install due to various restrictions by hosting providers.&lt;br /&gt;&lt;br /&gt;- This tool requires, some libraries and tools: g++, KDE 3.x, kdelibs for KDE 3.x, zlib (zlib1g-dev) and cmake&lt;br /&gt;&lt;br /&gt;- This tool uses KDE (K Desktop Environment), that means whenever you use khtml2png tool, it will open one window for *a while* at time of capturing webpage screenshot. We can remove this by using &quot;Xvfb&quot;. We will see how to install and configure it later.&lt;br /&gt;&lt;br /&gt;- These links will be helpful, if you are planning to develop web application with webpage screen capturing using khtml2png&lt;br /&gt;&lt;a href=&quot;http://khtml2png.sourceforge.net/index.php?page=faq&quot; target=&quot;_blank&quot;&gt;http://khtml2png.sourceforge.net/index.php?page=faq&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.mysql-apache-php.com/website_screenshot.htm&quot; target=&quot;_blank&quot;&gt;http://www.mysql-apache-php.com/website_screenshot.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here is step by step guide to install various dependencies and packages. (I installed these tools on Fedora7 &amp; RHEL5 successfully)&lt;br /&gt;&lt;br /&gt;I used &quot;yum&quot; command to install and auto-configure these tools. If &quot;yum&quot; is not available on your machine, get if from &lt;a href=&quot;http://yum.baseurl.org/&quot; target=&quot;_blank&quot;&gt;http://yum.baseurl.org/&lt;/a&gt; and install it.&lt;br /&gt;&lt;br /&gt;Step:1&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; yum install ImageMagick&lt;br /&gt;&lt;br /&gt; yum install Xvfb&lt;br /&gt;&lt;br /&gt; yum install gcc gcc-c++ automake autoconf nano zlib zlib-devel&lt;br /&gt;&lt;br /&gt; yum groupinstall &quot;X Window System&quot; &quot;KDE (K Desktop Environment)&quot;&lt;br /&gt;&lt;br /&gt; yum install kdelibs kdelibs-devel&lt;br /&gt;&lt;br /&gt; yum install Xvfb xorg xorg-x11-font* &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Step:2 Install *cmake*&lt;br /&gt; Go to share directory by typing command &lt;pre class=&quot;brush: bash&quot;&gt;cd /usr/local/share/&lt;/pre&gt; or any preferred directory where you want to download package. (check &lt;a href=&quot;http://www.cmake.org&quot; target=&quot;_blank&quot;&gt;http://www.cmake.org&lt;/a&gt; for latest &quot;cmake&quot; version)&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; wget http://www.cmake.org/files/v2.8/cmake-2.8.1.tar.gz&lt;br /&gt;     &lt;br /&gt; tar -xzvf cmake-2.8.1.tar.gz&lt;br /&gt;&lt;br /&gt; cd cmake-2.8.1&lt;br /&gt;&lt;br /&gt; ./bootstrap&lt;br /&gt;&lt;br /&gt; make&lt;br /&gt;&lt;br /&gt; make install&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Step:3 Download &amp; Install *khtml2png* on your server as per instructions in this link.&lt;br /&gt;&lt;a href=&quot;http://khtml2png.sourceforge.net/index.php?page=download&quot; target=&quot;_blank&quot;&gt;http://khtml2png.sourceforge.net/index.php?page=download&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Step:4 Check if *khtml2png* is working&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; /usr/local/bin/khtml2png2 &#39;http://www.yahoo.com&#39; yahoo.png &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;(this will capture yahoo homepage in yahoo.png) &lt;br /&gt;&lt;br /&gt;Step:5 Install *khtmld* (a daemon which will be required to run khtml2png in background)&lt;br /&gt;&lt;a href=&quot;http://wiki.goatpr0n.de/projects/khtmld&quot; target=&quot;_blank&quot;&gt;http://wiki.goatpr0n.de/projects/khtmld&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;I faced couple of problems while setting up *khtmld*, but it got solved by reading suggestions from above link.&lt;br /&gt;&lt;br /&gt;I installed above all tools as *root* user.&lt;br /&gt;&lt;br /&gt;Once you are done with above steps, lets play with *khtml2png*&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;How to start?&lt;/span&gt;&lt;br /&gt;Run following command to run khtml2png without a visible X session&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; Xvfb :2 -screen 0 1024x768x24&amp;&lt;br /&gt; export DISPLAY=localhost:2.0&lt;br /&gt;&lt;/pre&gt;(you can put above 2 lines in rc.local so it will start automatically whenever server restarts)&lt;br /&gt;&lt;br /&gt;Then start *khtmld* daemon as your webserver user (for me it is *apache*) so that PHP script can have permission to talk with this daemon. (run below command after login as *root* user)&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; khtmld -K /usr/local/bin/khtml2png2 -c /etc/khtmldrc --user apache&amp;&lt;br /&gt;&lt;/pre&gt; &lt;br /&gt;&quot;-K /usr/local/bin/khtml2png2&quot; is path to khtml2png2 as by default &quot;khtmld&quot; will look for old &quot;khtml2png&quot; (khtml2png2 is latest version). Find khtml2png2 path using  &lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt; whereis khtml2png2&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&quot;-c /etc/khtmldrc&quot; is config file path for khtmld (you can create this config file if its not already there)&lt;br /&gt;Sample content for khtmldrc&lt;br /&gt;&lt;pre class=&quot;brush: plain&quot;&gt;&lt;br /&gt;width=1024&lt;br /&gt;height=768&lt;br /&gt;display=:0.0&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Capture image using *khtmld*&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;echo &quot;http://www.yahoo.com /tmp/yahoo.png&quot; &gt;/tmp/khtmldspool &lt;br /&gt;&lt;/pre&gt;(for more details - &lt;a href=&quot;http://wiki.goatpr0n.de/projects/khtmld&quot; target=&quot;_blank&quot;&gt;http://wiki.goatpr0n.de/projects/khtmld&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;We have also used ImageMagicK command &quot;convert&quot; (&lt;a href=&quot;http://www.imagemagick.org/script/convert.php&quot; target=&quot;_blank&quot;&gt;http://www.imagemagick.org/script/convert.php&lt;/a&gt;) to trim the image for removing whitespace.&lt;br /&gt;&lt;pre class=&quot;brush: bash&quot;&gt;&lt;br /&gt;convert /tmp/yahoo.png -fuzz 1% -trim /tmp/new.yahoo.png&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Sample PHP code for capturing &amp; displaying PNG image using &quot;khtml2png&quot;&lt;br /&gt;&lt;pre class=&quot;brush: php&quot;&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;  ob_clean();&lt;br /&gt;  header(&quot;Cache-Control: no-cache&quot;);&lt;br /&gt;  header(&quot;Pragma: no-cache&quot;);&lt;br /&gt;  header(&quot;Content-type: image/png&quot;);&lt;br /&gt;&lt;br /&gt;  $webpage_url= &quot;http://www.yahoo.com&quot;;&lt;br /&gt;&lt;br /&gt;  $out_put_file = &quot;/tmp/yahoo.png&quot;; //captured screen&lt;br /&gt;  $new_out_put_file = &quot;/tmp/new.yahoo.png&quot;; //whitespace removed&lt;br /&gt;&lt;br /&gt;  $cmd = &quot;echo &#39;&quot;.$webpage_url.&quot; &quot;.$out_put_file.&quot;&#39; &amp;gt;/tmp/khtmldspool&quot;;&lt;br /&gt;  exec(&quot;$cmd&quot;);&lt;br /&gt;&lt;br /&gt;  // some delay till khtml2png capture screen&lt;br /&gt;  while(!file_exists($out_put_file)) { sleep(3); }&lt;br /&gt;&lt;br /&gt;  exec(&quot;convert $out_put_file -fuzz 1% -trim $new_out_put_file&quot;);&lt;br /&gt; &lt;br /&gt;  while(!file_exists($new_out_put_file)) { sleep(1); }&lt;br /&gt;&lt;br /&gt;  // display image on browser&lt;br /&gt;  echo file_get_contents($new_out_put_file);&lt;br /&gt;        &lt;br /&gt;  unlink($out_put_file);&lt;br /&gt;  unlink($new_out_put_file);&lt;br /&gt;  exit;&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Hope this will be helpful.&lt;br /&gt;&lt;br /&gt;That&#39;s all for now.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/7526544938372987924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2010/04/webpage-screen-capturing-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7526544938372987924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7526544938372987924'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2010/04/webpage-screen-capturing-using.html' title='Webpage screen capturing using khtml2png'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-33312075493148646</id><published>2009-11-12T14:51:00.003+05:30</published><updated>2009-11-12T15:03:39.803+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="Mysql"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="unicode"/><title type='text'>Multilingual support in PHP website</title><content type='html'>NOTE: This post is written for developers having some knowledge of PHP/MySQL. So, if you find it difficult to understand some part, plz leave your comments. - &lt;span style=&quot;font-style:italic;&quot;&gt;Nilesh&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So many developers thinks that its hard to provide multilingual support to website. Are you one of them? No problem. Here are some helpful tips to provide basic multilingual support for you website.&lt;br /&gt;&lt;br /&gt;There are 3 different cases&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;CASE#1 Provide multilingual to static contents of site.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For e.g. if you have header navigation, left navigation in website OR if you have predefined messages e.g. greeting messages, validation error messages etc then you need to do following things.&lt;br /&gt;&lt;br /&gt;Create one configuration file per language. &lt;br /&gt;E.g. if your site has English and Hindi support, then create 2 language configuration files.&lt;br /&gt;(1) en.lang.inc.php&lt;br /&gt;(2) hi.lang.inc.php&lt;br /&gt;&lt;br /&gt;Both file will content same data in following format.&lt;br /&gt;(1) en.lang.inc.php&lt;br /&gt;&lt;br /&gt;define(‘WELCOME’, ‘Welcome’);&lt;br /&gt;define(‘SIGN_IN’, ‘Sign In’);&lt;br /&gt;&lt;br /&gt;NOTE: you need to find all places in your application to check how many strings you need with multilingual support and store in this file.&lt;br /&gt;&lt;br /&gt;(2) hi.lang.inc.php&lt;br /&gt;&lt;br /&gt;define(‘WELCOME’, ‘&amp;lt;place here hindi version of  - Welcome&amp;gt;’);&lt;br /&gt;define(‘SIGN_IN’, ‘&amp;lt;place here hindi version of  - Sign In&amp;gt;’);&lt;br /&gt;&lt;br /&gt;On user side, you need to provide selection to choose language.&lt;br /&gt;English will be default language so lang=en&lt;br /&gt;&lt;br /&gt;Your application request to change language will be xyz.com/file.php?lang=en for English,  xyz.com/file.php?lang=hi for hindi.&lt;br /&gt;&lt;br /&gt;Once user will make selection store that selection in COOKIE and use that value later so, you don’t have to pass “lang” parameter in each request.&lt;br /&gt;&lt;br /&gt;Write code in your application’s common include file (this must be included in every request), to include proper configuration file based on selection.&lt;br /&gt;&lt;br /&gt;So if user select English, only en.lang.inc.php will be included and if user selects Hindi, then only hi.lang.inc.php will be included.&lt;br /&gt;&lt;br /&gt;Now you need to replace all your static contents with php constants in HTML/template files.&lt;br /&gt;&lt;br /&gt;e.g. if your signin page contains.&lt;br /&gt;&lt;br /&gt;&amp;lt;h1&amp;gt;Welcome&amp;lt;/h1&amp;gt;&lt;br /&gt;&lt;br /&gt;Then replace it with &amp;lt;h1&amp;gt;&amp;lt;?php echo WELCOME ?&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;&lt;br /&gt;So, page will load language specific contents.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;CASE#2 Provide multilingual to images.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;E.g. in header you have used one image for text “about us” then for hindi version you need same image with hindi text.&lt;br /&gt;&lt;br /&gt;You can use two directories in your images directory. Image name must be same in two directories.&lt;br /&gt;&lt;br /&gt;Images/en/about_us.jpg&lt;br /&gt;Images/hi/about_us.jpg&lt;br /&gt;&lt;br /&gt;Then you need to change your code to load proper image based on language selection.&lt;br /&gt;&lt;br /&gt;So, your image code &lt;br /&gt;&lt;br /&gt;&amp;lt;img src=”images/about_us.jpg”&amp;gt;&lt;br /&gt;&lt;br /&gt;will look like&lt;br /&gt;&lt;br /&gt;&amp;lt;img src=”images/&amp;lt;?php echo $lang ?&amp;gt;/about_us.jpg”&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;CASE#3 Provide multilingual to page contents.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;e.g. if you have provision in admin panel to add content for “about us” page. You need to provide selection, for which language you are entering data. So, in database you will have two entries/versions for about us pages for two languages.&lt;br /&gt;&lt;br /&gt;e.g. DB entries will be like below.&lt;br /&gt;en | about_us | English contents&lt;br /&gt;hi | about_us | Hindi contents&lt;br /&gt;&lt;br /&gt;While displaying it to user, your query must use “language selected by user” to get proper contents from DB.&lt;br /&gt;&lt;br /&gt;WYSWYG / TinyMCE editor has multilingual support for entering data. That you can use for entering data, else copy the data from any translator (e.g .google) and paste it into editor.&lt;br /&gt;&lt;br /&gt;Database table for storing Unicode contents; must need to have UTF-8 setting &gt;&gt; charset: UTF-8 Unicode (utf8)&lt;br /&gt;&lt;br /&gt;Also, you need to add following META into your HTML head.&lt;br /&gt;&lt;br /&gt;&amp;lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&amp;gt;&lt;br /&gt;&lt;br /&gt;That’s all!&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/33312075493148646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/11/multilingual-support-in-php-website.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/33312075493148646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/33312075493148646'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/11/multilingual-support-in-php-website.html' title='Multilingual support in PHP website'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-4279453651795821296</id><published>2009-02-11T22:35:00.002+05:30</published><updated>2009-02-11T22:40:07.519+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="bugs"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><title type='text'>How to set priority of a bug in a web application?</title><content type='html'>Software bugs are un-avoidable. No one can deliver bug free system at first stage. It means some how we need to deal with bugs. Here I have written some guideline to set bug priority in web application. One can use it for other applications too.&lt;br /&gt;&lt;br /&gt;Consider a small web application where user can register and upload photos &amp; videos after log in. I have used this example to visualize various conditions as below. &lt;br /&gt;Here P1, P2, P3, P4 &amp; P5 are priorities.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;P1&lt;/span&gt;: Blocking, High level importance &amp; Can occur during Testing/QA phase.&lt;br /&gt;e.g. &lt;br /&gt;(1) Development is done, but QA is not able to start testing as he is getting blank screen due to improper DB connection.&lt;br /&gt;(2) User is not able to register or sign in.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;P2&lt;/span&gt;: Blocking, Low level importance &amp; Can occur during Testing/QA phase.&lt;br /&gt;e.g. User is able to login but there is some problem in photo upload feature and user is not able to upload photo.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;P3&lt;/span&gt;: Not Blocking, High level importance &amp; Can occur during Development phase as well as Testing/QA phase.&lt;br /&gt;e.g. &lt;br /&gt;(1) Normally when ever you start developing some module, by default you can set priority to P3 for all your tasks.&lt;br /&gt;(2) Forgot password feature is not working.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;P4&lt;/span&gt;: Not Blocking, Low level importance &amp; Can occur during Development phase as well as Testing/QA phase.&lt;br /&gt;e.g. &lt;br /&gt;(1) Design related issues. Thumbnails are not looking good for photos in photo album.&lt;br /&gt;(2) Browser issues. Sign Up page is looking great in Firefox but not aligned well in IE &amp; Safari.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;P5&lt;/span&gt;: Not Blocking &amp; Can occur during Development phase as well as Testing/QA phase.&lt;br /&gt;e.g. Text changes. Error message is not proper / some spelling mistakes&lt;br /&gt;&lt;br /&gt;You can deliver your project successfully if it passes following criteria.&lt;br /&gt;Total P1 Open should be 0&lt;br /&gt;Total P2 Open should be 0&lt;br /&gt;Total P3 Open should be 0&lt;br /&gt;Total P4 Open should be 5 (You can change this no.)&lt;br /&gt;Total P5 Open should be 5 (You can change this no.)&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/4279453651795821296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/02/how-to-set-priority-of-bug-in-web.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4279453651795821296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4279453651795821296'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/02/how-to-set-priority-of-bug-in-web.html' title='How to set priority of a bug in a web application?'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-4671904825182573933</id><published>2009-01-31T23:46:00.003+05:30</published><updated>2009-02-02T23:51:20.676+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="APIs"/><category scheme="http://www.blogger.com/atom/ns#" term="feature"/><category scheme="http://www.blogger.com/atom/ns#" term="google"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><category scheme="http://www.blogger.com/atom/ns#" term="web 2.0"/><title type='text'>Is there a way to change YouTube player skin?</title><content type='html'>Many of you have tried embedding YouTube video in webpage using EMBED tag. It’s very easy. Just copy the code and paste it in webpage, it will start streaming video. You may think, what’s new here? Yes, you are right there is nothing tricky here. Wait for a while.&lt;br /&gt;&lt;br /&gt;Check the second scenario. Let say you want to steam any random video (.flv) other than YouTube video. What options do you have? Either you can use built in flash video player with little customization to match look and feel with your website theme or you can use free open source flash video player (e.g. flowplayer) to stream your video. So, what’s exciting here? Nothing.&lt;br /&gt;&lt;br /&gt;Now check the third scenario. Let say you want to steam video provided by YouTube, but want to change video skin to match look and feel with your website? What you will do? Is there any option available to change skin of YouTube player other than default skin?&lt;br /&gt;&lt;br /&gt;Yes; it’s possible. You can choose “&lt;span style=&quot;font-weight:bold;&quot;&gt;YouTube Custom Player&lt;/span&gt;” if you just want to change background color, name of the player and content of default YouTube player. Or you can user “&lt;span style=&quot;font-weight:bold;&quot;&gt;YouTube Chromeless Player&lt;/span&gt;”. You can use either &lt;a href=&quot;http://code.google.com/apis/youtube/js_api_reference.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;JavaScript APIs&lt;/a&gt; or &lt;a href=&quot;http://code.google.com/apis/youtube/flash_api_reference.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Flash APIs&lt;/a&gt; to make your custom player.&lt;br /&gt;&lt;br /&gt;See the demo &lt;a href=&quot;http://code.google.com/apis/youtube/js_example_1.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;; cromeless player using JavaScript APIs.&lt;br /&gt;&lt;br /&gt;I found some limitation in integrating this APIs&lt;br /&gt;(1) YouTube has provided numerous functions to integrate. But it’s hard to control various events like play, pause, mute, un-mute etc. in design.&lt;br /&gt;(2) The given example support  embedding of only one video player at a time. What to do if you have more than one video on a webpage?&lt;br /&gt;&lt;br /&gt;I have made a JavaScript class using JavaScript APIs which allows user to overcome both the listed issues.&lt;br /&gt;&lt;br /&gt;You can download the class and example code &lt;a href=&quot;http://www.lamp-technologies.com/w3guru/video/youtube_player.zip&quot;&gt;here&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;Also, check the demo &lt;a href=&quot;http://www.lamp-technologies.com/w3guru/video/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt; of what I have implemented.&lt;br /&gt;&lt;br /&gt;If you find any difficulties using this class, please contact me. &lt;br /&gt;&lt;br /&gt;Hope you will find this post helpful.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/4671904825182573933/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/youtube-cromeless-player-multiple-video.html#comment-form' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4671904825182573933'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4671904825182573933'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/youtube-cromeless-player-multiple-video.html' title='Is there a way to change YouTube player skin?'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-6868667803418252660</id><published>2009-01-29T23:18:00.006+05:30</published><updated>2009-01-30T00:25:21.441+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="APIs"/><category scheme="http://www.blogger.com/atom/ns#" term="google"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="web 2.0"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Use a CDN to improve your website&#39;s performance</title><content type='html'>&quot;80-90% of the end-user response time is spent downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Rather than starting with the difficult task of redesigning your application architecture, it&#39;s better to first disperse your static content. This will achieves a bigger reduction in response times.&quot; - &lt;span style=&quot;font-style:italic;&quot;&gt;Steve Saunders&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Performance, Scalability and Cost efficiency to end users are main key factors for any web application. CDN (content delivery network) is the solution to achieve it. A CDN can offer 100% availability, even with large power, network or hardware outages. Traditional CDNs focus on web acceleration. New CDNs have integrated media delivery services so they are optimized for live video streaming, high definition video and large asset delivery.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Why we need to use CDN?&lt;/span&gt;&lt;br /&gt;The main point of the CDN is caching. So, it definitely helps in improving performance and scalability of a website.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;When not to use a CDN?&lt;/span&gt;&lt;br /&gt;- Whenever you’re working offline.&lt;br /&gt;- When you can deliver faster than the CDN, and care about that. This might be the case when all users are close to the server.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Privacy and security concerns.&lt;/span&gt;&lt;br /&gt;Using the CDN, you are trusting the CDN to faithfully serve contents and relying on no third-parties injecting funniness in between the CDN and your user’s browser. It&#39;s good to use a reliable CDN like &quot;&lt;a href=&quot;http://code.google.com/apis/ajaxlibs/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Google’s The AJAX Libraries API&lt;/a&gt;&quot;&lt;br /&gt;&lt;br /&gt;The AJAX Libraries API is a content distribution network and loading architecture for the most popular, open source JavaScript libraries. By using the Google AJAX API Loader&#39;s &lt;span style=&quot;font-style:italic;&quot;&gt;google.load()&lt;/span&gt; method, your application has high speed, globally available access to a growing list of the most popular, open source JavaScript libraries including: jQuery, jQuery UI, Prototype, script.aculo.us, MooTools, Dojo, SWFObject and YUI&lt;br /&gt;&lt;br /&gt;Try it in your web application to see performance improvement in your application.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/6868667803418252660/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/use-cdn-to-improve-your-websites.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/6868667803418252660'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/6868667803418252660'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/use-cdn-to-improve-your-websites.html' title='Use a CDN to improve your website&#39;s performance'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-6083022599290264551</id><published>2009-01-26T11:27:00.006+05:30</published><updated>2009-01-30T00:24:28.532+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="APIs"/><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="reviews"/><category scheme="http://www.blogger.com/atom/ns#" term="web 2.0"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Book Review: High Performance Web Sites - Steve Souders</title><content type='html'>High Performance Web Sites by Steve Souders is one of the most important books front end engineers should read to be able to develop a proper web sites. In 14 chapter, you will know 14 of the best tips to enhance the performance of your website. the author gives example by numbers and statistics about the top 10 websites on the internet. In each tip Steve tells the effect of applying this tip on the top 10 websites.&lt;br /&gt;&lt;br /&gt;This book is short and definitely very good in term of contents. The subtitle is, &quot;Essential Knowledge for Frontend Engineers.&quot; The book is a quick read compared to most technical books, and not just due to its relatively small size (168 pages), but also the writing style.&lt;br /&gt;&lt;br /&gt;According to Joe (Developer of Firebug debugger and Mozilla&#39;s DOM Inspector) - &lt;br /&gt;&quot;If everyone would implement just 20% of Steve&#39;s guidelines, the Web would be a dramatically better place. Between this book and Steve&#39;s YSlow extension, there&#39;s really no excuse for having a sluggish web site anymore.&quot;&lt;br /&gt;&lt;br /&gt;Each performance rule in the book is supported by specific examples, and code snippets are available on the book&#39;s companion web site. The rules include how to:&lt;br /&gt;* Make Fewer HTTP Requests&lt;br /&gt;* Use a Content Delivery Network&lt;br /&gt;* Add an Expires Header&lt;br /&gt;* Gzip Components&lt;br /&gt;* Put Stylesheets at the Top&lt;br /&gt;* Put Scripts at the Bottom&lt;br /&gt;* Avoid CSS Expressions&lt;br /&gt;* Make JavaScript and CSS External&lt;br /&gt;* Reduce DNS Lookups&lt;br /&gt;* Minify JavaScript&lt;br /&gt;* Avoid Redirects&lt;br /&gt;* Remove Duplicates Scripts&lt;br /&gt;* Configure ETags&lt;br /&gt;* Make Ajax Cacheable&lt;br /&gt;&lt;br /&gt;Here I have shared a presentation by Steve Souders and Tenni Theurer on &lt;br /&gt;&quot;&lt;a href=&quot;http://www.slideshare.net/w3guru/high-performance-websites-by-souders-steve-presentation?type=powerpoint&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;High Performance Web Sites&lt;/a&gt;&quot;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/6083022599290264551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/book-review-high-performance-web-sites.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/6083022599290264551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/6083022599290264551'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/book-review-high-performance-web-sites.html' title='Book Review: High Performance Web Sites - Steve Souders'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-2412072471696522783</id><published>2009-01-26T10:57:00.003+05:30</published><updated>2009-01-26T11:06:07.462+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><title type='text'>How to reduce the size of JavaScript &amp; CSS file?</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;Compress JavaScript / CSS file with the help of gzip:- &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;With the help of php ob_start() function we can create gzip file for JavaScript.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;if (substr_count($_SERVER[&#39;HTTP_ACCEPT_ENCODING&#39;], &#39;gzip&#39;)) &lt;br /&gt;ob_start(&quot;ob_gzhandler&quot;); &lt;br /&gt;else &lt;br /&gt;ob_start(); &lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;We can use above code at the beginning of the JavaScript and &amp;lt;? Ob_flush();?&amp;gt; code at the end. So output of Php file is JavaScript code in gzip encrypted form.&lt;br /&gt;&lt;br /&gt;In this method, we have to save JavaScript files as a .php file.&lt;br /&gt;&lt;br /&gt;By compressing the plan text JavaScript file with the help of gzip; its size gets reduced by more than 60%. Smaller the file size, better the download time.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Reduce the size of JavaScript and CSS file by removing the white spaces, carriage return and comments:-&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We can also remove the white spaces, carriage return and comments from JavaScript files to reduce its size. Every single letter or space in your HTML code takes up one byte. It doesn&#39;t sound like much but it all adds up. By working through page source and eliminating unnecessary white space and comments, we can shave off up to, or even over 10% of its file size.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/2412072471696522783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-reduce-size-of-javascript-css.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/2412072471696522783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/2412072471696522783'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-reduce-size-of-javascript-css.html' title='How to reduce the size of JavaScript &amp; CSS file?'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-5131642670260214748</id><published>2009-01-24T22:31:00.003+05:30</published><updated>2009-01-24T23:54:16.726+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="google"/><category scheme="http://www.blogger.com/atom/ns#" term="microsoft"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Is losing a job is terrible experience? Turn it into an opportunity!</title><content type='html'>In last couple of months, we have heard lots of job cuts/layoffs in various field. According to Techcrunch, 80,076 job eliminations have been announced or completed since the beginning of the year in the tech industry. The total number of tech layoffs since late August is now 195,856. The number is big and is growing fast.&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;445&quot; width=&quot;592&quot;&gt; &lt;param value=&quot;http://widget.icharts.net&quot; name=&quot;src&quot;/&gt; &lt;embed height=&quot;445&quot; width=&quot;592&quot; flashvars=&quot;id=MXvQwg==&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;http://widget.icharts.net&quot;/&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;No one likes to be told to leave the job. But the reality is that it happens every day in the corporate world more so in the bad economy. Those who are asked to pack up aren’t always non-performers. There are several reasons behind it!&lt;br /&gt;(a) company is not performing well.&lt;br /&gt;(b) employees are overqualified&lt;br /&gt;(c) their position has become redundant because the company does not want to pursue the project/business that they were involved in etc.&lt;br /&gt;&lt;br /&gt;When I was working with my previous employer, I got a chance to have a quick look of this situation. See some example below.&lt;br /&gt;&lt;br /&gt;(a) I was a part of technical team while interviewing a Sr. Developer. There were two positions open and the person was hired with high expectation. Considering seniority of the hired person, second position was closed. The same person got fired after 4 months due to tech layoffs started at company. The clear reason I see here is; &quot;The person failed to perform his duty well or the expectations were too high for him&quot;&lt;br /&gt;&lt;br /&gt;(b) two or three employees got best performance award and those too got laid off. I still don’t understand why they laid off.&lt;br /&gt;&lt;br /&gt;(c) So many senior persons from middle management resigned. What could be the reason? &quot;Fear of being laid off?&quot;&lt;br /&gt;&lt;br /&gt;(d) Some senior persons from top management got fired. Clear reason - &quot;Cost cutting / changes in management to apply new strategies&quot;&lt;br /&gt;&lt;br /&gt;Those who got fired were either fresher, experienced persons - who recently joined company or top management executives.&lt;br /&gt;&lt;br /&gt;Apart from this if good employees get laid off; means company is really not performing well and cash flow is not enough to survive.&lt;br /&gt;&lt;br /&gt;The firing news can hit you hard. Shock and anger are usual feelings, however in some cases it can lead to depression too. One of my colleague had postponed his marriage due to layoff news. How do you cope up with such negative feelings? How do you tell yourself and the world that you are a capable professional? That you have what it takes to be successful.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Some suggestions to handle this situation.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;(a) Don&#39;t Blame Yourself. Have confidence in yourself. See the job loss as an opportunity to make a new beginning. Job is part of life; but life is not part of job.&lt;br /&gt;&lt;br /&gt;(b) Always have a network of good industry friends/contacts. It is this network that you can tap into when you suddenly find yourself on road with no job in hands.&lt;br /&gt;&lt;br /&gt;(c) Manage Finances Well.&lt;br /&gt;&lt;br /&gt;(d) Even if you are safe; stay in touch with your work technology. This will help you to survive in bad time.&lt;br /&gt;&lt;br /&gt;(e) Talk to your HR to help you in finding new job. At our company, management gave good compensation to employees who got laid off and also, they made arrangement with job consultant to help who got fired. You may feel so angry and upset that you don&#39;t want to take any help whatsoever from the same employer who gave you the pink slip at the first place, but relationship matters.&lt;br /&gt;&lt;br /&gt;(f) Lots of people are there who believe that &quot;You are fired means you are not performing well&quot;, but I see - scenario is changed now. People understand that this is not the only reason why employee gets fired. After layoff at our company I interviewed two employees who got laid off recently from another well-known IT company. One of them got selected after interview due to his capabilities. So, be sincere and honest with the prospective employers about your last job. It&#39;s always better that they hear the truth from you than from someone else.&lt;br /&gt;&lt;br /&gt;Have confidence in your abilities and move on.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/5131642670260214748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/is-losing-job-is-terrible-experience.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/5131642670260214748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/5131642670260214748'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/is-losing-job-is-terrible-experience.html' title='Is losing a job is terrible experience? Turn it into an opportunity!'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-7918654592006556975</id><published>2009-01-21T21:39:00.002+05:30</published><updated>2009-01-21T21:49:02.739+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Perl and Shell"/><title type='text'>Add a user to a group under Linux operating system</title><content type='html'>One can use useradd or usermod commands to add a user to a group. useradd command creates a new user or update default new user information. usermod command modifies a user account i.e. it is useful to add user to existing group. There are two types of group. First is primary user group and other is secondary group. All user account related information is stored in &lt;span style=&quot;font-style:italic;&quot;&gt;/etc/passwd&lt;/span&gt;, &lt;span style=&quot;font-style:italic;&quot;&gt;/etc/shadow&lt;/span&gt; and &lt;span style=&quot;font-style:italic;&quot;&gt;/etc/group&lt;/span&gt; files to store user information.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;useradd example - Add a new user to secondary group&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Use useradd command to add new users to existing group (or create a new group and then add user). If group does not exist, create it. &lt;br /&gt;Syntax:&lt;br /&gt;useradd -G {group-name} username&lt;br /&gt;&lt;br /&gt;Create a new user called lamptech and add it to group called developers. First login as a root user (make sure group developers exists), enter:&lt;br /&gt;# grep developers /etc/group&lt;br /&gt;&lt;br /&gt;Output:&lt;br /&gt;developers:x:1124:&lt;br /&gt;&lt;br /&gt;If you do not see any output then you need to add group developers using groupadd command:&lt;br /&gt;# groupadd developers&lt;br /&gt;&lt;br /&gt;Next, add a user called lamptech to group developers:&lt;br /&gt;# useradd -G developers lamptech&lt;br /&gt;&lt;br /&gt;Setup password for user lamptech:&lt;br /&gt;# passwd lamptech&lt;br /&gt;&lt;br /&gt;Ensure that user added properly to group developers:&lt;br /&gt;# id lamptech&lt;br /&gt;&lt;br /&gt;Output:&lt;br /&gt;uid=1122(lamptech) gid=1125(lamptech) groups=1125(lamptech),1124(developers)&lt;br /&gt;&lt;br /&gt;Please note that capital G (-G) option add user to a list of supplementary groups. Each group is separated from the next by a comma, with no intervening whitespace. For example, add user jerry to groups admins, ftp, www, and developers, enter:&lt;br /&gt;# useradd -G admins,ftp,www,developers jerry&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;useradd example - Add a new user to primary group&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;To add a user tony to group developers use following command:&lt;br /&gt;# useradd -g developers tony&lt;br /&gt;# id tony&lt;br /&gt;&lt;br /&gt;uid=1123(tony) gid=1124(developers) groups=1124(developers)&lt;br /&gt;&lt;br /&gt;Please note that small -g option add user to initial login group (primary group). The group name must exist. A group number must refer to an already existing group.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;usermod example - Add a existing user to existing group&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Add existing user tony to ftp supplementary/secondary group with usermod command using -a option ~ i.e. add the user to the supplemental group(s). Use only with -G option :&lt;br /&gt;# usermod -a -G ftp tonyChange existing user tony primary group to www:&lt;br /&gt;# usermod -g www tony&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/7918654592006556975/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/add-user-to-group-under-linux-operating.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7918654592006556975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7918654592006556975'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/add-user-to-group-under-linux-operating.html' title='Add a user to a group under Linux operating system'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-8691120572427906674</id><published>2009-01-21T16:03:00.002+05:30</published><updated>2009-01-21T16:40:41.860+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><title type='text'>How to get domain name from URL using javascript.</title><content type='html'>Use following javascript function to get domain name from URL.&lt;br /&gt;function fnGetDomain(url) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;return url.match(/:\/\/(.[^/]+)/)[1];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;For ex: &amp;lt;script language=&quot;javascript&quot;&amp;gt;fnGetDomain(&quot;http://mail.google.com/mail/?source=navclient-ff&quot;);&amp;lt/script&amp;gt; will return &quot;mail.google.com&quot;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/8691120572427906674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-get-domain-name-from-url-using.html#comment-form' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8691120572427906674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8691120572427906674'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-get-domain-name-from-url-using.html' title='How to get domain name from URL using javascript.'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-2292544013920373745</id><published>2009-01-19T19:24:00.003+05:30</published><updated>2009-01-19T19:31:38.794+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="APIs"/><category scheme="http://www.blogger.com/atom/ns#" term="blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Mysql"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="rss"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><title type='text'>A multi-user blog system in PHP - Bluetrait</title><content type='html'>Blog systems are now very popular and there are plenty of solutions to implement blogs. &lt;br /&gt;&lt;br /&gt;&quot;Bluetrait&quot; allows the one or more users to login and post articles that are stored in a database. Currently it supports storing posts in MySQL and SQLite posts.&lt;br /&gt;&lt;br /&gt;It supports post categories, comments, comment spam filtering, generating RSS feeds, trackback handling and plug-in extensions.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.phpclasses.org/browse/package/4922/download/zip.html&quot;&gt;Download Here!&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;Ref: &lt;a href=&quot;http://www.bluetrait.com&quot;&gt;http://www.bluetrait.com&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/2292544013920373745/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/multi-user-blog-system-in-php-bluetrait.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/2292544013920373745'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/2292544013920373745'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/multi-user-blog-system-in-php-bluetrait.html' title='A multi-user blog system in PHP - Bluetrait'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-1148022896005764952</id><published>2009-01-19T19:04:00.004+05:30</published><updated>2009-01-19T19:23:34.427+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="APIs"/><category scheme="http://www.blogger.com/atom/ns#" term="facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="google"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="social networking"/><category scheme="http://www.blogger.com/atom/ns#" term="useful scripts"/><title type='text'>Get the contacts of friends of different e-mail providers and social networks - Open Inviter</title><content type='html'>Retrieving the contacts of users is often used by social networks and similar sites to get viral by attracting the users&#39; friends.&lt;br /&gt;&lt;br /&gt;&quot;Open Inviter&quot; is the solution. It can be use to get the contacts of friends of different e-mail providers and social networks.&lt;br /&gt;&lt;br /&gt;It can access the Web services servers of different networks to retrieve the contacts of friends of a given user.&lt;br /&gt;&lt;br /&gt;Each network is accessed by the means of plug-in classes. Some plug-ins support sending invitation messages to friends to be added to the user contacts.&lt;br /&gt;&lt;br /&gt;Currently it comes with plug-ins that support many networks such as:&lt;br /&gt;&lt;br /&gt;* AOL * GMail * GMX.net * Windows Live (Hotmail) * Katamail * Lycos * Mail.com * Mail.ru * Rambler.ru * Rediff * Yahoo! * Yandex * Facebook * Hi5 * LinkedIn * MySpace * Orkut * Twitter&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.phpclasses.org/browse/package/4927/download/zip.html&quot;&gt;Download Here!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Ref: &lt;a href=&quot;http://openinviter.com&quot;&gt;http://openinviter.com&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/1148022896005764952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/get-contacts-of-friends-of-different-e.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1148022896005764952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1148022896005764952'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/get-contacts-of-friends-of-different-e.html' title='Get the contacts of friends of different e-mail providers and social networks - Open Inviter'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-379621327957424512</id><published>2009-01-19T12:32:00.009+05:30</published><updated>2010-04-14T14:42:40.629+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>How to apply TinyMCE editor only to specific Textarea?</title><content type='html'>By default, TinyMCE applies to every textarea of a HTML page. There is a way to make it only load on like &amp;lt;textarea id=&quot;mceEditor&quot;&amp;gt;.&lt;br /&gt;&lt;br /&gt;just add the attribute  &#39;editor_selector&#39;  in tinyMCE.init . The value for this attribute is a css class name which should be used in the textarea where  you want to apply  editor.&lt;br /&gt;&lt;br /&gt;For ex:&lt;br /&gt;&lt;pre class=&quot;brush: js&quot;&gt;&lt;br /&gt;tinyMCE.init({&lt;br /&gt;   mode : &quot;textareas&quot;, &lt;br /&gt;   theme : &quot;simple&quot;, &lt;br /&gt;   editor_selector :&quot;mceEditor&quot;&lt;br /&gt;});&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;and in the textarea tag&lt;br /&gt;&lt;br /&gt;&lt;pre class=&quot;brush: js&quot;&gt;&amp;lt;textarea name=&quot;description&quot; style=&quot;width:100%;&quot; class=&quot;mceEditor&quot;&amp;gt;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/379621327957424512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-apply-tinymce-editor-only-to.html#comment-form' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/379621327957424512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/379621327957424512'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/how-to-apply-tinymce-editor-only-to.html' title='How to apply TinyMCE editor only to specific Textarea?'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-7133789270223294057</id><published>2009-01-11T13:37:00.004+05:30</published><updated>2009-01-18T18:53:26.883+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="debugging"/><category scheme="http://www.blogger.com/atom/ns#" term="firefox"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>Edit whatever you want on any page - Images, Texts</title><content type='html'>Open any web page, clear the address bar, and paste the code:&lt;br /&gt;&lt;pre&gt;javascript:document.body.contentEditable=&#39;true&#39;; document.designMode=&#39;on&#39;; void 0;&lt;/pre&gt;&lt;br /&gt;and hit enter. Feel free to edit whatever you want on the page. With Firefox, you can even edit and save the modified pages to your computer.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/7133789270223294057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/edit-whatever-you-want-on-any-page.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7133789270223294057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7133789270223294057'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/edit-whatever-you-want-on-any-page.html' title='Edit whatever you want on any page - Images, Texts'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-4851625222523150343</id><published>2009-01-05T22:15:00.003+05:30</published><updated>2009-01-05T22:42:32.104+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Best Practices for Speeding Up Your Web Site - Yahoo! DN</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;Minimize HTTP Requests&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages.&lt;br /&gt;&lt;br /&gt;One way to reduce the number of components in the page is to simplify the page&#39;s design. But is there a way to build pages with richer content while also achieving fast response times? Here are some techniques for reducing the number of HTTP requests, while still supporting rich page designs.&lt;br /&gt;&lt;br /&gt;Combined files are a way to reduce the number of HTTP requests by combining all scripts into a single script, and similarly combining all CSS into a single stylesheet. Combining files is more challenging when the scripts and stylesheets vary from page to page, but making this part of your release process improves response times.&lt;br /&gt;&lt;br /&gt;CSS Sprites are the preferred method for reducing the number of image requests. Combine your background images into a single image and use the CSS background-image and background-position properties to display the desired image segment.&lt;br /&gt;&lt;br /&gt;Image maps combine multiple images into a single image. The overall size is about the same, but reducing the number of HTTP requests speeds up the page. Image maps only work if the images are contiguous in the page, such as a navigation bar. Defining the coordinates of image maps can be tedious and error prone. Using image maps for navigation is not accessible too, so it&#39;s not recommended.&lt;br /&gt;&lt;br /&gt;Inline images use the data: URL scheme to embed the image data in the actual page. This can increase the size of your HTML document. Combining inline images into your (cached) stylesheets is a way to reduce HTTP requests and avoid increasing the size of your pages. Inline images are not yet supported across all major browsers.&lt;br /&gt;&lt;br /&gt;Reducing the number of HTTP requests in your page is the place to start. This is the most important guideline for improving performance for first time visitors. As described in Tenni Theurer&#39;s blog post Browser Cache Usage - Exposed!, 40-60% of daily visitors to your site come in with an empty cache. Making your page fast for these first time visitors is key to a better user experience.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Use a Content Delivery Network&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;The user&#39;s proximity to your web server has an impact on response times. Deploying your content across multiple, geographically dispersed servers will make your pages load faster from the user&#39;s perspective. But where should you start?&lt;br /&gt;&lt;br /&gt;As a first step to implementing geographically dispersed content, don&#39;t attempt to redesign your web application to work in a distributed architecture. Depending on the application, changing the architecture could include daunting tasks such as synchronizing session state and replicating database transactions across server locations. Attempts to reduce the distance between users and your content could be delayed by, or never pass, this application architecture step.&lt;br /&gt;&lt;br /&gt;Remember that 80-90% of the end-user response time is spent downloading all the components in the page: images, stylesheets, scripts, Flash, etc. This is the Performance Golden Rule. Rather than starting with the difficult task of redesigning your application architecture, it&#39;s better to first disperse your static content. This not only achieves a bigger reduction in response times, but it&#39;s easier thanks to content delivery networks.&lt;br /&gt;&lt;br /&gt;A content delivery network (CDN) is a collection of web servers distributed across multiple locations to deliver content more efficiently to users. The server selected for delivering content to a specific user is typically based on a measure of network proximity. For example, the server with the fewest network hops or the server with the quickest response time is chosen.&lt;br /&gt;&lt;br /&gt;Some large Internet companies own their own CDN, but it&#39;s cost-effective to use a CDN service provider, such as Akamai Technologies, Mirror Image Internet, or Limelight Networks. For start-up companies and private web sites, the cost of a CDN service can be prohibitive, but as your target audience grows larger and becomes more global, a CDN is necessary to achieve fast response times. At Yahoo!, properties that moved static content off their application web servers to a CDN improved end-user response times by 20% or more. Switching to a CDN is a relatively easy code change that will dramatically improve the speed of your web site.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Add an Expires or a Cache-Control Header&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;There are two things in this rule:&lt;br /&gt;&lt;br /&gt;    * For static components: implement &quot;Never expire&quot; policy by setting far future Expires header&lt;br /&gt;    * For dynamic components: use an appropriate Cache-Control header to help the browser with conditional requests&lt;br /&gt;&lt;br /&gt;Web page designs are getting richer and richer, which means more scripts, stylesheets, images, and Flash in the page. A first-time visitor to your page may have to make several HTTP requests, but by using the Expires header you make those components cacheable. This avoids unnecessary HTTP requests on subsequent page views. Expires headers are most often used with images, but they should be used on all components including scripts, stylesheets, and Flash components.&lt;br /&gt;&lt;br /&gt;Browsers (and proxies) use a cache to reduce the number and size of HTTP requests, making web pages load faster. A web server uses the Expires header in the HTTP response to tell the client how long a component can be cached. This is a far future Expires header, telling the browser that this response won&#39;t be stale until April 15, 2010.&lt;br /&gt;&lt;br /&gt;      Expires: Thu, 15 Apr 2010 20:00:00 GMT&lt;br /&gt;&lt;br /&gt;If your server is Apache, use the ExpiresDefault directive to set an expiration date relative to the current date. This example of the ExpiresDefault directive sets the Expires date 10 years out from the time of the request.&lt;br /&gt;&lt;br /&gt;      ExpiresDefault &quot;access plus 10 years&quot;&lt;br /&gt;&lt;br /&gt;Keep in mind, if you use a far future Expires header you have to change the component&#39;s filename whenever the component changes. At Yahoo! we often make this step part of the build process: a version number is embedded in the component&#39;s filename, for example, yahoo_2.0.6.js.&lt;br /&gt;&lt;br /&gt;Using a far future Expires header affects page views only after a user has already visited your site. It has no effect on the number of HTTP requests when a user visits your site for the first time and the browser&#39;s cache is empty. Therefore the impact of this performance improvement depends on how often users hit your pages with a primed cache. (A &quot;primed cache&quot; already contains all of the components in the page.) We measured this at Yahoo! and found the number of page views with a primed cache is 75-85%. By using a far future Expires header, you increase the number of components that are cached by the browser and re-used on subsequent page views without sending a single byte over the user&#39;s Internet connection.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Gzip Components&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;The time it takes to transfer an HTTP request and response across the network can be significantly reduced by decisions made by front-end engineers. It&#39;s true that the end-user&#39;s bandwidth speed, Internet service provider, proximity to peering exchange points, etc. are beyond the control of the development team. But there are other variables that affect response times. Compression reduces response times by reducing the size of the HTTP response.&lt;br /&gt;&lt;br /&gt;Starting with HTTP/1.1, web clients indicate support for compression with the Accept-Encoding header in the HTTP request.&lt;br /&gt;&lt;br /&gt;      Accept-Encoding: gzip, deflate&lt;br /&gt;&lt;br /&gt;If the web server sees this header in the request, it may compress the response using one of the methods listed by the client. The web server notifies the web client of this via the Content-Encoding header in the response.&lt;br /&gt;&lt;br /&gt;      Content-Encoding: gzip&lt;br /&gt;&lt;br /&gt;Gzip is the most popular and effective compression method at this time. It was developed by the GNU project and standardized by RFC 1952. The only other compression format you&#39;re likely to see is deflate, but it&#39;s less effective and less popular.&lt;br /&gt;&lt;br /&gt;Gzipping generally reduces the response size by about 70%. Approximately 90% of today&#39;s Internet traffic travels through browsers that claim to support gzip. If you use Apache, the module configuring gzip depends on your version: Apache 1.3 uses mod_gzip while Apache 2.x uses mod_deflate.&lt;br /&gt;&lt;br /&gt;There are known issues with browsers and proxies that may cause a mismatch in what the browser expects and what it receives with regard to compressed content. Fortunately, these edge cases are dwindling as the use of older browsers drops off. The Apache modules help out by adding appropriate Vary response headers automatically.&lt;br /&gt;&lt;br /&gt;Servers choose what to gzip based on file type, but are typically too limited in what they decide to compress. Most web sites gzip their HTML documents. It&#39;s also worthwhile to gzip your scripts and stylesheets, but many web sites miss this opportunity. In fact, it&#39;s worthwhile to compress any text response including XML and JSON. Image and PDF files should not be gzipped because they are already compressed. Trying to gzip them not only wastes CPU but can potentially increase file sizes.&lt;br /&gt;&lt;br /&gt;Gzipping as many file types as possible is an easy way to reduce page weight and accelerate the user experience.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Put Stylesheets at the Top&lt;/span&gt;&lt;br /&gt;tag: css&lt;br /&gt;&lt;br /&gt;While researching performance at Yahoo!, we discovered that moving stylesheets to the document HEAD makes pages appear to be loading faster. This is because putting stylesheets in the HEAD allows the page to render progressively.&lt;br /&gt;&lt;br /&gt;Front-end engineers that care about performance want a page to load progressively; that is, we want the browser to display whatever content it has as soon as possible. This is especially important for pages with a lot of content and for users on slower Internet connections. The importance of giving users visual feedback, such as progress indicators, has been well researched and documented. In our case the HTML page is the progress indicator! When the browser loads the page progressively the header, the navigation bar, the logo at the top, etc. all serve as visual feedback for the user who is waiting for the page. This improves the overall user experience.&lt;br /&gt;&lt;br /&gt;The problem with putting stylesheets near the bottom of the document is that it prohibits progressive rendering in many browsers, including Internet Explorer. These browsers block rendering to avoid having to redraw elements of the page if their styles change. The user is stuck viewing a blank white page.&lt;br /&gt;&lt;br /&gt;The HTML specification clearly states that stylesheets are to be included in the HEAD of the page: &quot;Unlike A, [LINK] may only appear in the HEAD section of a document, although it may appear any number of times.&quot; Neither of the alternatives, the blank white screen or flash of unstyled content, are worth the risk. The optimal solution is to follow the HTML specification and load your stylesheets in the document HEAD.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Put Scripts at the Bottom&lt;/span&gt;&lt;br /&gt;tag: javascript&lt;br /&gt;&lt;br /&gt;The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won&#39;t start any other downloads, even on different hostnames.&lt;br /&gt;&lt;br /&gt;In some situations it&#39;s not easy to move scripts to the bottom. If, for example, the script uses document.write to insert part of the page&#39;s content, it can&#39;t be moved lower in the page. There might also be scoping issues. In many cases, there are ways to workaround these situations.&lt;br /&gt;&lt;br /&gt;An alternative suggestion that often comes up is to use deferred scripts. The DEFER attribute indicates that the script does not contain document.write, and is a clue to browsers that they can continue rendering. Unfortunately, Firefox doesn&#39;t support the DEFER attribute. In Internet Explorer, the script may be deferred, but not as much as desired. If a script can be deferred, it can also be moved to the bottom of the page. That will make your web pages load faster.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Avoid CSS Expressions&lt;/span&gt;&lt;br /&gt;tag: css&lt;br /&gt;&lt;br /&gt;CSS expressions are a powerful (and dangerous) way to set CSS properties dynamically. They&#39;re supported in Internet Explorer, starting with version 5. As an example, the background color could be set to alternate every hour using CSS expressions.&lt;br /&gt;&lt;br /&gt;      background-color: expression( (new Date()).getHours()%2 ? &quot;#B8D4FF&quot; : &quot;#F08A00&quot; );&lt;br /&gt;&lt;br /&gt;As shown here, the expression method accepts a JavaScript expression. The CSS property is set to the result of evaluating the JavaScript expression. The expression method is ignored by other browsers, so it is useful for setting properties in Internet Explorer needed to create a consistent experience across browsers.&lt;br /&gt;&lt;br /&gt;The problem with expressions is that they are evaluated more frequently than most people expect. Not only are they evaluated when the page is rendered and resized, but also when the page is scrolled and even when the user moves the mouse over the page. Adding a counter to the CSS expression allows us to keep track of when and how often a CSS expression is evaluated. Moving the mouse around the page can easily generate more than 10,000 evaluations.&lt;br /&gt;&lt;br /&gt;One way to reduce the number of times your CSS expression is evaluated is to use one-time expressions, where the first time the expression is evaluated it sets the style property to an explicit value, which replaces the CSS expression. If the style property must be set dynamically throughout the life of the page, using event handlers instead of CSS expressions is an alternative approach. If you must use CSS expressions, remember that they may be evaluated thousands of times and could affect the performance of your page.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Make JavaScript and CSS External&lt;/span&gt;&lt;br /&gt;tag: javascript, css&lt;br /&gt;&lt;br /&gt;Many of these performance rules deal with how external components are managed. However, before these considerations arise you should ask a more basic question: Should JavaScript and CSS be contained in external files, or inlined in the page itself?&lt;br /&gt;&lt;br /&gt;Using external files in the real world generally produces faster pages because the JavaScript and CSS files are cached by the browser. JavaScript and CSS that are inlined in HTML documents get downloaded every time the HTML document is requested. This reduces the number of HTTP requests that are needed, but increases the size of the HTML document. On the other hand, if the JavaScript and CSS are in external files cached by the browser, the size of the HTML document is reduced without increasing the number of HTTP requests.&lt;br /&gt;&lt;br /&gt;The key factor, then, is the frequency with which external JavaScript and CSS components are cached relative to the number of HTML documents requested. This factor, although difficult to quantify, can be gauged using various metrics. If users on your site have multiple page views per session and many of your pages re-use the same scripts and stylesheets, there is a greater potential benefit from cached external files.&lt;br /&gt;&lt;br /&gt;Many web sites fall in the middle of these metrics. For these sites, the best solution generally is to deploy the JavaScript and CSS as external files. The only exception where inlining is preferable is with home pages, such as Yahoo!&#39;s front page and My Yahoo!. Home pages that have few (perhaps only one) page view per session may find that inlining JavaScript and CSS results in faster end-user response times.&lt;br /&gt;&lt;br /&gt;For front pages that are typically the first of many page views, there are techniques that leverage the reduction of HTTP requests that inlining provides, as well as the caching benefits achieved through using external files. One such technique is to inline JavaScript and CSS in the front page, but dynamically download the external files after the page has finished loading. Subsequent pages would reference the external files that should already be in the browser&#39;s cache.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Reduce DNS Lookups&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;The Domain Name System (DNS) maps hostnames to IP addresses, just as phonebooks map people&#39;s names to their phone numbers. When you type www.yahoo.com into your browser, a DNS resolver contacted by the browser returns that server&#39;s IP address. DNS has a cost. It typically takes 20-120 milliseconds for DNS to lookup the IP address for a given hostname. The browser can&#39;t download anything from this hostname until the DNS lookup is completed.&lt;br /&gt;&lt;br /&gt;DNS lookups are cached for better performance. This caching can occur on a special caching server, maintained by the user&#39;s ISP or local area network, but there is also caching that occurs on the individual user&#39;s computer. The DNS information remains in the operating system&#39;s DNS cache (the &quot;DNS Client service&quot; on Microsoft Windows). Most browsers have their own caches, separate from the operating system&#39;s cache. As long as the browser keeps a DNS record in its own cache, it doesn&#39;t bother the operating system with a request for the record.&lt;br /&gt;&lt;br /&gt;Internet Explorer caches DNS lookups for 30 minutes by default, as specified by the DnsCacheTimeout registry setting. Firefox caches DNS lookups for 1 minute, controlled by the network.dnsCacheExpiration configuration setting. (Fasterfox changes this to 1 hour.)&lt;br /&gt;&lt;br /&gt;When the client&#39;s DNS cache is empty (for both the browser and the operating system), the number of DNS lookups is equal to the number of unique hostnames in the web page. This includes the hostnames used in the page&#39;s URL, images, script files, stylesheets, Flash objects, etc. Reducing the number of unique hostnames reduces the number of DNS lookups.&lt;br /&gt;&lt;br /&gt;Reducing the number of unique hostnames has the potential to reduce the amount of parallel downloading that takes place in the page. Avoiding DNS lookups cuts response times, but reducing parallel downloads may increase response times. My guideline is to split these components across at least two but no more than four hostnames. This results in a good compromise between reducing DNS lookups and allowing a high degree of parallel downloads.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Minify JavaScript and CSS&lt;/span&gt;&lt;br /&gt;tag: javascript, css&lt;br /&gt;&lt;br /&gt;Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab). In the case of JavaScript, this improves response time performance because the size of the downloaded file is reduced. Two popular tools for minifying JavaScript code are JSMin and YUI Compressor. The YUI compressor can also minify CSS.&lt;br /&gt;&lt;br /&gt;Obfuscation is an alternative optimization that can be applied to source code. It&#39;s more complex than minification and thus more likely to generate bugs as a result of the obfuscation step itself. In a survey of ten top U.S. web sites, minification achieved a 21% size reduction versus 25% for obfuscation. Although obfuscation has a higher size reduction, minifying JavaScript is less risky.&lt;br /&gt;&lt;br /&gt;In addition to minifying external scripts and styles, inlined &amp;lt;script&amp;gt; and &amp;lt;style&amp;gt; blocks can and should also be minified. Even if you gzip your scripts and styles, minifying them will still reduce the size by 5% or more. As the use and size of JavaScript and CSS increases, so will the savings gained by minifying your code.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Avoid Redirects&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;Redirects are accomplished using the 301 and 302 status codes. Here&#39;s an example of the HTTP headers in a 301 response:&lt;br /&gt;&lt;br /&gt;      HTTP/1.1 301 Moved Permanently&lt;br /&gt;      Location: http://example.com/newuri&lt;br /&gt;      Content-Type: text/html&lt;br /&gt;&lt;br /&gt;The browser automatically takes the user to the URL specified in the Location field. All the information necessary for a redirect is in the headers. The body of the response is typically empty. Despite their names, neither a 301 nor a 302 response is cached in practice unless additional headers, such as Expires or Cache-Control, indicate it should be. The meta refresh tag and JavaScript are other ways to direct users to a different URL, but if you must do a redirect, the preferred technique is to use the standard 3xx HTTP status codes, primarily to ensure the back button works correctly.&lt;br /&gt;&lt;br /&gt;The main thing to remember is that redirects slow down the user experience. Inserting a redirect between the user and the HTML document delays everything in the page since nothing in the page can be rendered and no components can start being downloaded until the HTML document has arrived.&lt;br /&gt;&lt;br /&gt;One of the most wasteful redirects happens frequently and web developers are generally not aware of it. It occurs when a trailing slash (/) is missing from a URL that should otherwise have one. For example, going to http://astrology.yahoo.com/astrology results in a 301 response containing a redirect to http://astrology.yahoo.com/astrology/ (notice the added trailing slash). This is fixed in Apache by using Alias or mod_rewrite, or the DirectorySlash directive if you&#39;re using Apache handlers.&lt;br /&gt;&lt;br /&gt;Connecting an old web site to a new one is another common use for redirects. Others include connecting different parts of a website and directing the user based on certain conditions (type of browser, type of user account, etc.). Using a redirect to connect two web sites is simple and requires little additional coding. Although using redirects in these situations reduces the complexity for developers, it degrades the user experience. Alternatives for this use of redirects include using Alias and mod_rewrite if the two code paths are hosted on the same server. If a domain name change is the cause of using redirects, an alternative is to create a CNAME (a DNS record that creates an alias pointing from one domain name to another) in combination with Alias or mod_rewrite.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Remove Duplicate Scripts&lt;/span&gt;&lt;br /&gt;tag: javascript&lt;br /&gt;&lt;br /&gt;It hurts performance to include the same JavaScript file twice in one page. This isn&#39;t as unusual as you might think. A review of the ten top U.S. web sites shows that two of them contain a duplicated script. Two main factors increase the odds of a script being duplicated in a single web page: team size and number of scripts. When it does happen, duplicate scripts hurt performance by creating unnecessary HTTP requests and wasted JavaScript execution.&lt;br /&gt;&lt;br /&gt;Unnecessary HTTP requests happen in Internet Explorer, but not in Firefox. In Internet Explorer, if an external script is included twice and is not cacheable, it generates two HTTP requests during page loading. Even if the script is cacheable, extra HTTP requests occur when the user reloads the page.&lt;br /&gt;&lt;br /&gt;In addition to generating wasteful HTTP requests, time is wasted evaluating the script multiple times. This redundant JavaScript execution happens in both Firefox and Internet Explorer, regardless of whether the script is cacheable.&lt;br /&gt;&lt;br /&gt;One way to avoid accidentally including the same script twice is to implement a script management module in your templating system. The typical way to include a script is to use the SCRIPT tag in your HTML page.&lt;br /&gt;&lt;br /&gt;      &lt;script type=&quot;text/javascript&quot; src=&quot;menu_1.0.17.js&quot;&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;An alternative in PHP would be to create a function called insertScript.&lt;br /&gt;&lt;br /&gt;      &lt;?php insertScript(&quot;menu.js&quot;) ?&gt;&lt;br /&gt;&lt;br /&gt;In addition to preventing the same script from being inserted multiple times, this function could handle other issues with scripts, such as dependency checking and adding version numbers to script filenames to support far future Expires headers.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Configure ETags&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;Entity tags (ETags) are a mechanism that web servers and browsers use to determine whether the component in the browser&#39;s cache matches the one on the origin server. (An &quot;entity&quot; is another word a &quot;component&quot;: images, scripts, stylesheets, etc.) ETags were added to provide a mechanism for validating entities that is more flexible than the last-modified date. An ETag is a string that uniquely identifies a specific version of a component. The only format constraints are that the string be quoted. The origin server specifies the component&#39;s ETag using the ETag response header.&lt;br /&gt;&lt;br /&gt;      HTTP/1.1 200 OK&lt;br /&gt;      Last-Modified: Tue, 12 Dec 2006 03:03:59 GMT&lt;br /&gt;      ETag: &quot;10c24bc-4ab-457e1c1f&quot;&lt;br /&gt;      Content-Length: 12195&lt;br /&gt;&lt;br /&gt;Later, if the browser has to validate a component, it uses the If-None-Match header to pass the ETag back to the origin server. If the ETags match, a 304 status code is returned reducing the response by 12195 bytes for this example.&lt;br /&gt;&lt;br /&gt;      GET /i/yahoo.gif HTTP/1.1&lt;br /&gt;      Host: us.yimg.com&lt;br /&gt;      If-Modified-Since: Tue, 12 Dec 2006 03:03:59 GMT&lt;br /&gt;      If-None-Match: &quot;10c24bc-4ab-457e1c1f&quot;&lt;br /&gt;      HTTP/1.1 304 Not Modified&lt;br /&gt;&lt;br /&gt;The problem with ETags is that they typically are constructed using attributes that make them unique to a specific server hosting a site. ETags won&#39;t match when a browser gets the original component from one server and later tries to validate that component on a different server, a situation that is all too common on Web sites that use a cluster of servers to handle requests. By default, both Apache and IIS embed data in the ETag that dramatically reduces the odds of the validity test succeeding on web sites with multiple servers.&lt;br /&gt;&lt;br /&gt;The ETag format for Apache 1.3 and 2.x is inode-size-timestamp. Although a given file may reside in the same directory across multiple servers, and have the same file size, permissions, timestamp, etc., its inode is different from one server to the next.&lt;br /&gt;&lt;br /&gt;IIS 5.0 and 6.0 have a similar issue with ETags. The format for ETags on IIS is Filetimestamp:ChangeNumber. A ChangeNumber is a counter used to track configuration changes to IIS. It&#39;s unlikely that the ChangeNumber is the same across all IIS servers behind a web site.&lt;br /&gt;&lt;br /&gt;The end result is ETags generated by Apache and IIS for the exact same component won&#39;t match from one server to another. If the ETags don&#39;t match, the user doesn&#39;t receive the small, fast 304 response that ETags were designed for; instead, they&#39;ll get a normal 200 response along with all the data for the component. If you host your web site on just one server, this isn&#39;t a problem. But if you have multiple servers hosting your web site, and you&#39;re using Apache or IIS with the default ETag configuration, your users are getting slower pages, your servers have a higher load, you&#39;re consuming greater bandwidth, and proxies aren&#39;t caching your content efficiently. Even if your components have a far future Expires header, a conditional GET request is still made whenever the user hits Reload or Refresh.&lt;br /&gt;&lt;br /&gt;If you&#39;re not taking advantage of the flexible validation model that ETags provide, it&#39;s better to just remove the ETag altogether. The Last-Modified header validates based on the component&#39;s timestamp. And removing the ETag reduces the size of the HTTP headers in both the response and subsequent requests. This Microsoft Support article describes how to remove ETags. In Apache, this is done by simply adding the following line to your Apache configuration file:&lt;br /&gt;&lt;br /&gt;      FileETag none&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Make Ajax Cacheable&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;One of the cited benefits of Ajax is that it provides instantaneous feedback to the user because it requests information asynchronously from the backend web server. However, using Ajax is no guarantee that the user won&#39;t be twiddling his thumbs waiting for those asynchronous JavaScript and XML responses to return. In many applications, whether or not the user is kept waiting depends on how Ajax is used. For example, in a web-based email client the user will be kept waiting for the results of an Ajax request to find all the email messages that match their search criteria. It&#39;s important to remember that &quot;asynchronous&quot; does not imply &quot;instantaneous&quot;.&lt;br /&gt;&lt;br /&gt;To improve performance, it&#39;s important to optimize these Ajax responses. The most important way to improve the performance of Ajax is to make the responses cacheable, as discussed in Add an Expires or a Cache-Control Header. Some of the other rules also apply to Ajax:&lt;br /&gt;&lt;br /&gt;    * Gzip Components&lt;br /&gt;    * Reduce DNS Lookups&lt;br /&gt;    * Minify JavaScript&lt;br /&gt;    * Avoid Redirects&lt;br /&gt;    * Configure ETags&lt;br /&gt;&lt;br /&gt;Let&#39;s look at an example. A Web 2.0 email client might use Ajax to download the user&#39;s address book for autocompletion. If the user hasn&#39;t modified her address book since the last time she used the email web app, the previous address book response could be read from cache if that Ajax response was made cacheable with a future Expires or Cache-Control header. The browser must be informed when to use a previously cached address book response versus requesting a new one. This could be done by adding a timestamp to the address book Ajax URL indicating the last time the user modified her address book, for example, &amp;t=1190241612. If the address book hasn&#39;t been modified since the last download, the timestamp will be the same and the address book will be read from the browser&#39;s cache eliminating an extra HTTP roundtrip. If the user has modified her address book, the timestamp ensures the new URL doesn&#39;t match the cached response, and the browser will request the updated address book entries.&lt;br /&gt;&lt;br /&gt;Even though your Ajax responses are created dynamically, and might only be applicable to a single user, they can still be cached. Doing so will make your Web 2.0 apps faster.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Flush the Buffer Early&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;When users request a page, it can take anywhere from 200 to 500ms for the backend server to stitch together the HTML page. During this time, the browser is idle as it waits for the data to arrive. In PHP you have the function flush(). It allows you to send your partially ready HTML response to the browser so that the browser can start fetching components while your backend is busy with the rest of the HTML page. The benefit is mainly seen on busy backends or light frontends.&lt;br /&gt;&lt;br /&gt;A good place to consider flushing is right after the HEAD because the HTML for the head is usually easier to produce and it allows you to include any CSS and JavaScript files for the browser to start fetching in parallel while the backend is still processing.&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;br /&gt;      ... &amp;lt;!-- css, js --&amp;gt;&lt;br /&gt;    &amp;lt;/head&amp;gt;&lt;br /&gt;    &amp;lt;?php flush(); ?&amp;gt;&lt;br /&gt;    &amp;lt;body&amp;gt;&lt;br /&gt;      ... &amp;lt;!-- content --&amp;gt;&lt;br /&gt;&lt;br /&gt;Yahoo! search pioneered research and real user testing to prove the benefits of using this technique.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Use GET for AJAX Requests&lt;/span&gt;&lt;br /&gt;tag: server&lt;br /&gt;&lt;br /&gt;The Yahoo! Mail team found that when using XMLHttpRequest, POST is implemented in the browsers as a two-step process: sending the headers first, then sending data. So it&#39;s best to use GET, which only takes one TCP packet to send (unless you have a lot of cookies). The maximum URL length in IE is 2K, so if you send more than 2K data you might not be able to use GET.&lt;br /&gt;&lt;br /&gt;An interesting side affect is that POST without actually posting any data behaves like GET. Based on the HTTP specs, GET is meant for retrieving information, so it makes sense (semantically) to use GET when you&#39;re only requesting data, as opposed to sending data to be stored server-side.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Post-load Components&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;You can take a closer look at your page and ask yourself: &quot;What&#39;s absolutely required in order to render the page initially?&quot;. The rest of the content and components can wait.&lt;br /&gt;&lt;br /&gt;JavaScript is an ideal candidate for splitting before and after the onload event. For example if you have JavaScript code and libraries that do drag and drop and animations, those can wait, because dragging elements on the page comes after the initial rendering. Other places to look for candidates for post-loading include hidden content (content that appears after a user action) and images below the fold.&lt;br /&gt;&lt;br /&gt;Tools to help you out in your effort: YUI Image Loader allows you to delay images below the fold and the YUI Get utility is an easy way to include JS and CSS on the fly. For an example in the wild take a look at Yahoo! Home Page with Firebug&#39;s Net Panel turned on.&lt;br /&gt;&lt;br /&gt;It&#39;s good when the performance goals are inline with other web development best practices. In this case, the idea of progressive enhancement tells us that JavaScript, when supported, can improve the user experience but you have to make sure the page works even without JavaScript. So after you&#39;ve made sure the page works fine, you can enhance it with some post-loaded scripts that give you more bells and whistles such as drag and drop and animations.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Preload Components&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;Preload may look like the opposite of post-load, but it actually has a different goal. By preloading components you can take advantage of the time the browser is idle and request components (like images, styles and scripts) you&#39;ll need in the future. This way when the user visits the next page, you could have most of the components already in the cache and your page will load much faster for the user.&lt;br /&gt;&lt;br /&gt;There are actually several types of preloading:&lt;br /&gt;&lt;br /&gt;    * Unconditional preload - as soon as onload fires, you go ahead and fetch some extra components. Check google.com for an example of how a sprite image is requested onload. This sprite image is not needed on the google.com homepage, but it is needed on the consecutive search result page.&lt;br /&gt;    * Conditional preload - based on a user action you make an educated guess where the user is headed next and preload accordingly. On search.yahoo.com you can see how some extra components are requested after you start typing in the input box.&lt;br /&gt;    * Anticipated preload - preload in advance before launching a redesign. It often happens after a redesign that you hear: &quot;The new site is cool, but it&#39;s slower than before&quot;. Part of the problem could be that the users were visiting your old site with a full cache, but the new one is always an empty cache experience. You can mitigate this side effect by preloading some components before you even launched the redesign. Your old site can use the time the browser is idle and request images and scripts that will be used by the new site&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Reduce the Number of DOM Elements&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;A complex page means more bytes to download and it also means slower DOM access in JavaScript. It makes a difference if you loop through 500 or 5000 DOM elements on the page when you want to add an event handler for example.&lt;br /&gt;&lt;br /&gt;A high number of DOM elements can be a symptom that there&#39;s something that should be improved with the markup of the page without necessarily removing content. Are you using nested tables for layout purposes? Are you throwing in more &amp;lt;div&amp;gt;s only to fix layout issues? Maybe there&#39;s a better and more semantically correct way to do your markup.&lt;br /&gt;&lt;br /&gt;A great help with layouts are the YUI CSS utilities: grids.css can help you with the overall layout, fonts.css and reset.css can help you strip away the browser&#39;s defaults formatting. This is a chance to start fresh and think about your markup, for example use &amp;lt;div&amp;gt;s only when it makes sense semantically, and not because it renders a new line.&lt;br /&gt;&lt;br /&gt;The number of DOM elements is easy to test, just type in Firebug&#39;s console:&lt;br /&gt;document.getElementsByTagName(&#39;*&#39;).length&lt;br /&gt;&lt;br /&gt;And how many DOM elements are too many? Check other similar pages that have good markup. For example the Yahoo! Home Page is a pretty busy page and still under 700 elements (HTML tags).&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Split Components Across Domains&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;Splitting components allows you to maximize parallel downloads. Make sure you&#39;re using not more than 2-4 domains because of the DNS lookup penalty. For example, you can host your HTML and dynamic content on www.example.org and split static components between static1.example.org and static2.example.org&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Minimize the Number of iframes&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;Iframes allow an HTML document to be inserted in the parent document. It&#39;s important to understand how iframes work so they can be used effectively.&lt;br /&gt;&lt;br /&gt;&amp;lt;iframe&amp;gt; pros:&lt;br /&gt;&lt;br /&gt;    * Helps with slow third-party content like badges and ads&lt;br /&gt;    * Security sandbox&lt;br /&gt;    * Download scripts in parallel&lt;br /&gt;&lt;br /&gt;&amp;lt;iframe&amp;gt; cons:&lt;br /&gt;&lt;br /&gt;    * Costly even if blank&lt;br /&gt;    * Blocks page onload&lt;br /&gt;    * Non-semantic&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;No 404s&lt;/span&gt;&lt;br /&gt;tag: content&lt;br /&gt;&lt;br /&gt;HTTP requests are expensive so making an HTTP request and getting a useless response (i.e. 404 Not Found) is totally unnecessary and will slow down the user experience without any benefit.&lt;br /&gt;&lt;br /&gt;Some sites have helpful 404s &quot;Did you mean X?&quot;, which is great for the user experience but also wastes server resources (like database, etc). Particularly bad is when the link to an external JavaScript is wrong and the result is a 404. First, this download will block parallel downloads. Next the browser may try to parse the 404 response body as if it were JavaScript code, trying to find something usable in it.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Reduce Cookie Size&lt;/span&gt;&lt;br /&gt;tag: cookie&lt;br /&gt;&lt;br /&gt;HTTP cookies are used for a variety of reasons such as authentication and personalization. Information about cookies is exchanged in the HTTP headers between web servers and browsers. It&#39;s important to keep the size of cookies as low as possible to minimize the impact on the user&#39;s response time.&lt;br /&gt;&lt;br /&gt;For more information check &quot;When the Cookie Crumbles&quot; by Tenni Theurer and Patty Chi. The take-home of this research:&lt;br /&gt;&lt;br /&gt;    * Eliminate unnecessary cookies&lt;br /&gt;    * Keep cookie sizes as low as possible to minimize the impact on the user response time&lt;br /&gt;    * Be mindful of setting cookies at the appropriate domain level so other sub-domains are not affected&lt;br /&gt;    * Set an Expires date appropriately. An earlier Expires date or none removes the cookie sooner, improving the user response time&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Use Cookie-free Domains for Components&lt;/span&gt;&lt;br /&gt;tag: cookie&lt;br /&gt;&lt;br /&gt;When the browser makes a request for a static image and sends cookies together with the request, the server doesn&#39;t have any use for those cookies. So they only create network traffic for no good reason. You should make sure static components are requested with cookie-free requests. Create a subdomain and host all your static components there.&lt;br /&gt;&lt;br /&gt;If your domain is www.example.org, you can host your static components on static.example.org. However, if you&#39;ve already set cookies on the top-level domain example.org as opposed to www.example.org, then all the requests to static.example.org will include those cookies. In this case, you can buy a whole new domain, host your static components there, and keep this domain cookie-free. Yahoo! uses yimg.com, YouTube uses ytimg.com, Amazon uses images-amazon.com and so on.&lt;br /&gt;&lt;br /&gt;Another benefit of hosting static components on a cookie-free domain is that some proxies might refuse to cache the components that are requested with cookies. On a related note, if you wonder if you should use example.org or www.example.org for your home page, consider the cookie impact. Omitting www leaves you no choice but to write cookies to *.example.org, so for performance reasons it&#39;s best to use the www subdomain and write the cookies to that subdomain.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Minimize DOM Access&lt;/span&gt;&lt;br /&gt;tag: javascript&lt;br /&gt;&lt;br /&gt;Accessing DOM elements with JavaScript is slow so in order to have a more responsive page, you should:&lt;br /&gt;&lt;br /&gt;    * Cache references to accessed elements&lt;br /&gt;    * Update nodes &quot;offline&quot; and then add them to the tree&lt;br /&gt;    * Avoid fixing layout with JavaScript&lt;br /&gt;&lt;br /&gt;For more information check the YUI theatre&#39;s &quot;High Performance Ajax Applications&quot; by Julien Lecomte.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Develop Smart Event Handlers&lt;/span&gt;&lt;br /&gt;tag: javascript&lt;br /&gt;&lt;br /&gt;Sometimes pages feel less responsive because of too many event handlers attached to different elements of the DOM tree which are then executed too often. That&#39;s why using event delegation is a good approach. If you have 10 buttons inside a div, attach only one event handler to the div wrapper, instead of one handler for each button. Events bubble up so you&#39;ll be able to catch the event and figure out which button it originated from.&lt;br /&gt;&lt;br /&gt;You also don&#39;t need to wait for the onload event in order to start doing something with the DOM tree. Often all you need is the element you want to access to be available in the tree. You don&#39;t have to wait for all images to be downloaded. DOMContentLoaded is the event you might consider using instead of onload, but until it&#39;s available in all browsers, you can use the YUI Event utility, which has an onAvailable method.&lt;br /&gt;&lt;br /&gt;For more information check the YUI theatre&#39;s &quot;High Performance Ajax Applications&quot; by Julien Lecomte.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Choose &amp;lt;link&amp;gt; over @import&lt;/span&gt;&lt;br /&gt;tag: css&lt;br /&gt;&lt;br /&gt;One of the previous best practices states that CSS should be at the top in order to allow for progressive rendering.&lt;br /&gt;&lt;br /&gt;In IE @import behaves the same as using &amp;lt;link&amp;gt; at the bottom of the page, so it&#39;s best not to use it.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Avoid Filters&lt;/span&gt;&lt;br /&gt;tag: css&lt;br /&gt;&lt;br /&gt;The IE-proprietary AlphaImageLoader filter aims to fix a problem with semi-transparent true color PNGs in IE versions &lt; 7. The problem with this filter is that it blocks rendering and freezes the browser while the image is being downloaded. It also increases memory consumption and is applied per element, not per image, so the problem is multiplied.&lt;br /&gt;&lt;br /&gt;The best approach is to avoid AlphaImageLoader completely and use gracefully degrading PNG8 instead, which are fine in IE. If you absolutely need AlphaImageLoader, use the underscore hack _filter as to not penalize your IE7+ users.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Optimize Images&lt;/span&gt;&lt;br /&gt;tag: images&lt;br /&gt;&lt;br /&gt;After a designer is done with creating the images for your web page, there are still some things you can try before you FTP those images to your web server.&lt;br /&gt;&lt;br /&gt;    * You can check the GIFs and see if they are using a palette size corresponding to the number of colors in the image. Using imagemagick it&#39;s easy to check using&lt;br /&gt;      identify -verbose image.gif&lt;br /&gt;      When you see an image useing 4 colors and a 256 color &quot;slots&quot; in the palette, there is room for improvement.&lt;br /&gt;    * Try converting GIFs to PNGs and see if there is a saving. More often than not, there is. Developers often hesitate to use PNGs due to the limited support in browsers, but this is now a thing of the past. The only real problem is alpha-transparency in true color PNGs, but then again, GIFs are not true color and don&#39;t support variable transparency either. So anything a GIF can do, a palette PNG (PNG8) can do too (except for animations). This simple imagemagick command results in totally safe-to-use PNGs:&lt;br /&gt;      convert image.gif image.png&lt;br /&gt;      &quot;All we are saying is: Give PiNG a Chance!&quot;&lt;br /&gt;    * Run pngcrush (or any other PNG optimizer tool) on all your PNGs. Example:&lt;br /&gt;      pngcrush image.png -rem alla -reduce -brute result.png&lt;br /&gt;    * Run jpegtran on all your JPEGs. This tool does lossless JPEG operations such as rotation and can also be used to optimize and remove comments and other useless information (such as EXIF information) from your images.&lt;br /&gt;      jpegtran -copy none -optimize -perfect src.jpg dest.jpg&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Optimize CSS Sprites&lt;/span&gt;&lt;br /&gt;tag: images&lt;br /&gt;&lt;br /&gt;    * Arranging the images in the sprite horizontally as opposed to vertically usually results in a smaller file size.&lt;br /&gt;    * Combining similar colors in a sprite helps you keep the color count low, ideally under 256 colors so to fit in a PNG8.&lt;br /&gt;    * &quot;Be mobile-friendly&quot; and don&#39;t leave big gaps between the images in a sprite. This doesn&#39;t affect the file size as much but requires less memory for the user agent to decompress the image into a pixel map. 100x100 image is 10 thousand pixels, where 1000x1000 is 1 million pixels&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Don&#39;t Scale Images in HTML&lt;/span&gt;&lt;br /&gt;tag: images&lt;br /&gt;&lt;br /&gt;Don&#39;t use a bigger image than you need just because you can set the width and height in HTML. If you need&lt;br /&gt;&lt;img width=&quot;100&quot; height=&quot;100&quot; src=&quot;mycat.jpg&quot; alt=&quot;My Cat&quot; /&gt;&lt;br /&gt;then your image (mycat.jpg) should be 100x100px rather than a scaled down 500x500px image.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Make favicon.ico Small and Cacheable&lt;/span&gt;&lt;br /&gt;tag: images&lt;br /&gt;&lt;br /&gt;The favicon.ico is an image that stays in the root of your server. It&#39;s a necessary evil because even if you don&#39;t care about it the browser will still request it, so it&#39;s better not to respond with a 404 Not Found. Also since it&#39;s on the same server, cookies are sent every time it&#39;s requested. This image also interferes with the download sequence, for example in IE when you request extra components in the onload, the favicon will be downloaded before these extra components.&lt;br /&gt;&lt;br /&gt;So to mitigate the drawbacks of having a favicon.ico make sure:&lt;br /&gt;&lt;br /&gt;    * It&#39;s small, preferably under 1K.&lt;br /&gt;    * Set Expires header with what you feel comfortable (since you cannot rename it if you decide to change it). You can probably safely set the Expires header a few months in the future. You can check the last modified date of your current favicon.ico to make an informed decision.&lt;br /&gt;&lt;br /&gt;Imagemagick can help you create small favicons&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Keep Components under 25K&lt;/span&gt;&lt;br /&gt;tag: mobile&lt;br /&gt;&lt;br /&gt;This restriction is related to the fact that iPhone won&#39;t cache components bigger than 25K. Note that this is the uncompressed size. This is where minification is important because gzip alone may not be sufficient.&lt;br /&gt;&lt;br /&gt;For more information check &quot;Performance Research, Part 5: iPhone Cacheability - Making it Stick&quot; by Wayne Shea and Tenni Theurer.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Pack Components into a Multipart Document&lt;/span&gt;&lt;br /&gt;tag: mobile&lt;br /&gt;&lt;br /&gt;Packing components into a multipart document is like an email with attachments, it helps you fetch several components with one HTTP request (remember: HTTP requests are expensive). When you use this technique, first check if the user agent supports it (iPhone does not).&lt;br /&gt;&lt;br /&gt;Ref: &lt;a href=&quot;http://developer.yahoo.com/performance/rules.html&quot;&gt;Yahoo! YDN&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/4851625222523150343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/best-practices-for-speeding-up-your-web.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4851625222523150343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/4851625222523150343'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/best-practices-for-speeding-up-your-web.html' title='Best Practices for Speeding Up Your Web Site - Yahoo! DN'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-1895717136874958706</id><published>2009-01-04T22:39:00.004+05:30</published><updated>2009-02-01T19:46:08.458+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="debugging"/><category scheme="http://www.blogger.com/atom/ns#" term="performance"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><title type='text'>40 Tips for optimizing your php code</title><content type='html'>1. If a method can be static, declare it static. Speed improvement is by a factor of 4.&lt;br /&gt;&lt;br /&gt;   2. echo is faster than print.&lt;br /&gt;&lt;br /&gt;   3. Use echo&#39;s multiple parameters instead of string concatenation.&lt;br /&gt;&lt;br /&gt;   4. Set the maxvalue for your for-loops before and not in the loop.&lt;br /&gt;&lt;br /&gt;   5. Unset your variables to free memory, especially large arrays.&lt;br /&gt;&lt;br /&gt;   6. Avoid magic like __get, __set, __autoload&lt;br /&gt;&lt;br /&gt;   7. require_once() is expensive&lt;br /&gt;&lt;br /&gt;   8. Use full paths in includes and requires, less time spent on resolving the OS paths.&lt;br /&gt;&lt;br /&gt;   9. If you need to find out the time when the script started executing, $_SERVER[’REQUEST_TIME’] is preferred to time()&lt;br /&gt;&lt;br /&gt;  10. See if you can use strncasecmp, strpbrk and stripos instead of regex&lt;br /&gt;&lt;br /&gt;  11. str_replace is faster than preg_replace, but strtr is faster than str_replace by a factor of 4&lt;br /&gt;&lt;br /&gt;  12. If the function, such as string replacement function, accepts both arrays and single characters as arguments, and if your argument list is not too long, consider writing a few redundant replacement statements, passing one character at a time, instead of one line of code that accepts arrays as search and replace arguments.&lt;br /&gt;&lt;br /&gt;  13. It&#39;s better to use switch statements than multi if, else if, statements.&lt;br /&gt;&lt;br /&gt;  14. Error suppression with @ is very slow.&lt;br /&gt;&lt;br /&gt;  15. Turn on apache&#39;s mod_deflate&lt;br /&gt;&lt;br /&gt;  16. Close your database connections when you&#39;re done with them&lt;br /&gt;&lt;br /&gt;  17. $row[’id’] is 7 times faster than $row[id]&lt;br /&gt;&lt;br /&gt;  18. Error messages are expensive&lt;br /&gt;&lt;br /&gt;  19. Do not use functions inside of for loop, such as for ($x=0; $x &lt; count($array); $x) The count() function gets called each time.&lt;br /&gt;&lt;br /&gt;  20. Incrementing a local variable in a method is the fastest. Nearly the same as calling a local variable in a function.&lt;br /&gt;&lt;br /&gt;  21. Incrementing a global variable is 2 times slow than a local var.&lt;br /&gt;&lt;br /&gt;  22. Incrementing an object property (eg. $this-&gt;prop++) is 3 times slower than a local variable.&lt;br /&gt;&lt;br /&gt;  23. Incrementing an undefined local variable is 9-10 times slower than a pre-initialized one.&lt;br /&gt;&lt;br /&gt;  24. Just declaring a global variable without using it in a function also slows things down (by about the same amount as incrementing a local var). PHP probably does a check to see if the global exists.&lt;br /&gt;&lt;br /&gt;  25. Method invocation appears to be independent of the number of methods defined in the class because I added 10 more methods to the test class (before and after the test method) with no change in performance.&lt;br /&gt;&lt;br /&gt;  26. Methods in derived classes run faster than ones defined in the base class.&lt;br /&gt;&lt;br /&gt;  27. A function call with one parameter and an empty function body takes about the same time as doing 7-8 $localvar++ operations. A similar method call is of course about 15 $localvar++ operations.&lt;br /&gt;&lt;br /&gt;  28. Surrounding your string by &#39; instead of &quot; will make things interpret a little faster since php looks for variables inside &quot;...&quot; but not inside &#39;...&#39;. Of course you can only do this when you don&#39;t need to have variables in the string.&lt;br /&gt;&lt;br /&gt;  29. When echoing strings it&#39;s faster to separate them by comma instead of dot. Note: This only works with echo, which is a function that can take several strings as arguments.&lt;br /&gt;&lt;br /&gt;  30. A PHP script will be served at least 2-10 times slower than a static HTML page by Apache. Try to use more static HTML pages and fewer scripts.&lt;br /&gt;&lt;br /&gt;  31. Your PHP scripts are recompiled every time unless the scripts are cached. Install a PHP caching product to typically increase performance by 25-100% by removing compile times.&lt;br /&gt;&lt;br /&gt;  32. Cache as much as possible. Use memcached - memcached is a high-performance memory object caching system intended to speed up dynamic web applications by alleviating database load. OP code caches are useful so that your script does not have to be compiled on every request&lt;br /&gt;&lt;br /&gt;  33. When working with strings and you need to check that the string is either of a certain length you&#39;d understandably would want to use the strlen() function. This function is pretty quick since it&#39;s operation does not perform any calculation but merely return the already known length of a string available in the zval structure (internal C struct used to store variables in PHP). However because strlen() is a function it is still somewhat slow because the function call requires several operations such as lowercase &amp; hashtable lookup followed by the execution of said function. In some instance you can improve the speed of your code by using an isset() trick.&lt;br /&gt;&lt;br /&gt;      Ex.&lt;br /&gt;      if (strlen($foo) &lt; 5) { echo &quot;Foo is too short&quot;; }&lt;br /&gt;      vs.&lt;br /&gt;      if (!isset($foo{5})) { echo &quot;Foo is too short&quot;; }&lt;br /&gt;&lt;br /&gt;      Calling isset() happens to be faster then strlen() because unlike strlen(), isset() is a language construct and not a function meaning that it&#39;s execution does not require function lookups and lowercase. This means you have virtually no overhead on top of the actual code that determines the string&#39;s length.&lt;br /&gt;&lt;br /&gt;  34. When incrementing or decrementing the value of the variable $i++ happens to be a tad slower then ++$i. This is something PHP specific and does not apply to other languages, so don&#39;t go modifying your C or Java code thinking it&#39;ll suddenly become faster, it won&#39;t. ++$i happens to be faster in PHP because instead of 4 opcodes used for $i++ you only need 3. Post incrementation actually causes in the creation of a temporary var that is then incremented. While pre-incrementation increases the original value directly. This is one of the optimization that opcode optimized like Zend&#39;s PHP optimizer. It is a still a good idea to keep in mind since not all opcode optimizers perform this optimization and there are plenty of ISPs and servers running without an opcode optimizer.&lt;br /&gt;&lt;br /&gt;  35. Not everything has to be OOP, often it is too much overhead, each method and object call consumes a lot of memory.&lt;br /&gt;&lt;br /&gt;  36. Do not implement every data structure as a class, arrays are useful, too&lt;br /&gt;&lt;br /&gt;  37. Don&#39;t split methods too much, think, which code you will really re-use&lt;br /&gt;&lt;br /&gt;  38. You can always split the code of a method later, when needed&lt;br /&gt;&lt;br /&gt;  39. Make use of the countless predefined functions&lt;br /&gt;&lt;br /&gt;  40. If you have very time consuming functions in your code, consider writing them as C extensions&lt;br /&gt;&lt;br /&gt;  41. Profile your code. A profiler shows you, which parts of your code consumes how many time. The Xdebug debugger already contains a profiler. Profiling shows you the bottlenecks in overview&lt;br /&gt;&lt;br /&gt;  42. mod_gzip which is available as an Apache module compresses your data on the fly and can reduce the data to transfer up to 80%&lt;br /&gt;&lt;br /&gt;  43. &lt;a href=&quot;http://phplens.com/lens/php-book/optimizing-debugging-php.php&quot;&gt;Excellent Article&lt;/a&gt; about optimizing php by John Lim&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/1895717136874958706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2009/01/40-tips-for-optimizing-your-php-code.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1895717136874958706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1895717136874958706'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2009/01/40-tips-for-optimizing-your-php-code.html' title='40 Tips for optimizing your php code'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-7543866333626038032</id><published>2008-06-02T08:57:00.009+05:30</published><updated>2009-02-01T19:43:19.450+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="browser"/><category scheme="http://www.blogger.com/atom/ns#" term="debugging"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>Debugbar - firebug for IE, IETester, Companion.JS - Javascript debugger for IE</title><content type='html'>Lots of web developers love Firebug in FF, but it&#39;s hard to debug anything in IE or No proper debugger tool is there for IE. Today I came across a debugger tool for IE - &lt;span style=&quot;font-weight:bold;&quot;&gt;Debugbar&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It&#39;s an Internet Explorer plug-in that brings you new powerful features.&lt;br /&gt;- &lt;span style=&quot;font-style:italic;&quot;&gt;DOM Inspector&lt;/span&gt;: View DOM Tree and modify tags attributes and css attributes on the fly to test your page&lt;br /&gt;- &lt;span style=&quot;font-style:italic;&quot;&gt;HTTP Inspector&lt;/span&gt;: View HTTP/S request to check cookies, GET and POST parameters, view server info&lt;br /&gt;- &lt;span style=&quot;font-style:italic;&quot;&gt;Javascript Inspector and Javascript Console&lt;/span&gt;: View javascript functions for easier debugging, see Javascript and AJAX code&lt;br /&gt;- &lt;span style=&quot;font-style:italic;&quot;&gt;HTML Validator&lt;/span&gt;: Validate HTML code to correct and optimize your code and html size of your page&lt;br /&gt;- &lt;span style=&quot;font-style:italic;&quot;&gt;And many more features&lt;/span&gt;: See page cookies, get pixel color on a page, make a page screenshot...&lt;br /&gt;&lt;br /&gt;In DebugBar 5.0.2 BETA you will find...&lt;br /&gt;- Greatly improved DOM tab : for each element, get the applied styles, computed style, layout and attributes&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_68Bd6pIvaVM/SENrOz_MypI/AAAAAAAAA9U/SjbH4rUv6sw/s1600-h/v5b1.png&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/_68Bd6pIvaVM/SENrOz_MypI/AAAAAAAAA9U/SjbH4rUv6sw/s400/v5b1.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5207123496388053650&quot; /&gt;&lt;/a&gt;&lt;br /&gt;- Fully unicode, support for international characters&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_68Bd6pIvaVM/SENrPTl2iTI/AAAAAAAAA9c/-amqK9pnbVA/s1600-h/dbb-unicode.png&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/_68Bd6pIvaVM/SENrPTl2iTI/AAAAAAAAA9c/-amqK9pnbVA/s400/dbb-unicode.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5207123504871672114&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.debugbar.com/softwaredata/install-debugbar-v5.0.2.exe&quot;&gt;Download Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;Another good tool for IE is &lt;span style=&quot;font-weight:bold;&quot;&gt;IETester&lt;/span&gt;&lt;br /&gt;IETester is a free web browser that allows you to have the rendering and javascript engines of IE8 beta 1, IE7 IE 6 and IE5.5 on Vista and XP, as well as the installed IE in the same process.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_68Bd6pIvaVM/SENsVFrvgDI/AAAAAAAAA9k/Pax2RDTXd6Q/s1600-h/ietester-0.2.png&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/_68Bd6pIvaVM/SENsVFrvgDI/AAAAAAAAA9k/Pax2RDTXd6Q/s400/ietester-0.2.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5207124703729123378&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.my-debugbar.com/ietester/install-ietester-v0.2.2.exe&quot;&gt;Download Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Companion.JS&lt;/span&gt; (pronounced Companion dot JS or CJS) is a Javascript debugger for IE.&lt;br /&gt;- Detailled javascript error reporting (call stack and real file name where the error occured).&lt;br /&gt;- &quot;Firebug&quot;-like Console API feature.&lt;br /&gt;- Javascript console feature useful to inspect javascript objects at runtime.&lt;br /&gt;- A toolbar icon to open the Companion.JS panel.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://2.bp.blogspot.com/_68Bd6pIvaVM/SENwgAOE6lI/AAAAAAAAA9s/1t9jpFjOe7Y/s1600-h/introducing-cjs.png&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://2.bp.blogspot.com/_68Bd6pIvaVM/SENwgAOE6lI/AAAAAAAAA9s/1t9jpFjOe7Y/s400/introducing-cjs.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5207129289287592530&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.my-debugbar.com/wiki/uploads/CompanionJS/install.exe&quot;&gt;Download Here&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/7543866333626038032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/06/debugbar-firebug-for-ie-ietester.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7543866333626038032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7543866333626038032'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/06/debugbar-firebug-for-ie-ietester.html' title='Debugbar - firebug for IE, IETester, Companion.JS - Javascript debugger for IE'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_68Bd6pIvaVM/SENrOz_MypI/AAAAAAAAA9U/SjbH4rUv6sw/s72-c/v5b1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-402247128048673666</id><published>2008-06-01T14:48:00.011+05:30</published><updated>2008-12-11T03:26:57.486+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="google"/><category scheme="http://www.blogger.com/atom/ns#" term="microsoft"/><category scheme="http://www.blogger.com/atom/ns#" term="startup"/><category scheme="http://www.blogger.com/atom/ns#" term="web 2.0"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Startup City Bangalore - Summary of various talks</title><content type='html'>&lt;a href=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/SEJwnSia7eI/AAAAAAAAA8A/zflKSBDjT2Y/s1600-h/IMG_4749.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/SEJwnSia7eI/AAAAAAAAA8A/zflKSBDjT2Y/s400/IMG_4749.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5206847939487133154&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Last Saturday (24th May), I attended &lt;strong&gt;the startup city &lt;/strong&gt;at NIMHANS convention center, Bangalore. The event was organized by The Smart Techie Magazine &amp; sponsored by Sun, Amazon, Microsoft, Yahoo and a host of other companies. The idea was to promote the start up culture, share experiences, network with VCs and see cool startups in Bangalore who were demoing their products.&lt;br /&gt;&lt;a href=&quot;http://www.thesmarttechie.com/startupcity/Exhibitors.php&quot;&gt;http://www.thesmarttechie.com/startupcity/Exhibitors.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I have summarized some of the points below.&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;The first talk was by Ashish Gupta from Helion Venture Capital firm. He is a co-founder of Helion &amp; has invested in over 35 companies in the U.S. and in India. &lt;br /&gt;&lt;br /&gt;He talked about how to start a startup, the various phases that a startup goes through.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Summary of his talk:-&lt;/strong&gt;&lt;br /&gt;* Startup Risks&lt;br /&gt;- You have to work hard to deliver what you have committed&lt;br /&gt;- What do you want? &lt;br /&gt;(1) Talent from brand? OR&lt;br /&gt;(2) Expertise required for the work need to be done?&lt;br /&gt;&lt;br /&gt;* Remember - money, people &amp; information can move at any time.&lt;br /&gt;&lt;br /&gt;* Growth of startup is like growth of a child. &lt;br /&gt;- In first 6 months, you need to learn lots of things. &lt;br /&gt;- Next 12 months are execution of what you have planned. &lt;br /&gt;- In next 2 years, you will be mature enough to play on ground.&lt;br /&gt;&lt;br /&gt;* Behavior change&lt;br /&gt;- Change expense pattern&lt;br /&gt;- Next level CEO&lt;br /&gt;- Need to change process&lt;br /&gt;- Need to introduce new technology&lt;br /&gt;- Need to change business or pricing model&lt;br /&gt;&lt;br /&gt;* ASP business model &lt;br /&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Application_service_provider&quot;&gt;http://en.wikipedia.org/wiki/Application_service_provider&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;* Think&lt;br /&gt;- What company would need a year from today?&lt;br /&gt;- Measure stuffs&lt;br /&gt;&lt;br /&gt;* Rules of thumb&lt;br /&gt;- Focus on the customer or issue.&lt;br /&gt;e.g. If a glass is dropped by someone, then don&#39;t waste your time to figure out, who broke the glass, what&#39;s the reason behind it. The key task here is: &lt;strong&gt;How fast you can clear the floor?&lt;/strong&gt; Then you can check how to avoid this condition in future?&lt;br /&gt;- Focus on continuous improvement&lt;br /&gt;- Intellectual honesty&lt;br /&gt;- Results matter - only for measuring&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;The second talk was by some executive of Sun about the startup essentials program. Basically, the talk was for marketing of their program. The Sun Startup Essentials program is designed specifically to help startups get off the ground rapidly and at lower cost. Find out more @ &lt;a href=&quot;http://in.sun.com/startup&quot;&gt;http://in.sun.com/startup&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;Then there was a panel discussion on Consumers and Business Marketing in High Technology. The panel consisted of members from Nokia, Microsoft, Amazon and IIMB. The talk was mentored by Dr. Y.L.R. Moorthi, Professor (Marketing), IIM Bangalore.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Summary of this discussion:-&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;- Find the opportunity or idea&lt;br /&gt;- Make it global&lt;br /&gt;- Pre-evaluation of product i.e. whether idea is right or not?&lt;br /&gt;- Acquiring users for your product. Engage / Retain the users&lt;br /&gt;- Stay tuned with current technology &amp; Current market&lt;br /&gt;- How do you go out, reach to people &amp; make money? i.e. How to monetize that idea?&lt;br /&gt;e.g. zara supply chain management - &lt;a href=&quot;http://hbswk.hbs.edu/archive/4652.html&quot;&gt;http://hbswk.hbs.edu/archive/4652.html&lt;/a&gt;&lt;br /&gt;- If you think like startup, you have an opportunity for marketing. i.e. if you are startup, you can approach other than traditional way for marketing.&lt;br /&gt;e.g. (1) Kinetics&#39;s Dancing Baby Marketing Strategy (2) Cello&#39;s Hello Marketing Strategy&lt;br /&gt;- Build strong word of mouth&lt;br /&gt;- Create partners / channels&lt;br /&gt;- Check, if product changes, what will happen to brand?&lt;br /&gt;- You are not the only one developing a product in an area. There will be many startups doing the same thing. So implementation is as important as the idea itself. &lt;br /&gt;&lt;br /&gt;- Start with market; don&#39;t start with product (&lt;em&gt;Paul Murphy - Director of innovation, Microsoft India&lt;/em&gt;)&lt;br /&gt;&lt;br /&gt;- Challenges faced by a startup to market its products. &lt;br /&gt;e.g. Nokia is a 160 year old company and still it faces many of the challenges a startup faces. Many of the problems faced by a startup and a big company are same. In a big company, you came upon this brilliant idea for a new product or feature. You will make a prototype; take it to the senior technical people to get it approved. Then you will go to management saying that this has a market value and try to convince them and once approved, get the funds from the higher management to develop the product and finally sell it to the consumers. If at any point in time, it does not work, you are back to square one. In case of a startup, the techie thinks of the product, makes a prototype, goes to a VC and tries to sell the idea. Many VC&#39;s will reject him and may be he will be able to convince a VC finally. Then with the money, he make the product and then sell it. If it does not sell or he hits a failure in-between, he is back to his original position. Hence, the problems are same, just that in the case of the startup, it’s your own money, and in case of the big company, its the company&#39;s money and hence you have security and safety to fall back on. &lt;br /&gt;&lt;br /&gt;In case of Failure:&lt;br /&gt;- What are the factors for failure?&lt;br /&gt;- How is failure rewarded?&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;Fourth talk was by Jinesh Varia from Amazon about &lt;a href=&quot;http://en.wikipedia.org/wiki/Cloud_computing&quot;&gt;cloud computing&lt;/a&gt; and the Amazon EC2 initiative. &lt;a href=&quot;http://aws.amazon.com/ec2&quot;&gt;http://aws.amazon.com/ec2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Summary of his talk:-&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;* Lots of factors are there between an idea and actual product.&lt;br /&gt;- Hardware cost&lt;br /&gt;- S/w cost&lt;br /&gt;- Maintenance&lt;br /&gt;- load balance&lt;br /&gt;- scaling&lt;br /&gt;- Utilization&lt;br /&gt;- Idle m/c&#39;s&lt;br /&gt;- Bandwidth etc.&lt;br /&gt;&lt;br /&gt;* What is changed in last few years?&lt;br /&gt;- Bandwidth is getting abundant &amp; cheap&lt;br /&gt;- Hardware is become ubiquitous&lt;br /&gt;&lt;br /&gt;* Think for an idea &amp; left other things to cloud computing.&lt;br /&gt;&lt;br /&gt;* Scaling problem in startup.i.e. if user base increase your product should be scaled accordingly.&lt;br /&gt;e.g. &lt;br /&gt;(1) &lt;a href=&quot;http://www.animoto.com&quot;&gt;Animoto&lt;/a&gt; who was running on 50 machines and then within 3 days of launching a facebook application, they needed 500 machines. Such sort of scalability could be got only by such cloud initiatives as a startup simply doesn&#39;t have the money to but so much hardware so quickly. &lt;br /&gt;&lt;br /&gt;(2) &lt;a href=&quot;http://www.ooyala.com&quot;&gt;OOYALA&lt;/a&gt; - server less startup&lt;br /&gt;&lt;br /&gt;(3) New your times prorated supercomputing&lt;br /&gt;&lt;a href=&quot;http://open.nytimes.com/2007/11/01/self-service-prorated-super-computing-fun/&quot;&gt;http://open.nytimes.com/2007/11/01/self-service-prorated-super-computing-fun/&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://open.blogs.nytimes.com/tag/hadoop/&quot;&gt;http://open.blogs.nytimes.com/tag/hadoop/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;* Embrace the uncertainty &lt;br /&gt;- Acquire resources on demand&lt;br /&gt;- Release resources when no need&lt;br /&gt;- Use only what you need&lt;br /&gt;&lt;br /&gt;* Growth with demand&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;Fifth talk was by &lt;a href=&quot;http://www.changeindia.in&quot;&gt;R.K. Mishra&lt;/a&gt;. This was probably the most inspiring talk. He started of telling us about his school, college (IIT Kanpur) and then he went to Japan for higher studies and how he started his venture out there. Then he came back to India and started working for a MNC who&#39;s India operations he was heading and after two years he bought out the company. He also started traveljini.com in 1999 which was the first online travel portal in India which he sold to ICICI Ventures. He retired at 40 and started getting involved with public work. His talk was filled with great examples, and positive attitude towards solving many of the problems facing our country.&lt;br /&gt;&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;Second half was a CEO&#39;s conclave. The panel consisted of Sharad Sharma, head of Yahoo India, Kris Gopalakrishnan, CEO of Infosys and heads of Dell India and Intel India. It was an interesting talk which discussed problems facing the Indian startup scene and about scaling a startup.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Summary of this discussion:-&lt;/strong&gt;&lt;br /&gt;* How startup is different from RnD Company?&lt;br /&gt;- Idea should create value&lt;br /&gt;- Team&lt;br /&gt;- Capital&lt;br /&gt;- Execution&lt;br /&gt;&lt;br /&gt;* New markets (India, China etc) &amp; New technologies&lt;br /&gt;&lt;br /&gt;* Keep an eye on customer needs&lt;br /&gt;&lt;br /&gt;* Enhance the experience through co-creation (e.g. Google code platform)&lt;br /&gt;&lt;br /&gt;* SAAS model: &lt;a href=&quot;http://en.wikipedia.org/wiki/Software_as_a_Service&quot;&gt;http://en.wikipedia.org/wiki/Software_as_a_Service&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;* Problems in India (Build your products to resolve these issues)&lt;br /&gt;- Health service&lt;br /&gt;- Energy cost&lt;br /&gt;- Education&lt;br /&gt;- Food&lt;br /&gt;&lt;br /&gt;* Next emerging opportunities in India&lt;br /&gt;- SAAS + mobile&lt;br /&gt;- Solve consumer problem in India&lt;br /&gt;- Information analytics i.e. intelligent mashing&lt;br /&gt;- Make metadata free&lt;br /&gt;&lt;br /&gt;* Imagination + intelligent is no always Innovation&lt;br /&gt;&lt;br /&gt;* Radical change required?&lt;br /&gt;e.g. Are you ready to give up control at the right point in time? i.e. Are you ready to hire a CEO from outside in order to let the company grow ?&lt;br /&gt;&lt;br /&gt;* Opportunity is growing faster in India&lt;br /&gt;&lt;br /&gt;* How to scale revenue?&lt;br /&gt;&lt;br /&gt;* Create new leaders&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/402247128048673666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/06/startup-city-bangalore-summary-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/402247128048673666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/402247128048673666'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/06/startup-city-bangalore-summary-of.html' title='Startup City Bangalore - Summary of various talks'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_68Bd6pIvaVM/SEJwnSia7eI/AAAAAAAAA8A/zflKSBDjT2Y/s72-c/IMG_4749.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-3950051052605804330</id><published>2008-04-18T12:46:00.004+05:30</published><updated>2008-04-18T12:57:21.512+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="kernel"/><category scheme="http://www.blogger.com/atom/ns#" term="linux"/><category scheme="http://www.blogger.com/atom/ns#" term="mount"/><category scheme="http://www.blogger.com/atom/ns#" term="usb"/><title type='text'>How to mount external ntfs USB in RHEL?</title><content type='html'>Follow the steps to mount external ntfs USB in RHEL or in any linux system.&lt;br /&gt;&lt;br /&gt;Get your kernel version: &lt;span style=&quot;font-weight:bold;&quot;&gt;uname -r&lt;/span&gt;&lt;br /&gt;2.6.9-42.ELsmp (For my RHEL)&lt;br /&gt;.................&lt;br /&gt;Install the package downloaded according to your kernel version&lt;br /&gt;&lt;a href=&quot;http://rpmfind.net/linux/sourceforge/l/li/linux-ntfs/&quot;&gt;http://rpmfind.net/linux/sourceforge/l/li/linux-ntfs/&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;rpm -ivh kernel-module-ntfs-2.6.9-42.ELsmp-2.1.20-0.rr.10.0.i686.rpm&lt;/span&gt;&lt;br /&gt;.................&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;/sbin/modprobe ntfs&lt;/span&gt; (as root)&lt;br /&gt;.................&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;cat /proc/filesystems&lt;/span&gt;&lt;br /&gt;.................&lt;br /&gt;Check volume names of your USB Drive.&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;cat /etc/fstab&lt;/span&gt;&lt;br /&gt;..................&lt;br /&gt;Mount external ntfs USB&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;sudo mount /dev/sdb1 /mnt/usb/ -t ntfs -r -o umask=0222&lt;/span&gt;&lt;br /&gt;..................&lt;br /&gt;Unmount external ntfs USB&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;sudo umount /dev/sdb1 /mnt/usb/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You r done!&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/3950051052605804330/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/04/how-to-mount-external-ntfs-usb-in-rhel.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/3950051052605804330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/3950051052605804330'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/04/how-to-mount-external-ntfs-usb-in-rhel.html' title='How to mount external ntfs USB in RHEL?'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-8596522936475581935</id><published>2008-03-10T14:47:00.001+05:30</published><updated>2008-03-10T14:50:52.709+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Mysql"/><title type='text'>Export data to a CSV file using MySQL command prompt</title><content type='html'>&lt;pre&gt;&lt;br /&gt;SELECT tableColumnName1, tableColumnName2 &lt;br /&gt;INTO OUTFILE &#39;/path/to/file/data.csv&#39; &lt;br /&gt;FIELDS TERMINATED BY &#39;,&#39; &lt;br /&gt;ENCLOSED BY &#39;&quot;&#39; &lt;br /&gt;LINES TERMINATED BY &#39;\n&#39; &lt;br /&gt;FROM tableName;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Access Denied&lt;br /&gt;&lt;br /&gt;Even if you have been granted the SELECT privilege, you will still need to be granted the FILE privilege, or else access will be denied. Some architects will only grant this privilege to the root user. Another reason that you might receive an access denied message, is because the directory where you are trying to save the CSV file is not writable.&lt;br /&gt;&lt;br /&gt;In order to prevent a user from accidentally overwriting an important system file (like etc/passwd), you will be unable to save over a file that already exists on the server.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/8596522936475581935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/03/export-data-to-csv-file-using-mysql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8596522936475581935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8596522936475581935'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/03/export-data-to-csv-file-using-mysql.html' title='Export data to a CSV file using MySQL command prompt'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-1558611691989376016</id><published>2008-02-26T13:26:00.003+05:30</published><updated>2008-12-11T03:26:59.695+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="feeds"/><category scheme="http://www.blogger.com/atom/ns#" term="PHP"/><category scheme="http://www.blogger.com/atom/ns#" term="search engine"/><category scheme="http://www.blogger.com/atom/ns#" term="seo"/><category scheme="http://www.blogger.com/atom/ns#" term="web 2.0"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Yahoo! Announces Open Search Platform</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/R8PHJRuxVPI/AAAAAAAAATQ/Qxc20PbrdKA/s1600-h/yelp_before+2.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/R8PHJRuxVPI/AAAAAAAAATQ/Qxc20PbrdKA/s400/yelp_before+2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5171195759343785202&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_68Bd6pIvaVM/R8PG-huxVOI/AAAAAAAAATI/9My_ZZBPYr0/s1600-h/yelp_after+2.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/_68Bd6pIvaVM/R8PG-huxVOI/AAAAAAAAATI/9My_ZZBPYr0/s400/yelp_after+2.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5171195574660191458&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Yahoo will soon be allowing third parties to enhance the Yahoo Search experience. The new platform, codenamed “SearchMonkey” and officially called Open Search Platform, will consist of a set of APIs that allow third parties to modify search results on Yahoo by adding images, structured data and additional deep links.&lt;br /&gt;&lt;br /&gt;The altered results can contain far more information than the current link and a bit of text from the website. For example, Yelp (a user generated local business review site), one of the launch partners, will include a photo, review information and the address and phone number of the business.&lt;br /&gt;&lt;br /&gt;Some modifications will be turned on for users by default; others will only appear for users who’ve chosen to add them. Amit Kumar, the product lead for the Open Search Platform, says that the desired effect is similar to Greasemonkey, a Firefox addon that allows users to see modified versions of websites (thus the codename SearchMonkey).&lt;br /&gt;&lt;br /&gt;Third parties will have an incentive to get users to add their Yahoo search modification, which in turn can drive more traffic to their sites. One thing third parties cannot change, though, are the order of results (see Erick’s post that touches on this issue here). They can simply change the way a result linking to one of their pages appears to the searcher, and add additional rich media and links to structured data.&lt;br /&gt;&lt;br /&gt;When this launches anyone will be able to create their own modifications and promote them - users can add as many as they like.&lt;br /&gt;&lt;br /&gt;Below is a screenshot of a different search, for “hillary clinton.” The New York Times has altered the result to include links to other election news, debate analysis, and added data for current delegate count and total money raised:&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_68Bd6pIvaVM/R8PG0huxVNI/AAAAAAAAATA/AVNJQM2sR4A/s1600-h/yahoosrp.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/_68Bd6pIvaVM/R8PG0huxVNI/AAAAAAAAATA/AVNJQM2sR4A/s400/yahoosrp.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5171195402861499602&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Information provided by: &lt;a href=&quot;http://www.techcrunch.com&quot;&gt;techcrunch&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/1558611691989376016/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/02/yahoo-announces-open-search-platform.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1558611691989376016'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/1558611691989376016'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/02/yahoo-announces-open-search-platform.html' title='Yahoo! Announces Open Search Platform'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_68Bd6pIvaVM/R8PHJRuxVPI/AAAAAAAAATQ/Qxc20PbrdKA/s72-c/yelp_before+2.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-952722352083457962</id><published>2008-01-10T13:36:00.000+05:30</published><updated>2008-12-11T03:27:00.831+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="blog"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><category scheme="http://www.blogger.com/atom/ns#" term="yahoo"/><title type='text'>Yahoo! Media Player (BETA) launched on 8th Jan 2008</title><content type='html'>The Yahoo! Media Player enhances your web site or blog by creating an embedded player for each audio link. All the links can be played with one click, turning the page into a playlist. This is done by adding Yahoo! JavaScript for Media Player to your page.&lt;br /&gt;&lt;br /&gt;# &lt;span style=&quot;font-weight:bold;&quot;&gt;Link to audio&lt;/span&gt;&lt;br /&gt;Insert one or more anchor elements containing the URL of an audio file into your web page. For example:&lt;br /&gt;&amp;lt;a href=&quot;audio01.mp3&quot;&amp;gt;audio01.mp3&amp;lt;/a&amp;gt;&lt;br /&gt;&amp;lt;a href=&quot;audio02.mp3&quot;&amp;gt;audio02.mp3&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;# &lt;span style=&quot;font-weight:bold;&quot;&gt;Embed the Player&lt;/span&gt;&lt;br /&gt;Copy and paste this code into your page:&lt;br /&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;http://mediaplayer.yahoo.com/js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;# &lt;span style=&quot;font-weight:bold;&quot;&gt;Use the player&lt;/span&gt;&lt;br /&gt;The play button will appear next to each of your audio links:&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://3.bp.blogspot.com/_68Bd6pIvaVM/R4XV7tBBi6I/AAAAAAAAARs/kO47d5xhyuM/s1600-h/play.gif&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://3.bp.blogspot.com/_68Bd6pIvaVM/R4XV7tBBi6I/AAAAAAAAARs/kO47d5xhyuM/s400/play.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5153760570268289954&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Press a play button. The Yahoo! Media Player will open:&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/R4XSz9BBi4I/AAAAAAAAARc/DJS7dS-1qUo/s1600-h/player.gif&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;&quot; src=&quot;http://4.bp.blogspot.com/_68Bd6pIvaVM/R4XSz9BBi4I/AAAAAAAAARc/DJS7dS-1qUo/s400/player.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5153757138589420418&quot; /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/952722352083457962/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2008/01/yahoo-media-player-beta-launched-on-8th.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/952722352083457962'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/952722352083457962'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2008/01/yahoo-media-player-beta-launched-on-8th.html' title='Yahoo! Media Player (BETA) launched on 8th Jan 2008'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_68Bd6pIvaVM/R4XV7tBBi6I/AAAAAAAAARs/kO47d5xhyuM/s72-c/play.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-8663221907467297043</id><published>2007-12-21T16:32:00.000+05:30</published><updated>2007-12-21T16:53:50.950+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Perl and Shell"/><title type='text'>Perl - fork() example</title><content type='html'>Here is a small example which demonstrate &lt;span style=&quot;font-weight:bold;&quot;&gt;fork()&lt;/span&gt; implementation in PERL.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;while(1)&lt;br /&gt;{&lt;br /&gt;   my @children;&lt;br /&gt;&lt;br /&gt;   defined (my $pid = fork) or die &quot;Cannot fork: $!\n&quot;;&lt;br /&gt;&lt;br /&gt;   if ($pid)&lt;br /&gt;   {&lt;br /&gt;     # Parent Process...&lt;br /&gt;&lt;br /&gt;     push(@children, $pid);&lt;br /&gt;     wait();&lt;br /&gt;     my $ret = $?;&lt;br /&gt;&lt;br /&gt;     if ($ret)&lt;br /&gt;     {&lt;br /&gt;      warn(&quot;Abnormal child exit: $!\n&quot;);&lt;br /&gt;      $daemon = undef;&lt;br /&gt;      last;&lt;br /&gt;     }&lt;br /&gt;   }&lt;br /&gt;   else&lt;br /&gt;   {&lt;br /&gt;    # Child Process...&lt;br /&gt;    exit(0);&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;   while (scalar(@children))&lt;br /&gt;   {&lt;br /&gt;     wait();&lt;br /&gt;     my $ret = $?;&lt;br /&gt;     shift(@children);&lt;br /&gt;   &lt;br /&gt;     if ($ret)&lt;br /&gt;     {&lt;br /&gt;       warn(&quot;Abnormal child exit: $!\n&quot;);&lt;br /&gt;       $daemon = undef;&lt;br /&gt;     }&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;continue&lt;br /&gt;{&lt;br /&gt;  last unless $daemon;&lt;br /&gt;  sleep(10);    &lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/8663221907467297043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2007/12/perl-fork-example.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8663221907467297043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/8663221907467297043'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2007/12/perl-fork-example.html' title='Perl - fork() example'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6931577571659345586.post-7542070913400999693</id><published>2007-12-21T16:08:00.001+05:30</published><updated>2007-12-21T16:24:30.674+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="HTML"/><category scheme="http://www.blogger.com/atom/ns#" term="JavaScript"/><title type='text'>Ajax cache problem in IE</title><content type='html'>By default IE will cache all Ajax requests. If you make a same Ajax request again without clearing cache, every time you will get same data, instead of fresh data.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;So, what&#39;s the solution?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Solution:&lt;span style=&quot;font-style:italic;&quot;&gt;&lt;/span&gt;&lt;/span&gt; Use either the date and time or a random number in the query string to force IE to reload the relevant document.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;&quot;&gt;Example:&lt;span style=&quot;font-style:italic;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;var QueryString = &quot;request_id=x&quot;;&lt;br /&gt;var DatetimeQueryString = “&amp;datetime=”+new Date().getTime();&lt;br /&gt;var url = “request_url.php?”+QueryString+DatetimeQueryString;&lt;br /&gt;httpRequest.open(”GET”, url, true);&lt;br /&gt;httpRequest.onreadystatechange = update;&lt;br /&gt;httpRequest.send(null);&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-2978441949597451&quot;;
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = &quot;468x60_as&quot;;
google_ad_type = &quot;text&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;FFFFFF&quot;;
google_color_bg = &quot;FFFFFF&quot;;
google_color_link = &quot;0000FF&quot;;
google_color_text = &quot;000000&quot;;
google_color_url = &quot;008000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
  src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://w3guru.blogspot.com/feeds/7542070913400999693/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://w3guru.blogspot.com/2007/12/ajax-cache-problem-in-ie.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7542070913400999693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6931577571659345586/posts/default/7542070913400999693'/><link rel='alternate' type='text/html' href='http://w3guru.blogspot.com/2007/12/ajax-cache-problem-in-ie.html' title='Ajax cache problem in IE'/><author><name>Nilesh Gamit</name><uri>http://www.blogger.com/profile/02757912077532884103</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW3rfM8gqLhE33pn9bPtNJ-Vc4L4OaANqSBSnCaplzJnuBqshAhPYe36n-EBHY2_wP-1qqkH-27qTk819qySyNDjYbCAEXnWR3kRMNjlBFbHhqMLZ3dLwJUxQyB4Tvfl8/s220/nilesh.jpg'/></author><thr:total>1</thr:total></entry></feed>