<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Just Another Web Start Up - Code</title>
    <link>http://jawsu.com/</link>
    <description>VC, IPO, 2.0, Oh No...</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2.1 - http://www.s9y.org/</generator>
    <pubDate>Mon, 02 Jun 2008 01:55:31 GMT</pubDate>

    <image>
        <url>http://jawsu.com/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Just Another Web Start Up - Code - VC, IPO, 2.0, Oh No...</title>
        <link>http://jawsu.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Finally Back to Hacking...</title>
    <link>http://jawsu.com/archives/7-Finally-Back-to-Hacking....html</link>
            <category>Code</category>
    
    <comments>http://jawsu.com/archives/7-Finally-Back-to-Hacking....html#comments</comments>
    <wfw:comment>http://jawsu.com/wfwcomment.php?cid=7</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://jawsu.com/rss.php?version=2.0&amp;type=comments&amp;cid=7</wfw:commentRss>
    

    <author>nospam@example.com (Patrick Muldoon)</author>
    <content:encoded>
    Ok so finally getting back to hacking (although the typing is a bit slow due to silly me cutting the middle finger on my left hand with a razor blade stripping wire--but I digress). &lt;br /&gt;
&lt;br /&gt;
Am basically scrapping my old code and starting afresh,  so just some quick notes on how I was setting up a new rails app (mainly so I don&#039;t forget the next time I need to do it). &lt;br /&gt;
&lt;br /&gt;
create an empty git repos on my central server (mainly for backups / sharing). &lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;GIT_DIR=proj.git git init &lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
On my devel workstation start off with your standard rails app. &lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
rails appname &lt;br /&gt;
&lt;br /&gt;
.gitignore &lt;&lt; END&lt;br /&gt;
log/*.log&lt;br /&gt;
tmp/**/*&lt;br /&gt;
.DS_Store&lt;br /&gt;
doc/api&lt;br /&gt;
doc/app&lt;br /&gt;
END&lt;br /&gt;
&lt;br /&gt;
touch log/.gitignore&lt;br /&gt;
touch tmp/.gitignore&lt;br /&gt;
&lt;br /&gt;
git commit -m &quot;Initial Commit&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;/blockquote&gt; &lt;br /&gt;
&lt;br /&gt;
Now need to push changes out to our central server&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
git remote add origin ssh://centralserver/proj.git&lt;br /&gt;
git push origin master&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Now following a combination of Ryan Bates Railscast &lt;a href=&quot;http://railscasts.com/episodes/105&quot;&gt;Gitting Rails 2.1RC1&lt;/a&gt; and Graeme Mathieson&#039;s &lt;a href=&quot;http://woss.name/2008/04/09/using-git-submodules-to-track-vendorrails/&quot;&gt;Using Git Submodules to track Vendor Rails&lt;/a&gt; snag a copy of edge rails into vendor rails, and update scripts,etc...&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
git submodule add git://github.com/rails/rails.git vendor/rails&lt;br /&gt;
rake rails:update&lt;br /&gt;
git commit -m &quot;Imports Rail&#039;s Head as Submodule&quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
And now we are ready to do some coding.  
    </content:encoded>

    <pubDate>Sun, 25 May 2008 21:45:19 -0400</pubDate>
    <guid isPermaLink="false">http://jawsu.com/archives/7-guid.html</guid>
    
</item>
<item>
    <title>Building the Ruby Bindngs for RRDTool on Leopard i386</title>
    <link>http://jawsu.com/archives/6-Building-the-Ruby-Bindngs-for-RRDTool-on-Leopard-i386.html</link>
            <category>Code</category>
    
    <comments>http://jawsu.com/archives/6-Building-the-Ruby-Bindngs-for-RRDTool-on-Leopard-i386.html#comments</comments>
    <wfw:comment>http://jawsu.com/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://jawsu.com/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Patrick Muldoon)</author>
    <content:encoded>
    Mainly so I don&#039;t forget..&lt;br /&gt;
&lt;br /&gt;
Was going to convert some of my old perl code over to Ruby, perhaps looking to redo my graphing/management over to Rails as well.  In order to do that I needed access to the ruby bindings for  &lt;a href=&quot;http://oss.oetiker.ch/rrdtool/&quot;&gt;RRDTool&lt;/a&gt;.  It appears that mac ports doesn&#039;t have a variant to install the bindings, and installing them via source was failing.   Some googling pointed me to this &lt;a href=&quot;http://www.mikeperham.com/2007/10/22/using-the-rrdtool-ruby-bindings-with-osx/&quot;&gt;Post&lt;/a&gt;&lt;br /&gt;
from Mike Perham. Which got me closer, but it appears I had to set the ARCH flags as well as outlined &lt;a href=&quot;http://www.ruby-forum.com/topic/129717&quot;&gt;here&lt;/a&gt;. &lt;br /&gt;
&lt;br /&gt;
so the final solution was &lt;br /&gt;
&lt;br /&gt;
cd rrdtool-1.2.27/bindings/ruby/&lt;br /&gt;
ARCHFLAGS=&quot;-arch i386&quot; ruby extconf.rb –with-rrd-dir=/opt/local&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
&lt;br /&gt;
This was driving me up a wall since it installed Easily on my FreeBSD servers at the office and on my powermac.   Well guess you learn something new everyday.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Wed, 02 Apr 2008 21:14:54 -0400</pubDate>
    <guid isPermaLink="false">http://jawsu.com/archives/6-guid.html</guid>
    
</item>
<item>
    <title>New MBP -- And wow is it fast</title>
    <link>http://jawsu.com/archives/5-New-MBP-And-wow-is-it-fast.html</link>
            <category>Code</category>
    
    <comments>http://jawsu.com/archives/5-New-MBP-And-wow-is-it-fast.html#comments</comments>
    <wfw:comment>http://jawsu.com/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://jawsu.com/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (Patrick Muldoon)</author>
    <content:encoded>
    So got the new Mac Book Pro, and wow it is quick. Did a clean install and then migrated what I wanted over so I would have everything clean / fresh and not worry about any legacy / crufty bits. So as of now I am set, and it works great.  Not sure how much more productive I am.&lt;br /&gt;
&lt;br /&gt;
On a related note, I traded some OT to be able to keep my powerbook, so that is now a backup machine @ home.  
    </content:encoded>

    <pubDate>Fri, 21 Mar 2008 10:08:11 -0400</pubDate>
    <guid isPermaLink="false">http://jawsu.com/archives/5-guid.html</guid>
    
</item>
<item>
    <title>wuby</title>
    <link>http://jawsu.com/archives/4-wuby.html</link>
            <category>Code</category>
    
    <comments>http://jawsu.com/archives/4-wuby.html#comments</comments>
    <wfw:comment>http://jawsu.com/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://jawsu.com/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>nospam@example.com (Patrick Muldoon)</author>
    <content:encoded>
    So I joined the &lt;a href=&quot;http://www.techvalleyrb.org/&quot; title=&quot;TV.RB&quot;&gt;Tech Valley Ruby Brigade&lt;/a&gt; a couple months back.  Is great to hang out with like minded people and talk code.  Our last meeting we had Chris M from &lt;a href=&quot;http://rubyology.com/&quot;&gt;Rubyology&lt;/a&gt; and he talked about &lt;a href=&quot;http://wuby.org/ title=&quot;Wuby Wocks&quot;&gt;Wuby&lt;/a&gt;.  It is a neat little project, and I&#039;ve been digging into the code a bit.  One of our members was talking adding pid/kill support directly to it. So after the meeting I dug in and hacked some code to do just that.  I will probably do a bit more hacking/poking at it as time permits. I am still working on getting more comfortable with ruby (years of perl and php breed some interesting habits..)   
    </content:encoded>

    <pubDate>Wed, 12 Mar 2008 10:08:04 -0400</pubDate>
    <guid isPermaLink="false">http://jawsu.com/archives/4-guid.html</guid>
    
</item>

</channel>
</rss>