<?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>Poor man's view of the world &#187; Open Source</title>
	<atom:link href="http://www.rohasnagpal.com/blog/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rohasnagpal.com/blog</link>
	<description>A humble tribute to ToGg - the Great God of Technology</description>
	<lastBuildDate>Mon, 15 Mar 2010 15:04:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MD5 calculator using php</title>
		<link>http://www.rohasnagpal.com/blog/2009/01/25/md5-calculator-using-php/</link>
		<comments>http://www.rohasnagpal.com/blog/2009/01/25/md5-calculator-using-php/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 07:15:57 +0000</pubDate>
		<dc:creator>rohasnagpal</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.rohasnagpal.com/blog/?p=40</guid>
		<description><![CDATA[This is a very simple php code for an MD5 calculator.
There are two pages, index.htm and md5.php The index.htm page contains a simple form to submit the text to be hashed.  The md5.php page displays the md5 hash result.
code for index.htm
&#60;form action=md5.php method=get&#62;
&#60;input type="text" name="word"&#62;
&#60;input type=submit value="Hash this text"&#62;
&#60;/form&#62;
code for md5.php
&#60;?php
$str = $_REQUEST["word"];
?&#62;
Original text [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very simple php code for an MD5 calculator.</p>
<p>There are two pages, index.htm and md5.php The index.htm page contains a simple form to submit the text to be hashed.  The md5.php page displays the md5 hash result.<br />
<strong>code for index.htm</strong></p>
<pre>&lt;form action=md5.php method=get&gt;
&lt;input type="text" name="word"&gt;
&lt;input type=submit value="Hash this text"&gt;
&lt;/form&gt;</pre>
<p><strong>code for md5.php</strong></p>
<pre>&lt;?php
$str = $_REQUEST["word"];
?&gt;
Original text entered by you:
&lt;?php echo $_REQUEST["word"]; ?&gt;
The md5 hash for this text is:
&lt;?php echo md5($str); ?&gt;</pre>
<p>To see a working demo of this code, visit: <a class="external text" title="http://www.rohasnagpal.com/projects/md5-calculator" rel="nofollow" href="../../projects/md5-calculator">| http://www.rohasnagpal.com/projects/md5-calculator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rohasnagpal.com/blog/2009/01/25/md5-calculator-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guide to life &#8211; the *nix way</title>
		<link>http://www.rohasnagpal.com/blog/2007/12/29/guide-to-life-the-nix-way/</link>
		<comments>http://www.rohasnagpal.com/blog/2007/12/29/guide-to-life-the-nix-way/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 06:51:08 +0000</pubDate>
		<dc:creator>rohasnagpal</dc:creator>
				<category><![CDATA[Humans]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.rohasnagpal.com/blog/2007/12/29/guide-to-life-the-nix-way/</guid>
		<description><![CDATA[The *nix family of operating systems has a very rich syntax. So I figured, why not write a comprehensive guide to life using *nix syntax.
As a humble beginning, here is the first page that summarizes the &#8220;moral of the story&#8221; of the game called life:
The English version 
You are a prisoner of your yesterday, you [...]]]></description>
			<content:encoded><![CDATA[<p>The *nix family of operating systems has a very rich syntax. So I figured, why not write a comprehensive guide to life using *nix syntax.</p>
<p>As a humble beginning, here is the first page that summarizes the &#8220;moral of the story&#8221; of the game called life:</p>
<p><strong>The English version </strong></p>
<p>You are a prisoner of your yesterday, you cannot escape it<br />
You are a slave to your tomorrow, you will always fear it<br />
But today, my friend, is yours, enjoy it</p>
<p>- Rohas Nagpal aka Poorman</p>
<p><strong>The *nix version:<br />
</strong>(No flames for errors, this code is not supposed to run..its just for fun <img src='http://www.rohasnagpal.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>finger you<br />
yesterday<br />
tomorrow<br />
today</p>
<p>nslookup yesterday<br />
prisoner .bash_history<br />
logout<br />
ERROR: Cannot escape</p>
<p>nslookup tomorrow<br />
slave<br />
ls tomorrow<br />
fear<br />
fear1<br />
fear2</p>
<p>nslookup today<br />
en.jo.y</p>
<p>- Rohas Nagpal aka Poorman</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rohasnagpal.com/blog/2007/12/29/guide-to-life-the-nix-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In search of the perfect Operating System</title>
		<link>http://www.rohasnagpal.com/blog/2007/10/08/in-search-of-the-perfect-operating-system/</link>
		<comments>http://www.rohasnagpal.com/blog/2007/10/08/in-search-of-the-perfect-operating-system/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 08:58:16 +0000</pubDate>
		<dc:creator>rohasnagpal</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.rohasnagpal.com/blog/2007/10/08/in-search-of-the-perfect-operating-system/</guid>
		<description><![CDATA[My first &#8220;real&#8221; experience with computers was on a Windows 3.1 machine. (Of course I had tinkered around with a lot of &#8220;non-GUI&#8221; operating systems as a kid, but let’s get real &#8211; that&#8217;s ancient history).
 
Windows (in its myriad variations) is a great set of operating systems (except maybe Windows Millennium Edition). Its ease [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">My first &#8220;real&#8221; experience with computers was on a Windows 3.1 machine. (Of course I had tinkered around with a lot of &#8220;non-GUI&#8221; operating systems as a kid, but let’s get real &#8211; that&#8217;s ancient history).</p>
<p class="MsoNormal"><o:p> </o:p><br />
Windows (in its myriad variations) is a great set of operating systems (except maybe Windows Millennium Edition). Its ease of use and massive popularity also makes it the most (successfully) attacked.</p>
<p class="MsoNormal"><o:p>Linux (with its wide range of flavors) is a great open source choice &#8211; saves you money and gives you a great and secure product. But</o:p> after years of working with different operating systems, I have come to one conclusion – <strong>BSD rocks!!</strong></p>
<p class="MsoNormal"><o:p> </o:p><br />
BSD (Berkeley Software Distribution) is the name of distributions of source code from the <st1:placetype w:st="on">University</st1:placetype> of <st1:placename w:st="on">California</st1:placename>, <st1:place w:st="on"><st1:city w:st="on">Berkeley</st1:city></st1:place>, which were originally extensions to AT&amp;T&#8217;s Research UNIX operating system.</p>
<p class="MsoNormal"><strong><o:p> </o:p>BSD comes in many flavors, notably -</strong></p>
<p class="MsoNormal"><o:p> </o:p><a href="http://www.freebsd.org" title="Free BSD" target="_blank">FreeBSD</a> – currently the most popular version, it is easy to use and very high on performance. (btw Yahoo runs on FreeBSD)</p>
<p class="MsoNormal"><o:p> </o:p><br />
<a href="http://www.netbsd.org/" target="_blank">NetBSD</a> is considered a particularly good choice for running on old non-Intel hardware. Its main aim is maximum portability. It runs on almost everything – from palmtops to large servers.</p>
<p class="MsoNormal"><o:p></o:p><span> </span><a href="http://www.openbsd.org/" title="Open BSD" target="_blank">OpenBSD</a> is the popular choice for aims for banks, stock exchanges and Government departments. Its core guiding principle is code purity – derived from a brilliant combination of open source and rigorous code reviews.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rohasnagpal.com/blog/2007/10/08/in-search-of-the-perfect-operating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Story of a breakup, Vodka and a U3 app for data privacy</title>
		<link>http://www.rohasnagpal.com/blog/2007/07/13/story-of-a-breakup-vodka-and-a-u3-app-for-data-privacy/</link>
		<comments>http://www.rohasnagpal.com/blog/2007/07/13/story-of-a-breakup-vodka-and-a-u3-app-for-data-privacy/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 13:11:20 +0000</pubDate>
		<dc:creator>rohasnagpal</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.rohasnagpal.com/blog/2007/07/13/story-of-a-breakup-vodka-and-a-u3-app-for-data-privacy/</guid>
		<description><![CDATA[Its been 24 hours since we began playing around with U3&#8230; and I am impressed to say the least. If a suitable number of developers (and  buyers!) show interest in U3, it has a great future&#8230;unless the next Microsoft operating system supports USB autorun  
My friend and collegue Abhijeet Parandekar just broke up with [...]]]></description>
			<content:encoded><![CDATA[<p>Its been 24 hours since we began playing around with U3&#8230; and I am impressed to say the least. If a suitable number of developers (and  buyers!) show interest in U3, it has a great future&#8230;unless the next Microsoft operating system supports USB autorun <img src='http://www.rohasnagpal.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>My friend and collegue Abhijeet Parandekar just broke up with his girl friend of many years. Instead of drowning his &#8220;dukh&#8221; in Vodka .. he decided to &#8220;code&#8221; some happiness into his life&#8230;.by creating a simple U3 app for data privacy.</p>
<p>Based on the excellent open source project &#8220;True Crypt&#8221;, his app is titled &#8220;<strong>MySecrets</strong>&#8220;. The app (and the source code) and the 10MB MySecrets digital safe can be <a href="http://www.rohasnagpal.com/projects/abhijeet/mysecrets/index.html" title="MySecrets" target="_blank">downloaded from here</a>.</p>
<p>Enjoy!</p>
<p><strong>IMPORTANT: </strong>MySecrets is free to download, distribute, enjoy etc etc. In case of any comments, suggestions, bouquets and brickbats&#8230;please contact <a href="mailto:parandekarabhi@gmail.com" title="Contact Abhijeet" target="_blank">Abhijeet </a>directly&#8230;.<strong>NOT ME! </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rohasnagpal.com/blog/2007/07/13/story-of-a-breakup-vodka-and-a-u3-app-for-data-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
