<?xml version='1.0' encoding='utf-8' ?>
<rss version='2.0' xmlns:dc='http://purl.org/dc/elements/1.1/'>
  <channel>
    <title>Wolfmans Howlings comments</title>
    <link>http://blog.wolfman.com</link>
    <description>A programmers Blog about Ruby, Rails and a few other issue</description>
    <language>en-us</language>
    <ttl>40</ttl>
    <item>
      <title>"A HAML edit mode for JEdit" by Jesse</title>
      <description>
        If you're wondering why the buffers you had open still don't work, maybe even after you've closed them and reopened them, it's because jedit saves buffer options per file even after you close.  
        
        To change it, go to Utilities-&gt;Buffer Options-&gt;Edit mode
        
        New files will open and use the modes just fine.
      </description>
      <pubDate>Mon, 01 Mar 2010 13:32:58 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/20#comment-316</link>
      <guid isPermaLink='false'>urn:uuid:52821364-ef5e-405f-b61d-209039d8cd63</guid>
    </item>
    <item>
      <title>"A HAML edit mode for JEdit" by Jesse</title>
      <description>
        If you're wondering why the buffers you had open still don't work, maybe even after you've closed them and reopened them, it's because jedit saves buffer options per file even after you close.  
        
        To change it, go to Utilities-&gt;Buffer Options-&gt;Edit mode
        
        New files will open and use the modes just fine.
      </description>
      <pubDate>Mon, 01 Mar 2010 13:32:54 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/20#comment-315</link>
      <guid isPermaLink='false'>urn:uuid:83a0cb2b-f179-4767-b7f7-b5adba275b77</guid>
    </item>
    <item>
      <title>"Painting exterior siding" by Utah heating contractor</title>
      <description>Wolf man or wolf-man or wolfman refers to a werewolf , a type of lycanthrope. Wolf man may also mean: In film and television</description>
      <pubDate>Fri, 26 Feb 2010 06:54:20 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/6#comment-314</link>
      <guid isPermaLink='false'>urn:uuid:7b939699-444e-44fe-9abc-58c1624b344e</guid>
    </item>
    <item>
      <title>"Setting the focus in a form" by Jim</title>
      <description>
        To resolve IE6 issues. Works in other browsers as well.
        
        document.observe(&quot;dom:loaded&quot;, function() {
            $('my_control_id').focus()
        });
      </description>
      <pubDate>Thu, 28 Jan 2010 07:25:44 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/15#comment-310</link>
      <guid isPermaLink='false'>urn:uuid:61103e12-7e9b-44c9-aa22-39937d34cc0e</guid>
    </item>
    <item>
      <title>"Setting the focus in a form" by John</title>
      <description>
        After much googling....your's was the most elegant and simple!
        
        Thanks!
      </description>
      <pubDate>Sun, 17 Jan 2010 08:41:18 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/15#comment-301</link>
      <guid isPermaLink='false'>urn:uuid:224ec39a-6884-4a56-a24d-23b7e77421bb</guid>
    </item>
    <item>
      <title>"Getting a record id from text_field_with_auto_complete" by Jeremy Maziarz</title>
      <description>I forked DHH's auto_complete plugin to add the record id to the id tag of the &lt;li&gt; element. There is an example in the README of how to use the id using :after_update_element. Check it out on GitHub at http://github.com/jmaziarz/auto_complete</description>
      <pubDate>Thu, 31 Dec 2009 11:51:51 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/13#comment-297</link>
      <guid isPermaLink='false'>urn:uuid:9c64f55c-04c8-451a-91c7-19a9157aa2a1</guid>
    </item>
    <item>
      <title>"Using Cucumber to test Erlang Servers" by Jim Morris</title>
      <description>
        Steve that is very cool (although the syntax is not as nice as in Ruby ;)
        You should announce this on the cucumber and erlang groups.
        
        I'll try playing with it, thanks
      </description>
      <pubDate>Tue, 01 Dec 2009 19:24:43 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/46#comment-291</link>
      <guid isPermaLink='false'>urn:uuid:7acba8d1-b14c-4f35-993e-eff7334b0741</guid>
    </item>
    <item>
      <title>"Using Cucumber to test Erlang Servers" by Steve Yen</title>
      <description>
        I created a 100% erlang implementation of Cucumber, called cucumberl, for my OTP server testing needs, which others might find useful.  A step definition in erlang looks like: &quot;step([given, i, have, entered, N, into, the, calculator], _) -&gt; ...&quot;
        
        The repo for cucumberl is at http://github.com/northscale/cucumberl
        
        Cheers.
      </description>
      <pubDate>Tue, 01 Dec 2009 18:58:29 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/46#comment-290</link>
      <guid isPermaLink='false'>urn:uuid:a3697990-1d64-4083-a505-8236e1c2735b</guid>
    </item>
    <item>
      <title>"Using Postgresql with Grails" by Chris</title>
      <description>@wolfman - thanks! I like Grails, but I'm always feeling like I'm missing something by not having Spring/Hibernate experience to start. LOL - that's the story of writing code, isn't it? Spending 90% of the time to figure out the solution, and 10% on the implementation. :)</description>
      <pubDate>Tue, 24 Nov 2009 10:06:55 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/50#comment-289</link>
      <guid isPermaLink='false'>urn:uuid:377a6b68-26c9-4809-a7a3-c13e002d35cc</guid>
    </item>
    <item>
      <title>"Using Postgresql with Grails" by wolfman</title>
      <description>
        @Chris - I just started using Grails/Gorm/Hibernate, but I have been using JDBC and Spring for quite a while. I knew about the problem with Postgresql for a while, and have incorporated the RETURNING id in all my Spring DAOs for a while. I just Googled my ass off to find out how to do it for Hibernate, as I could not believe it was simply broken and unfixable. 
        
        I have to say that it probably took me 4 hours to track down the information on how to do it, and about 10 minutes to actually implement it.
      </description>
      <pubDate>Mon, 23 Nov 2009 14:59:19 -0800</pubDate>
      <link>http://blog.wolfman.com/posts/50#comment-288</link>
      <guid isPermaLink='false'>urn:uuid:ad90c049-677c-46f9-b666-35e5726adcea</guid>
    </item>
  </channel>
</rss>
