<?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></title>
	<atom:link href="http://sraji.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sraji.wordpress.com</link>
	<description>My experiments in FOSS Technologies !</description>
	<lastBuildDate>Thu, 26 Jan 2012 07:12:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sraji.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title></title>
		<link>http://sraji.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sraji.wordpress.com/osd.xml" title="" />
	<atom:link rel='hub' href='http://sraji.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to reset MySQL root password ?</title>
		<link>http://sraji.wordpress.com/2011/08/10/how-to-reset-mysql-root-password/</link>
		<comments>http://sraji.wordpress.com/2011/08/10/how-to-reset-mysql-root-password/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 05:18:43 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1583</guid>
		<description><![CDATA[Greetings! To access MySQL db from terminal it is necessary to give its root password Since i forgot its root password, i ended up with the following error Error: ERROR 1045 (28000): Access denied for user &#8216;root&#8217;@'localhost&#8217; (using password: NO) Then i followed the below steps to reset it Steps: 1. [root@venus ~]# service mysqld [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1583&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Greetings!</p>
<p>To access MySQL db from terminal it is necessary to give its root password</p>
<p>Since i forgot its root password, i ended up with the following error</p>
<h4><span style="color:#0000ff;">Error:</span></h4>
<p><span style="color:#ff0000;"><strong><span class="Apple-style-span" style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;">ERROR 1045 (28000): Access denied for user &#8216;root&#8217;@'localhost&#8217; </span></strong></span></p>
<p><span style="color:#ff0000;"><strong><span class="Apple-style-span" style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;">(using password: NO)</span> </strong></span></p>
<p>Then i followed the below steps to reset it</p>
<h4><span style="color:#0000ff;">Steps:</span></h4>
<p style="padding-left:30px;"><strong>1.</strong> [root@venus ~]# service mysqld stop</p>
<p style="padding-left:60px;">Stopping mysqld: [ OK ]</p>
<p style="padding-left:30px;"><strong>2.</strong> [root@venus ~]# mysqld_safe &#8211;skip-grant-tables &amp; [1] 3735</p>
<p style="padding-left:30px;"><strong>3</strong>. [root@venus ~]# 110809 10:43:22 mysqld_safe Logging to &#8216;/var/log/mysqld.log&#8217;. 110809 10:43:22 mysqld_safe</p>
<p style="padding-left:60px;">Starting mysqld daemon with databases from /var/lib/mysql</p>
<p style="padding-left:30px;"><strong>4.</strong> [root@venus ~]# mysql -u root</p>
<p style="padding-left:60px;">Welcome to the MySQL monitor. Commands end with ; or \g.</p>
<p style="padding-left:60px;">Your MySQL connection id is 1</p>
<p style="padding-left:60px;">Server version: 5.1.56 Source distribution</p>
<p style="padding-left:60px;">Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.</p>
<p style="padding-left:60px;">This software comes with ABSOLUTELY NO WARRANTY.</p>
<p style="padding-left:60px;">This is free software, and you are welcome to modify and redistribute it under the GPL v2 license</p>
<p style="padding-left:60px;">Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the current input statement.</p>
<p style="padding-left:30px;"><strong>5.</strong> mysql&gt; UPDATE user SET password=PASSWORD(&#8220;slash123&#8243;)WHERE user=&#8221;root&#8221;;</p>
<p style="padding-left:60px;">ERROR 1046 (3D000): No database selected</p>
<p style="padding-left:60px;">( Note: Here &#8220;slash123&#8243; is my mysql root password )</p>
<p style="padding-left:30px;"><strong>6</strong>. mysql&gt; show databases;</p>
<p style="padding-left:60px;">+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| Database |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| information_schema |<br />
| django |<br />
| drupal |<br />
| mysql |<br />
| student |<br />
| test |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
6 rows in set (0.34 sec)</p>
<p style="padding-left:30px;"><strong>7.</strong> mysql&gt; use mysql;</p>
<p style="padding-left:60px;">Reading table information for completion of table and column names</p>
<p style="padding-left:60px;">You can turn off this feature to get a quicker startup with -</p>
<p style="padding-left:60px;">A Database changed</p>
<p style="padding-left:30px;"><strong>8.</strong> mysql&gt; UPDATE user SET password=PASSWORD(&#8220;slash123&#8243;)WHERE user=&#8221;root&#8221;;</p>
<p style="padding-left:60px;">Query OK, 3 rows affected (1.07 sec) Rows matched: 3 Changed: 3 Warnings: 0</p>
<p style="padding-left:30px;"><strong>9.</strong> mysql&gt; flush privileges;</p>
<p style="padding-left:60px;">Query OK, 0 rows affected (0.00 sec)</p>
<p style="padding-left:30px;"><strong>10</strong>. mysql&gt; quit Bye</p>
<p style="padding-left:30px;"><strong>11.</strong> [rajee@venus ~]$ mysql -u root -p</p>
<p style="padding-left:60px;">Enter password:</p>
<p style="padding-left:60px;">Welcome to the MySQL monitor. Commands end with ; or \g.</p>
<p style="padding-left:60px;">Your MySQL connection id is 3</p>
<p style="padding-left:60px;">Server version: 5.1.56 Source distribution</p>
<p style="padding-left:60px;">Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.</p>
<p style="padding-left:60px;">This software comes with ABSOLUTELY NO WARRANTY. This is free software,</p>
<p style="padding-left:60px;">and you are welcome to modify and redistribute it under the GPL v2 license</p>
<p style="padding-left:60px;">Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the current input statement.</p>
<p>That&#8217;s it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now i am able to access MySQL prompt from the terminal</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1583/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1583&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/08/10/how-to-reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>MySQL connection error and its solution</title>
		<link>http://sraji.wordpress.com/2011/08/06/mysql-connection-error-and-its-solution/</link>
		<comments>http://sraji.wordpress.com/2011/08/06/mysql-connection-error-and-its-solution/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 07:22:44 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1579</guid>
		<description><![CDATA[Hai, today i faced a mysql connection problem while logging in to mysql prompt from the terminal I am running on Fedora 14 Here i posted the error and its solution Error: ERROR 2002 (HY000): Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2) Solution: To solve the above error, it is necessary to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1579&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai, today i faced a mysql connection problem while logging in to mysql prompt from the terminal</p>
<p>I am running on Fedora 14</p>
<p>Here i posted the error and its solution</p>
<h4><span style="color:#0000ff;">Error:</span></h4>
<p><strong><span style="color:#ff0000;">ERROR 2002 (HY000): Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2)</span></strong></p>
<h4><span style="color:#0000ff;">Solution:</span></h4>
<p>To solve the above error, it is necessary to start <strong><span style="color:#008000;">The MySQL Server &#8211; mysqld </span></strong></p>
<h4><span style="color:#0000ff;">Start MySQL server:</span></h4>
<p style="padding-left:30px;">As a root user, start the mysql server</p>
<p style="padding-left:30px;"><span style="color:#ff00ff;"><strong>service mysqld start</strong></span></p>
<h4><span style="color:#0000ff;">Stop MySQL server:</span></h4>
<p style="padding-left:30px;">As a root user, stop the mysql server</p>
<p style="padding-left:30px;"><span style="color:#ff00ff;"><strong>service mysqld stop</strong></span></p>
<p><span style="color:#000000;"><strong>Note</strong>:</span> The file mysql.sock is automatically created when the MySQL server ( mysqld ) runs, otherwise it is not.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1579/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1579&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/08/06/mysql-connection-error-and-its-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>How to check Linux Desktop Environment &#8211; GNOME or KDE ?</title>
		<link>http://sraji.wordpress.com/2011/08/04/how-to-check-linux-desktop-environment-gnome-or-kde/</link>
		<comments>http://sraji.wordpress.com/2011/08/04/how-to-check-linux-desktop-environment-gnome-or-kde/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 07:10:12 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1576</guid>
		<description><![CDATA[Hai, though i am 70% confirmed in using GNOME environment, but bit doubtful regarding, &#8220;Whether iam using Gnome or Kde desktop environment in Fedora 14&#8243; To check it, did a bit surfing and confirmed with GNOME. You can verify it using gui or terminal Using GUI: On Fedora, form the top panel click on  System [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1576&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai, though i am 70% confirmed in using GNOME environment, but bit doubtful regarding, &#8220;Whether iam using Gnome or Kde desktop environment in Fedora 14&#8243;</p>
<p>To check it, did a bit surfing and confirmed with GNOME.</p>
<p>You can verify it using gui or terminal</p>
<h3>Using GUI:</h3>
<p style="padding-left:30px;">On Fedora, form the top panel click on  <strong><span style="color:#ff00ff;">System -&gt; About this Computer</span></strong>. Now you can see GNOME or KDE with its version number</p>
<p style="padding-left:30px;">On Ubuntu, you can find directly as <strong><span style="color:#ff00ff;">System -&gt; About GNOME</span></strong> or <span style="color:#ff00ff;"><strong>System -&gt; About KDE</strong></span></p>
<h3>Using Terminal:</h3>
<p style="padding-left:30px;">Type the following command in the terminal.</p>
<p style="padding-left:60px;"><span style="color:#ff00ff;"><strong>echo $DESKTOP_SESSION </strong></span></p>
<p style="padding-left:30px;">You can see the output as gnome (if gnome present) or kde (if kde present)</p>
<p><a href="http://superuser.com/questions/96151/how-do-i-check-whether-i-am-using-kde-or-gnome">Click here</a> for the source <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1576/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1576&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/08/04/how-to-check-linux-desktop-environment-gnome-or-kde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>How to display HTML tags in rails helper methods ?</title>
		<link>http://sraji.wordpress.com/2011/05/26/how-to-display-html-tags-in-rails-helper-methods/</link>
		<comments>http://sraji.wordpress.com/2011/05/26/how-to-display-html-tags-in-rails-helper-methods/#comments</comments>
		<pubDate>Thu, 26 May 2011 15:27:54 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1564</guid>
		<description><![CDATA[Greetings! Today when i was working with helper methods for a ruby on rails project, i faced a problem of not rendering HTML tags in View Instead it rendered as a String. For example, the actual scenario is, I had the following code in helper module Inside view when i called this method I got [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1564&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Greetings!</p>
<p>Today when i was working with helper methods for a ruby on rails project, i faced a problem of not rendering HTML tags in View</p>
<p>Instead it rendered as a String.</p>
<p>For example, the actual scenario is,</p>
<p>I had the following code in helper module</p>
<p><pre class="brush: ruby;">
def show_list(num, page=nil)
..........
..........
content = []
for i in collection
content &lt;&lt; &quot;&lt;li&gt; #{i.name} &lt;/li&gt;&quot;
end
.........
.........
end

</pre></p>
<p>Inside view when i called this method</p>
<p><pre class="brush: ruby;">
&lt;%=  show_list(25) %&gt;

</pre></p>
<p>I got the output as a string, <span style="color:#0000ff;">&#8220;&lt;li&gt;actual data goes here&lt;/li&gt;&#8221;</span>, not interpreting the HTML tags</p>
<p>Then after surfing for nearly a couple of hours, i came to know that its a <span style="color:#0000ff;">wrong</span> way of calling the method in View</p>
<p>The <span style="color:#008000;">right</span> way  is to prefix the method using <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/RawOutputHelper.html#method-i-raw">raw</a> helper method</p>
<p><strong><span style="color:#ff00ff;">Correct way</span></strong></p>
<p><pre class="brush: ruby;">

&lt;%= raw show_list(25) %&gt;

</pre></p>
<p>Now the view displays the data as a list item <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1564/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1564/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1564/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1564&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/05/26/how-to-display-html-tags-in-rails-helper-methods/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>Soultion for rake aborted! undefined method `task&#8217; in rails 3.0.7</title>
		<link>http://sraji.wordpress.com/2011/05/25/soultion-for-rake-aborted-undefined-method-task-in-rails-3-0-7/</link>
		<comments>http://sraji.wordpress.com/2011/05/25/soultion-for-rake-aborted-undefined-method-task-in-rails-3-0-7/#comments</comments>
		<pubDate>Wed, 25 May 2011 13:52:56 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1553</guid>
		<description><![CDATA[Hai, today when i created an empty database rake db:create for a rails project, i faced the following error Error: rake aborted! undefined method `task&#8217; for #&#60;Pagescroll::Application:0xb74dcb0c&#62; (See full trace by running task with &#8211;trace) To solve it,  i followed the  below steps which i found while surfing The issue is because of the version [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1553&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai, today when i created an empty database</p>
<p style="padding-left:30px;"><span style="color:#008000;">rake db:create</span></p>
<p>for a rails project, i faced the following error</p>
<p><strong><span style="color:#0000ff;">Error:</span></strong></p>
<p style="padding-left:30px;"><span style="color:#ff0000;">rake aborted!</span><br />
<span style="color:#ff0000;">undefined method `task&#8217; for #&lt;Pagescroll::Application:0xb74dcb0c&gt;</span></p>
<p><span style="color:#ff0000;">(See full trace by running task with &#8211;trace)</span></p>
<p>To solve it,  i followed the  below steps which i found while surfing</p>
<p>The issue is because of the version of rake</p>
<p><strong><span style="color:#0000ff;">Steps:</span></strong></p>
<p style="padding-left:30px;"><span style="color:#800000;">1. gem uninstall rake -v 0.9</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">2. gem install rake -v 0.8.7</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">3. Edit the Gemfile and add</span></p>
<p style="padding-left:60px;"><span style="color:#800000;">i. gem &#8216;rake&#8217;, &#8217;0.8.7&#8242;</span></p>
<p style="padding-left:30px;"><span style="color:#800000;">4. bundle update</span></p>
<p>Now when i gave</p>
<p style="padding-left:30px;"><span style="color:#008000;">rake db:create</span></p>
<p>It works  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="padding-left:30px;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1553/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1553&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/05/25/soultion-for-rake-aborted-undefined-method-task-in-rails-3-0-7/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>Problem solved for Mysql2::Error  Can&#8217;t connect to local MySQL server through socket &#8216;/tmp/mysql.sock&#8217; (2) in Rails 3</title>
		<link>http://sraji.wordpress.com/2011/05/18/problem-solved-for-mysql2error-cant-connect-to-local-mysql-server-through-socket-tmpmysql-sock-2-in-rails-3/</link>
		<comments>http://sraji.wordpress.com/2011/05/18/problem-solved-for-mysql2error-cant-connect-to-local-mysql-server-through-socket-tmpmysql-sock-2-in-rails-3/#comments</comments>
		<pubDate>Wed, 18 May 2011 13:13:06 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1548</guid>
		<description><![CDATA[Hai, iam using Fedora 14. Today i cloned a repo from github. When i executed the application i faced  the following mysql error Mysql2::Error Can&#8217;t connect to local MySQL server through socket &#8216;/tmp/mysql.sock&#8217; (2) Then after googling, i came to know that we need to change the path ( must give the correct path of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1548&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai, iam using Fedora 14.</p>
<p>Today i cloned a repo from github.</p>
<p>When i executed the application i faced  the following mysql error</p>
<p style="padding-left:30px;"><span style="color:#ff0000;">Mysql2::Error</span></p>
<p><span style="color:#ff0000;">Can&#8217;t connect to local MySQL server through socket &#8216;/tmp/mysql.sock&#8217; (2)</span></p>
<p>Then after googling, i came to know that we need to change the path ( must give the correct path of mysql.sock )  of a socket attribute in <span style="color:#0000ff;">config/database.yml</span></p>
<p>To know its path, i just gave the following command</p>
<p><span style="color:#008000;">[rajee@localhost ~]$ locate mysql.sock</span></p>
<p><span style="color:#008000;">/var/lib/mysql/mysql.sock</span></p>
<p>Now the socket attribute path is changed as <span style="color:#0000ff;">socket: /var/lib/mysql/mysql.sock</span></p>
<p><span style="color:#000000;">This path must also be changed in test, production in config/database.yml</span></p>
<p>Hope this helps for someone <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span style="color:#0000ff;"><span style="color:#000000;"><br />
</span></span></p>
<p><span style="color:#0000ff;"><br />
</span></p>
<p><span style="color:#ff0000;"><br />
</span></p>
<p style="padding-left:30px;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1548/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1548/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1548/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1548&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/05/18/problem-solved-for-mysql2error-cant-connect-to-local-mysql-server-through-socket-tmpmysql-sock-2-in-rails-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>How to extract rar files in fedora 14 ?</title>
		<link>http://sraji.wordpress.com/2011/05/17/how-to-extract-rar-files-in-fedora-14/</link>
		<comments>http://sraji.wordpress.com/2011/05/17/how-to-extract-rar-files-in-fedora-14/#comments</comments>
		<pubDate>Tue, 17 May 2011 13:18:00 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1543</guid>
		<description><![CDATA[To extract the rar format files on Fedora 14, as a root user type the following commands Install free and non free yum repositories rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm Install unrar yum install unrar<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1543&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To extract the rar format files on Fedora 14, as a root user type the following commands</p>
<h3><span style="color:#0000ff;">Install free and non free yum repositories</span></h3>
<p><span style="color:#800000;">rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm</span></p>
<p><span style="color:#800000;">rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm</span></p>
<h3><span style="color:#0000ff;">Install unrar</span></h3>
<p><span style="color:#800000;">yum install unrar</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1543/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1543&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/05/17/how-to-extract-rar-files-in-fedora-14/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>How to install Django on Fedora14 ?</title>
		<link>http://sraji.wordpress.com/2011/04/19/how-to-install-django-on-fedora14/</link>
		<comments>http://sraji.wordpress.com/2011/04/19/how-to-install-django-on-fedora14/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 13:33:46 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1533</guid>
		<description><![CDATA[Hai, To insall django on Fedora 14, open a terminal and as a root user type yum install Django<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1533&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai,</p>
<p>To insall django on Fedora 14, open a terminal and as a root user type</p>
<h3><span style="color:#ff00ff;">yum install Django</span></h3>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1533&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/04/19/how-to-install-django-on-fedora14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>Way to Solve uninitialized constant Gem::SilentUI (NameError) in RoR</title>
		<link>http://sraji.wordpress.com/2011/04/08/way-to-solve-uninitialized-constant-gemsilentui-nameerror-in-ror/</link>
		<comments>http://sraji.wordpress.com/2011/04/08/way-to-solve-uninitialized-constant-gemsilentui-nameerror-in-ror/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 04:06:35 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1528</guid>
		<description><![CDATA[Hai today when i was working with a rails project, when i gave bundle install ( after editing the Gemfile ), i received the following error Error : /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/ui.rb:56: uninitialized constant Gem::SilentUI (NameError) from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/cli.rb:16:in `initialize&#8217; from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `new&#8217; from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `dispatch&#8217; from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor/base.rb:389:in `start&#8217; from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/bin/bundle:13 from /usr/bin/bundle:19:in `load&#8217; from /usr/bin/bundle:19 Inorder to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1528&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hai today when i was working with a rails project, when i gave <em>bundle install</em> ( after editing the Gemfile ), i received the following error</p>
<p><span style="color:#0000ff;">Error :</span></p>
<p style="padding-left:30px;"><span style="color:#ff0000;">/usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/ui.rb:56: uninitialized constant Gem::SilentUI (NameError)</span><br />
<span style="color:#ff0000;"> from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/cli.rb:16:in `initialize&#8217;</span><br />
<span style="color:#ff0000;"> from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `new&#8217;</span><br />
<span style="color:#ff0000;"> from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `dispatch&#8217;</span><br />
<span style="color:#ff0000;"> from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor/base.rb:389:in `start&#8217;</span><br />
<span style="color:#ff0000;"> from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/bin/bundle:13</span><br />
<span style="color:#ff0000;"> from /usr/bin/bundle:19:in `load&#8217;</span><br />
<span style="color:#ff0000;"> from /usr/bin/bundle:19</span></p>
<p>Inorder to get away from this error, just update the bundler by running the following command</p>
<p style="padding-left:30px;"><span style="color:#ff00ff;"><strong>sudo gem install bundler</strong></span></p>
<p>Now<em> bundle install</em> will work <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="padding-left:30px;">&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1528/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1528/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1528/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1528&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/04/08/way-to-solve-uninitialized-constant-gemsilentui-nameerror-in-ror/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
		<item>
		<title>display:inline property in CSS</title>
		<link>http://sraji.wordpress.com/2011/03/29/displayinline-property-in-css/</link>
		<comments>http://sraji.wordpress.com/2011/03/29/displayinline-property-in-css/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:14:20 +0000</pubDate>
		<dc:creator>raji</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://sraji.wordpress.com/?p=1522</guid>
		<description><![CDATA[This property removes the line break before or after the html element Example Code: If you run the above code, you wont see any line breaks between the first and second &#60;p&#62; tags<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1522&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This property removes the line break before or after the html element</p>
<p><span style="color:#0000ff;">Example Code:</span></p>
<p><pre class="brush: xml;">
 &lt;html&gt;
 &lt;body&gt;
 &lt;p style=&quot;display:inline&quot;&gt;This paragraph is continued &lt;/p&gt;
 &lt;p style=&quot;display:inline&quot;&gt;without line break because of &lt;b&gt;display-inline&lt;/b&gt; property&lt;/p&gt;
 &lt;/body&gt;
 &lt;/html&gt;

</pre></p>
<p>If you run the above code, you wont see any line breaks between the first and second &lt;p&gt; tags</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sraji.wordpress.com/1522/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sraji.wordpress.com/1522/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sraji.wordpress.com/1522/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sraji.wordpress.com&amp;blog=8585499&amp;post=1522&amp;subd=sraji&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sraji.wordpress.com/2011/03/29/displayinline-property-in-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a26b12c0b23c818bacc439f3bdc84105?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">raji</media:title>
		</media:content>
	</item>
	</channel>
</rss>
