<?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>A Tempest of Thoughts &#187; Productivity</title>
	<atom:link href="http://tempe.st/category/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://tempe.st</link>
	<description>aka blog.to_int(:inig)</description>
	<lastBuildDate>Thu, 13 May 2010 09:54:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Sudoless Rails Stack on OSX</title>
		<link>http://tempe.st/2007/08/sudoless-rails-stack-on-osx/</link>
		<comments>http://tempe.st/2007/08/sudoless-rails-stack-on-osx/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 08:38:02 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://tempe.st/2007/08/sudoless-rails-stack-on-osx/</guid>
		<description><![CDATA[More and more of my developer friends are switching to OSX as time goes by, and they keep asking me for directions on the best setup for rails development: how to install ruby, how to install the missing libraries, and so on. My professional development life started on a PB Titanium running OSX 10.2, and [...]]]></description>
			<content:encoded><![CDATA[	<p>More and more of my developer friends are switching to OSX as time goes by, and they keep asking me for directions on the best setup for rails development: how to install ruby, how to install the missing libraries, and so on.</p>
	<p>My professional development life started on a PB Titanium running OSX 10.2, and continued through a PB Aluminium and a Macbook Pro. Each time I changed laptop I also reinstalled everything again, and each time I tried to come up with a better setup. </p>
	<p>Now I&#8217;ve finally found a setup I&#8217;m comfortable with, and it has the following advantages:</p>
	<ul>
		<li>Sudoless: everything runs from my user directory</li>
		<li>Non-system-tampering: doesn&#8217;t touch files in the original osx installation</li>
		<li>Crash-proof-easy-reinstall: you can just delete everything and reinstall without fear of rendering your system unstable</li>
		<li>Fink based: uses everything it can use from the fink repositories</li>
	</ul>
	<p>Now that I&#8217;ve sold you on my setup <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it&#8217;s time to explain how to implement it. </p>
	<h3>Step one: XCode and Developer Tools</h3>
	<p>If you don&#8217;t have XCode already installed you can install it from the disks you got with your Mac or, better, download the newest version from <a href="http://connect.apple.com">Apple Developer Connection</a>. Once you got it installed you can proceed to the next step.</p>
	<h3>Step two: Fink</h3>
	<p>Go to the <a href="http://www.finkproject.org/download/index.php?phpLang=en">Fink Download Page</a>, and get the package that works best on your Mac (intel or powerpc). Follow the installation instructions and install the base fink system. After you&#8217;ve done that add these lines to your <em><sub>/.profile</em></p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;"># Dev Enviroment
&nbsp;
LDFLAGS=-L/sw/lib
export LDFLAGS
&nbsp;
CPPFLAGS='-I/Users/your_username/unix/include -I/sw/include'
export CPPFLAGS</pre></div></div>

	<p>_/Users/your_username/unix/include_ doesn&#8217;t exist yet, but we&#8217;ll create it when installing ruby.</p>
	<h3>Step three: Ruby from Sources</h3>
	<p>This is the first tricky part. Before OSX 10.4.6 the Ruby version shipped by Apple didn&#8217;t work with rails, so you were on your own. Now it works, but I prefer to have ruby in my home directory so I can mess with the sources and with the gem files and upgrade painlessly. So <a href="http://www.ruby-lang.org/en/downloads">download the latest ruby</a> sources and unpack them wherever you wish (I like <em></sub>/src</em>).</p>
	<p>Now you&#8217;re ready to go. First make sure you have readline and readline5-shlibs installed via fink so you can have a comfortable irb environment:</p>
<pre>
user$ fink install readline readline5-shlibs
</pre> 
	<p>After that it&#8217;s time for ruby:</p>
<pre>
user$ cd &lt;sub&gt;/src/ruby-1.8.6
user$ ./configure &lt;del&gt;-prefix=/Users/your_username/unix
user$ make &#38;&#38; make install
</pre>
	<p>The whole magic (and it&#8217;s not a big magic btw) is in <em></del>-prefix</em>. Installing ruby will create the /Users/your_username/unix path. Now it&#8217; time to add the <em>unix</em> dir to $PATH. Edit <em></sub>/profile</em> once again and add these lines:</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">PATH=/Users/your_username/unix/bin:/usr/local/mysql/bin:/usr/local/sbin:$PATH
export PATH</pre></div></div>

	<h3>Step four: MySQL</h3>
	<p>Quite simple with the packages from <a href="http://mysql.com">mysql.com</a>.</p>
	<h3>Step five: Last but not least, rubygems</h3>
	<p>Fetch the gem package from <a href="http://rubyforge.org/frs/?group_id=126">RubyForge</a> and install it:</p>
<pre>
user$ cd src/unpacked-rubygems-directory
user$ ruby setup.rb
</pre>
	<h3>Step six: This is the real last step <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; Rails and a little hack</h3>
	<p>Now you&#8217;re free to install rails (and friends) using</p>
<pre>
user$ gem install rails --include-dependencies
user$ gem install mysql-ruby
user$ gem install capistrano --include-dependencies
user$ gem install mongrel --include-dependencies
</pre>
	<p>The small hack I was talking about is a symlink:</p>
<pre>
user$ sudo mv /usr/bin/ruby /usr/bin/ruby-apple
user$ sudo ln -s /Users/your_username/unix/bin/ruby /usr/bin/ruby
</pre>
	<p>This way applications that insist on using <em>/usr/bin/ruby</em> (TextMate&#8217;s RubyMate for example) will work fine. </p>
	<p>Have fun with your self-made rails stack <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

 ]]></content:encoded>
			<wfw:commentRss>http://tempe.st/2007/08/sudoless-rails-stack-on-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why we need to stop designing and start delivering</title>
		<link>http://tempe.st/2007/06/why-we-need-to-stop-designing-and-start-delivering/</link>
		<comments>http://tempe.st/2007/06/why-we-need-to-stop-designing-and-start-delivering/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 07:44:45 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Nimboo]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://tempe.st/2007/06/why-we-need-to-stop-designing-and-start-delivering/</guid>
		<description><![CDATA[Lately I&#8217;ve been very unproductive. Lost in business discussions and dreaming about the next big thing, I couldn&#8217;t finish two paid projects, and that sucks&#8482;. The invisible shackles that didn&#8217;t allow me to finish those jobs have been holding me back so that I wasn&#8217;t able to do any real work even on personal projects. [...]]]></description>
			<content:encoded><![CDATA[	<p>Lately I&#8217;ve been very unproductive. Lost in business discussions and dreaming about the next big thing, I couldn&#8217;t finish two paid projects, and that sucks&#8482;.</p>
	<p>The invisible shackles that didn&#8217;t allow me to finish those jobs have been holding me back so that I wasn&#8217;t able to do any real work even on personal projects.</p>
	<p>I&#8217;ve tried finding the cause for this, blaming my lack of self discipline or the fact that I was not doing <a href="http://en.wikipedia.org/wiki/Getting_Things_Done">GTD</a> as strictly as I was six months ago, but I knew there had to be something else, and the whole situation was getting on my nerves.</p>
	<p>Last week I bought a game for the Nintendo Wii, <a href="http://en.wikipedia.org/wiki/Mario_Strikers_Charged">Mario Strikers Charged</a>, and while playing I remembered a pet project I started more than an year ago and never completed.</p>
	<p>The project name was ICCFriends, a repository of Nintendo Friend Codes for the usenet it.comp.console community.</p>
	<p>This time I had to finish it, so I went and looked through my code: <strong>awful</strong>. There was as much <a href="http://c2.com/xp/BigDesignUpFront.html">BDUF</a> in there as in Windows Vista, and while wandering through the models and controllers, suddenly I got it!</p>
	<p>I knew why I wasn&#8217;t delivering: I was designing things that were not useful. I lost so much time preparing for refactoring, or moving code around or laying the ground for future extractions or features that when the time came to implement the real thing I grew tired or got bored.</p>
	<p>I then did the only thing I could possibly do to complete ICCFriends:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>iccfriends
$ rails ~<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>iccfriends</pre></div></div>

	<p>I then focused on the simplest and shortest set of features I could imagine and in a couple of hours <a href="http://iccfriends.net">ICCFriends.net</a> was up and running, <strong>and</strong> with more interesting features than those I was bduffing.</p>
	<p>It looks rushed out because it is, but once again I was able to think and deliver and the rush of energies that came with it is a nice feeling I really missed.</p>
	<p>Yesterday I learnt an important lesson, and from now on I will always strip my feature list before even start thinking about the implementation.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://tempe.st/2007/06/why-we-need-to-stop-designing-and-start-delivering/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The results of a micro iteration: Planet Nimboo</title>
		<link>http://tempe.st/2007/04/the-results-of-a-micro-iteration-planet-nimboo/</link>
		<comments>http://tempe.st/2007/04/the-results-of-a-micro-iteration-planet-nimboo/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 07:59:40 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Nimboo]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://tempe.st/2007/04/the-results-of-a-micro-iteration-planet-nimboo/</guid>
		<description><![CDATA[Following the announcement on bard&#8217;s blog, I would like to show you the result of the micro iteration I wrote about a couple of days ago: Planet Nimboo. We use it to aggregate our blogs, and it&#8217;s quite simple, it&#8217;s only a ruby script with an erb template (how long since you last saw .rhtml [...]]]></description>
			<content:encoded><![CDATA[	<p>Following the <a href="http://blog.hyperstruct.net/2007/4/26/quicker-than-beliefs">announcement</a> on <a href="http://blog.hyperstruct.net">bard&#8217;s blog</a>, I would like to show you the result of the micro iteration I <a href="http://tempe.st/2007/04/micro-iterations-how-to-boost-your-productivity">wrote about</a> a couple of days ago: <a href="http://planet.nimboo.net">Planet Nimboo</a>. </p>
	<p>We use it to aggregate our blogs, and it&#8217;s quite simple, it&#8217;s only a ruby script with an erb template (how long since you last saw .rhtml files without rails? <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), and bard has also cleaned up the code and made it available so you can play with it and make it better:</p>
	<p>Code: <a href="http://planet.nimboo.net/planet.rb">script</a>, <a href="http://planet.nimboo.net/planet.rhtml">template</a></p>

 ]]></content:encoded>
			<wfw:commentRss>http://tempe.st/2007/04/the-results-of-a-micro-iteration-planet-nimboo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Micro Iterations: How to boost your productivity</title>
		<link>http://tempe.st/2007/04/micro-iterations-how-to-boost-your-productivity/</link>
		<comments>http://tempe.st/2007/04/micro-iterations-how-to-boost-your-productivity/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 11:12:33 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Nimboo]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://tempe.st/2007/04/micro-iterations-how-to-boost-your-productivity/</guid>
		<description><![CDATA[I have found a way to boost my productivity, and I can say without doubt it works very well Like most of you I have dozens of pet projects that can be done very quickly but require focused time, and time is the scarcest resource of them all, so together with my friend bard, and [...]]]></description>
			<content:encoded><![CDATA[	<p>I have found a way to boost my productivity, and I can say without doubt it works very well <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
	<p>Like most of you I have dozens of pet projects that can be done very quickly but require focused time, and time is the scarcest resource of them all, so together with my friend <a href="http://blog.hyperstruct.net">bard</a>, and the other <a href="http://nimboo.net">nimboo</a> guys we decided to dedicate a hour, two or three times a week to work together on some project, with the condition that we have to choose something that can be done in a hour, no more.</p>
	<p>The results have been staggering and yesterday we met together to work on <a href="http://planet.nimboo.net">planet.nimboo.net</a>, an aggregator for the nimbooers&#8217; blogs. In half a hour planet was up and running <img src='http://tempe.st/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
	<p>If you have a couple of friends to do this kind of exercises together please try creating some small product together, you&#8217;ll be happy you did.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://tempe.st/2007/04/micro-iterations-how-to-boost-your-productivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter: good or bad?</title>
		<link>http://tempe.st/2007/03/twitter-good-or-bad/</link>
		<comments>http://tempe.st/2007/03/twitter-good-or-bad/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 01:34:16 +0000</pubDate>
		<dc:creator>Giovanni Intini</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://tempe.st/2007/03/twitter-good-or-bad/</guid>
		<description><![CDATA[I just read a wonderful post by Kathy Sierra about twitter, and how it is almost the proverbial last straw among the forced interruptions to our flow. I suggest you go and read the post. It is well written, as usual for Kathy, and it really made me think about twitter / im / email [...]]]></description>
			<content:encoded><![CDATA[	<p>I just read a <a href="http://headrush.typepad.com/creating_passionate_users/2007/03/is_twitter_too_.html">wonderful post</a> by Kathy Sierra about twitter, and how it is almost the proverbial last straw among the forced interruptions to our <em>flow</em>.</p>
	<p>I suggest you go and read the post. It is well written, as usual for Kathy, and it really made me think about twitter / im / email / ...</p>
	<p>Sometimes I can&#8217;t do any real work because I&#8217;m swamped by external inputs, and I usually turn off most of my IM accounts when working.</p>
	<p>Starting next monday I will try a strict no-interruption policy from 9am to 5pm and see if I&#8217;m able to be more productive than I am right now.</p>
	<p>Do you have the same problems I have with intterruptions?</p>

 ]]></content:encoded>
			<wfw:commentRss>http://tempe.st/2007/03/twitter-good-or-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
