<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://mauriciovieira.net"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>MauricioVieira.net</title>
 <link>http://mauriciovieira.net</link>
 <description></description>
 <language>en</language>
<item>
 <title>Updating rubygems on ubuntu 10.04</title>
 <link>http://mauriciovieira.net/blog/post/updating-rubygems-ubuntu-1004</link>
 <description>&lt;p&gt;I use an Ubuntu 10.04 box at work, and needed a newer rubygems installation. 
&lt;/p&gt;
&lt;p&gt;Borrowing &lt;a href=&quot;http://ascarter.net/2010/05/10/rails-development-on-ubuntu-10.04.html&quot;&gt;instructions from Ascarter&lt;/a&gt; and changing version (1.3.6 to 1.8.7): 
&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;When I build from source and install to the system, I prefer to put the source in &lt;code&gt;/usr/local/src&lt;/code&gt;.&lt;br /&gt;
 But feel free to install anywhere you like. To install rubygems, you&lt;br /&gt;
need to download the latest tarball. As of this writing, it is 1.8.7.&lt;br /&gt;
Then extract the archive and install: 
&lt;/p&gt;
&lt;p&gt;&lt;code&gt;cd /usr/local/src&lt;/code&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.7.tgz&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;tar xzvf rubygems-1.3.6.tgz&lt;/code&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;cd rubygems-1.3.6&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;sudo ruby setup.rb&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;The gem binary is now installed:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;/usr/bin/gem1.8&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;If you want to have &lt;code&gt;gem&lt;/code&gt; point to the 1.8 binary:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo update-alternatives --install /usr/bin/gem gem /usr/bin/gem1.8 1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Next, run a gem system update to be sure you are on the latest version:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;sudo gem update --system&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Rubygems should now be installed and ready to go.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/updating-rubygems-ubuntu-1004&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/updating-rubygems-ubuntu-1004&quot; dc:title=&quot;Updating rubygems on ubuntu 10.04&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/6047&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/updating-rubygems-ubuntu-1004#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/activities">activities</category>
 <category domain="http://mauriciovieira.net/category/tags/gems">gems</category>
 <category domain="http://mauriciovieira.net/category/tags/ruby">ruby</category>
 <category domain="http://mauriciovieira.net/category/tags/rubygems">rubygems</category>
 <category domain="http://mauriciovieira.net/category/tags/ubuntu">ubuntu</category>
 <pubDate>Thu, 11 Aug 2011 20:38:59 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">6047 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>Quick install node.js at $HOME</title>
 <link>http://mauriciovieira.net/blog/post/quick-install-nodejs-home</link>
 <description>&lt;h2&gt;Install node.js&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;http://www.nodejs.org/&quot;&gt;Node.js&lt;/a&gt; is a server-side javascript environment.&lt;/p&gt;
&lt;p&gt;You&#039;ll need to have git and build-essential packages.
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ mkdir -p $HOME/opt&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ git clone &lt;a href=&quot;https://github.com/joyent/node.git&quot; title=&quot;https://github.com/joyent/node.git&quot;&gt;https://github.com/joyent/node.git&lt;/a&gt; &amp;amp;&amp;amp; cd node&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ ./configure --prefix=$HOME/opt&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ make&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ make install&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;Add $HOME/opt/bin to your path. Add to $HOME/.bashrc
&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;if [ -d ~/opt/bin ]; then&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; PATH=$HOME/opt/bin:&quot;${PATH}&quot;&lt;br /&gt;
fi&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
Reload it:&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ source $HOME/.bashrc&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
See what version you&#039;ve got:&lt;/p&gt;
&lt;p&gt;
&lt;span&gt;$ node -v&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;At the time of this writting, I got &lt;span&gt;v0.5.0-pre&lt;/span&gt;.&lt;/p&gt;
&lt;h2&gt;Install node package manager&lt;/h2&gt;
&lt;p&gt;Node package manager, aka &lt;a href=&quot;http://npmjs.org/&quot;&gt;npm&lt;/a&gt;, is the way we have to install packages and dependencies.
&lt;/p&gt;
&lt;p&gt;You&#039;ll need to have &lt;a href=&quot;http://curl.haxx.se/&quot;&gt;curl client&lt;/a&gt; installed.&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/quick-install-nodejs-home&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/quick-install-nodejs-home&quot; dc:title=&quot;Quick install node.js at $HOME&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/6045&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;p&gt;&lt;a href=&quot;http://mauriciovieira.net/blog/post/quick-install-nodejs-home&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://mauriciovieira.net/blog/post/quick-install-nodejs-home#comments</comments>
 <category domain="http://mauriciovieira.net/category/tags/home">home</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/howto">howto</category>
 <category domain="http://mauriciovieira.net/category/tags/install">install</category>
 <category domain="http://mauriciovieira.net/category/tags/javascript">javascript</category>
 <category domain="http://mauriciovieira.net/category/tags/nodejs">node.js</category>
 <category domain="http://mauriciovieira.net/category/tags/ubuntu">ubuntu</category>
 <pubDate>Mon, 06 Jun 2011 21:33:47 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">6045 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>My list of personal productivity free software</title>
 <link>http://mauriciovieira.net/blog/post/my-list-personal-productivity-free-software</link>
 <description>&lt;div&gt;Here&#039;s my list of personal productivity free software:&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;GTD (tasks, calendar, todolist): &lt;a href=&quot;http://getontracks.org/&quot;&gt;http://getontracks.org&lt;/a&gt; (ruby on rails)&lt;/li&gt;
&lt;li&gt;Wiki:&amp;nbsp;&lt;a href=&quot;http://cctiddly.com/&quot;&gt;http://cctiddly.com/&lt;/a&gt; (php)&lt;/li&gt;
&lt;li&gt;Personal finance: &lt;a href=&quot;http://badger-finance.org/&quot;&gt;http://badger-finance.org/&lt;/a&gt; (php)&lt;/li&gt;
&lt;li&gt;Time tracking (useful for freelance jobs): &lt;a href=&quot;http://kimai.org/&quot;&gt;http://kimai.org&lt;/a&gt; (php)&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;I have one &lt;a href=&quot;../../&quot;&gt;mauriciovieira.net&lt;/a&gt; subdomain for each, and host all of them on my &lt;a href=&quot;http://dreamhost.com/&quot;&gt;http://dreamhost.com&lt;/a&gt; account.
&lt;p&gt;(first published on &lt;a href=&quot;http://posterous.mauriciovieira.net/my-list-of-personal-productivity-free-softwar&quot; target=&quot;_blank&quot;&gt;my posterous&lt;/a&gt;)
&lt;/p&gt;&lt;/div&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/my-list-personal-productivity-free-software&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/my-list-personal-productivity-free-software&quot; dc:title=&quot;My list of personal productivity free software&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/5695&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/my-list-personal-productivity-free-software#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/gtd">gtd</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/productivity">productivity</category>
 <pubDate>Sun, 06 Jun 2010 23:46:27 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">5695 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>Why didn&#039;t I study engineering?</title>
 <link>http://mauriciovieira.net/blog/post/why-didnt-i-study-engineering</link>
 <description>&lt;p&gt;Reading texts like &lt;a href=&quot;http://colunistas.ig.com.br/luisnassif/2010/04/03/a-importacao-de-cerebros/&quot; target=&quot;_blank&quot;&gt;this&lt;/a&gt; (in portuguese), I almost regret the career choice I did about eleven years ago, when I joined the university. In the text, the author says brazilian companies, like &lt;a href=&quot;http://www.vale.com/&quot; target=&quot;_blank&quot;&gt;Vale&lt;/a&gt;, are importing brazilian engineering students that went study in USA universities.&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/why-didnt-i-study-engineering&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/why-didnt-i-study-engineering&quot; dc:title=&quot;Why didn&amp;#039;t I study engineering?&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/5290&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/why-didnt-i-study-engineering#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/career">career</category>
 <pubDate>Sat, 03 Apr 2010 22:47:03 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">5290 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>Zeitgeist, The Movie: Final Edition</title>
 <link>http://mauriciovieira.net/blog/post/zeitgeist-movie-final-edition</link>
 <description>&lt;p&gt;I just saw in somebody&#039;s twitter that the final edition of Zeitgeist was released.&lt;/p&gt;
&lt;p&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; src=&quot;http://video.google.com/googleplayer.swf?docid=-2282183016528882906&amp;amp;hl=pt-BR&amp;amp;fs=true&quot; id=&quot;VideoPlayback&quot;&gt;&lt;/embed&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/zeitgeist-movie-final-edition&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/zeitgeist-movie-final-edition&quot; dc:title=&quot;Zeitgeist, The Movie: Final Edition&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/4193&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/zeitgeist-movie-final-edition#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/movie">movie</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/video">video</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/zeitgeist">zeitgeist</category>
 <pubDate>Sat, 26 Dec 2009 13:37:07 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">4193 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>MBA group&#039;s barbecue</title>
 <link>http://mauriciovieira.net/blog/post/mba-groups-barbecue</link>
 <description>&lt;p&gt;Yesterday my MBA class group had a barbecue at one of our colleagues&#039; home. It was a great time with my colleagues, mostly because of the speeches of some of them. I resized and uploaded photos and they are shown below. I got some videos also, but as I&#039;ll have to edit them, I just don&#039;t know when they are gonna be released to the public :-p.  &lt;embed width=&quot;500&quot; height=&quot;334&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; flashvars=&quot;host=picasaweb.google.com&amp;amp;captions=1&amp;amp;hl=pt_BR&amp;amp;feat=flashalbum&amp;amp;RGB=0x000000&amp;amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FMauricioFGVGP10%2Falbumid%2F5388878580217806113%3Falt%3Drss%26kind%3Dphoto%26hl%3Dpt_BR&quot; src=&quot;http://picasaweb.google.com/s/c/bin/slideshow.swf&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:trackback=&quot;http://madskills.com/public/xml/rss/module/trackback/&quot;&gt;
&lt;rdf:Description rdf:about=&quot;http://mauriciovieira.net/blog/post/mba-groups-barbecue&quot; dc:identifier=&quot;http://mauriciovieira.net/blog/post/mba-groups-barbecue&quot; dc:title=&quot;MBA group&amp;#039;s barbecue&quot; trackback:ping=&quot;http://mauriciovieira.net/trackback/2880&quot; /&gt;
&lt;/rdf:RDF&gt;
--&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/mba-groups-barbecue#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/barbecue">barbecue</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/class">class</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/mba">mba</category>
 <pubDate>Sun, 04 Oct 2009 22:58:04 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">2880 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>Hello drupal</title>
 <link>http://mauriciovieira.net/blog/post/hello-drupal</link>
 <description>&lt;p&gt;I decided to migrate &lt;a href=&quot;http://blog.mauriciovieira.net&quot;&gt;my blog&lt;/a&gt; from &lt;a href=&quot;http://wordpress.org&quot;&gt;wordpress&lt;/a&gt; to this &lt;a href=&quot;http://drupal.org&quot;&gt;drupal&lt;/a&gt; instalation. Firstly, I had to &lt;a href=&quot;http://codex.wordpress.org/Tools_Export_SubPanel&quot;&gt;export the WXR file&lt;/a&gt;, and then I used &lt;a href=&quot;http://drupal.org/project/wordpress_import&quot;&gt;wordpress_import&lt;/a&gt; drupal module (it requires &lt;a href=&quot;http://drupal.org/project/trackback&quot;&gt;trackback&lt;/a&gt; and some core modules).&lt;/p&gt;
&lt;p&gt;I wanted to blog using some desktop blogging software and found &lt;a href=&quot;http://gotdrupal.com/videos/using-drupal-blog-software-for-blogging&quot;&gt;this&lt;/a&gt; &lt;a href=&quot;http://gotdrupal.com&quot;&gt;gotdrupal&lt;/a&gt; &lt;a href=&quot;http://gotdrupal.com/videos/using-drupal-blog-software-for-blogging&quot;&gt;post&lt;/a&gt;. Now, I&#039;m happily editing this blog post using &lt;a href=&quot;http://www.scribefire.com/&quot;&gt;scribefire&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&lt;/p&gt;
&lt;div class=&quot;zemanta-pixie&quot;&gt;&lt;img class=&quot;zemanta-pixie-img&quot; alt=&quot;&quot; src=&quot;http://img.zemanta.com/pixy.gif?x-id=fd394d40-4c38-8fac-8b28-53bec9198d2a&quot; /&gt;&lt;/div&gt;
</description>
 <comments>http://mauriciovieira.net/blog/post/hello-drupal#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/drupal">drupal</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/migration">migration</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/wordpress">wordpress</category>
 <pubDate>Sun, 23 Aug 2009 00:22:53 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">2350 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>Online tools to get things done</title>
 <link>http://mauriciovieira.net/blog/post/online-tools-get-things-done</link>
 <description>&lt;p&gt;Last&amp;nbsp; december, I &lt;a href=&quot;http://blog.mauriciovieira.net/2008/12/getting-things-done/&quot;&gt;wrote about getting things done methodology&lt;/a&gt;.&amp;nbsp;&amp;nbsp; I know some free web apps like &lt;a href=&quot;http://rememberthemilk.com/&quot;&gt;Remember The Milk&lt;/a&gt;,&amp;nbsp;&amp;nbsp; &lt;a href=&quot;http://www.runwayapp.com/&quot;&gt;Runway&lt;/a&gt;,&amp;nbsp; &lt;a href=&quot;http://clockingit.com/ &quot;&gt;Clocking It&lt;/a&gt;... There are a lot of other software listed in &lt;a href=&quot;http://gtd-br.wikispaces.com/&quot;&gt;gtd-br wiki&lt;/a&gt;, (in brazilian portuguese).  My main requisite is to be able to install the tool at my hosting (I have privacy issues), so I tried to use &lt;a target=&quot;_blank&quot; href=&quot;http://taskfreak.net&quot;&gt;Taskfreak&lt;/a&gt; for some time. I gave up taskfreak because I didn&#039;t find it usable enough. I switched to &lt;a href=&quot;http://getontracks.org&quot;&gt;Tracks&lt;/a&gt;, and it is much better. I recommend it. I found &lt;a href=&quot;http://clockingit.com/ &quot;&gt;Clocking It&lt;/a&gt; recently, and haven&#039;t tried  For further information, refer to the LifeHacker blog &amp;quot;&lt;a href=&quot;http://www.lifehack.org/articles/technology/which-online-gtd-app-is-right-for-you.html&quot;&gt;Which online GTD app is right for you?&lt;/a&gt;&amp;quot;.  &lt;strong&gt;Update&lt;/strong&gt;: take a look at the &lt;a href=&quot;http://www.priacta.com/Articles/Comparison_of_GTD_Software.php&quot;&gt;Interactive GTD Software Comparison Table&lt;/a&gt;.&lt;em&gt;Thanks to &lt;a href=&quot;http://br.groups.yahoo.com/group/gtdbr/message/8185&quot;&gt;M&amp;aacute;rcio Nilo @ GTD-BR mailing list&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description>
 <comments>http://mauriciovieira.net/blog/post/online-tools-get-things-done#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/clocking-it">clocking it</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/getontracks">getontracks</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/gtd">gtd</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/rememberthemilk">rememberthemilk</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/runway">runway</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/taskfreak">taskfreak</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/tools">tools</category>
 <pubDate>Mon, 15 Jun 2009 22:30:58 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">2345 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>A BASH Script to Find Large Files on a Linux Server | JarrodGoddard.com</title>
 <link>http://mauriciovieira.net/blog/post/bash-script-find-large-files-linux-server-jarrodgoddardcom</link>
 <description>&lt;p&gt;&lt;a href=&quot;http://www.jarrodgoddard.com/linux-web-hosting/a-bash-script-to-find-large-files-on-a-linux-server&quot;&gt;Nice and smart script&lt;/a&gt; using find and awk to find large files.&lt;/p&gt;</description>
 <comments>http://mauriciovieira.net/blog/post/bash-script-find-large-files-linux-server-jarrodgoddardcom#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/bash-unix-scripting">bash unix scripting</category>
 <pubDate>Sun, 01 Mar 2009 04:44:03 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">2344 at http://mauriciovieira.net</guid>
</item>
<item>
 <title>What about publishing a book?</title>
 <link>http://mauriciovieira.net/blog/post/what-about-publishing-book</link>
 <description>&lt;p&gt;I am reading Chris Anderson&#039;s &lt;a href=&quot;http://www.thelongtail.com/&quot;&gt;The Long Tail&lt;/a&gt; (in portuguese) and yesterday I read about &lt;a href=&quot;http://www.lulu.com/&quot;&gt;Lulu.com&lt;/a&gt;, a service where anyone can publish a book and get an ISBN. As he wrote this book some years ago, probably there are other &#039;long tail&#039; book publishing services out there. If you know any, please let me know.  I haven&#039;t looked throghout all the site, so I don&#039;t know whether I can write a book in portuguese (my native tongue) and publish there. Anyways, I have a new goal: write a book in english and publish ;-).&lt;/p&gt;</description>
 <comments>http://mauriciovieira.net/blog/post/what-about-publishing-book#comments</comments>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/book-publishing">book publishing</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/long-tail">long tail</category>
 <category domain="http://mauriciovieira.net/category/wordpress-tag/lulu">lulu</category>
 <pubDate>Tue, 27 Jan 2009 22:54:16 +0000</pubDate>
 <dc:creator>MauricioVieira</dc:creator>
 <guid isPermaLink="false">2343 at http://mauriciovieira.net</guid>
</item>
</channel>
</rss>