<?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>DecentMind</title>
	<atom:link href="http://www.decentmind.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.decentmind.com</link>
	<description>Geek With A Decentmind</description>
	<lastBuildDate>Fri, 12 Aug 2011 12:06:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>How TO Install GoDaddy Wild Card SSL Certificate</title>
		<link>http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/</link>
		<comments>http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 11:46:59 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=874</guid>
		<description><![CDATA[This article presumes that you have already downloaded the wild card certificate after generating the private key and csr request. GoDaddy gives you two files: gd_bundle.crt yourdomain.com.crt Step 1. change httpd.conf file to create a virtualhost for https at port &#8230; <a href="http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-install-godaddy-wild-card-ssl-certificate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-install-godaddy-wild-card-ssl-certificate%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=apache,Development,httpd,ssh,SSL,Symfony&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This article presumes that you have already downloaded the wild card certificate after generating the private key and csr request.</p>
<p>GoDaddy gives you two files:</p>
<ol>
<li>gd_bundle.crt</li>
<li>yourdomain.com.crt</li>
</ol>
<h3>Step 1.</h3>
<p>change httpd.conf file to create a virtualhost for https at port 443 as following.</p>
<pre lang="php&gt;">&lt;VirtualHost xxx.xxx.xxx.xxx:443&gt;
DocumentRoot "/home/path/web/root/folder"
ServerName subdomain.yourdomain.com:443
RewriteEngine On

SSLEngine on
SSLCertificateFile /home/path/to/yourdomain.com.crt
SSLCertificateKeyFile /home/path/to/privatekey.key
SSLCertificateChainFile /home/path/to/gd_bundle.crt
#SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
&lt;/VirtualHost&gt;</pre>
<div>As we know above that wild card certificate secures multiple sub domain so use *.yourdomain.com:443, in your case replace * with your sub domain.</div>
<div>To use SSLEngine on you need to enable ssl module in apache. Use following command:</div>
<pre>sudo a2enmod ssl</pre>
<h3>Step 2</h3>
<p>Change .htaccess file as</p>
<pre>RewriteEngine On

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://your.domain.com/$1 [R,L]</pre>
<p>Above code chunk is used to redirect the traffic to https url. Restart your server. And it should work.</p>
<p>While copy pasting the code above please take care special characters (would be better if typed). would integrate a code highlighting plugin soon in my blog. Lazy me.</p>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-install-godaddy-wild-card-ssl-certificate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-install-godaddy-wild-card-ssl-certificate%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=apache,Development,httpd,ssh,SSL,Symfony&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate+-+http://bit.ly/pNXVSe&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;n=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;link=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;body=Link: http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20article%20presumes%20that%20you%20have%20already%20downloaded%20the%20wild%20card%20certificate%20after%20generating%20the%20private%20key%20and%20csr%20request.%0D%0A%0D%0AGoDaddy%20gives%20you%20two%20files%3A%0D%0A%0D%0A%09gd_bundle.crt%0D%0A%09yourdomain.com.crt%0D%0A%0D%0AStep%201.%0D%0Achange%20httpd.conf%20file%20to%20create%20a%20virtualhost%20for%20https%20at%20port%20443%20as%20following.%0D%0A%26l" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;srcUrl=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;srcTitle=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;snippet=This%20article%20presumes%20that%20you%20have%20already%20downloaded%20the%20wild%20card%20certificate%20after%20generating%20the%20private%20key%20and%20csr%20request.%0D%0A%0D%0AGoDaddy%20gives%20you%20two%20files%3A%0D%0A%0D%0A%09gd_bundle.crt%0D%0A%09yourdomain.com.crt%0D%0A%0D%0AStep%201.%0D%0Achange%20httpd.conf%20file%20to%20create%20a%20virtualhost%20for%20https%20at%20port%20443%20as%20following.%0D%0A%26l" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;du=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;cn=This%20article%20presumes%20that%20you%20have%20already%20downloaded%20the%20wild%20card%20certificate%20after%20generating%20the%20private%20key%20and%20csr%20request.%0D%0A%0D%0AGoDaddy%20gives%20you%20two%20files%3A%0D%0A%0D%0A%09gd_bundle.crt%0D%0A%09yourdomain.com.crt%0D%0A%0D%0AStep%201.%0D%0Achange%20httpd.conf%20file%20to%20create%20a%20virtualhost%20for%20https%20at%20port%20443%20as%20following.%0D%0A%26l" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;body=Link: http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20article%20presumes%20that%20you%20have%20already%20downloaded%20the%20wild%20card%20certificate%20after%20generating%20the%20private%20key%20and%20csr%20request.%0D%0A%0D%0AGoDaddy%20gives%20you%20two%20files%3A%0D%0A%0D%0A%09gd_bundle.crt%0D%0A%09yourdomain.com.crt%0D%0A%0D%0AStep%201.%0D%0Achange%20httpd.conf%20file%20to%20create%20a%20virtualhost%20for%20https%20at%20port%20443%20as%20following.%0D%0A%26l" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;t=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/&amp;title=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate&amp;summary=This%20article%20presumes%20that%20you%20have%20already%20downloaded%20the%20wild%20card%20certificate%20after%20generating%20the%20private%20key%20and%20csr%20request.%0D%0A%0D%0AGoDaddy%20gives%20you%20two%20files%3A%0D%0A%0D%0A%09gd_bundle.crt%0D%0A%09yourdomain.com.crt%0D%0A%0D%0AStep%201.%0D%0Achange%20httpd.conf%20file%20to%20create%20a%20virtualhost%20for%20https%20at%20port%20443%20as%20following.%0D%0A%26l&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-install-godaddy-wild-card-ssl-certificate%2F&amp;t=How+TO+Install+GoDaddy+Wild+Card+SSL+Certificate" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/08/how-to-install-godaddy-wild-card-ssl-certificate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>scp command in linux to transfer files from one server to another</title>
		<link>http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/</link>
		<comments>http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 08:19:09 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=866</guid>
		<description><![CDATA[To transfer your files from one server to another use following command set. login to the server to which you have to copy the files(i.e. destination server) scp user1@server1:/full/path/to/source/file . Press enter it ll ask for the source server password.Provide &#8230; <a href="http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fscp-command-in-linux-to-transfer-files-from-one-server-to-another%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fscp-command-in-linux-to-transfer-files-from-one-server-to-another%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=code,developer,linux&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>To transfer your files from one server to another use following command set.</p>
<p>login to the server to which you have to copy the files(i.e. destination server)</p>
<pre>scp user1@server1:/full/path/to/source/file .</pre>
<p>Press enter it ll ask for the source server password.Provide the password and transfer should start right away.</p>
<p>DOT (.) at the end of the command indicates that files/folder will get copied to the present working directory otherwise a path to a destination folder can also be given.</p>
<p>Replace scp with pscp if on windows.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fscp-command-in-linux-to-transfer-files-from-one-server-to-another%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fscp-command-in-linux-to-transfer-files-from-one-server-to-another%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=code,developer,linux&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=scp+command+in+linux+to+transfer+files+from+one+server+to+another+-+http://bit.ly/roQwc4&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;n=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;link=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;body=Link: http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A To%20transfer%20your%20files%20from%20one%20server%20to%20another%20use%20following%20command%20set.%0D%0A%0D%0Alogin%20to%20the%20server%20to%20which%20you%20have%20to%20copy%20the%20files%28i.e.%20destination%20server%29%0D%0Ascp%20user1%40server1%3A%2Ffull%2Fpath%2Fto%2Fsource%2Ffile%20.%0D%0APress%20enter%20it%20ll%20ask%20for%20the%20source%20server%20password.Provide%20the%20password%20and%20transfer%20shou" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;srcUrl=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;srcTitle=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;snippet=To%20transfer%20your%20files%20from%20one%20server%20to%20another%20use%20following%20command%20set.%0D%0A%0D%0Alogin%20to%20the%20server%20to%20which%20you%20have%20to%20copy%20the%20files%28i.e.%20destination%20server%29%0D%0Ascp%20user1%40server1%3A%2Ffull%2Fpath%2Fto%2Fsource%2Ffile%20.%0D%0APress%20enter%20it%20ll%20ask%20for%20the%20source%20server%20password.Provide%20the%20password%20and%20transfer%20shou" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;du=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;cn=To%20transfer%20your%20files%20from%20one%20server%20to%20another%20use%20following%20command%20set.%0D%0A%0D%0Alogin%20to%20the%20server%20to%20which%20you%20have%20to%20copy%20the%20files%28i.e.%20destination%20server%29%0D%0Ascp%20user1%40server1%3A%2Ffull%2Fpath%2Fto%2Fsource%2Ffile%20.%0D%0APress%20enter%20it%20ll%20ask%20for%20the%20source%20server%20password.Provide%20the%20password%20and%20transfer%20shou" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;body=Link: http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A To%20transfer%20your%20files%20from%20one%20server%20to%20another%20use%20following%20command%20set.%0D%0A%0D%0Alogin%20to%20the%20server%20to%20which%20you%20have%20to%20copy%20the%20files%28i.e.%20destination%20server%29%0D%0Ascp%20user1%40server1%3A%2Ffull%2Fpath%2Fto%2Fsource%2Ffile%20.%0D%0APress%20enter%20it%20ll%20ask%20for%20the%20source%20server%20password.Provide%20the%20password%20and%20transfer%20shou" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;t=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/&amp;title=scp+command+in+linux+to+transfer+files+from+one+server+to+another&amp;summary=To%20transfer%20your%20files%20from%20one%20server%20to%20another%20use%20following%20command%20set.%0D%0A%0D%0Alogin%20to%20the%20server%20to%20which%20you%20have%20to%20copy%20the%20files%28i.e.%20destination%20server%29%0D%0Ascp%20user1%40server1%3A%2Ffull%2Fpath%2Fto%2Fsource%2Ffile%20.%0D%0APress%20enter%20it%20ll%20ask%20for%20the%20source%20server%20password.Provide%20the%20password%20and%20transfer%20shou&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fscp-command-in-linux-to-transfer-files-from-one-server-to-another%2F&amp;t=scp+command+in+linux+to+transfer+files+from+one+server+to+another" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/08/scp-command-in-linux-to-transfer-files-from-one-server-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to implement self signed SSL certificate in websites</title>
		<link>http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/</link>
		<comments>http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 12:13:56 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=855</guid>
		<description><![CDATA[Normal web traffic is sent unencrypted over the Internet. That is, anyone with access to the right tools can snoop all of that traffic. Obviously, this can lead to problems.The Secure Socket Layer(SSL) is used to encrypt the data stream &#8230; <a href="http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-implement-self-signed-ssl-certificate-in-websites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-implement-self-signed-ssl-certificate-in-websites%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=encryption,security,SSL&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Normal web traffic is sent unencrypted over the Internet. That is, anyone with access to the right tools can snoop all of that traffic. Obviously, this can lead to problems.The Secure Socket Layer(SSL) is used to encrypt the data stream between the web server and the web client (the browser).</p>
<h2>Step 1: Generate a Private Key</h2>
<p>The first step is to create your RSA Private Key. This key is a 1024 bit RSA key which is encrypted using Triple-DES and stored in a PEM format so that it is readable as ASCII text.</p>
<p><strong>openssl genrsa -des3 -out server.key 1024</strong></p>
<p><strong> </strong></p>
<p><strong> </strong><span style="color: #0000ff;">Generating RSA private key, 1024 bit long modulus<br />
&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;++++++<br />
&#8230;&#8230;..++++++<br />
e is 65537 (0&#215;10001)<br />
Enter PEM pass phrase:<br />
Verifying password &#8211; Enter PEM pass phrase:</span></p>
<h2><span style="color: #000000;">Step 2: Generate a CSR (Certificate Signing Request)</span></h2>
<p>Once the private key is generated a Certificate Signing Request can be generated. The CSR is then used in one of two ways. Ideally, the CSR will be sent to a Certificate Authority, such as Thawte or Verisign who will verify the identity of the requestor and issue a signed certificate. <strong>The second option is to self-sign the CSR, which will be demonstrated in the next section</strong>.</p>
<p>During the generation of the CSR, you will be prompted for several pieces of information. These are the X.509 attributes of the certificate. One of the prompts will be for &#8220;Common Name (e.g., YOUR name)&#8221;. It is important that this field be filled in with the fully qualified domain name of the server to be protected by SSL. The command to generate the CSR is as follows:</p>
<p><strong>openssl req -new -key server.key -out server.csr</strong></p>
<p><strong> </strong></p>
<p><strong> </strong><span style="color: #0000ff;">Country Name (2 letter code) [GB]</span>:<strong>IN</strong><br />
<span style="color: #0000ff;">State or Province Name (full name) [Berkshire]</span>:<strong>Delhi</strong><br />
<span style="color: #0000ff;">Locality Name (eg, city) [Newbury]</span>:<strong> ABC City</strong><br />
<span style="color: #0000ff;">Organization Name (eg, company) [My Company Ltd]</span>:<strong> MyOrg</strong><br />
<span style="color: #0000ff;">Organizational Unit Name (eg, section) []</span>:<strong>Information Technology</strong><br />
<span style="color: #0000ff;">Common Name (eg, your name or your server&#8217;s hostname) []</span>:<strong>decentminddotcom</strong><br />
<span style="color: #0000ff;">Email Address []</span>:<strong>deepak at decentmind dot com</strong><br />
<span style="color: #0000ff;">Please enter the following &#8216;extra&#8217; attributes<br />
to be sent with your certificate request<br />
A challenge password []:<br />
An optional company name []:</span></p>
<h2>Step 3: Remove Passphrase from Key</h2>
<p>One unfortunate side-effect of the pass-phrased private key is <strong>that Apache will ask for the pass-phrase each time the web server is started</strong>.</p>
<p>use the following command to remove the pass-phrase from the key:</p>
<p><strong>cp server.key server.key.org<br />
openssl rsa -in server.key.org -out server.key</strong></p>
<p>The newly created server.key file has no more passphrase in it.</p>
<h2><span style="color: #000000;">Step 4: Generating a Self-Signed Certificate</span></h2>
<p>To generate a temporary certificate which is good for 365 days, issue the following command:</p>
<p><strong>openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</strong><span style="color: #0000ff;"><br />
</span></p>
<h2><span style="color: #000000; line-height: 35px;">Step 5: Installing the Private Key and Certificate</span></h2>
<p>When Apache with mod_ssl is installed, it creates several directories in the Apache config directory. The location of this directory will differ depending on how Apache was compiled.</p>
<p><strong>cp server.crt /usr/local/apache/conf/ssl.crt<br />
cp server.key /usr/local/apache/conf/ssl.key</strong></p>
<h2>Step 6: Configuring SSL Enabled Virtual Hosts</h2>
<p>SSLEngine on<br />
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt<br />
SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key<br />
SetEnvIf User-Agent &#8220;.*MSIE.*&#8221; nokeepalive ssl-unclean-shutdown<br />
CustomLog logs/ssl_request_log \<br />
&#8220;%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \&#8221;%r\&#8221; %b&#8221;</p>
<h2><span style="color: #000000;">Step 7: Restart Apache and Test</span></h2>
<p><span style="color: #000000;">/etc/init.d/httpd stop<br />
/etc/init.d/httpd stop</span></p>
<p><span style="color: #000000;">Now check the url with https://yourdomain.com</span></p>
<p>-deepak</p>
<p>Ref: http://www.akadia.com/services/ssh_test_certificate.html
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-implement-self-signed-ssl-certificate-in-websites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-implement-self-signed-ssl-certificate-in-websites%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=encryption,security,SSL&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+implement+self+signed+SSL+certificate+in+websites+-+http://bit.ly/nEs05Z&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;n=How+to+implement+self+signed+SSL+certificate+in+websites&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+implement+self+signed+SSL+certificate+in+websites&amp;link=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+implement+self+signed+SSL+certificate+in+websites&amp;body=Link: http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Normal%20web%20traffic%20is%20sent%20unencrypted%20over%20the%20Internet.%20That%20is%2C%20anyone%20with%20access%20to%20the%20right%20tools%20can%20snoop%20all%20of%20that%20traffic.%20Obviously%2C%20this%20can%20lead%20to%20problems.The%20Secure%20Socket%20Layer%28SSL%29%20is%20used%20to%20encrypt%20the%20data%20stream%20between%20the%20web%20server%20and%20the%20web%20client%20%28the%20browser%29.%0D%0AStep%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites&amp;srcUrl=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;srcTitle=How+to+implement+self+signed+SSL+certificate+in+websites&amp;snippet=Normal%20web%20traffic%20is%20sent%20unencrypted%20over%20the%20Internet.%20That%20is%2C%20anyone%20with%20access%20to%20the%20right%20tools%20can%20snoop%20all%20of%20that%20traffic.%20Obviously%2C%20this%20can%20lead%20to%20problems.The%20Secure%20Socket%20Layer%28SSL%29%20is%20used%20to%20encrypt%20the%20data%20stream%20between%20the%20web%20server%20and%20the%20web%20client%20%28the%20browser%29.%0D%0AStep%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+implement+self+signed+SSL+certificate+in+websites&amp;du=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;cn=Normal%20web%20traffic%20is%20sent%20unencrypted%20over%20the%20Internet.%20That%20is%2C%20anyone%20with%20access%20to%20the%20right%20tools%20can%20snoop%20all%20of%20that%20traffic.%20Obviously%2C%20this%20can%20lead%20to%20problems.The%20Secure%20Socket%20Layer%28SSL%29%20is%20used%20to%20encrypt%20the%20data%20stream%20between%20the%20web%20server%20and%20the%20web%20client%20%28the%20browser%29.%0D%0AStep%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+implement+self+signed+SSL+certificate+in+websites&amp;body=Link: http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Normal%20web%20traffic%20is%20sent%20unencrypted%20over%20the%20Internet.%20That%20is%2C%20anyone%20with%20access%20to%20the%20right%20tools%20can%20snoop%20all%20of%20that%20traffic.%20Obviously%2C%20this%20can%20lead%20to%20problems.The%20Secure%20Socket%20Layer%28SSL%29%20is%20used%20to%20encrypt%20the%20data%20stream%20between%20the%20web%20server%20and%20the%20web%20client%20%28the%20browser%29.%0D%0AStep%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;t=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/&amp;title=How+to+implement+self+signed+SSL+certificate+in+websites&amp;summary=Normal%20web%20traffic%20is%20sent%20unencrypted%20over%20the%20Internet.%20That%20is%2C%20anyone%20with%20access%20to%20the%20right%20tools%20can%20snoop%20all%20of%20that%20traffic.%20Obviously%2C%20this%20can%20lead%20to%20problems.The%20Secure%20Socket%20Layer%28SSL%29%20is%20used%20to%20encrypt%20the%20data%20stream%20between%20the%20web%20server%20and%20the%20web%20client%20%28the%20browser%29.%0D%0AStep%20&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F08%2Fhow-to-implement-self-signed-ssl-certificate-in-websites%2F&amp;t=How+to+implement+self+signed+SSL+certificate+in+websites" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/08/how-to-implement-self-signed-ssl-certificate-in-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hi</title>
		<link>http://www.decentmind.com/2011/07/hi/</link>
		<comments>http://www.decentmind.com/2011/07/hi/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 10:15:46 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=851</guid>
		<description><![CDATA[Friends I have been away from everything (work, sns, fun etc.) since last three months due to health reasons. I was just lying on my bed and did nothing as I was not able to move. After 3 months I &#8230; <a href="http://www.decentmind.com/2011/07/hi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F07%2Fhi%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F07%2Fhi%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Friends I have been away from everything (work, sns, fun etc.) since last three months due to health reasons. I was just lying on my bed and did nothing as I was not able to move.</p>
<p>After 3 months I get to access internet and it feels awesome. Its still going to take 2-3 months to become normal.</p>
<p>Till then Good bye &#8230;
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F07%2Fhi%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F07%2Fhi%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/07/hi/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/07/hi/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Hi+-+http://bit.ly/nlHNjI&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/07/hi/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/07/hi/&amp;n=Hi&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Hi&amp;link=http://www.decentmind.com/2011/07/hi/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Hi&amp;body=Link: http://www.decentmind.com/2011/07/hi/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Friends%20I%20have%20been%20away%20from%20everything%20%28work%2C%20sns%2C%20fun%20etc.%29%20since%20last%20three%20months%20due%20to%20health%20reasons.%20I%20was%20just%20lying%20on%20my%20bed%20and%20did%20nothing%20as%20I%20was%20not%20able%20to%20move.%0D%0A%0D%0AAfter%203%20months%20I%20get%20to%20access%20internet%20and%20it%20feels%C2%A0awesome.%20Its%20still%20going%20to%20take%202-3%20months%20to%20become%20normal.%0D%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/07/hi/&amp;title=Hi" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi&amp;srcUrl=http://www.decentmind.com/2011/07/hi/&amp;srcTitle=Hi&amp;snippet=Friends%20I%20have%20been%20away%20from%20everything%20%28work%2C%20sns%2C%20fun%20etc.%29%20since%20last%20three%20months%20due%20to%20health%20reasons.%20I%20was%20just%20lying%20on%20my%20bed%20and%20did%20nothing%20as%20I%20was%20not%20able%20to%20move.%0D%0A%0D%0AAfter%203%20months%20I%20get%20to%20access%20internet%20and%20it%20feels%C2%A0awesome.%20Its%20still%20going%20to%20take%202-3%20months%20to%20become%20normal.%0D%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Hi&amp;du=http://www.decentmind.com/2011/07/hi/&amp;cn=Friends%20I%20have%20been%20away%20from%20everything%20%28work%2C%20sns%2C%20fun%20etc.%29%20since%20last%20three%20months%20due%20to%20health%20reasons.%20I%20was%20just%20lying%20on%20my%20bed%20and%20did%20nothing%20as%20I%20was%20not%20able%20to%20move.%0D%0A%0D%0AAfter%203%20months%20I%20get%20to%20access%20internet%20and%20it%20feels%C2%A0awesome.%20Its%20still%20going%20to%20take%202-3%20months%20to%20become%20normal.%0D%0A" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Hi&amp;body=Link: http://www.decentmind.com/2011/07/hi/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Friends%20I%20have%20been%20away%20from%20everything%20%28work%2C%20sns%2C%20fun%20etc.%29%20since%20last%20three%20months%20due%20to%20health%20reasons.%20I%20was%20just%20lying%20on%20my%20bed%20and%20did%20nothing%20as%20I%20was%20not%20able%20to%20move.%0D%0A%0D%0AAfter%203%20months%20I%20get%20to%20access%20internet%20and%20it%20feels%C2%A0awesome.%20Its%20still%20going%20to%20take%202-3%20months%20to%20become%20normal.%0D%0A" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/07/hi/&amp;t=Hi" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/07/hi/&amp;title=Hi&amp;summary=Friends%20I%20have%20been%20away%20from%20everything%20%28work%2C%20sns%2C%20fun%20etc.%29%20since%20last%20three%20months%20due%20to%20health%20reasons.%20I%20was%20just%20lying%20on%20my%20bed%20and%20did%20nothing%20as%20I%20was%20not%20able%20to%20move.%0D%0A%0D%0AAfter%203%20months%20I%20get%20to%20access%20internet%20and%20it%20feels%C2%A0awesome.%20Its%20still%20going%20to%20take%202-3%20months%20to%20become%20normal.%0D%0A&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F07%2Fhi%2F&amp;t=Hi" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/07/hi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I hate you Array()</title>
		<link>http://www.decentmind.com/2011/04/i-hate-you-array/</link>
		<comments>http://www.decentmind.com/2011/04/i-hate-you-array/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 10:58:52 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=839</guid>
		<description><![CDATA[Dear Array(), You are most frequently used data structure in any programming language and so use full for every developer. But somehow I have developed a strong dislike for you. When ever I see you I feel like banging my head &#8230; <a href="http://www.decentmind.com/2011/04/i-hate-you-array/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fi-hate-you-array%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fi-hate-you-array%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Dear Array(),</p>
<p>You are most frequently used data structure in any programming language and so use full for every developer.</p>
<p>But somehow I have developed a strong dislike for you. When ever I see you I feel like banging my head in wall made of rubber, neither the wall breaks nor it hurts but wastes lot of time. But still I use almost every where.</p>
<p>If I were to change anything in programming paradigm I would remove you. Why the hell are you so use full.</p>
<p>I know you wont leave me alone. F**** Y** Mr. Array().</p>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fi-hate-you-array%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fi-hate-you-array%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/04/i-hate-you-array/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=I+hate+you+Array%28%29+-+http://bit.ly/e6W8xD&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/04/i-hate-you-array/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;n=I+hate+you+Array%28%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=I+hate+you+Array%28%29&amp;link=http://www.decentmind.com/2011/04/i-hate-you-array/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=I+hate+you+Array%28%29&amp;body=Link: http://www.decentmind.com/2011/04/i-hate-you-array/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Dear%20Array%28%29%2C%0D%0A%0D%0AYou%20are%20most%20frequently%20used%20data%20structure%20in%20any%20programming%20language%20and%20so%20use%20full%20for%20every%20developer.%0D%0A%0D%0ABut%20somehow%20I%20have%20developed%20a%20strong%20dislike%20for%20you.%20When%20ever%20I%20see%20you%20I%20feel%20like%C2%A0banging%20my%20head%20in%20wall%20made%20of%20rubber%2C%20neither%20the%20wall%20breaks%20nor%20it%20hurts%20but%20wa" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29&amp;srcUrl=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;srcTitle=I+hate+you+Array%28%29&amp;snippet=Dear%20Array%28%29%2C%0D%0A%0D%0AYou%20are%20most%20frequently%20used%20data%20structure%20in%20any%20programming%20language%20and%20so%20use%20full%20for%20every%20developer.%0D%0A%0D%0ABut%20somehow%20I%20have%20developed%20a%20strong%20dislike%20for%20you.%20When%20ever%20I%20see%20you%20I%20feel%20like%C2%A0banging%20my%20head%20in%20wall%20made%20of%20rubber%2C%20neither%20the%20wall%20breaks%20nor%20it%20hurts%20but%20wa" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=I+hate+you+Array%28%29&amp;du=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;cn=Dear%20Array%28%29%2C%0D%0A%0D%0AYou%20are%20most%20frequently%20used%20data%20structure%20in%20any%20programming%20language%20and%20so%20use%20full%20for%20every%20developer.%0D%0A%0D%0ABut%20somehow%20I%20have%20developed%20a%20strong%20dislike%20for%20you.%20When%20ever%20I%20see%20you%20I%20feel%20like%C2%A0banging%20my%20head%20in%20wall%20made%20of%20rubber%2C%20neither%20the%20wall%20breaks%20nor%20it%20hurts%20but%20wa" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=I+hate+you+Array%28%29&amp;body=Link: http://www.decentmind.com/2011/04/i-hate-you-array/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Dear%20Array%28%29%2C%0D%0A%0D%0AYou%20are%20most%20frequently%20used%20data%20structure%20in%20any%20programming%20language%20and%20so%20use%20full%20for%20every%20developer.%0D%0A%0D%0ABut%20somehow%20I%20have%20developed%20a%20strong%20dislike%20for%20you.%20When%20ever%20I%20see%20you%20I%20feel%20like%C2%A0banging%20my%20head%20in%20wall%20made%20of%20rubber%2C%20neither%20the%20wall%20breaks%20nor%20it%20hurts%20but%20wa" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;t=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/04/i-hate-you-array/&amp;title=I+hate+you+Array%28%29&amp;summary=Dear%20Array%28%29%2C%0D%0A%0D%0AYou%20are%20most%20frequently%20used%20data%20structure%20in%20any%20programming%20language%20and%20so%20use%20full%20for%20every%20developer.%0D%0A%0D%0ABut%20somehow%20I%20have%20developed%20a%20strong%20dislike%20for%20you.%20When%20ever%20I%20see%20you%20I%20feel%20like%C2%A0banging%20my%20head%20in%20wall%20made%20of%20rubber%2C%20neither%20the%20wall%20breaks%20nor%20it%20hurts%20but%20wa&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fi-hate-you-array%2F&amp;t=I+hate+you+Array%28%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/04/i-hate-you-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations to Indian Cricket Team</title>
		<link>http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/</link>
		<comments>http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 04:02:30 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Gyan By Me]]></category>
		<category><![CDATA[Sports]]></category>
		<category><![CDATA[cricket]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=831</guid>
		<description><![CDATA[April 02, 2011 India wins the cricket world cup. What a day it was, I was watching cricket on TV with my friends. I enjoyed the moment a lot, its an unforgettable feeling. India over comes all the odds &#38; criticism &#8230; <a href="http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fcongratulations-to-indian-cricket-team%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fcongratulations-to-indian-cricket-team%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=cricket,India,sports&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>April 02, 2011 India wins the cricket world cup. What a day it was, I was watching cricket on TV with my friends. I enjoyed the moment a lot, its an unforgettable feeling.</p>
<p>India over comes all the odds &amp; criticism and has shown world that they are true world champions.</p>
<p>Once again my heartly congratulation to Indian Cricket Team and the support staff.</p>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fcongratulations-to-indian-cricket-team%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fcongratulations-to-indian-cricket-team%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=cricket,India,sports&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Congratulations+to+Indian+Cricket+Team+-+http://bit.ly/hIucRG&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;n=Congratulations+to+Indian+Cricket+Team&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Congratulations+to+Indian+Cricket+Team&amp;link=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Congratulations+to+Indian+Cricket+Team&amp;body=Link: http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A April%2002%2C%202011%20India%20wins%20the%20cricket%20world%20cup.%20What%20a%20day%20it%20was%2C%20I%20was%20watching%20cricket%20on%20TV%20with%20my%20friends.%20I%20enjoyed%20the%20moment%20a%20lot%2C%20its%20an%C2%A0unforgettable%20feeling.%0D%0A%0D%0AIndia%20over%20comes%20all%20the%20odds%20%26amp%3B%20criticism%20and%20has%20shown%20world%20that%20they%20are%20true%20world%20champions.%0D%0A%0D%0AOnce%20again%20my%20heart" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team&amp;srcUrl=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;srcTitle=Congratulations+to+Indian+Cricket+Team&amp;snippet=April%2002%2C%202011%20India%20wins%20the%20cricket%20world%20cup.%20What%20a%20day%20it%20was%2C%20I%20was%20watching%20cricket%20on%20TV%20with%20my%20friends.%20I%20enjoyed%20the%20moment%20a%20lot%2C%20its%20an%C2%A0unforgettable%20feeling.%0D%0A%0D%0AIndia%20over%20comes%20all%20the%20odds%20%26amp%3B%20criticism%20and%20has%20shown%20world%20that%20they%20are%20true%20world%20champions.%0D%0A%0D%0AOnce%20again%20my%20heart" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Congratulations+to+Indian+Cricket+Team&amp;du=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;cn=April%2002%2C%202011%20India%20wins%20the%20cricket%20world%20cup.%20What%20a%20day%20it%20was%2C%20I%20was%20watching%20cricket%20on%20TV%20with%20my%20friends.%20I%20enjoyed%20the%20moment%20a%20lot%2C%20its%20an%C2%A0unforgettable%20feeling.%0D%0A%0D%0AIndia%20over%20comes%20all%20the%20odds%20%26amp%3B%20criticism%20and%20has%20shown%20world%20that%20they%20are%20true%20world%20champions.%0D%0A%0D%0AOnce%20again%20my%20heart" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Congratulations+to+Indian+Cricket+Team&amp;body=Link: http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A April%2002%2C%202011%20India%20wins%20the%20cricket%20world%20cup.%20What%20a%20day%20it%20was%2C%20I%20was%20watching%20cricket%20on%20TV%20with%20my%20friends.%20I%20enjoyed%20the%20moment%20a%20lot%2C%20its%20an%C2%A0unforgettable%20feeling.%0D%0A%0D%0AIndia%20over%20comes%20all%20the%20odds%20%26amp%3B%20criticism%20and%20has%20shown%20world%20that%20they%20are%20true%20world%20champions.%0D%0A%0D%0AOnce%20again%20my%20heart" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;t=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/&amp;title=Congratulations+to+Indian+Cricket+Team&amp;summary=April%2002%2C%202011%20India%20wins%20the%20cricket%20world%20cup.%20What%20a%20day%20it%20was%2C%20I%20was%20watching%20cricket%20on%20TV%20with%20my%20friends.%20I%20enjoyed%20the%20moment%20a%20lot%2C%20its%20an%C2%A0unforgettable%20feeling.%0D%0A%0D%0AIndia%20over%20comes%20all%20the%20odds%20%26amp%3B%20criticism%20and%20has%20shown%20world%20that%20they%20are%20true%20world%20champions.%0D%0A%0D%0AOnce%20again%20my%20heart&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F04%2Fcongratulations-to-indian-cricket-team%2F&amp;t=Congratulations+to+Indian+Cricket+Team" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/04/congratulations-to-indian-cricket-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysqldump on linux</title>
		<link>http://www.decentmind.com/2011/03/mysqldump-linux-commands/</link>
		<comments>http://www.decentmind.com/2011/03/mysqldump-linux-commands/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 16:36:54 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysqldump]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=805</guid>
		<description><![CDATA[Hi I am storing few linux commands for my own reference. 1) create tar file tar -cvf destination_folder_name source v indicates verbose. 2) mysql dump / mysql back up The most simple way is to issue this command: mysqldump -u &#8230; <a href="http://www.decentmind.com/2011/03/mysqldump-linux-commands/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F03%2Fmysqldump-linux-commands%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F03%2Fmysqldump-linux-commands%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=commands,linux,mysql,mysqldump&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi<br />
I am storing few linux commands for my own reference.</p>
<p>1) create tar file<br />
<code><br />
tar -cvf destination_folder_name source<br />
</code><br />
v indicates verbose.</p>
<p>2) mysql dump / mysql back up<br />
The most simple way is to issue this command:</p>
<p><code>mysqldump -u [user] -p [database_name] &gt; [backupfile].dump</code></p>
<p>This command is going to ask you for the [user] password and then will create a script which later can be used to restore the data.Another way is to use the optimized way.</p>
<p><code>mysqldump --opt -u [user_name] -p [database_name] &gt; [backup_file].dump</code></p>
<p>This command will use an optimized method, and will include in the script MySQL commands that will erase (drop) tables that already exists and create them again before populate the data inside.<br />
Maybe the best way to run this command is to use the option of gzip the output file. (for obvious reasons)</p>
<p><code>mysqldump --opt -u [user_name] -p [database_name] | gzip &gt; [backup_file].dump.gz</code></p>
<p>Once you have your backup file, you may want to restore it someday, this is the way to do it. (remember tu unzip your file, if zipped, before)</p>
<p><code>mysql [database_name] &lt; [backup_file].dump</code></p>
<p>Remeber that you can run</p>
<p><code>man mysqldump</code></p>
<p>for more help.</p>
<p>I would keep adding more &#8230;
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F03%2Fmysqldump-linux-commands%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F03%2Fmysqldump-linux-commands%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=commands,linux,mysql,mysqldump&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/03/mysqldump-linux-commands/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mysqldump+on+linux+-+http://bit.ly/hN6XeM&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/03/mysqldump-linux-commands/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;n=Mysqldump+on+linux&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Mysqldump+on+linux&amp;link=http://www.decentmind.com/2011/03/mysqldump-linux-commands/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Mysqldump+on+linux&amp;body=Link: http://www.decentmind.com/2011/03/mysqldump-linux-commands/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%0D%0AI%20am%20storing%20few%20linux%20commands%20for%20my%20own%20reference.%0D%0A%0D%0A1%29%20create%20tar%20file%0D%0A%0D%0Atar%20-cvf%20destination_folder_name%20source%0D%0A%0D%0Av%20indicates%20verbose.%0D%0A%0D%0A2%29%20mysql%20dump%20%2F%20mysql%20back%20up%0D%0AThe%20most%20simple%20way%20is%20to%20issue%20this%20command%3A%0D%0A%0D%0Amysqldump%20-u%20%5Buser%5D%20-p%20%5Bdatabase_name%5D%20%26gt%3B%20%5Bbackupfile%5D.dump%0D%0A%0D%0AThis%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux&amp;srcUrl=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;srcTitle=Mysqldump+on+linux&amp;snippet=Hi%0D%0AI%20am%20storing%20few%20linux%20commands%20for%20my%20own%20reference.%0D%0A%0D%0A1%29%20create%20tar%20file%0D%0A%0D%0Atar%20-cvf%20destination_folder_name%20source%0D%0A%0D%0Av%20indicates%20verbose.%0D%0A%0D%0A2%29%20mysql%20dump%20%2F%20mysql%20back%20up%0D%0AThe%20most%20simple%20way%20is%20to%20issue%20this%20command%3A%0D%0A%0D%0Amysqldump%20-u%20%5Buser%5D%20-p%20%5Bdatabase_name%5D%20%26gt%3B%20%5Bbackupfile%5D.dump%0D%0A%0D%0AThis%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Mysqldump+on+linux&amp;du=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;cn=Hi%0D%0AI%20am%20storing%20few%20linux%20commands%20for%20my%20own%20reference.%0D%0A%0D%0A1%29%20create%20tar%20file%0D%0A%0D%0Atar%20-cvf%20destination_folder_name%20source%0D%0A%0D%0Av%20indicates%20verbose.%0D%0A%0D%0A2%29%20mysql%20dump%20%2F%20mysql%20back%20up%0D%0AThe%20most%20simple%20way%20is%20to%20issue%20this%20command%3A%0D%0A%0D%0Amysqldump%20-u%20%5Buser%5D%20-p%20%5Bdatabase_name%5D%20%26gt%3B%20%5Bbackupfile%5D.dump%0D%0A%0D%0AThis%20" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Mysqldump+on+linux&amp;body=Link: http://www.decentmind.com/2011/03/mysqldump-linux-commands/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%0D%0AI%20am%20storing%20few%20linux%20commands%20for%20my%20own%20reference.%0D%0A%0D%0A1%29%20create%20tar%20file%0D%0A%0D%0Atar%20-cvf%20destination_folder_name%20source%0D%0A%0D%0Av%20indicates%20verbose.%0D%0A%0D%0A2%29%20mysql%20dump%20%2F%20mysql%20back%20up%0D%0AThe%20most%20simple%20way%20is%20to%20issue%20this%20command%3A%0D%0A%0D%0Amysqldump%20-u%20%5Buser%5D%20-p%20%5Bdatabase_name%5D%20%26gt%3B%20%5Bbackupfile%5D.dump%0D%0A%0D%0AThis%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;t=Mysqldump+on+linux" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/03/mysqldump-linux-commands/&amp;title=Mysqldump+on+linux&amp;summary=Hi%0D%0AI%20am%20storing%20few%20linux%20commands%20for%20my%20own%20reference.%0D%0A%0D%0A1%29%20create%20tar%20file%0D%0A%0D%0Atar%20-cvf%20destination_folder_name%20source%0D%0A%0D%0Av%20indicates%20verbose.%0D%0A%0D%0A2%29%20mysql%20dump%20%2F%20mysql%20back%20up%0D%0AThe%20most%20simple%20way%20is%20to%20issue%20this%20command%3A%0D%0A%0D%0Amysqldump%20-u%20%5Buser%5D%20-p%20%5Bdatabase_name%5D%20%26gt%3B%20%5Bbackupfile%5D.dump%0D%0A%0D%0AThis%20&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F03%2Fmysqldump-linux-commands%2F&amp;t=Mysqldump+on+linux" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/03/mysqldump-linux-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What do I do to be happy most?</title>
		<link>http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/</link>
		<comments>http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 08:34:25 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=799</guid>
		<description><![CDATA[Well it has become a treasure hunt for me, when I am depressed I like doing following &#8230; Look for inspiration I listen to steve jobs, randy pausch, JK Rowling etc &#8230; read books, read blogs Get shower start browsing &#8230; <a href="http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fwhat-do-i-do-to-be-happy-most%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fwhat-do-i-do-to-be-happy-most%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Well it has become a treasure hunt for me, when I am depressed I like doing following &#8230;</p>
<ul>
<li>Look for inspiration
<ul>
<li>I listen to <a href="http://en.wikipedia.org/wiki/Steve_Jobs">steve jobs</a>, <a href="http://www.cs.cmu.edu/~pausch/">randy pausch</a>, <a href="http://www.jkrowling.com/">JK Rowling</a> etc &#8230;</li>
<li>read books, read blogs</li>
</ul>
</li>
<li>Get shower</li>
<li>start browsing some of my old projects/presentation/papers</li>
<li>sit alone and think of nothing</li>
<li>I start helping others, when not in a good mood (gives me feeling that I am worth something)</li>
<li>call my parents or to best friend and let everything out</li>
<li>And last but not the least I sleep when upset</li>
</ul>
<p>Is there any thing else I can do , Oh yeah blog and force everyone to read <img src='http://www.decentmind.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Most of the time I try to do some of these in such situations. Wish I could do more better things .</p>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fwhat-do-i-do-to-be-happy-most%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fwhat-do-i-do-to-be-happy-most%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=decentmind&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=What+do+I+do+to+be+happy+most%3F+-+http://bit.ly/fehlma&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;n=What+do+I+do+to+be+happy+most%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=What+do+I+do+to+be+happy+most%3F&amp;link=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=What+do+I+do+to+be+happy+most%3F&amp;body=Link: http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Well%20it%20has%20become%20a%20treasure%20hunt%20for%20me%2C%20when%20I%20am%20depressed%20I%20like%20doing%20following%20...%0D%0A%0D%0A%09Look%20for%20inspiration%0D%0A%0D%0A%09I%20listen%20to%20steve%20jobs%2C%20randy%20pausch%2C%20JK%20Rowling%20etc%20...%0D%0A%09read%20books%2C%20read%20blogs%0D%0A%0D%0A%0D%0A%09Get%20shower%0D%0A%09start%20browsing%20some%20of%20my%20old%20projects%2Fpresentation%2Fpapers%0D%0A%09sit%20alone%20and%20think" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F&amp;srcUrl=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;srcTitle=What+do+I+do+to+be+happy+most%3F&amp;snippet=Well%20it%20has%20become%20a%20treasure%20hunt%20for%20me%2C%20when%20I%20am%20depressed%20I%20like%20doing%20following%20...%0D%0A%0D%0A%09Look%20for%20inspiration%0D%0A%0D%0A%09I%20listen%20to%20steve%20jobs%2C%20randy%20pausch%2C%20JK%20Rowling%20etc%20...%0D%0A%09read%20books%2C%20read%20blogs%0D%0A%0D%0A%0D%0A%09Get%20shower%0D%0A%09start%20browsing%20some%20of%20my%20old%20projects%2Fpresentation%2Fpapers%0D%0A%09sit%20alone%20and%20think" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=What+do+I+do+to+be+happy+most%3F&amp;du=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;cn=Well%20it%20has%20become%20a%20treasure%20hunt%20for%20me%2C%20when%20I%20am%20depressed%20I%20like%20doing%20following%20...%0D%0A%0D%0A%09Look%20for%20inspiration%0D%0A%0D%0A%09I%20listen%20to%20steve%20jobs%2C%20randy%20pausch%2C%20JK%20Rowling%20etc%20...%0D%0A%09read%20books%2C%20read%20blogs%0D%0A%0D%0A%0D%0A%09Get%20shower%0D%0A%09start%20browsing%20some%20of%20my%20old%20projects%2Fpresentation%2Fpapers%0D%0A%09sit%20alone%20and%20think" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=What+do+I+do+to+be+happy+most%3F&amp;body=Link: http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Well%20it%20has%20become%20a%20treasure%20hunt%20for%20me%2C%20when%20I%20am%20depressed%20I%20like%20doing%20following%20...%0D%0A%0D%0A%09Look%20for%20inspiration%0D%0A%0D%0A%09I%20listen%20to%20steve%20jobs%2C%20randy%20pausch%2C%20JK%20Rowling%20etc%20...%0D%0A%09read%20books%2C%20read%20blogs%0D%0A%0D%0A%0D%0A%09Get%20shower%0D%0A%09start%20browsing%20some%20of%20my%20old%20projects%2Fpresentation%2Fpapers%0D%0A%09sit%20alone%20and%20think" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;t=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/&amp;title=What+do+I+do+to+be+happy+most%3F&amp;summary=Well%20it%20has%20become%20a%20treasure%20hunt%20for%20me%2C%20when%20I%20am%20depressed%20I%20like%20doing%20following%20...%0D%0A%0D%0A%09Look%20for%20inspiration%0D%0A%0D%0A%09I%20listen%20to%20steve%20jobs%2C%20randy%20pausch%2C%20JK%20Rowling%20etc%20...%0D%0A%09read%20books%2C%20read%20blogs%0D%0A%0D%0A%0D%0A%09Get%20shower%0D%0A%09start%20browsing%20some%20of%20my%20old%20projects%2Fpresentation%2Fpapers%0D%0A%09sit%20alone%20and%20think&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fwhat-do-i-do-to-be-happy-most%2F&amp;t=What+do+I+do+to+be+happy+most%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/02/what-do-i-do-to-be-happy-most/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to access symfony2 console?</title>
		<link>http://www.decentmind.com/2011/02/how-to-access-symfony2-console/</link>
		<comments>http://www.decentmind.com/2011/02/how-to-access-symfony2-console/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 17:47:42 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[symfony2]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=796</guid>
		<description><![CDATA[Hi All 

The most awesome feature symfony framework provides is CLI interface. Symfony2 is also packed with same cool CLI.

Just put symfony2 sandbox to your root directory (i tried with ubuntu setup). Point to your sf2 project dir and type <strong>"php symfony app/console"</strong> and hit enter.

It should show you all the commands available for <a href="http://www.decentmind.com/2011/02/how-to-access-symfony2-console/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fhow-to-access-symfony2-console%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fhow-to-access-symfony2-console%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=framework,symfony2&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi All </p>
<p>The most awesome feature symfony framework provides is CLI interface. Symfony2 is also packed with same cool CLI.</p>
<p>Just put symfony2 sandbox to your root directory (i tried with ubuntu setup). Point to your sf2 project dir and type <strong>&#8220;php symfony app/console&#8221;</strong> and hit enter.</p>
<p>It should show you all the commands available for sf2.</p>
<blockquote><p>
NOTE: Don&#8217;t forget to give write permission to <strong>app/cache</strong> and <strong>app/log</strong> directories.
</p></blockquote>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fhow-to-access-symfony2-console%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fhow-to-access-symfony2-console%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=framework,symfony2&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/02/how-to-access-symfony2-console/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+access+symfony2+console%3F+-+http://bit.ly/f3hQ2I&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;n=How+to+access+symfony2+console%3F&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+access+symfony2+console%3F&amp;link=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+access+symfony2+console%3F&amp;body=Link: http://www.decentmind.com/2011/02/how-to-access-symfony2-console/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%20All%20%0D%0A%0D%0AThe%20most%20awesome%20feature%20symfony%20framework%20provides%20is%20CLI%20interface.%20Symfony2%20is%20also%20packed%20with%20same%20cool%20CLI.%0D%0A%0D%0AJust%20put%20symfony2%20sandbox%20to%20your%20root%20directory%20%28i%20tried%20with%20ubuntu%20setup%29.%20Point%20to%20your%20sf2%20project%20dir%20and%20type%20%22php%20symfony%20app%2Fconsole%22%20and%20hit%20enter.%0D%0A%0D%0AIt%20should%20show%20you%20all%20the%20commands%20available%20for" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F&amp;srcUrl=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;srcTitle=How+to+access+symfony2+console%3F&amp;snippet=Hi%20All%20%0D%0A%0D%0AThe%20most%20awesome%20feature%20symfony%20framework%20provides%20is%20CLI%20interface.%20Symfony2%20is%20also%20packed%20with%20same%20cool%20CLI.%0D%0A%0D%0AJust%20put%20symfony2%20sandbox%20to%20your%20root%20directory%20%28i%20tried%20with%20ubuntu%20setup%29.%20Point%20to%20your%20sf2%20project%20dir%20and%20type%20%22php%20symfony%20app%2Fconsole%22%20and%20hit%20enter.%0D%0A%0D%0AIt%20should%20show%20you%20all%20the%20commands%20available%20for" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+access+symfony2+console%3F&amp;du=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;cn=Hi%20All%20%0D%0A%0D%0AThe%20most%20awesome%20feature%20symfony%20framework%20provides%20is%20CLI%20interface.%20Symfony2%20is%20also%20packed%20with%20same%20cool%20CLI.%0D%0A%0D%0AJust%20put%20symfony2%20sandbox%20to%20your%20root%20directory%20%28i%20tried%20with%20ubuntu%20setup%29.%20Point%20to%20your%20sf2%20project%20dir%20and%20type%20%22php%20symfony%20app%2Fconsole%22%20and%20hit%20enter.%0D%0A%0D%0AIt%20should%20show%20you%20all%20the%20commands%20available%20for" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+access+symfony2+console%3F&amp;body=Link: http://www.decentmind.com/2011/02/how-to-access-symfony2-console/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%20All%20%0D%0A%0D%0AThe%20most%20awesome%20feature%20symfony%20framework%20provides%20is%20CLI%20interface.%20Symfony2%20is%20also%20packed%20with%20same%20cool%20CLI.%0D%0A%0D%0AJust%20put%20symfony2%20sandbox%20to%20your%20root%20directory%20%28i%20tried%20with%20ubuntu%20setup%29.%20Point%20to%20your%20sf2%20project%20dir%20and%20type%20%22php%20symfony%20app%2Fconsole%22%20and%20hit%20enter.%0D%0A%0D%0AIt%20should%20show%20you%20all%20the%20commands%20available%20for" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;t=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/02/how-to-access-symfony2-console/&amp;title=How+to+access+symfony2+console%3F&amp;summary=Hi%20All%20%0D%0A%0D%0AThe%20most%20awesome%20feature%20symfony%20framework%20provides%20is%20CLI%20interface.%20Symfony2%20is%20also%20packed%20with%20same%20cool%20CLI.%0D%0A%0D%0AJust%20put%20symfony2%20sandbox%20to%20your%20root%20directory%20%28i%20tried%20with%20ubuntu%20setup%29.%20Point%20to%20your%20sf2%20project%20dir%20and%20type%20%22php%20symfony%20app%2Fconsole%22%20and%20hit%20enter.%0D%0A%0D%0AIt%20should%20show%20you%20all%20the%20commands%20available%20for&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F02%2Fhow-to-access-symfony2-console%2F&amp;t=How+to+access+symfony2+console%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/02/how-to-access-symfony2-console/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Few PHP 5.3 Presentations &amp; RegX Cheat Sheet I Liked</title>
		<link>http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/</link>
		<comments>http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 05:08:20 +0000</pubDate>
		<dc:creator>deepak</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[cheatsheet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.decentmind.com/?p=768</guid>
		<description><![CDATA[I happen to find these while reading/surfing, so thought of putting it here .... I would be adding more to this post ....
[pdf http://www.decentmind.com/wp-content/uploads/2011/01/php5.3.pdf ]
<a href="http://www.decentmind.com/wp-content/uploads/2011/01/regular-expressions-cheat-sheet-v2.pdf">regular-expressions-cheat-sheet-v2.pdf</a>
Courtesy: [http://ebookchoice.net/php-5-3-awesome.html#]


-deepak <a href="http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F01%2Fphp-5-3-presentations-regx-cheat-sheet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F01%2Fphp-5-3-presentations-regx-cheat-sheet%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=cheat+sheet,php,presentation,Technology&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I happen to find these while reading/surfing, so thought of putting it here &#8230;. I would be adding more to this post &#8230;. stay tuned<br />
<iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fwww.decentmind.com%2Fwp-content%2Fuploads%2F2011%2F01%2Fphp5.3.pdf&embedded=true" width="100%" height="604" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
<a href="http://www.decentmind.com/wp-content/uploads/2011/01/regular-expressions-cheat-sheet-v2.pdf">regular-expressions-cheat-sheet-v2.pdf</a><br />
Courtesy: [http://ebookchoice.net/php-5-3-awesome.html]</p>
<p>-deepak
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F01%2Fphp-5-3-presentations-regx-cheat-sheet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.decentmind.com%2F2011%2F01%2Fphp-5-3-presentations-regx-cheat-sheet%2F&amp;source=deepak_kumar&amp;style=normal&amp;service=bit.ly&amp;service_api=deepakk%3AR_c06d85c8b31fa30166d6846b5e160033&amp;hashtags=cheat+sheet,php,presentation,Technology&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked+-+http://bit.ly/g99buP&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;n=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;link=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;body=Link: http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20happen%20to%20find%20these%20while%20reading%2Fsurfing%2C%20so%20thought%20of%20putting%20it%20here%20....%20I%20would%20be%20adding%20more%20to%20this%20post%20....%0D%0A%0D%0Aregular-expressions-cheat-sheet-v2.pdf%0D%0ACourtesy%3A%20%5Bhttp%3A%2F%2Febookchoice.net%2Fphp-5-3-awesome.html%23%5D%0D%0A%0D%0A%0D%0A-deepak" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;srcUrl=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;srcTitle=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;snippet=I%20happen%20to%20find%20these%20while%20reading%2Fsurfing%2C%20so%20thought%20of%20putting%20it%20here%20....%20I%20would%20be%20adding%20more%20to%20this%20post%20....%0D%0A%0D%0Aregular-expressions-cheat-sheet-v2.pdf%0D%0ACourtesy%3A%20%5Bhttp%3A%2F%2Febookchoice.net%2Fphp-5-3-awesome.html%23%5D%0D%0A%0D%0A%0D%0A-deepak" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;du=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;cn=I%20happen%20to%20find%20these%20while%20reading%2Fsurfing%2C%20so%20thought%20of%20putting%20it%20here%20....%20I%20would%20be%20adding%20more%20to%20this%20post%20....%0D%0A%0D%0Aregular-expressions-cheat-sheet-v2.pdf%0D%0ACourtesy%3A%20%5Bhttp%3A%2F%2Febookchoice.net%2Fphp-5-3-awesome.html%23%5D%0D%0A%0D%0A%0D%0A-deepak" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;body=Link: http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20happen%20to%20find%20these%20while%20reading%2Fsurfing%2C%20so%20thought%20of%20putting%20it%20here%20....%20I%20would%20be%20adding%20more%20to%20this%20post%20....%0D%0A%0D%0Aregular-expressions-cheat-sheet-v2.pdf%0D%0ACourtesy%3A%20%5Bhttp%3A%2F%2Febookchoice.net%2Fphp-5-3-awesome.html%23%5D%0D%0A%0D%0A%0D%0A-deepak" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;t=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/&amp;title=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked&amp;summary=I%20happen%20to%20find%20these%20while%20reading%2Fsurfing%2C%20so%20thought%20of%20putting%20it%20here%20....%20I%20would%20be%20adding%20more%20to%20this%20post%20....%0D%0A%0D%0Aregular-expressions-cheat-sheet-v2.pdf%0D%0ACourtesy%3A%20%5Bhttp%3A%2F%2Febookchoice.net%2Fphp-5-3-awesome.html%23%5D%0D%0A%0D%0A%0D%0A-deepak&amp;source=DecentMind" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.decentmind.com%2F2011%2F01%2Fphp-5-3-presentations-regx-cheat-sheet%2F&amp;t=Few+PHP+5.3+Presentations+%26+RegX+Cheat+Sheet+I+Liked" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.decentmind.com/2011/01/php-5-3-presentations-regx-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

