<?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"
	>

<channel>
	<title>digitalself - Alfredo Matos Homepage</title>
	<atom:link href="http://www.digitalself.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalself.org</link>
	<description>Realization of self in a digital world</description>
	<pubDate>Wed, 27 Aug 2008 21:24:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>What does l10n, i18n or m4 mean ?</title>
		<link>http://www.digitalself.org/2008/08/27/what-does-l10n-i18n-or-m4-mean/</link>
		<comments>http://www.digitalself.org/2008/08/27/what-does-l10n-i18n-or-m4-mean/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 21:24:15 +0000</pubDate>
		<dc:creator>alfmatos</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Monkey Business]]></category>

		<category><![CDATA[autotools]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[m4]]></category>

		<category><![CDATA[scripts]]></category>

		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://www.digitalself.org/?p=113</guid>
		<description><![CDATA[I have never understood what l10n stands for, nor i18n, nor m4 for that matter. But reading a good online book about autotools, there are a couple of words explaining that in fact m4 stands for Macro, which is m+4 chars. l10n is localization written as  &#8220;l+strlen(ocalizatio)+n&#8221;. Fun. Since I was on vacations while I [...]]]></description>
			<content:encoded><![CDATA[<p>I have never understood what <em>l10n</em> stands for, nor <em>i18n</em>, nor <em>m4</em> for that matter. But reading <a href="http://www.freesoftwaremagazine.com/books/autotools_a_guide_to_autoconf_automake_libtool">a good online book about autotools</a>, there are a couple of words explaining that in fact <em>m4</em> stands for <em>Macro</em>, which is m+4 chars. <em>l10n</em> is <em>localization</em> written as  &#8220;l+strlen(ocalizatio)+n&#8221;. Fun. Since I was on vacations while I read this, I had time to write a bash script to do this automatically while enhancing my bash skills. Here is the script:</p>
<pre>#!/bin/bash

STRING=$1
STRLEN=${#STRING}

A=${STRING:1:$STRLEN-2}
echo ${STRING:0:1}${#A}${STRING:$STRLEN-1:$STRLEN-1}</pre>
<p>Try running <em>internationalization</em> on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalself.org/2008/08/27/what-does-l10n-i18n-or-m4-mean/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto Tracks GTD on Ubuntu Hardy</title>
		<link>http://www.digitalself.org/2008/08/04/howto-tracks-gtd-on-ubuntu-hardy/</link>
		<comments>http://www.digitalself.org/2008/08/04/howto-tracks-gtd-on-ubuntu-hardy/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 00:38:37 +0000</pubDate>
		<dc:creator>alfmatos</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[gtd]]></category>

		<category><![CDATA[hardy]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://www.digitalself.org/?p=101</guid>
		<description><![CDATA[As I (re)evaluate my GTD workflow, I&#8217;ve been testing a couple of applications that may help me increase my productivity while becoming a distraction or burden to manage. The next one on my list is Tracks. I decided to put forward a quick howto because it might not be that trivial for some users to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rousette.org.uk/projects/"><img class="alignright" src="http://www.rousette.org.uk/projects/themes/site_themes/butterfly/tracks-logo-dark.png" alt="" width="301" height="148" /></a>As I (re)evaluate my GTD workflow, I&#8217;ve been testing a couple of applications that may help me increase my productivity while becoming a distraction or burden to manage. The next one on my list is <a href="http://www.rousette.org.uk/projects/">Tracks</a>. I decided to put forward a quick howto because it might not be that trivial for some users to git this running with <a href="http://www.rubyonrails.org/">Ruby on Rails</a>.</p>
<p>So tracks going on your Ubunty Hardy you just need to install a few packages, most importantly ruby, ruby gems and sqlite 3 support. Then you just need to enable the sqlite3 gem for Ruby on Rails. Copy paste commands below:</p>
<pre>sudo apt-get install rake rubygems libsqlite3-ruby
sudo gem install sqlite3-ruby</pre>
<p>Then just follow the <a href="http://www.rousette.org.uk/projects/manual/index#config_install">instructions on the tracks website</a>. But, if your are lazy as me you can just copy paste the information below, which is a nice quick cheat sheet:</p>
<p><a href="http://www.rousette.org.uk/projects/files/tracks-current.zip">Get tracks</a>, unzip into a folder. Go into that folder and edit the configuration file, making it look like the example shown here for sqlite3:</p>
<pre>gedit config/database.yml</pre>
<pre>development:
adapter: sqlite3
database: db/tracks-dev.db

test:
adapter: sqlite3
database: ":memory:"

production:
adapter: sqlite3
database: db/tracks-main.db</pre>
<p>Change a variable in <em>config/environment.rb</em> by putting whatever in it:</p>
<pre>gedit config/environment.rb</pre>
<pre>SALT = "MakeThisYourRandomPhraseToGenerateSalt"</pre>
<p>Build it:</p>
<pre>rake db:migrate RAILS_ENV=production</pre>
<p>Run it:</p>
<pre>./script/server -e production</pre>
<p>And that&#8217;s it, you should just be able to point your browser at http://localhost:3000 and give it a try. I personally don&#8217;t think that Tracks is my cup of tee, but it&#8217;s worth a shot.</p>
<p>One a side note, this is probably my last post before my summer break, so I&#8217;ll be back in a couple of weeks, I hope.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalself.org/2008/08/04/howto-tracks-gtd-on-ubuntu-hardy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenID back online</title>
		<link>http://www.digitalself.org/2008/07/26/openid-back-online/</link>
		<comments>http://www.digitalself.org/2008/07/26/openid-back-online/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 22:14:22 +0000</pubDate>
		<dc:creator>alfmatos</dc:creator>
		
		<category><![CDATA[Identity]]></category>

		<category><![CDATA[move]]></category>

		<category><![CDATA[openid]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.digitalself.org/?p=98</guid>
		<description><![CDATA[Read the title. Test posts are always welcome. Nothing else to see, move along.
]]></description>
			<content:encoded><![CDATA[<p>Read the title. Test posts are always welcome. Nothing else to see, move along.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalself.org/2008/07/26/openid-back-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A usable dark theme for Ubuntu</title>
		<link>http://www.digitalself.org/2008/07/26/a-usable-dark-theme-for-ubuntu/</link>
		<comments>http://www.digitalself.org/2008/07/26/a-usable-dark-theme-for-ubuntu/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 12:57:55 +0000</pubDate>
		<dc:creator>alfmatos</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[dark]]></category>

		<category><![CDATA[desktop]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.digitalself.org/?p=85</guid>
		<description><![CDATA[After reading this entry on planet gnome, I thought to myself: &#8220;Another try at fail&#8221;. I like dark themes. Dark themes are soothing on the eyes, and at least for me, tend to make a much better work environment because they annoy less. Hey, my blog theme is dark, I like it.

After using apt-get to [...]]]></description>
			<content:encoded><![CDATA[<p>After reading <a href="http://yokozar.livejournal.com/15362.html">this entry</a> on <a href="http://planet.gnome.org/">planet gnome</a>, I thought to myself: &#8220;Another try at fail&#8221;. I like dark themes. Dark themes are soothing on the eyes, and at least for me, tend to make a much better work environment because they annoy less. Hey, my blog theme is dark, I like it.</p>
<p><a href="http://www.digitalself.org/wp-content/uploads/2008/07/desktop.jpg"><img class="size-medium wp-image-89 alignright" title="desktop" src="http://www.digitalself.org/wp-content/uploads/2008/07/desktop-300x225.jpg" alt="Dark Theme" width="300" height="225" /></a></p>
<p>After using apt-get to install the ubuntustudio-theme package, I was amazed at the first theme that bring dark windows with light background not compromising usability for a dark theme. Don&#8217;t take my word for it, here&#8217;s a screenshot:</p>
<p>So far, every dark theme I encounter before is a try at fail mostly because they are not usable. Attention is brought to lines, row or text, like Gtk TreeViews in evolution by using a bold font on a dark background, or a little icon that glows just a little bit more than the rest. This is hardly usable, since you fail to get the visual hints needed to quickly parse through an inbox for example. The same goes for the desktop calendar. Try a dark theme and find your events on it and let me know.</p>
<p>This one doesn&#8217;t fail like the rest. I&#8217;m not saying it&#8217;s a perfect theme, I&#8217;m not sure about the window borders (too thick), or about the icons, or even the bright blue highlight colors (but it&#8217;s customizable). I&#8217;m gonna stick with it, play with it some more, and be happy for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalself.org/2008/07/26/a-usable-dark-theme-for-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The sounds of procrastination</title>
		<link>http://www.digitalself.org/2008/07/22/the-sounds-of-procrastination/</link>
		<comments>http://www.digitalself.org/2008/07/22/the-sounds-of-procrastination/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 15:55:23 +0000</pubDate>
		<dc:creator>alfmatos</dc:creator>
		
		<category><![CDATA[Monkey Business]]></category>

		<category><![CDATA[My World]]></category>

		<category><![CDATA[gtd]]></category>

		<category><![CDATA[noise]]></category>

		<category><![CDATA[procrastination]]></category>

		<guid isPermaLink="false">http://www.digitalself.org/?p=83</guid>
		<description><![CDATA[You know your life has taken a wrong turn when you spend more than 15 minutes listening to white noise.
]]></description>
			<content:encoded><![CDATA[<p>You know your life has taken a wrong turn when you spend more than 15 minutes <a href="http://www.simplynoise.com/">listening to white noise</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalself.org/2008/07/22/the-sounds-of-procrastination/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
