<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ramblings of a Programmer</title>
	<atom:link href="http://chanderjshivdasani.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chanderjshivdasani.wordpress.com</link>
	<description>It says what it is</description>
	<lastBuildDate>Wed, 06 Jul 2011 10:21:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='chanderjshivdasani.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ramblings of a Programmer</title>
		<link>http://chanderjshivdasani.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chanderjshivdasani.wordpress.com/osd.xml" title="Ramblings of a Programmer" />
	<atom:link rel='hub' href='http://chanderjshivdasani.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Reverse a string inplace</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/03/03/reverse-a-string-inplace/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/03/03/reverse-a-string-inplace/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 08:07:32 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Interview Questions]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=115</guid>
		<description><![CDATA[A very common interview question is to reverse a string without using a temp variable. This has been an age old question and im surprised to see that its still asked by the interviewers. The solution to this follows from a simple xor trick of swapping two integer variables. If two variables are a and <a href="http://chanderjshivdasani.wordpress.com/2011/03/03/reverse-a-string-inplace/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=115&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A very common interview question is to reverse a string without using a temp variable. This has been an age old question and im surprised to see that its still asked by the interviewers.<br />
The solution to this follows from a simple xor trick of swapping two integer variables. If two variables are a and b the trick is as follows:</p>
<pre>       a = a ^ b;
       b = a ^ b;
       a = a ^ b;</pre>
<p>This simple trick can also be used to reverse string inplace. The only trick is to swap the ascii values of the string. The following is a Java snippet that does the same for you.</p>
<pre><code>
//Swapping a string inplace
   public static String reverse(String input)
   {
	char[] inputChars = input.toCharArray();
	int len = input.length();
	for(int i = 0; i &lt; len/2 ; i++)
	{
	    inputChars[i] = (char)((int)inputChars[i] ^
                                         (int)inputChars[len - i - 1]);
	    inputChars[len - i - 1] = (char)((int)inputChars[i] ^
                                         (int)inputChars[len - i - 1]);
	    inputChars[i] = (char)((int)inputChars[i] ^
                                          (int)inputChars[len - i - 1]);
	}
	return new String(inputChars);
  }
</code></pre>
<p>There is also another trick that can be used. Its as follows:</p>
<pre>           a = a + b;
           b = a - b;
           a = a - b;</pre>
<p>There is a reason as to why this can fail. Consider when you are adding two very large integers and the result goes beyond the integer range. This will cause problems as the out of range number just would overflow to become a negative number.</p>
<p>Hence, using the xor trick is fast and safe!!</p>
<p>&#8211;CS</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=115&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/03/03/reverse-a-string-inplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Blog, Happy Birthday!!!!</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/02/05/dear-blog-happy-birthday/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/02/05/dear-blog-happy-birthday/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 23:01:57 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Anniversary]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=112</guid>
		<description><![CDATA[It was one year back, on the very same date that i started with this blog. It has been a great year and looking back, it feels quite productive! Also, more than 800 views in a year, that is more than 2 views per day. Certainly a lot more than what i had imagined. My <a href="http://chanderjshivdasani.wordpress.com/2011/02/05/dear-blog-happy-birthday/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=112&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It was one year back, on the very same date that i started with this blog. It has been a great year and looking back, it feels quite productive! </p>
<p>Also, more than 800 views in a year, that is more than 2 views per day. Certainly a lot more than what i had imagined. </p>
<p>My future plans with this blog is to keep a record of interesting things that happen in my life, so that i can reminisce about them in the future. It will be like a log entry of all the things that stimulated my emotions. I plan to update this blog more often than i did in the past year. </p>
<p>I would like to thank everyone for their viewer ship and i will certainly make this experience even more exciting in the coming years. </p>
<p>Watch this space for more interesting articles <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>&#8211;<br />
CS</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=112&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/02/05/dear-blog-happy-birthday/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Counting trailing zeros in a factorial</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/02/05/counting-trailing-zeros-in-a-factorial/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/02/05/counting-trailing-zeros-in-a-factorial/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 22:46:59 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Interview Questions]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=109</guid>
		<description><![CDATA[Problem: Find the number of trailing zeros in the factorial of a given number. Solution: Lets work with an example. Suppose the given number is 25 i.e we need to find number of trailing zeros in 25!. Zeros are contributed by pairs of 2 and 5, because 2*5 = 10. So, all we need to <a href="http://chanderjshivdasani.wordpress.com/2011/02/05/counting-trailing-zeros-in-a-factorial/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=109&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Problem:<br />
Find the number of trailing zeros in the factorial of a given number.</p>
<p>Solution:<br />
Lets work with an example. Suppose the given number is 25 i.e we need to find number of trailing zeros in 25!. Zeros are contributed by pairs of 2 and 5, because 2*5 = 10.<br />
So, all we need to do is find the number of multiples of 5 in 25. Also note that while 5 contributes to one 0, 25 contributes to two 0s. </p>
<p>So, number of trailing zeros in 25 = 25/5 + 25/25 = 5 + 1 = 6</p>
<p>Below is a code snippet that does the same for you!</p>
<pre>
int countNum(int num)
{
	int count = 0;
	for(int i = 5; num/i &gt; 0; i *= 5)
	{
		count = count + num/i;

	}
	return count;

}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=109&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/02/05/counting-trailing-zeros-in-a-factorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Bawra Mann dekhne chala ek sapna&#8230;.</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/01/30/bawra-mann-dekhne-chala-ek-sapna/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/01/30/bawra-mann-dekhne-chala-ek-sapna/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 22:11:38 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=95</guid>
		<description><![CDATA[One of the songs that touches your soul and not just heart. Awesomely written and equally sung. bavra mann dekhne chala ek sapna .. bavrese mann ki dekho bavri hain baatein bavrese mann ki dekho bavri hain baatein bavrisi dhadkane hain bavri hain saanse bavrisi karwanto se nindiya kyon bhaage bavrese nain chahe bawre zarokhon <a href="http://chanderjshivdasani.wordpress.com/2011/01/30/bawra-mann-dekhne-chala-ek-sapna/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=95&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the songs that touches your soul and not just heart. Awesomely written and equally sung. </p>
<p><em>bavra mann dekhne chala ek sapna ..</p>
<p>bavrese mann ki dekho bavri hain baatein<br />
bavrese mann ki dekho bavri hain baatein<br />
bavrisi dhadkane hain bavri hain saanse<br />
bavrisi karwanto se nindiya kyon bhaage<br />
bavrese nain chahe bawre zarokhon se bavre naazaroon ko takna</p>
<p>bavra mann dekhne chala ek sapna</p>
<p>bavrese is jahan mein bawra ek saath ho<br />
is saayani bheed mein bass haathon mein tera haath ho<br />
bavrisi dhun ho koi bavra ek raag ho<br />
bavrisi dhun ho koi bavra ek raag ho<br />
bavrese pair chahe bawre tarano ke bavrese bol pe thirkana<br />
bavra mann dekhne chala ek sapna</p>
<p>bavrasa ho andhera bavri khamoshiyaan<br />
thartharati lav ho matthamm bavri madhoshiyaan<br />
bavra ek gunghata chaye hole hole dinn batayein<br />
bavra ek gunghata chaye hole hole dinn batayein<br />
bavrese mukhadese saraktaa<br />
bavra mann dekhne chala ek sapna</em></p>
<span style="text-align:center; display: block;"><a href="http://chanderjshivdasani.wordpress.com/2011/01/30/bawra-mann-dekhne-chala-ek-sapna/"><img src="http://img.youtube.com/vi/6jmyV2-2R28/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=95&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/01/30/bawra-mann-dekhne-chala-ek-sapna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Little Endian vs Big Endian</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/01/28/little-endian-vs-big-endian/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/01/28/little-endian-vs-big-endian/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 21:38:25 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Insights]]></category>
		<category><![CDATA[Interview Questions]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=92</guid>
		<description><![CDATA[Wikipedia defines endianness as the ordering of individually addressable sub-components within a longer data item as stored in external memory (or, sometimes, as sent on a serial connection). Lets explain this with an example. We know that short occupies 2 bytes of memory. Lets say the addresses by 450 and 451. The endianness defines where <a href="http://chanderjshivdasani.wordpress.com/2011/01/28/little-endian-vs-big-endian/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=92&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Endianness">Wikipedia</a> defines endianness as the ordering of individually addressable sub-components within a longer data item as stored in external memory (or, sometimes, as sent on a serial connection).<br />
Lets explain this with an example. </p>
<p>We know that short occupies 2 bytes of memory. Lets say the addresses by 450 and 451. The endianness defines where the Most Significant Byte will be stored. Will it be at a lower address or at a higher address. This gives us two types of systems.</p>
<p><strong>Big Endian: </strong><br />
Stores the Most Significant byte at the lower address. Systems using this are Motorola 68K, PowerPC, Sparc</p>
<p><strong>Little Endian</strong><br />
Stores the Most Significant byte at the higher address. Systems using this are Intel x86, Pentium</p>
<p>There is a very simple way of checking the endianness of a system. Below is a program that does so . </p>
<p><code>
<pre>
//Program to check the endianness of the system

#include

int main(int argc, char* argv)
{
	short word = 1;
	char *byte = (char*) &amp;word;

	if(byte[0])
		printf("Little Endian\n");
	else
		printf("Big Endian\n");	

}
</pre>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=92&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/01/28/little-endian-vs-big-endian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Generic Programming in C</title>
		<link>http://chanderjshivdasani.wordpress.com/2011/01/25/generic-programming-in-c/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2011/01/25/generic-programming-in-c/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 06:51:23 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[C Programming]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=90</guid>
		<description><![CDATA[While all the modern languages have support for generic programming , i wondered how C would handle it. A little bit of googling explained me an elegant way of doing it in C. C has a special type of pointer called as void pointers. A void pointer is basically a pointer for which the compiler <a href="http://chanderjshivdasani.wordpress.com/2011/01/25/generic-programming-in-c/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=90&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While all the modern languages have support for <a href="http://en.wikipedia.org/wiki/Generic_programming">generic programming</a> , i wondered how C would handle it. A little bit of googling explained me an elegant way of doing it in C. </p>
<p>C has a special type of pointer called as <a href="http://theoryx5.uwinnipeg.ca/programming/node87.html">void pointers</a>. A void pointer is basically a pointer for which the compiler doesnt have any idea about the type of object it points too. It gives a useful mechanism of working with raw addresses. </p>
<p>Below is a generic version of swap method, developed using Dev C++ on my Windows Vista laptop. </p>
<p><code>
<pre>
#include
#include 

void swap(void *elem1, void *elem2, int size);

int main(int argc, char *argv[])
{

  char *a = "Fred", *b = "Wilma";
  printf("Before Swap:  a = %s, b = %s\n", a,b );
  swap(&amp;a,&amp;b,sizeof(char*));
  printf("After Swap: a = %s, b = %s\n", a,b );

  system("PAUSE");
  return 0;
}

void swap(void *elem1, void *elem2, int size)
{
     char buf[size];
     memcpy(buf,elem1,size);
     memcpy(elem1,elem2,size);
     memcpy(elem2,buf,size);

}</pre>
<p></code></p>
<p>Disclaimer:<br />
While void pointers might provide easy way for generic programming, but it also stops the compiler from doing all the checks for us which means that a person will have to most of the error checking when working with void pointers. The above code, at first, might look an elegant way of swapping, but there are variety of ways in which it can result in erroneous data.<br />
For example,<br />
<code>
<pre>
    int a = 10;
    short b = 5;
    swap(&amp;a,&amp;b,sizeof(short));
</pre>
<p></code></p>
<p>The above call will result in swapping the 2 bytes of int(originally 4 byte) with 2 bytes of short, which will result in corrupt data.<br />
Hence, always be really careful while working with void pointers.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=90&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2011/01/25/generic-programming-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Secret to success in less than 3 mins</title>
		<link>http://chanderjshivdasani.wordpress.com/2010/12/12/secret-to-success-in-less-than-3-mins/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2010/12/12/secret-to-success-in-less-than-3-mins/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 04:50:52 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=83</guid>
		<description><![CDATA[Here is a nice talk on what separates winners from others.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=83&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ted.com/talks/richard_st_john_s_8_secrets_of_success.html">Here</a> is a nice talk on what separates winners from others.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=83&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2010/12/12/secret-to-success-in-less-than-3-mins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Lord of the Rings</title>
		<link>http://chanderjshivdasani.wordpress.com/2010/12/04/lord-of-the-rings/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2010/12/04/lord-of-the-rings/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 22:11:21 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Poetry]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=80</guid>
		<description><![CDATA[All that is gold does not glitter, Not all those who wander are lost; The old that is strong does not wither, Deep roots are not reached by the frost. From the ashes a fire shall be woken, A light from the shadows shall spring; Renewed shall be blade that was broken, The crown less <a href="http://chanderjshivdasani.wordpress.com/2010/12/04/lord-of-the-rings/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=80&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>All that is gold does not glitter,<br />
Not all those who wander are lost;<br />
The old that is strong does not wither,<br />
Deep roots are not reached by the frost.<br />
From the ashes a fire shall be woken,<br />
A light from the shadows shall spring;<br />
Renewed shall be blade that was broken,<br />
The crown less again shall be king</p>
<p>&#8211; J.R.R Tolkien</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=80&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2010/12/04/lord-of-the-rings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Knowledge vs Wisdom</title>
		<link>http://chanderjshivdasani.wordpress.com/2010/11/24/knowledge-vs-wisdom/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2010/11/24/knowledge-vs-wisdom/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 22:42:10 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=75</guid>
		<description><![CDATA[Knowledge is knowing that a tomato is a fruit. Wisdom is knowing not to put it in a fruit salad<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=75&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Knowledge is knowing that a tomato is a fruit. Wisdom is knowing not to put it in a fruit salad </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=75&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2010/11/24/knowledge-vs-wisdom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
		<item>
		<title>Rockmelt</title>
		<link>http://chanderjshivdasani.wordpress.com/2010/11/24/rockmelt/</link>
		<comments>http://chanderjshivdasani.wordpress.com/2010/11/24/rockmelt/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 07:16:01 +0000</pubDate>
		<dc:creator>chandershivdasani</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://chanderjshivdasani.wordpress.com/?p=72</guid>
		<description><![CDATA[In the war of browsers, we have yet another contender, Rockmelt. Yet another way of connecting to the &#8220;social&#8221; network. It is spurned out of Google Chrome open source Browser project. My impressions: GUI is same as Google Chrome, except for Facebook and other social media bull shit around it. It needs Facebook credentials to <a href="http://chanderjshivdasani.wordpress.com/2010/11/24/rockmelt/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=72&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the war of browsers, we have yet another contender, <a href="http://www.rockmelt.com/">Rockmelt</a>.<br />
Yet another way of connecting to the &#8220;social&#8221; network. It is spurned out of Google Chrome open source Browser project.</p>
<p>My impressions:</p>
<ul> GUI is same as Google Chrome, except for Facebook and other social media bull shit around it.</ul>
<ul>It needs Facebook credentials to start. In a world where privacy is becoming a nuisance,i dont want to<br />
give away my username and password just to go to google.com</ul>
<ul>You need to give access to your wall and other stuff on facebook. Why on earth would i wanna do that?</ul>
<p>Its just another thread in the spool of threads that connects you to the so called &#8220;social&#8221; network. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chanderjshivdasani.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chanderjshivdasani.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chanderjshivdasani.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chanderjshivdasani.wordpress.com&amp;blog=11580868&amp;post=72&amp;subd=chanderjshivdasani&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chanderjshivdasani.wordpress.com/2010/11/24/rockmelt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>42.335097 -71.099401</georss:point>
		<geo:lat>42.335097</geo:lat>
		<geo:long>-71.099401</geo:long>
		<media:content url="http://1.gravatar.com/avatar/baf65281d85e8019317cb96d94510606?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chandershivdasani</media:title>
		</media:content>
	</item>
	</channel>
</rss>
