<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Iulian Dogariu</title>
	<atom:link href="http://www.iuliandogariu.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iuliandogariu.com</link>
	<description>Who Spilled the Java Beans?</description>
	<lastBuildDate>Tue, 23 Feb 2010 11:49:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Finding free disk space in Ruby by Iulian Dogariu</title>
		<link>http://www.iuliandogariu.com/2008/12/finding-free-disk-space-in-ruby/comment-page-1/#comment-626</link>
		<dc:creator>Iulian Dogariu</dc:creator>
		<pubDate>Tue, 23 Feb 2010 11:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=177#comment-626</guid>
		<description>Thanks, Martin! I updated the post to incorporate your tip.</description>
		<content:encoded><![CDATA[<p>Thanks, Martin! I updated the post to incorporate your tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding free disk space in Ruby by Martin Rehfeld</title>
		<link>http://www.iuliandogariu.com/2008/12/finding-free-disk-space-in-ruby/comment-page-1/#comment-607</link>
		<dc:creator>Martin Rehfeld</dc:creator>
		<pubDate>Sat, 23 Jan 2010 20:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=177#comment-607</guid>
		<description>Please bear in mind that not every filesystem uses 1k blocks. To make sure you always get sizes calculated with 1k blocks, use df -Pk</description>
		<content:encoded><![CDATA[<p>Please bear in mind that not every filesystem uses 1k blocks. To make sure you always get sizes calculated with 1k blocks, use df -Pk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using prototype.js in chrome by Iulian Dogariu</title>
		<link>http://www.iuliandogariu.com/2007/02/using-prototypejs-in-chrome/comment-page-1/#comment-434</link>
		<dc:creator>Iulian Dogariu</dc:creator>
		<pubDate>Tue, 03 Nov 2009 21:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=67#comment-434</guid>
		<description>Heh :) Thanks for the poke. Fixed the link to the patch.</description>
		<content:encoded><![CDATA[<p>Heh <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks for the poke. Fixed the link to the patch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using prototype.js in chrome by Dane</title>
		<link>http://www.iuliandogariu.com/2007/02/using-prototypejs-in-chrome/comment-page-1/#comment-419</link>
		<dc:creator>Dane</dc:creator>
		<pubDate>Tue, 27 Oct 2009 00:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=67#comment-419</guid>
		<description>Thanks for dashing my dreams with your Prototype patch v404 :-)</description>
		<content:encoded><![CDATA[<p>Thanks for dashing my dreams with your Prototype patch v404 <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Iulian Dogariu</title>
		<link>http://www.iuliandogariu.com/about/comment-page-1/#comment-335</link>
		<dc:creator>Iulian Dogariu</dc:creator>
		<pubDate>Sat, 12 Sep 2009 21:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.iuliandogariu.com/blog/?page_id=2#comment-335</guid>
		<description>Hi, 

I have a degree in Computer Engineering - with an emphasis on &quot;engineering&quot;. And also did a lot of programming and tinkering on my own in the spare time. If you&#039;re looking for inspiration :) here&#039;s one brief suggestion: take the thing that you&#039;re most passionate about, and practice it a lot. If you&#039;re passionate about programming, write and read lots of programs on your own, etc.</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I have a degree in Computer Engineering &#8211; with an emphasis on &#8220;engineering&#8221;. And also did a lot of programming and tinkering on my own in the spare time. If you&#8217;re looking for inspiration <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  here&#8217;s one brief suggestion: take the thing that you&#8217;re most passionate about, and practice it a lot. If you&#8217;re passionate about programming, write and read lots of programs on your own, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting groovy with JSON by deniz dizman</title>
		<link>http://www.iuliandogariu.com/2006/09/getting-groovy-with-json/comment-page-1/#comment-329</link>
		<dc:creator>deniz dizman</dc:creator>
		<pubDate>Wed, 09 Sep 2009 12:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=58#comment-329</guid>
		<description>The fix the 0 handling issue, just change

if( ! obj ) return &quot;&quot;;

to 

if( obj == null ) return &quot;&quot;;
</description>
		<content:encoded><![CDATA[<p>The fix the 0 handling issue, just change</p>
<p>if( ! obj ) return &#8220;&#8221;;</p>
<p>to </p>
<p>if( obj == null ) return &#8220;&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Dogariu Mihai</title>
		<link>http://www.iuliandogariu.com/about/comment-page-1/#comment-270</link>
		<dc:creator>Dogariu Mihai</dc:creator>
		<pubDate>Wed, 19 Aug 2009 19:09:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.iuliandogariu.com/blog/?page_id=2#comment-270</guid>
		<description>Hey, I just googled my name and came upon your site. I think you already realised that I&#039;m Romanian too. Don&#039;t even know why I&#039;m writing in English, it&#039;s just more fun :) the thing is that I find your job very interesting and I am very curious to know what university you have attended. I am in my last year in college and I would be very grateful if you could give me a feedback on this. Who knows, it could really be a source of inspiration :). I would appreciate it if you could responde as soon as you can. Thanks in advance :)</description>
		<content:encoded><![CDATA[<p>Hey, I just googled my name and came upon your site. I think you already realised that I&#8217;m Romanian too. Don&#8217;t even know why I&#8217;m writing in English, it&#8217;s just more fun <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  the thing is that I find your job very interesting and I am very curious to know what university you have attended. I am in my last year in college and I would be very grateful if you could give me a feedback on this. Who knows, it could really be a source of inspiration <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I would appreciate it if you could responde as soon as you can. Thanks in advance <img src='http://www.iuliandogariu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding free disk space in Ruby by iljkmittaa</title>
		<link>http://www.iuliandogariu.com/2008/12/finding-free-disk-space-in-ruby/comment-page-1/#comment-146</link>
		<dc:creator>iljkmittaa</dc:creator>
		<pubDate>Tue, 14 Jul 2009 17:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=177#comment-146</guid>
		<description>&quot;Parse&quot; is a fascinating word. I truly believe that. Thanks to mr. Dogariu for reminding it to me.</description>
		<content:encoded><![CDATA[<p>&#8220;Parse&#8221; is a fascinating word. I truly believe that. Thanks to mr. Dogariu for reminding it to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using prototype.js in chrome by biggosh</title>
		<link>http://www.iuliandogariu.com/2007/02/using-prototypejs-in-chrome/comment-page-1/#comment-134</link>
		<dc:creator>biggosh</dc:creator>
		<pubDate>Thu, 25 Jun 2009 22:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=67#comment-134</guid>
		<description>hello.
i&#039;m using prototype.js 1.6.0.3 and i&#039;m experiencing an issue with it inside an extension: tooltip appears everywhere (it seems on mouseover) with the text referred with the last valid tooltip displayed. May someone help me?

thanks in advance 
Christian F.</description>
		<content:encoded><![CDATA[<p>hello.<br />
i&#8217;m using prototype.js 1.6.0.3 and i&#8217;m experiencing an issue with it inside an extension: tooltip appears everywhere (it seems on mouseover) with the text referred with the last valid tooltip displayed. May someone help me?</p>
<p>thanks in advance<br />
Christian F.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding free disk space in Ruby by Alin</title>
		<link>http://www.iuliandogariu.com/2008/12/finding-free-disk-space-in-ruby/comment-page-1/#comment-35</link>
		<dc:creator>Alin</dc:creator>
		<pubDate>Tue, 16 Dec 2008 17:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.jayomega.net/blog/?p=177#comment-35</guid>
		<description>Other version without so many os commands usage:

def disk_space(path, used)
     path_info = `df -P #{path}`.split(&quot;\n&quot;)[1]
     if(used)
         path_info.split(&quot; &quot;)[2].to_i
     else
         path_info.split(&quot; &quot;)[3].to_i
     end
 end

p disk_space(&quot;/&quot;, true) - returns the used space for &quot;/&quot; mount point (bytes)
p disk_space(&quot;/&quot;, false) - returns the available space for &quot;/&quot; mount point (bytes)</description>
		<content:encoded><![CDATA[<p>Other version without so many os commands usage:</p>
<p>def disk_space(path, used)<br />
     path_info = `df -P #{path}`.split(&#8220;\n&#8221;)[1]<br />
     if(used)<br />
         path_info.split(&#8221; &#8220;)[2].to_i<br />
     else<br />
         path_info.split(&#8221; &#8220;)[3].to_i<br />
     end<br />
 end</p>
<p>p disk_space(&#8220;/&#8221;, true) &#8211; returns the used space for &#8220;/&#8221; mount point (bytes)<br />
p disk_space(&#8220;/&#8221;, false) &#8211; returns the available space for &#8220;/&#8221; mount point (bytes)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
