<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://jawsu.com/feeds/atom10.xml" rel="self" title="Just Another Web Start Up" type="application/atom+xml" />
    <link href="http://jawsu.com/"                        rel="alternate"    title="Just Another Web Start Up" type="text/html" />
    <link href="http://jawsu.com/rss.php?version=2.0"     rel="alternate"    title="Just Another Web Start Up" type="application/rss+xml" />
    <title type="html">Just Another Web Start Up</title>
    <subtitle type="html">VC, IPO, 2.0, Oh No...</subtitle>
    <icon>http://jawsu.com/templates/bulletproof/img/s9y_banner_small.png</icon>
    <id>http://jawsu.com/</id>
    <updated>2008-06-02T01:55:31Z</updated>
    <generator uri="http://www.s9y.org/" version="1.2.1">Serendipity 1.2.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://jawsu.com/archives/7-Finally-Back-to-Hacking....html" rel="alternate" title="Finally Back to Hacking..." />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-05-26T01:45:19Z</published>
        <updated>2008-06-02T01:55:31Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=7</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=7</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/1-Code" label="Code" term="Code" />
    
        <id>http://jawsu.com/archives/7-guid.html</id>
        <title type="html">Finally Back to Hacking...</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                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). <br />
<br />
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't forget the next time I need to do it). <br />
<br />
create an empty git repos on my central server (mainly for backups / sharing). <br />
<br />
<blockquote>GIT_DIR=proj.git git init </blockquote><br />
<br />
On my devel workstation start off with your standard rails app. <br />
<br />
<blockquote><br />
rails appname <br />
<br />
.gitignore << END<br />
log/*.log<br />
tmp/**/*<br />
.DS_Store<br />
doc/api<br />
doc/app<br />
END<br />
<br />
touch log/.gitignore<br />
touch tmp/.gitignore<br />
<br />
git commit -m "Initial Commit"<br />
<br />
</blockquote> <br />
<br />
Now need to push changes out to our central server<br />
<blockquote><br />
git remote add origin ssh://centralserver/proj.git<br />
git push origin master<br />
</blockquote><br />
<br />
Now following a combination of Ryan Bates Railscast <a href="http://railscasts.com/episodes/105">Gitting Rails 2.1RC1</a> and Graeme Mathieson's <a href="http://woss.name/2008/04/09/using-git-submodules-to-track-vendorrails/">Using Git Submodules to track Vendor Rails</a> snag a copy of edge rails into vendor rails, and update scripts,etc...<br />
<blockquote><br />
git submodule add git://github.com/rails/rails.git vendor/rails<br />
rake rails:update<br />
git commit -m "Imports Rail's Head as Submodule"<br />
git push origin master<br />
</blockquote><br />
<br />
And now we are ready to do some coding.  
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/6-Building-the-Ruby-Bindngs-for-RRDTool-on-Leopard-i386.html" rel="alternate" title="Building the Ruby Bindngs for RRDTool on Leopard i386" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-04-03T01:14:54Z</published>
        <updated>2008-04-03T01:14:54Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=6</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/1-Code" label="Code" term="Code" />
    
        <id>http://jawsu.com/archives/6-guid.html</id>
        <title type="html">Building the Ruby Bindngs for RRDTool on Leopard i386</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Mainly so I don't forget..<br />
<br />
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  <a href="http://oss.oetiker.ch/rrdtool/">RRDTool</a>.  It appears that mac ports doesn't have a variant to install the bindings, and installing them via source was failing.   Some googling pointed me to this <a href="http://www.mikeperham.com/2007/10/22/using-the-rrdtool-ruby-bindings-with-osx/">Post</a><br />
from Mike Perham. Which got me closer, but it appears I had to set the ARCH flags as well as outlined <a href="http://www.ruby-forum.com/topic/129717">here</a>. <br />
<br />
so the final solution was <br />
<br />
cd rrdtool-1.2.27/bindings/ruby/<br />
ARCHFLAGS="-arch i386" ruby extconf.rb –with-rrd-dir=/opt/local<br />
make<br />
sudo make install<br />
<br />
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.<br />
<br />
<br />
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/5-New-MBP-And-wow-is-it-fast.html" rel="alternate" title="New MBP -- And wow is it fast" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-03-21T14:08:11Z</published>
        <updated>2008-03-21T14:08:11Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=5</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/1-Code" label="Code" term="Code" />
    
        <id>http://jawsu.com/archives/5-guid.html</id>
        <title type="html">New MBP -- And wow is it fast</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                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.<br />
<br />
On a related note, I traded some OT to be able to keep my powerbook, so that is now a backup machine @ home.  
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/4-wuby.html" rel="alternate" title="wuby" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-03-12T14:08:04Z</published>
        <updated>2008-03-12T14:08:04Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=4</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/1-Code" label="Code" term="Code" />
    
        <id>http://jawsu.com/archives/4-guid.html</id>
        <title type="html">wuby</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                So I joined the <a href="http://www.techvalleyrb.org/" title="TV.RB">Tech Valley Ruby Brigade</a> a couple months back.  Is great to hang out with like minded people and talk code.  Our last meeting we had Chris M from <a href="http://rubyology.com/">Rubyology</a> and he talked about <a href="http://wuby.org/ title="Wuby Wocks">Wuby</a>.  It is a neat little project, and I'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..)   
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/3-New-Macbook-pro-Inbound.html" rel="alternate" title="New Macbook pro Inbound" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2008-03-12T14:05:14Z</published>
        <updated>2008-03-12T14:05:14Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=3</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/4-Misc" label="Misc" term="Misc" />
    
        <id>http://jawsu.com/archives/3-guid.html</id>
        <title type="html">New Macbook pro Inbound</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Left alaska a couple of hours ago, fresh from being built in China.  So in theory I should be at least 10x more productive  <img src="http://jawsu.com/templates/default/img/emoticons/smile.png" alt=":-)" style="display: inline; vertical-align: bottom;" class="emoticon" />  Was time to upgrade the laptops at $DAY_JOB, so wound up getting a nice 17" Hi-Def MBP.  So now I just need to get off my butt and get some work done. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/2-Get-A-Mac-Santa-Claus.html" rel="alternate" title="Get A Mac - Santa Claus" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2007-12-16T02:08:04Z</published>
        <updated>2007-12-16T02:08:04Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=2</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/4-Misc" label="Misc" term="Misc" />
    
        <id>http://jawsu.com/archives/2-guid.html</id>
        <title type="html">Get A Mac - Santa Claus</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Taking a break from my market research, and catching up on some TV by trying to clean out the DVR.  So while fast forwarding through commercials, I see the mac vs pc with santa claus. Animation was cool, and funny like all of the.   <a href="http://www.apple.com/getamac/ads/">Get a Mac ads @ Apple</a> if you haven't seen it yet. It made me smile and actually stop and rewind the dvr to watch the full thing, which now-a-days is a rarity.<br />
You might wonder why I am posting this, well my current development environment is mac based, and I am admitted fan of their hardware (I am posting this from my 17" powerbook G4 running Leopard). 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://jawsu.com/archives/1-First-Post.html" rel="alternate" title="First Post" />
        <author>
            <name>Patrick Muldoon</name>
            <email>nospam@example.com</email>
        </author>
    
        <published>2007-12-14T18:35:35Z</published>
        <updated>2007-12-15T02:26:29Z</updated>
        <wfw:comment>http://jawsu.com/wfwcomment.php?cid=1</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://jawsu.com/rss.php?version=atom1.0&amp;type=comments&amp;cid=1</wfw:commentRss>
    
            <category scheme="http://jawsu.com/categories/4-Misc" label="Misc" term="Misc" />
    
        <id>http://jawsu.com/archives/1-guid.html</id>
        <title type="html">First Post</title>
        <content type="xhtml" xml:base="http://jawsu.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Ok figure every startup needs to have a blog right? So this is ours..  <br />
<br />
So we are Just Another Web StartUp (and no, that isn't the name of the project... That is in stealth mode right now).    We know startups are a dime a dozen these days, but ours is going to be different and change the world, and revolutionize something or other.  Heck  perhaps we just miss the days of Bubble 1.0 and want to relive the glory, the pain, the agony, the caffeine. <br />
<br />
Well time to get back to coding and maybe, just maybe working on a business plan.   Nah that would make too much sense, so back to finding out what they've changed in Rails 2.0, and wasting time (err market research) on Twitter, Digg, Pownce, etc... 
            </div>
        </content>
        
    </entry>

</feed>