<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Green Jar &#187; Personal</title>
	<atom:link href="http://www.mygreenjar.com/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mygreenjar.com</link>
	<description>[[brain alloc] init]</description>
	<lastBuildDate>Thu, 15 Jan 2009 08:48:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Recursive Word Count in Terminal</title>
		<link>http://www.mygreenjar.com/2007/01/02/recursive-word-count-in-terminal/</link>
		<comments>http://www.mygreenjar.com/2007/01/02/recursive-word-count-in-terminal/#comments</comments>
		<pubDate>Tue, 02 Jan 2007 17:31:39 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/2007/01/02/recursive-word-count-in-terminal/</guid>
		<description><![CDATA[I&#8217;ve recently wondered about how to recursively count the number of lines within a series of files within a directory hierarchy. The command that I came up with is: 
wc -l `find . -name \*.java -print` 
The output is very readable, since it prints both the filename and the number of lines.
Enjoy!

Technorati Tags:
Terminal, Shell Script


]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently wondered about how to recursively count the number of lines within a series of files within a directory hierarchy. The command that I came up with is: <br />
wc -l `find . -name \*.java -print` <br />
The output is very readable, since it prints both the filename and the number of lines.<br />
Enjoy!</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a href="http://technorati.com/tag/Terminal" rel="tag">Terminal</a>, <a href="http://technorati.com/tag/Shell%20Script" rel="tag">Shell Script</a>
</p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2007/01/02/recursive-word-count-in-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Condolencies to the Big Nerd Ranch</title>
		<link>http://www.mygreenjar.com/2006/12/23/condolencies-to-the-big-nerd-ranch/</link>
		<comments>http://www.mygreenjar.com/2006/12/23/condolencies-to-the-big-nerd-ranch/#comments</comments>
		<pubDate>Sat, 23 Dec 2006 12:53:51 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/2006/12/23/condolencies-to-the-big-nerd-ranch/</guid>
		<description><![CDATA[I was sorry to hear about the recent events at the Big Nerd Ranch. Just prior to their excellent Cocoa course all of the equipment was stolen and the classroom was burnt down. Well done to Emily and Jaye for getting things organized so quickly. I hope that you guys are back on track soon!
]]></description>
			<content:encoded><![CDATA[<p>I was sorry to hear about the recent events at the <a title="Big Nerd Ranch" href="http://www.mygreenjar.com/www.bignerdranch.com">Big Nerd Ranch</a>. Just prior to their excellent Cocoa course all of the equipment was stolen and the classroom was burnt down. Well done to Emily and Jaye for getting things organized so quickly. I hope that you guys are back on track soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/12/23/condolencies-to-the-big-nerd-ranch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding files to Subversion</title>
		<link>http://www.mygreenjar.com/2006/11/21/adding-files-to-subversion/</link>
		<comments>http://www.mygreenjar.com/2006/11/21/adding-files-to-subversion/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 16:02:06 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/2006/11/21/adding-files-to-subversion/</guid>
		<description><![CDATA[I picked up this tip when I was beginning to work with Ruby on Rails and Subversion. I added the following alias to my .profile file 
alias svnaddall=&#8217;svn status &#124; grep &#8220;^\?&#8221; &#124; awk &#8220;{print \$2}&#8221; &#124; xargs svn add&#8217;

This command takes all files in the present directory and flags them to be added in [...]]]></description>
			<content:encoded><![CDATA[<p>I picked up this tip when I was beginning to work with <a href="http://wiki.rubyonrails.org/rails/pages/HowtoUseRailsWithSubversion/versions/202">Ruby on Rails and Subversion</a>. I added the following alias to my .profile file <br/><br />
alias svnaddall=&#8217;svn status | grep &#8220;^\?&#8221; | awk &#8220;{print \$2}&#8221; | xargs svn add&#8217;<br />
<br/><br />
This command takes all files in the present directory and flags them to be added in the next commit. This saves adding each of the files one-by-one. You don&#8217;t just have to use the command for Rails either- use it for everything. I do!</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a href="http://technorati.com/tag/OS%20X" rel="tag">OS X</a>, <a href="http://technorati.com/tag/Ruby%20on%20Rails" rel="tag">Ruby on Rails</a>, <a href="http://technorati.com/tag/Subversion" rel="tag">Subversion</a>
</p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/11/21/adding-files-to-subversion/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Text selection on OS X kicks ass!</title>
		<link>http://www.mygreenjar.com/2006/11/18/text-selection-on-os-x-kicks-ass/</link>
		<comments>http://www.mygreenjar.com/2006/11/18/text-selection-on-os-x-kicks-ass/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 23:44:48 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/2006/11/18/text-selection-on-os-x-kicks-ass/</guid>
		<description><![CDATA[I&#8217;ve just found out about a really neat trick at creativebits. If you hold the option key and drag you can select a freeform area of text. Cool!

Technorati Tags:
OS X


]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found out about a really neat trick at <a href="http://creativebits.org/mac_os_x/free_text_area_selection">creativebits</a>. If you hold the option key and drag you can select a freeform area of text. Cool!</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a href="http://technorati.com/tag/OS%20X" rel="tag">OS X</a>
</p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/11/18/text-selection-on-os-x-kicks-ass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cool Backgrounds</title>
		<link>http://www.mygreenjar.com/2006/11/14/cool-backgrounds/</link>
		<comments>http://www.mygreenjar.com/2006/11/14/cool-backgrounds/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 23:46:16 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/?p=19</guid>
		<description><![CDATA[I&#8217;ve just come across some cool background images courtesy of Adam Betts. I like a nice plain background, and this hits the spot for me!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just come across some cool background images courtesy of <a href="http://www.artofadambetts.com//weblog/?p=159">Adam Betts</a>. I like a nice plain background, and this hits the spot for me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/11/14/cool-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Nerd Ranch Review</title>
		<link>http://www.mygreenjar.com/2006/08/31/big-nerd-ranch-review/</link>
		<comments>http://www.mygreenjar.com/2006/08/31/big-nerd-ranch-review/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 16:09:36 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/?p=12</guid>
		<description><![CDATA[Now that I&#8217;m back from the Big Nerd Ranch I thought I&#8217;d write my own review, as it was the reviews of others that had finally persuaded me to book my place.
The instructor for the course is Aaron Hillegass, author of the highly regarded introductory text on Cocoa programming. The book forms the majority of [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m back from the <a href="http://www.bignerdranch.com">Big Nerd Ranch</a> I thought I&#8217;d write my own review, as it was the reviews of others that had finally persuaded me to book my place.</p>
<p>The instructor for the course is Aaron Hillegass, author of the highly regarded introductory text on <a href="http://www.bignerdranch.com/products/cocoa1.shtml">Cocoa programming</a>. The book forms the majority of the course materials, and quite rightly so. It is both well written and easy to follow. In addition to the book another 6 as yet unpublished chapters are used, covering concepts like advanced objective-c, a better understanding of bindings and CoreData. </p>
<p>I&#8217;ve been to many courses, but none have been so intensive. There is a lot to cover, but each concept is introduced with a short lecture, followed by activities with enough depth to challenge those that work quickly and those that like to work a little slower or apply the concept to something slightly different. </p>
<p>After a days hard work most students returned to the classroom to play around with what had been covered that day, or work on personal projects. During this time Aaron was available to iron out any wrinkles or help solve any bugs that cropped up. </p>
<p>The real value of the course can only be seen afterwards. I am delighted with how my personal projects have been developing since I returned from the course. </p>
<p>I went as a privateer, and had some initial reservations about the high cost of the course, although these reservations are now a distant memory! So if you have an interest in Cocoa programming or a need to program in Cocoa then book yourself a place on the course today (and if you can get your company to pay for it then all the better!).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/08/31/big-nerd-ranch-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New iMac Ordered</title>
		<link>http://www.mygreenjar.com/2006/06/28/new-imac-ordered/</link>
		<comments>http://www.mygreenjar.com/2006/06/28/new-imac-ordered/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 23:22:23 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/?p=7</guid>
		<description><![CDATA[I finally stumped up the cash for a new Intel mac. I went for the 20&#8243; model as I thought the extra screen size would come in handy. I ordered it with a gig of RAM in one Dimm and ordered more from Crucial. I threw in a Aperture too. I&#8217;d been meaning to pick [...]]]></description>
			<content:encoded><![CDATA[<p>I finally stumped up the cash for a new Intel mac. I went for the 20&#8243; model as I thought the extra screen size would come in handy. I ordered it with a gig of RAM in one Dimm and ordered more from Crucial. I threw in a Aperture too. I&#8217;d been meaning to pick up a copy for a while but couldn&#8217;t bear the thought of it running on my G4 powerBook. I&#8217;ll post a review as soon as I&#8217;ve had a chance to play.</p>
<p>Now the all important question- Do I install Windows or not?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/06/28/new-imac-ordered/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello, World!</title>
		<link>http://www.mygreenjar.com/2006/06/27/hello-world/</link>
		<comments>http://www.mygreenjar.com/2006/06/27/hello-world/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 22:41:44 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.mygreenjar.com/?p=4</guid>
		<description><![CDATA[It seems like everyone is jumping on the blogging bandwagon so I thought it was about time that I inflicted my personal opinions upon the world. So stick around as I put the world to rights and endeavor to stand on my soapbox for as long as people may listen.
]]></description>
			<content:encoded><![CDATA[<p>It seems like everyone is jumping on the blogging bandwagon so I thought it was about time that I inflicted my personal opinions upon the world. So stick around as I put the world to rights and endeavor to stand on my soapbox for as long as people may listen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygreenjar.com/2006/06/27/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
