<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LAMP Web Development Blog</title>
	<atom:link href="http://www.kumarchetan.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kumarchetan.com/blog</link>
	<description>Any thing or everything related to PHP, HTML, XHTML, JavaScript, AJAX, CSS, UI, Browser Compatibility, Apache, MySQL, Linux, Ubuntu and Web Based Software Development</description>
	<lastBuildDate>Sat, 21 Aug 2010 10:44:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Python httplib example</title>
		<link>http://www.kumarchetan.com/blog/2010/08/21/python-httplib-example/</link>
		<comments>http://www.kumarchetan.com/blog/2010/08/21/python-httplib-example/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 10:37:45 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=118</guid>
		<description><![CDATA[This is a very simple example of httplib in Python. I am trying to write a very simple client which can simply ping a URL.
import httplib
while True:
 myURL = raw_input('\nURL Please: \n&#62; ')
 if myURL == '':
 print '\URL Please: \n'
 break
httpconnection = httplib.HTTPConnection(myURL)
httpconnection.request('GET', '/')
res = httpconnection.getresponse()
#I am only interested in 200 OK response, anything [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/08/21/python-httplib-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to test a boolean?</title>
		<link>http://www.kumarchetan.com/blog/2010/07/29/how-to-test-a-boolean/</link>
		<comments>http://www.kumarchetan.com/blog/2010/07/29/how-to-test-a-boolean/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 09:48:07 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=116</guid>
		<description><![CDATA[This is some of the best written code I have ever seen or I will ever see
public boolean isBooleanFalse(boolean value) {
   boolean response = false;
   if (value == true) {
       response = false;
   } else {
       response [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/07/29/how-to-test-a-boolean/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Big Pipe &#8211; Faster Facebook</title>
		<link>http://www.kumarchetan.com/blog/2010/07/20/the-big-pipe-faster-facebook/</link>
		<comments>http://www.kumarchetan.com/blog/2010/07/20/the-big-pipe-faster-facebook/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 19:06:34 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Software Engineering]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=106</guid>
		<description><![CDATA[Facebook is a big time killer. You can harvest farm without owning an inch of land, kill your buddies and still brag about it, save unknown species of zoo animals and poke any girl you know and she wont mind.
But Facebook is a case study for web developers like me. A typical Facebook page, depending [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/07/20/the-big-pipe-faster-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up your web page &#8211; Serve Gzipped content</title>
		<link>http://www.kumarchetan.com/blog/2010/05/17/speed-up-your-web-page-serve-gzipped-content/</link>
		<comments>http://www.kumarchetan.com/blog/2010/05/17/speed-up-your-web-page-serve-gzipped-content/#comments</comments>
		<pubDate>Mon, 17 May 2010 07:07:06 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=91</guid>
		<description><![CDATA[Today most of the browsers accept compressed content. See this. The compression on a Linux box can be achieved using GNU Zip or GZip. Here is a simple .htaccess trick to serve gzipped content to browsers.
&#60;FilesMatch "\.(js&#124;css)$"&#62;
RewriteEngine on
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*)$ %{REQUEST_URI}.gz [L,QSA]
&#60;/FilesMatch&#62;
&#60;FilesMatch "\.(js&#124;css)\?.*$"&#62;
RewriteEngine on
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^([^?]*)\?(.*)$ $1.gz?$2 [L]
&#60;/FilesMatch&#62;
&#60;FilesMatch "\.js\.gz(\?.*)?$"&#62;
AddEncoding [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/05/17/speed-up-your-web-page-serve-gzipped-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write a Facebook App?</title>
		<link>http://www.kumarchetan.com/blog/2010/04/25/how-to-write-a-facebook-app/</link>
		<comments>http://www.kumarchetan.com/blog/2010/04/25/how-to-write-a-facebook-app/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 08:38:16 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=85</guid>
		<description><![CDATA[Writing a Facebook is as easy as signing up for Facebook account. There is just one prerequisite, you must have some sort of web hosting, steps given below use PHP so a web hosting with PHP support is required, and you must know how to upload files. Follow these steps

Sign up for Facebook if you [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/04/25/how-to-write-a-facebook-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello World in CakePHP &#8211; 3 steps</title>
		<link>http://www.kumarchetan.com/blog/2010/04/13/hello-world-in-cakephp-3-steps/</link>
		<comments>http://www.kumarchetan.com/blog/2010/04/13/hello-world-in-cakephp-3-steps/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 18:27:13 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[OOPS]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=71</guid>
		<description><![CDATA[
Download and set up CakePHP in your webroot. Stop reading further if you cant do it or you are not sure how to do it.
Create a file named &#8220;helloworld_controller.php&#8221; in folder &#8220;cakephp/app/controllers/helloworld_controller.php&#8221; and paste following code in the file
&#60;?php
class HelloWorldController extends Controller {
public $name = 'HelloWorld'; //Controller name, we need it.
public $uses=null; //The example doesn't [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/04/13/hello-world-in-cakephp-3-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problem with NULL in MySQL</title>
		<link>http://www.kumarchetan.com/blog/2010/04/01/problem-with-null-in-mysql/</link>
		<comments>http://www.kumarchetan.com/blog/2010/04/01/problem-with-null-in-mysql/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 11:24:38 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=68</guid>
		<description><![CDATA[One fine morning you simply login to MySQL Terminal and&#8230;
kumar@kumar:~$ mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 61
Server version: 5.1.37-1ubuntu5.1 (Ubuntu)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql&#62; select concat('Hello ',NULL,'World!');
+--------------------------------+
&#124; concat('Hello ',NULL,'World!') &#124;
+--------------------------------+
&#124; NULL   [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/04/01/problem-with-null-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to save passwords in TortoiseSVN?</title>
		<link>http://www.kumarchetan.com/blog/2010/03/22/how-to-save-passwords-in-tortoisesvn/</link>
		<comments>http://www.kumarchetan.com/blog/2010/03/22/how-to-save-passwords-in-tortoisesvn/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 06:51:10 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=66</guid>
		<description><![CDATA[Follow these steps
a) Right click on local code repo
b) Go to TortoiseSVN &#62; Settings
c) Go to &#8220;Network&#8221;
d) Browse for SSH Client and use following
&#8220;C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe&#8221; &#8211; Can be found in TortoiseSVN installation folder in c:\Prgram Files
d) Append following replacing username and password with your user name and password
&#8220;-l username -pw password&#8221;
e) Click OK/Apply
That&#8217;s it.  [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/03/22/how-to-save-passwords-in-tortoisesvn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix &#8220;Firebug&#8217;s log limit has been reached.&#8221;</title>
		<link>http://www.kumarchetan.com/blog/2010/02/04/fix-firebugs-log-limit-has-been-reached/</link>
		<comments>http://www.kumarchetan.com/blog/2010/02/04/fix-firebugs-log-limit-has-been-reached/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 14:58:28 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=54</guid>
		<description><![CDATA[You open Firebug and are trying to fix some thing in your way-cool-AJAX app. And in you notice something that says &#8220;Firebug&#8217;s log limit has been reached.&#8221; giving you an option to do some thing with preferences. You go to &#8220;about:config&#8221; and start wondering what to do now? Search for &#8220;extensions.firebug.console.logLimit&#8221; and increase it from [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2010/02/04/fix-firebugs-log-limit-has-been-reached/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 &#8211; Karmic Koala</title>
		<link>http://www.kumarchetan.com/blog/2009/11/02/ubuntu-9-10-karmic-koala/</link>
		<comments>http://www.kumarchetan.com/blog/2009/11/02/ubuntu-9-10-karmic-koala/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 07:36:17 +0000</pubDate>
		<dc:creator>Kumar Chetan Sharma</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Karmic Koala 9.10]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.kumarchetan.com/blog/?p=47</guid>
		<description><![CDATA[This is bit dramatic.
Day one, a conversation between me and Dr. Abhishek on phone
Dr.: So whats this with new release of Ubuntu, the Koala&#8230;have you heard about it, any idea&#8230;?
Me: Yeah, I dont think it will be much different in terms of kernel or any thing related to core, though I do expect changes in [...]]]></description>
		<wfw:commentRss>http://www.kumarchetan.com/blog/2009/11/02/ubuntu-9-10-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
