<?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>Ankit&#039;s Blog</title>
	<atom:link href="http://ankit17.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ankit17.wordpress.com</link>
	<description>My Thought Transformed</description>
	<lastBuildDate>Mon, 09 Nov 2009 07:36:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ankit17.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ankit&#039;s Blog</title>
		<link>http://ankit17.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ankit17.wordpress.com/osd.xml" title="Ankit&#039;s Blog" />
	<atom:link rel='hub' href='http://ankit17.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Benchmarking on C++ and Qt4</title>
		<link>http://ankit17.wordpress.com/2009/07/22/benchmarking-on-c-and-qt4/</link>
		<comments>http://ankit17.wordpress.com/2009/07/22/benchmarking-on-c-and-qt4/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:27:35 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[C++ benchmarking]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[list vs vector]]></category>
		<category><![CDATA[QList]]></category>
		<category><![CDATA[QList vs QVector]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt4]]></category>
		<category><![CDATA[Qt4 Benchmarking]]></category>
		<category><![CDATA[QVector]]></category>
		<category><![CDATA[STL]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/?p=121</guid>
		<description><![CDATA[I came up with a idea of cross checking my knowledge about Vectors and Lists. So, I started off with Qt&#8217;s QList and QVector. I created a QList and QVector of 50000 object of another class and then iterated each with &#8216;for&#8217; loop and &#8216;foreach&#8217; loop separately. Initially my intentions were to study the time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=121&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I came up with a idea of cross checking my knowledge about Vectors and Lists. So, I started off with Qt&#8217;s QList and QVector. I created a QList and QVector of 50000 object of another class and then iterated each with &#8216;for&#8217; loop and &#8216;foreach&#8217; loop separately. Initially my intentions were to study the time being taken by both kind of loops but I ended up studying Lists and Vectors.</p>
<p>What I found out was &#8216;foreach&#8217; loop takes more time than plain &#8216;for&#8217; loop but for this also the time taken for traversing QList is far lesser than for QVector. I though that this might be because of some internal problem with Qt4.2 or with my system&#8217;s configuration. Thus, I re-wrote the code using STL List and Vector. I was surprised to see same result as I got for the QList and QVector.</p>
<p>Thus, I fially though of trying out my code in some other system but I got the same result. Still, I can&#8217;t understand the reason for this behavior.</p>
<p>You can get my code below :</p>
<p>example.h</p>
<blockquote><p>#include &lt;QtGui&gt;<br />
#include &lt;QtCore&gt;</p>
<p>#define MAX 900000</p>
<p>class Test<br />
{<br />
public:<br />
QString name;<br />
quint32 eid;<br />
QString address;<br />
Test(QString name, quint32 eid, QString address);<br />
Test();<br />
};</p>
<p>class Example<br />
{<br />
public:<br />
Example();<br />
};</p>
<p>class Example2<br />
{<br />
public:<br />
Example2();<br />
};</p></blockquote>
<p>example.cpp</p>
<blockquote><p>#include &#8220;example.h&#8221;</p>
<p>Example::Example()<br />
{<br />
QList&lt;Test&gt; list;<br />
QVector&lt;Test&gt; vector(50000);<br />
qDebug()&lt;&lt;&#8221;starting Example&#8221;;</p>
<p>QTime currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; 50000; ++i)<br />
{<br />
Test test(QString(&#8220;asasasasas&#8221;), i, QString(&#8220;aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#8221;));<br />
list.append(test);<br />
}<br />
qDebug()&lt;&lt;&#8221;time taken for appending in list= &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; 50000; ++i)<br />
{<br />
Test test(QString(&#8220;asasasasas&#8221;), i, QString(&#8220;aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#8221;));<br />
vector.append(test);<br />
}<br />
qDebug()&lt;&lt;&#8221;time taken for appending in vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());<br />
Test temp;<br />
currTime = QTime::currentTime();<br />
foreach(temp, list)<br />
{<br />
Test temp2 = temp;<br />
}<br />
qDebug()&lt;&lt;&#8221;foreach list = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>QList&lt;Test&gt;::iterator it;<br />
currTime = QTime::currentTime();<br />
for(it = list.begin(); it != list.end(); ++it)<br />
{<br />
Test temp2 = *it;<br />
}<br />
qDebug()&lt;&lt;&#8221;for list = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>quint32 size = list.size();<br />
currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; size; ++i)<br />
{<br />
//Test temp2 = list.at(i);<br />
Test temp2 = list[i];<br />
}<br />
qDebug()&lt;&lt;&#8221;for \&#8221;i\&#8221; list = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
foreach(temp, vector)<br />
{<br />
Test temp2 = temp;<br />
}<br />
qDebug()&lt;&lt;&#8221;foreach vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>QVector&lt;Test&gt;::iterator iter;<br />
currTime = QTime::currentTime();<br />
for(iter = vector.begin(); iter != vector.end(); ++iter)<br />
{<br />
Test temp2 = *iter;<br />
}<br />
qDebug()&lt;&lt;&#8221;for vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>size = vector.size();<br />
currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; size; ++i)<br />
{<br />
//Test temp2 = vector.at(i);<br />
Test temp2 = vector[i];<br />
}<br />
qDebug()&lt;&lt;&#8221;for \&#8221;i\&#8221; vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>}</p></blockquote>
<p>example2.cpp</p>
<blockquote><p>#include &#8220;example.h&#8221;<br />
#include &lt;vector.h&gt;<br />
#include &lt;list.h&gt;</p>
<p>Test::Test(QString name, quint32 eid, QString address)<br />
{<br />
this-&gt;name = name;<br />
this-&gt;eid = eid;<br />
this-&gt;address = address;<br />
}</p>
<p>Test::Test()<br />
{<br />
}</p>
<p>Example2::Example2()<br />
{<br />
list&lt;Test&gt; testList;<br />
vector&lt;Test&gt; testVector;<br />
Test testArray[MAX];</p>
<p>QTime currTime = QTime::currentTime();<br />
for(int i = 0; i &lt; MAX; ++i)<br />
{<br />
Test temp(QString(&#8220;asasasasas&#8221;), i, QString(&#8220;aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#8221;));<br />
testList.push_back(temp);<br />
}<br />
qDebug()&lt;&lt;&#8221;time taken for appending in list= &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; MAX; ++i)<br />
{<br />
Test test(QString(&#8220;asasasasas&#8221;), i, QString(&#8220;aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#8221;));<br />
testVector.push_back(test);<br />
}<br />
qDebug()&lt;&lt;&#8221;time taken for appending in vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
for(quint32 i = 0; i &lt; MAX; ++i)<br />
{<br />
Test test(QString(&#8220;asasasasas&#8221;), i, QString(&#8220;aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#8221;));<br />
testArray[i] = test;<br />
}<br />
qDebug()&lt;&lt;&#8221;time taken for appending in Array = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
list&lt;Test&gt;::iterator itList;<br />
for(itList = testList.begin(); itList != testList.end(); ++itList)<br />
{<br />
Test temp2 = *itList;<br />
}<br />
qDebug()&lt;&lt;&#8221;for loop List = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
vector&lt;Test&gt;::iterator itVector;<br />
for(itVector = testVector.begin(); itVector != testVector.end(); ++itVector)<br />
{<br />
Test temp2 = *itVector;<br />
}<br />
qDebug()&lt;&lt;&#8221;for loop Vector = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());</p>
<p>currTime = QTime::currentTime();<br />
for(int i = 0 ; i &lt; MAX; ++i)<br />
{<br />
Test temp2 = testArray[i];<br />
}<br />
qDebug()&lt;&lt;&#8221;for loop Array = &#8220;&lt;&lt; currTime.msecsTo(QTime::currentTime());<br />
}</p></blockquote>
<p>main.cpp</p>
<blockquote><p>#include &lt;QApplication&gt;<br />
#include &lt;example.h&gt;</p>
<p>int main(int argc, char* argv[])<br />
{<br />
QApplication app(argc, argv);<br />
Example ex1;</p>
<p>Example2 ex2;</p>
<p>return app.exec();<br />
}</p></blockquote>
<p>var infolink_pid = 46981;</p>
<br /> Tagged: C++ benchmarking, List, list vs vector, QList, QList vs QVector, Qt, Qt4, Qt4 Benchmarking, QVector, STL, Vector <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=121&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/07/22/benchmarking-on-c-and-qt4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>MS Office Live</title>
		<link>http://ankit17.wordpress.com/2009/07/15/ms-office-live/</link>
		<comments>http://ankit17.wordpress.com/2009/07/15/ms-office-live/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:21:57 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS Office suit]]></category>
		<category><![CDATA[online office suit]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/?p=114</guid>
		<description><![CDATA[Though I am not a fan of Microsoft, but I really like its MS Office suit. Its awesome, though I do not use it just for the reason that it is Microsoft&#8217;s. At times I do use MS Windows in my laptop, specially when I am in a mood to play some games, but most [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=114&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Though I am not a fan of Microsoft, but I really like its MS Office suit. Its awesome, though I do not use it just for the reason that it is Microsoft&#8217;s.</p>
<p>At times I do use MS Windows in my laptop, specially when I am in a mood to play some games, but most of the time I prefer using Ubuntu or Fedora.</p>
<p>Yesterday, I came across the news that MS has made it Office suit online. I though of trying it out once. If not use it, at least compare it with Google Docs, which I use at times.</p>
<p>After I took the pain to create an account this is what I get :</p>
<p style="text-align:center;">
<div id="attachment_116" class="wp-caption aligncenter" style="width: 810px"><img class="size-full wp-image-116" title="Screenshot" src="http://ankit17.files.wordpress.com/2009/07/screenshot1.png?w=450" alt="MS Does not want Linux user to use its Online Office Suit"   /><p class="wp-caption-text">MS Does not want Linux user to use its Online Office Suit</p></div>
<p><strong>Why should an browser application be dependent on some OS?</strong></p>
<p>Now that I have experienced this, I would be reluctant to try out again. Thus, MS ends up loosing customers. I think this was a great thing that MS had come out with but these things ruins all the fun.</p>
<p>var infolink_pid = 46981;</p>
<br /> Tagged: Microsoft, MS Office suit, online office suit <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=114&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/07/15/ms-office-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>

		<media:content url="http://ankit17.files.wordpress.com/2009/07/screenshot1.png" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>YourStory Entrepreneur Forum &#8211; Summer 2009</title>
		<link>http://ankit17.wordpress.com/2009/05/29/yourstory-entrepreneur-forum-summer-2009/</link>
		<comments>http://ankit17.wordpress.com/2009/05/29/yourstory-entrepreneur-forum-summer-2009/#comments</comments>
		<pubDate>Fri, 29 May 2009 17:55:05 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[Entrepreneur]]></category>
		<category><![CDATA[yourstory]]></category>
		<category><![CDATA[yourstory.in]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2009/05/29/yourstory-entrepreneur-forum-summer-2009/</guid>
		<description><![CDATA[I had been to this forum today and trust me it was just awesome. This is something I was looking forward to and it was totally worth attending this forum. I hope yourstory.in organizes more of this kind of forums. I was a good place for networking and the talks were really great. All the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=113&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had been to this forum today and trust me it was just awesome.  This is something I was looking forward to and it was totally worth attending this forum. I hope yourstory.in organizes more of this kind of forums.<br />
I was a good place for networking and the talks were really great.<br />
All the talk focused on a basic point for entrepreneur &#8211; Passion.<br />
Thanks to Shradha and her team for the forum. </p>
<br /> Tagged: Entrepreneur, yourstory, yourstory.in <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=113&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/05/29/yourstory-entrepreneur-forum-summer-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Nano from Sringur is Mamta Banerjee Comes in power?</title>
		<link>http://ankit17.wordpress.com/2009/04/03/nano-from-sringur-is-mamta-banerjee-comes-in-power/</link>
		<comments>http://ankit17.wordpress.com/2009/04/03/nano-from-sringur-is-mamta-banerjee-comes-in-power/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 14:35:28 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[Mamta Banarjee]]></category>
		<category><![CDATA[Tata Nano]]></category>
		<category><![CDATA[West Bengal]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2009/04/03/nano-from-sringur-is-mamta-banerjee-comes-in-power/</guid>
		<description><![CDATA[Mamta Banerjee recently participated in a phone in program on a bengali news channel. There she said that she would never ride Tata&#8217;s Nano as it has been made from poor people&#8217;s blood. Her answer to a particular question was quite string for me. The question was if there is any chance of Nano being [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=112&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mamta Banerjee recently participated in a phone in program on a bengali news channel. There she said that she would never ride Tata&#8217;s Nano as it has been made from poor people&#8217;s blood.<br />
Her answer to a particular question was quite string for me. The question was if there is any chance of Nano being rolled out form Singur if she comes in power. Her reply to the question &#8211; &#8220;I will first go through the contract they have signed with the West Bengal government and then decide.&#8221;<br />
Well whats striking in this was, she had been protesting against the Tata&#8217;s Nano project since 2006 which ultimately led to Tata pulling out of West Bengal and shifting the plant to Gujarat. Its almost two and a half years and now she says that she shall read the contract.<br />
Wasn&#8217;t she suppose to know what is the contract before she started the protests? It was her protests that led Tata to incur huge losses and she now says that she shall read the contract.<br />
May be my views are wrong in this but I shall like to know where am I wrong.</p>
<br /> Tagged: Mamta Banarjee, Tata Nano, West Bengal <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=112&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/04/03/nano-from-sringur-is-mamta-banerjee-comes-in-power/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Disturbing Photo in Newspapers</title>
		<link>http://ankit17.wordpress.com/2009/03/13/disturbing-photo-in-newspapers/</link>
		<comments>http://ankit17.wordpress.com/2009/03/13/disturbing-photo-in-newspapers/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 04:48:12 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[disturbing photos]]></category>
		<category><![CDATA[times of india]]></category>
		<category><![CDATA[TOI]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2009/03/13/disturbing-photo-in-newspapers/</guid>
		<description><![CDATA[Just like any other day, my day starts with spending some time over the news paper, usually Times Of India. There was a small snippet in the front page about a boy, 3 years old, who suffers an injury during holi celebration. The snippet said that &#8211; &#8220;the rod has been removed successfully from the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=111&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just like any other day, my day starts with spending some time over the news paper, usually Times Of India.<br />
There was a small snippet in the front page about a boy, 3 years old, who suffers an injury during holi celebration. The snippet said that &#8211; &#8220;the rod has been removed successfully from the boys body. More info at page 9.&#8221; On opening page nine, there was this very disturbing photo of the biy laying in the hospital bed with the rod right through his body.<br />
I just thought, should the newpapers actually provide such disturbing photos?</p>
<br /> Tagged: disturbing photos, times of india, TOI <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=111&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/03/13/disturbing-photo-in-newspapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Evolution of Mac&#8230;.</title>
		<link>http://ankit17.wordpress.com/2009/01/24/evolution-of-mac/</link>
		<comments>http://ankit17.wordpress.com/2009/01/24/evolution-of-mac/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 06:44:05 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2009/01/24/evolution-of-mac/</guid>
		<description><![CDATA[I was just browsing the regular website and i cam across this. Check out this link to see how Mac evolved in the last 25 years&#8230; http://content.zdnet.com/2346-9595_22-263589-1.html Tagged: mac<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=110&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was just browsing the regular website and i cam across this.<br />
Check out this link to see how Mac evolved in the last 25 years&#8230;</p>
<p>http://content.zdnet.com/2346-9595_22-263589-1.html</p>
<br /> Tagged: mac <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=110&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/01/24/evolution-of-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 better than Vista???</title>
		<link>http://ankit17.wordpress.com/2009/01/09/windows-7-better-than-vista/</link>
		<comments>http://ankit17.wordpress.com/2009/01/09/windows-7-better-than-vista/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 08:38:57 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/?p=103</guid>
		<description><![CDATA[I just happened to come accross this comics strip. Quite funny but may be true .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=103&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just happened to come accross this comics strip. Quite funny but may be true <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<div class="wp-caption alignnone" style="width: 431px"><a href="http://xkcd.com/528/"><img title="I have not actually tried the beta yet.  I hear its quite pleasant and hardly Hitler-y at all." src="http://imgs.xkcd.com/comics/windows_7.png" alt="Windows 7 better than Vista" width="421" height="189" /></a><p class="wp-caption-text">Windows 7 better than Vista</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=103&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2009/01/09/windows-7-better-than-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>

		<media:content url="http://imgs.xkcd.com/comics/windows_7.png" medium="image">
			<media:title type="html">I have not actually tried the beta yet.  I hear its quite pleasant and hardly Hitler-y at all.</media:title>
		</media:content>
	</item>
		<item>
		<title>Installed Fedora 10 in My Macbook Air</title>
		<link>http://ankit17.wordpress.com/2008/12/31/installed-fedora-10-in-my-macbook-air/</link>
		<comments>http://ankit17.wordpress.com/2008/12/31/installed-fedora-10-in-my-macbook-air/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 08:17:26 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[FC10]]></category>
		<category><![CDATA[fedora 10]]></category>
		<category><![CDATA[macbook Air]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/?p=101</guid>
		<description><![CDATA[I just installed Fedora 10 in my Macbook Air. Though its isn&#8217;t the same experience, but still its good. I have still not been able to configure the wi-fi and I also don&#8217;t know how to get that working. Still working on that.  Second problem is there is no right click in Mac Tagged: FC10, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=101&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just installed Fedora 10 in my Macbook Air. Though its isn&#8217;t the same experience, but still its good. I have still not been able to configure the wi-fi and I also don&#8217;t know how to get that working. Still working on that. </p>
<p>Second problem is there is no right click in Mac <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<br /> Tagged: FC10, fedora 10, macbook Air <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=101&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2008/12/31/installed-fedora-10-in-my-macbook-air/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Satyam Computers in real trouble&#8230;.</title>
		<link>http://ankit17.wordpress.com/2008/12/23/satyam-computers-in-real-trouble/</link>
		<comments>http://ankit17.wordpress.com/2008/12/23/satyam-computers-in-real-trouble/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 12:02:24 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[Satyam Computers]]></category>
		<category><![CDATA[world bank]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2008/12/23/satyam-computers-in-real-trouble/</guid>
		<description><![CDATA[It seems that Satyam Computers is in real problems, for 2 reasons - 1. The stocks fell approx 35% after the failed deal with a real estate company. 2. Now the World Bank has banned Satyam for 8 year. Reason &#8211; as the World Bank claims, Satyam Computers installed a key logger along with some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=100&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems that Satyam Computers is in real problems, for 2 reasons -<br />
1. The stocks fell approx 35% after the failed deal with a real estate company.<br />
2. Now the World Bank has banned Satyam for 8 year. Reason &#8211; as the World Bank claims, Satyam Computers installed a key logger along with some other software in theor system. Well, if this is true, then they deserved it.</p>
<br /> Tagged: Satyam Computers, world bank <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=100&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2008/12/23/satyam-computers-in-real-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
		<item>
		<title>Spent weekend trying different flavors of Linux</title>
		<link>http://ankit17.wordpress.com/2008/12/22/spent-weekend-trying-different-flavors-of-linux/</link>
		<comments>http://ankit17.wordpress.com/2008/12/22/spent-weekend-trying-different-flavors-of-linux/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 04:07:37 +0000</pubDate>
		<dc:creator>Ankit Agarwal</dc:creator>
				<category><![CDATA[My Thoughts...]]></category>
		<category><![CDATA[Fedora 9]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ankit17.wordpress.com/2008/12/22/spent-weekend-trying-different-flavors-of-linux/</guid>
		<description><![CDATA[I spent this weekend trying atleast 3-4 different flavors of Linux and settling for Fedora 9 in the end. The problem was that my system is quite old and low in config. It just has 256 MB of RAM. So, I needed something thats light weight. Secondly, I didn&#8217;e wanted to spend much time installing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=99&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spent this weekend trying atleast 3-4 different flavors of Linux and settling for Fedora 9 in the end. The problem was that my system is quite old and low in config. It just has 256 MB of RAM. So, I needed something thats light weight. Secondly, I didn&#8217;e wanted to spend much time installing all the required software after that, specially Wi-Fi drivers.Fedora 9 works kinda OK with 256 MB and most of the stuffs were already installed. </p>
<br /> Tagged: Fedora 9, Linux <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ankit17.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ankit17.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ankit17.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ankit17.wordpress.com&amp;blog=1520323&amp;post=99&amp;subd=ankit17&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ankit17.wordpress.com/2008/12/22/spent-weekend-trying-different-flavors-of-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b0c94dc3633c19c03377b6de6c2fb1ec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ankit</media:title>
		</media:content>
	</item>
	</channel>
</rss>
