<?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>Entrepreneurship on the Rocks !</title>
	<atom:link href="http://shardul.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shardul.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 18:09:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shardul.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/b791e70a61b97b5663b944460f02a712?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Entrepreneurship on the Rocks !</title>
		<link>http://shardul.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shardul.wordpress.com/osd.xml" title="Entrepreneurship on the Rocks !" />
	<atom:link rel='hub' href='http://shardul.wordpress.com/?pushpress=hub'/>
		<item>
		<title>rails 3.1 Reversible Migrations</title>
		<link>http://shardul.wordpress.com/2012/01/25/reversible-migrations/</link>
		<comments>http://shardul.wordpress.com/2012/01/25/reversible-migrations/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 18:07:37 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=125</guid>
		<description><![CDATA[Migrations has been always one of the importnat features of Rails. With Rails 3.1 they got new , it no more up and down methods , there is only one method change . if you look at any migration , there are couple of questions like &#8220;why class methods ?&#8221; , &#8220;why rails not taking care of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=125&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Migrations has been always one of the importnat features of Rails. With Rails 3.1 they got new , it no more up and down methods , there is only one method change .</p>
<p>if you look at any migration , there are couple of questions like &#8220;why class methods ?&#8221; , &#8220;why rails not taking care of reversing migration itself?&#8221;</p>
<p>this is what new approach is all about !</p>
<p><a href="http://tenderlovemaking.com/">Aaron Patterson </a> simplified things !</p>
<p>The new Change method !</p>
<p>&lt;code&gt;</p>
<p>class CreateProducts &lt; ActiveRecord::Migration<br />
def change<br />
create_table :products do |t|<br />
t.string :title<br />
t.text :description<br />
t.string :image_url<br />
t.decimal :price</p>
<p>t.timestamps<br />
end<br />
end<br />
end</p>
<p>&lt;/code&gt;</p>
<p>this is default migration for Models using change method , as you can see there is only up logic . When you want to do rollback , rails will figure out how to reverse the migration from understanding your up code .</p>
<p>But ofcource there are few things which cannot be automatically reversed , this is becuase inforamtion required to do so is not available. e.g remove_column . In such cases rails will rais exception &#8220;<code>ActiveRecord::IrreversibleMigration" . </code></p>
<p>In this case manually define up and down method . but then it can be just simple instance methods and not class methods .</p>
<p>Do take a look at the <a href="https://github.com/rails/rails/blob/master/activerecord/lib/active_record/migration/command_recorder.rb">code </a> to understand what is happening .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=125&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2012/01/25/reversible-migrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>Marshaling Objects &#8211; Ruby</title>
		<link>http://shardul.wordpress.com/2012/01/25/marshaling-objects-ruby/</link>
		<comments>http://shardul.wordpress.com/2012/01/25/marshaling-objects-ruby/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 17:23:45 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=120</guid>
		<description><![CDATA[Ruby can take an object and convert it into stream of bytes that can be stored in database or can exposed outside of application. This is almost similer to Object Serialisation , which is very comman in java. In ruby , same process is called marshaling . But there are two things need to be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=120&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ruby can take an object and convert it into stream of bytes that can be stored in database or can exposed outside of application. This is almost similer to <a href="http://stackoverflow.com/questions/778707/what-is-object-serialisationjava" target="_blank">Object Serialisation</a> , which is very comman in java. In ruby , same process is called marshaling .</p>
<p>But there are two things need to be considered .</p>
<p>1. Some Objects cannot be dumped , if the objects to be dumped include bindings , procedure or methods objects , instance of class IO, singleton Object , or if you try to dump non-name classes or modules . (It will raise TypeError )</p>
<p>2. When you load marshaled object, Ruby needs to know the defination of class of that object.</p>
<p>very Common use case of Rails using marshaling is to store session data.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=120&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2012/01/25/marshaling-objects-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>reset &#8211; Rails !</title>
		<link>http://shardul.wordpress.com/2012/01/25/reset-rails/</link>
		<comments>http://shardul.wordpress.com/2012/01/25/reset-rails/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 17:04:28 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3 years]]></category>
		<category><![CDATA[agile web]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=117</guid>
		<description><![CDATA[I have finally started going through Rails again, it’s been a while since I have put my hands on code. Even Rails has moved on from 2.3.5 to 3.1.3, but it left me behindJ. At Webonise , we do have some passionate guys who have been coding religiously on Rails form last 2 years and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=117&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have finally started going through Rails again, it’s been a while since I have put my hands on code. Even Rails has moved on from 2.3.5 to 3.1.3, but it left me behindJ.</p>
<p>At Webonise , we do have some passionate guys who have been coding religiously on Rails form last 2 years and they know way more than what I used to know at one point in time.  But, trust me, I still have strong base and things are very easy for me to learn as I have spent around 3 years churning out ruby code day and night. So my team can expect some competition soon!</p>
<p>To start off with, I have started with Agile Web Development with rails again. This is probably the first book which I refereed when I started 4 years back!</p>
<p>Progress… On page 66 now, hoping to finish 470 pages by Sunday (as long weekend coming on the way ). Wish me luck!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=117&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2012/01/25/reset-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>Mysql issue on Mac OS X</title>
		<link>http://shardul.wordpress.com/2012/01/08/mysql-issue-on-mac-os-x/</link>
		<comments>http://shardul.wordpress.com/2012/01/08/mysql-issue-on-mac-os-x/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 08:51:21 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=110</guid>
		<description><![CDATA[I was setting up my rails evironment after long time and did some update to stack with mac os x update itself. Faced with small issue when tried to run rake db:create rake aborted! uninitialized constant Mysql I just have to fix it with change in gemfile , as it mentioned default sqlite3 gem , [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=110&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was setting up my rails evironment after long time and did some update to stack with mac os x update itself.  Faced with small issue when tried to run rake db:create </p>
<p>rake aborted! uninitialized constant Mysql</p>
<p>I just have to fix it with change in gemfile , as it mentioned default sqlite3 gem , just add mysql gem in gemfile and it would be fixed . (note : do run bundle install )  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=110&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2012/01/08/mysql-issue-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>Start and Stop MySql in Mac Os X 10.6 Snow Leopard</title>
		<link>http://shardul.wordpress.com/2010/11/04/start-and-stop-mysql-in-mac-os-x-10-6-snow-leopard/</link>
		<comments>http://shardul.wordpress.com/2010/11/04/start-and-stop-mysql-in-mac-os-x-10-6-snow-leopard/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 14:04:45 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=100</guid>
		<description><![CDATA[If you want to start MySql in Leopard, you need to call the startup item directly from the command line: sudo /Library/StartupItems/MySQLCOM/MySQLCOM start And to Stop MySql sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop You can also make alise into your bash_profile file ! alias start_mysql="/Library/StartupItems/MySQLCOM/MySQLCOM start" alias stop_mysql="/Library/StartupItems/MySQLCOM/MySQLCOM stop"<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=100&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to start MySql in Leopard, you need to call the startup item directly from the command line:</p>
<pre><code>sudo /Library/StartupItems/MySQLCOM/MySQLCOM start

And to Stop MySql
</code>
<pre><code>sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop</code></pre>
<p>You can also make alise into your bash_profile file !</p>
<div>
<pre><code>alias start_mysql="/Library/StartupItems/MySQLCOM/MySQLCOM start"
alias stop_mysql="/Library/StartupItems/MySQLCOM/MySQLCOM stop"

</code></pre>
</div>
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=100&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2010/11/04/start-and-stop-mysql-in-mac-os-x-10-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>BarCamp Pune 6</title>
		<link>http://shardul.wordpress.com/2009/11/13/barcamp-pune-6/</link>
		<comments>http://shardul.wordpress.com/2009/11/13/barcamp-pune-6/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:46:42 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[barcamp]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=92</guid>
		<description><![CDATA[Barcamp Pune 6 is again in town this Saturday i.e 14th Nov 2009. For all those who are not aware of the BarCamp , Navin Kabra of PuneTech.com has written two amzing blog post about barcamp here &#8220;What is Barcamp?&#8221; and if you are student then &#8220;Why should student attend barcamp?&#8220; Will update this post [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=92&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Barcamp Pune 6 is again in town this Saturday i.e 14th Nov 2009.</p>
<p>For all those who are not aware of the BarCamp , Navin Kabra of PuneTech.com has written two amzing blog post about barcamp here &#8220;<a href="http://punetech.com/what-is-a-barcamp-and-why-you-should-attend/">What is Barcamp?</a>&#8221; and if you are student then &#8220;<a href="http://punetech.com/why-students-should-bunk-classes-to-attend-barcamppune-projects-internships-recos/">Why should student attend barcamp?</a>&#8220;</p>
<p>Will update this post with the coverage from Barcamp tomorrow.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=92&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2009/11/13/barcamp-pune-6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>Slumdog Millionaire and Its Criticism</title>
		<link>http://shardul.wordpress.com/2009/03/26/slumdog-millionaire-and-its-criticism/</link>
		<comments>http://shardul.wordpress.com/2009/03/26/slumdog-millionaire-and-its-criticism/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 06:24:10 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[criticism]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[mumbai]]></category>
		<category><![CDATA[slumdog]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=86</guid>
		<description><![CDATA[personally i loved the movie Slumdog Millionaire, But i dont understand why its getting such criticisam from indian schoolers. One of the writer Sudip Mazumdar of Newsweek wrote: &#8220;People keep praising the film&#8217;s &#8216;realistic&#8217; depiction of slum life in India. But it&#8217;s no such thing. Slum life is a cage. It robs you of confidence [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=86&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>personally i loved the movie Slumdog Millionaire, But i dont understand why its getting such criticisam from indian schoolers.</p>
<p>One of the writer Sudip Mazumdar of <em><a title="Newsweek" href="http://en.wikipedia.org/wiki/Newsweek">Newsweek</a></em> wrote:</p>
<p>&#8220;People keep praising the film&#8217;s &#8216;realistic&#8217; depiction of slum life in India. But it&#8217;s no such thing. Slum life is a cage. It robs you of confidence in the face of the rich and the advantaged. It steals your pride, deadens your ambition, limits your imagination and psychologically cripples you whenever you step outside the comfort zone of your own neighborhood. Most people in the slums never achieve a fairy-tale ending.&#8221;  <a href="http://www.newsweek.com/id/185798">Link</a></p>
<p>These are very disturbing remarks. Auther has compared his story with Slumdog millionaire and try to create a picture that people from slum dont go anywhere. Then how come he writing for Newsweek?</p>
<p>Yes,slum still your pride , but it also gives you ability to understand what is real pride is!</p>
<p>Yes, slum deadens your ambition, but it help you to set some realistic ambitions!</p>
<p>yes, Its limits your imaginations, But its also you to understand what is the real problem and ability to answer those in most effective way!</p>
<p>No , Slums dont cripples you , Rather slum always remind you that there are so many things that need to be changed in your neighborhood whenever you steps outside.</p>
<p>Most people in the slums never achieve a fairy-tale ending , Yes. But they atleast make sure next generation leaves better life than they have lived.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=86&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2009/03/26/slumdog-millionaire-and-its-criticism/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make SVN ignore some folders</title>
		<link>http://shardul.wordpress.com/2009/03/23/how-to-make-svn-ignore-some-folders/</link>
		<comments>http://shardul.wordpress.com/2009/03/23/how-to-make-svn-ignore-some-folders/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 06:42:02 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[shardul]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=84</guid>
		<description><![CDATA[I spent lots of time searching this. SVN Red book http://svnbook.red-bean.com/ do not explain it properly. So here i am trying to Explain it. 1. Make sure you have SVN_EDITOR veriable set. 2. Type following command  on Terminal svn propset svn:ignore &#8220;*&#8221; log/ this will ignore all the logs file from your rails folder structure. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=84&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spent lots of time searching this. SVN Red book <cite>http://svnbook.red-bean.com/ </cite> do not explain it properly. So here i am trying to Explain it.</p>
<p>1. Make sure you have SVN_EDITOR veriable set.</p>
<p>2. Type following command  on Terminal</p>
<p>svn propset svn:ignore &#8220;*&#8221; log/</p>
<p>this will ignore all the logs file from your rails folder structure. You have to delete all the logs file before running this command.</p>
<p>3. If you want specifically Ignore only one file from directory e.g i want to ignore schema.rb from db director into rails folder structure.</p>
<p>svn propset svn:ignore &#8220;schema.rb&#8221; db/</p>
<p>4. Commit and apply changes</p>
<p>Done.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=84&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2009/03/23/how-to-make-svn-ignore-some-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
		<item>
		<title>Coding Navnirman Sena</title>
		<link>http://shardul.wordpress.com/2008/09/18/coding-navnirman-sena/</link>
		<comments>http://shardul.wordpress.com/2008/09/18/coding-navnirman-sena/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 07:04:34 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[Maratha]]></category>
		<category><![CDATA[Marathi]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[pune]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=20</guid>
		<description><![CDATA[I got this as mail .. its funny.. !! i really like it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=20&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got this as mail .. its funny.. !! i really like it.</p>
<div id="attachment_21" class="wp-caption alignnone" style="width: 310px"><a href="http://shardul.files.wordpress.com/2008/09/noname.jpg"><img class="size-medium wp-image-21" title="coding navnirman sena joke" src="http://shardul.files.wordpress.com/2008/09/noname.jpg?w=300&#038;h=225" alt="coding navnirman sena joke" width="300" height="225" /></a><p class="wp-caption-text">coding navnirman sena joke</p></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shardul.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shardul.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=20&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2008/09/18/coding-navnirman-sena/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>

		<media:content url="http://shardul.files.wordpress.com/2008/09/noname.jpg?w=300" medium="image">
			<media:title type="html">coding navnirman sena joke</media:title>
		</media:content>
	</item>
		<item>
		<title>Arjun &#8211; Animation Movie from UTV</title>
		<link>http://shardul.wordpress.com/2008/09/16/arjun-animation-movie-from-utv/</link>
		<comments>http://shardul.wordpress.com/2008/09/16/arjun-animation-movie-from-utv/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:56:13 +0000</pubDate>
		<dc:creator>shardul</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[Marathi]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[arjun]]></category>

		<guid isPermaLink="false">http://shardul.wordpress.com/?p=18</guid>
		<description><![CDATA[Today just a saw a trailer of Arjun- Animation movie form UTV. There is one more video on youtube which is i am not sure but&#8230; its looks amazing..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=18&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today just a saw a trailer of Arjun- Animation movie form UTV.</p>
<span style="text-align:center; display: block;"><a href="http://shardul.wordpress.com/2008/09/16/arjun-animation-movie-from-utv/"><img src="http://img.youtube.com/vi/5-EezcpFzVI/2.jpg" alt="" /></a></span>
<p>There is one more video on youtube which is i am not sure but&#8230; its looks amazing..</p>
<span style="text-align:center; display: block;"><a href="http://shardul.wordpress.com/2008/09/16/arjun-animation-movie-from-utv/"><img src="http://img.youtube.com/vi/fGOIj6JQjdA/2.jpg" alt="" /></a></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/shardul.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/shardul.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shardul.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shardul.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shardul.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shardul.wordpress.com&amp;blog=573801&amp;post=18&amp;subd=shardul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shardul.wordpress.com/2008/09/16/arjun-animation-movie-from-utv/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c327cb095cba2b4f1cb1849096807e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shardul</media:title>
		</media:content>
	</item>
	</channel>
</rss>
