<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: ruby code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Fri, 25 Jul 2008 23:56:37 GMT</pubDate>
    <description>DZone Snippets: ruby code</description>
    <item>
      <title>days in month</title>
      <link>http://snippets.dzone.com/posts/show/4397</link>
      <description>// returns number of days in specified month&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;def days_in_month(month)&lt;br /&gt;  (Date.new(Time.now.year,12,31).to_date&lt;&lt;(12-month)).day&lt;br /&gt;end&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Tue, 07 Aug 2007 13:10:38 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/4397</guid>
      <author>kelyar (Kelyarsky Evgeniy)</author>
    </item>
    <item>
      <title>remove nonprintable characters</title>
      <link>http://snippets.dzone.com/posts/show/2527</link>
      <description>&lt;code&gt;&lt;br /&gt;def printable(str)&lt;br /&gt;  return "" unless str&lt;br /&gt;  eval(str.strip.dump.gsub(/\\[0-9]{3}/,''))&lt;br /&gt;end&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Mon, 04 Sep 2006 13:08:47 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/2527</guid>
      <author>kelyar (Kelyarsky Evgeniy)</author>
    </item>
    <item>
      <title>Ruby method to get seconds from colon-separated time string</title>
      <link>http://snippets.dzone.com/posts/show/1137</link>
      <description>// converts colon-separated time to seconds&lt;br /&gt;// "01:02:03" =&gt; 3723&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;def colon_separated_to_i(str)&lt;br /&gt;&lt;br /&gt;  time_arr = []&lt;br /&gt;  time_arr = str.split(":").reverse&lt;br /&gt;  sec = 0&lt;br /&gt;  secs = [1, 60, 60*60, 60*60*24]&lt;br /&gt;&lt;br /&gt;  time_arr.size.times do {|i|&lt;br /&gt;    sec += secs[i].to_i * time_arr[i].to_i&lt;br /&gt;  end&lt;br /&gt;  sec&lt;br /&gt;end&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Thu, 12 Jan 2006 01:05:37 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/1137</guid>
      <author>kelyar (Kelyarsky Evgeniy)</author>
    </item>
  </channel>
</rss>
