<?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>jpcamargo &#187; tech</title>
	<atom:link href="http://jpcamargo.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpcamargo.com</link>
	<description>ruby &#039;mind.rand&#039; &#124; awk &#039;{ print $1 }&#039;</description>
	<lastBuildDate>Mon, 10 May 2010 17:41:17 +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>Termite &#8211; a command line time tracker</title>
		<link>http://jpcamargo.com/2010/05/10/termite-a-command-line-time-tracker/</link>
		<comments>http://jpcamargo.com/2010/05/10/termite-a-command-line-time-tracker/#comments</comments>
		<pubDate>Mon, 10 May 2010 17:40:58 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[adium]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[time tracking]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=315</guid>
		<description><![CDATA[Recently I felt the need to have some kind of time tracking tool, so I wrote a simple one in ruby. It requires only two gems to work (&#8216;rubygems&#8217; and &#8217;sqlite3-ruby&#8217;).
It is definitely a work in progress, but right now it is very easy to use and it gives reports for the last few days, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I felt the need to have some kind of time tracking tool, so I wrote a simple one in ruby. It requires only two gems to work (&#8216;rubygems&#8217; and &#8217;sqlite3-ruby&#8217;).</p>
<p>It is definitely a work in progress, but right now it is very easy to use and it gives reports for the last few days, last 3 weeks, and current month. Also, for mac users, it has the option to change your Adium statuses using osascript, with customizable status messages for a few situations.</p>
<p><img src="http://cl.ly/11ok/content" alt="termite report weekly" /><br />
weekly report</p>
<p><img src="http://cl.ly/10uo/content" alt="termite report monthly" /><br />
monthly report</p>
<p>You can find the source code and installation instructions at github (<a href="http://github.com/jao/termite">http://github.com/jao/termite</a>).</p>
<p>I plan to add features like, defining projects and tags to the worked time, and exporting the reports to formats like pdf and csv.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2010/05/10/termite-a-command-line-time-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ports wipe &#124; homebrew + rvm</title>
		<link>http://jpcamargo.com/2010/04/30/ports-wipe-homebrew-rvm/</link>
		<comments>http://jpcamargo.com/2010/04/30/ports-wipe-homebrew-rvm/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 19:33:05 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[port be gone!]]></category>
		<category><![CDATA[rvm]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=313</guid>
		<description><![CDATA[Recently I&#8217;ve heard about Max Howell&#8217;s homebrew and Wayne E. Seguin&#8217;s rvm from a friend (caffo), and hearing that they were both pretty cool, I decided to give them a shot.
So if, like me, you are curious about these tools, I&#8217;ll post what I did to install them.
First I made backups (by moving some folders [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve heard about <a href="http://twitter.com/mxcl">Max Howell</a>&#8217;s <a href="http://mxcl.github.com/homebrew/"><strong>homebrew</strong></a> and Wayne E. Seguin&#8217;s <a href="http://rvm.beginrescueend.com/"><abbr title="Rails Version Manager"><strong>rvm</strong></abbr></a> from a friend (<a href="http://rodrigofranco.com">caffo</a>), and hearing that they were both pretty cool, I decided to give them a shot.</p>
<p>So if, like me, you are curious about these tools, I&#8217;ll post what I did to install them.</p>
<p>First I made backups (by moving some folders around)</p>
<pre class="brush: bash; light: true;">
mv ~/.gem ~/gems-old
sudo mv /opt/local ~/macports-old
</pre>
<p>You could also install a gem called &#8216;rubygems_snapshot&#8217; and do a</p>
<pre class="brush: bash; light: true;">
gem snapshot export ~/my_gem_list.yml
</pre>
<p>or a simple</p>
<pre class="brush: bash; light: true;">
gem list > ~/gem_list.txt
</pre>
<p>and just plain delete your user gem repository</p>
<pre class="brush: bash; light: true; inline">
rm -rf ~/.gem/
</pre>
<p>Of course I am assuming you were installing them in your home directory, why wouldn&#8217;t you be?</p>
<p>But if by any chance you have gems installed all over the place you could try running this instead (since this would remove the applicable executables as well):</p>
<pre class="brush: bash; light: true;">
sudo gem list | awk '{print $1}' | xargs sudo gem uninstall -a -x -i
</pre>
<p>Now let&#8217;s get started.</p>
<h3>Installing homebrew</h3>
<p><a href="http://wiki.github.com/mxcl/homebrew/installation"><em>official installation instructions</em></a></p>
<p>Start by running:</p>
<pre class="brush: bash; light: true;">
ruby < <( curl 'http://gist.github.com/raw/323731/25f99360c7de3f72027d8fd07cb369b1c8756ea6/install_homebrew.rb' )
</pre>
<p>or download it from <a href="http://gist.github.com/323731">here</a> and run it yourself.</p>
<p>If by any chance you don't trust or know what that does, you can test it by running the code below that calls this <a href="http://gist.github.com/385387">simple and safe ruby script</a> first.</p>
<pre class="brush: bash; light: true;">
ruby < <( curl 'http://gist.github.com/raw/385387/0cacf4231fceb621c987221ee0aaa380be2bca5d/testing_download_and_run.rb' )
</pre>
<p>If you are curious, this is the source of that gist:</p>
<pre class="brush: ruby; light: true;">
#!/usr/bin/env ruby
puts 'Hello World'
</pre>
<p>Then install <a href="http://developer.apple.com/technologies/xcode.html">Xcode</a>, I recommend downloading the latest version <ins datetime="2010-04-30T17:45:15+00:00">3.2.2 at this moment</ins> from apple's website.</p>
<p>If you are the only person using your computer, you can change the ownership of <em>/usr/local</em> by doing a:</p>
<pre class="brush: bash; light: true;">
sudo chown -R $USER /user/local
</pre>
<p>Delete some folders:</p>
<pre class="brush: bash; light: true;">
rm -rf /usr/local/include
rm -rf /usr/local/lib
</pre>
<p>After that you can start playing around with homebrew i.e.</p>
<pre class="brush: bash; light: true;">
brew install wget
</pre>
<p>I install most if not all of my stuff from brew now, even mysql and other things that I would rather not get from port.<br />
<strong>Warning: do not remove your system's <em>/usr/bin/ruby</em> since brew depends on it.</strong></p>
<h3>Let's move to rvm installation now</h3>
<p>(<a href="http://rvm.beginrescueend.com/rvm/install/"><em>official installation instructions</em></a>)</p>
<p>To Install/update from the github repository, which they recommend, run:</p>
<pre class="brush: bash; light: true;">
bash < <( curl 'http://rvm.beginrescueend.com/releases/rvm-install-head' )
</pre>
<p>I had a version of <abbr title="Ruby Enterprise Edition">ree</abbr> installed in /opt, so I just deleted it, I recommend that you do the same.</p>
<p>Add this to your <em>.bash_profile</em> or <em>.bash_rc</em> file, whichever you use.</p>
<pre class="brush: bash; light: true;">
source ~/.rvm/scripts/rvm
</pre>
<p>They advise you to put it at the end of it, and to make sure you have no <em>return</em>s inside your file.</p>
<p>I have a reload function in my file so I just ran reload</p>
<pre class="brush: bash; light: true;>
reload () { source ~/.bash_profile }
</pre>
<p>but you have to <em>source</em> again the files you usually load when you open a new terminal.</p>
<p>Now start playing with rvm! Install your rubies!</p>
<pre class="brush: bash; light: true;">
rvm install ree
rvm install 1.9.1
rvm install 1.9.2-head
</pre>
<p>Set the one you use the most as the default one, at work is ree:</p>
<pre class="brush: bash; light: true;">
rvm ree --default
</pre>
<p>Everytime you open a new terminal, it should be using the default rvm ruby, but to make you might want to add the rvm-prompt feature to your default PS1. Add <em>~/.rvm/bin/rvm-prompt i v</em> to your PS1 variable, something like:</p>
<pre class="brush: bash; light: true;">
# a fancy ps1
export PS1="\e[1;33m\u\e[0m|\e[1;32m\h\e[0m \e[1;34m\w\e[0m |\e[33m$(~/.rvm/bin/rvm-prompt i v)\e[0m|\n\$ "
</pre>
<p>If you want to install a gem for all of your rubies run</p>
<pre class="brush: bash; light: true;">
rvm gem install gemname
</pre>
<p>if not, you just use your regular gem to install stuff (it should be using the specific gem for your chosen ruby - as you can see below).</p>
<pre class="brush: bash; light: true;">
$ which ruby
/Users/jao/.rvm/rubies/ree-1.8.7-2010.01/bin/ruby
$ which gem
/Users/jao/.rvm/rubies/ree-1.8.7-2010.01/bin/gem
</pre>
<p>I think that sums it up. Have fun!<br />
And ask questions or say if something is wrong in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2010/04/30/ports-wipe-homebrew-rvm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>passandomal.com</title>
		<link>http://jpcamargo.com/2009/11/05/passandomal-com/</link>
		<comments>http://jpcamargo.com/2009/11/05/passandomal-com/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 23:19:47 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[php javascript ajax blogware tool]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=221</guid>
		<description><![CDATA[Well, this is a mention of my first website, designed and programmed, using my very own blog tool, blogware. Easier to do that back then, even wordpress was a simple blog tool back then &#8211; not a CMS like it is today.


Back in the late 90s, I used to write mostly about my life, but [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this is a mention of my first website, designed and programmed, using my very own blog tool, blogware. Easier to do that back then, even wordpress was a simple blog tool back then &#8211; not a CMS like it is today.<br />
<span id="more-221"></span><br />
<img class="aligncenter size-full wp-image-223" title="passandomal thumbnail" src="http://jpcamargo.com/wp-content/uploads/2009/11/passandomal_thumbnail.png" alt="passandomal thumbnail" width="640" height="150" /></p>
<p>Back in the late 90s, I used to write mostly about my life, but I used this website more to test new technologies, and workarounds, solutions to get things done. I remember that I used a javascript/iframes/php hack to make &#8220;ajax&#8221;-like calls. And to my knowledge, this site was the very first one to use these emulated calls like that.</p>
<div id="attachment_225" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-225 " title="blogware - js" src="http://jpcamargo.com/wp-content/uploads/2009/11/blogware_js.png" alt="blogware - js" width="480" height="100" /><p class="wp-caption-text">used to write comments without reloading the page</p></div>
<p>I remember how this code used to work, and I remember being kind of cool back then, all of my friends were thrilled by this. Sadly or fortunately, that is nothing special these days.</p>
<div id="attachment_224" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-224 " title="blogware - php" src="http://jpcamargo.com/wp-content/uploads/2009/11/blogware_php.png" alt="blogware - php" width="480" height="100" /><p class="wp-caption-text">mysql queries and html code all mixed together, funny!</p></div>
<p>The php source is even weirder to look at, I miss the recklessness that was programming with sql calls being made from all over the place. I remember a couple years later I started writing my own framework (like every other programmer) and it was pretty solid by the time Ruby on Rails exploded everything with it&#8217;s simplicity and agility.</p>
<p>I am considering refactoring blogware, well, actually making a new blogware would be more accurate, probably using ruby and RoR, adding some cool web 2.0 features that you can find in current cms/blog tools. And maybe some crazy new things that will be properly used 5 years from now.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/11/05/passandomal-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bash, an Adium message style</title>
		<link>http://jpcamargo.com/2009/10/29/bash-an-adium-message-style/</link>
		<comments>http://jpcamargo.com/2009/10/29/bash-an-adium-message-style/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 00:20:03 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[adium]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=132</guid>
		<description><![CDATA[A message style for adium designed and written by me. It is inspired on how a pretty unix* terminal looks like.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-160" title="piece of source code" src="http://jpcamargo.com/wp-content/uploads/2009/10/bash-code_640x1001.png" alt="bash-code_640x100" width="640" height="100" /></p>
<p>I made this because I always disliked those happy IM windows, with things bouncing around making weird sound effects. It was intially much simpler than this, but a fancy terminal is still good, as long as it is fast, right?</p>
<p>My friends <a href="http://rodrigofranco.com">Caffo</a>, <a href="http://taizasouza.com">Taiza</a> and Juca helped me with this since the beginning, and there is even a Variant (color style) made by Caffo that is in the package &#8211;  bu noone likes it.</p>
<p>I&#8217;ve heard that this might <a href="http://www.webupd8.org/2009/05/pidgin-webkit-plugin-adium-conversation.html">work on pidgin</a> too, can someone confirm this? If not what changes do I need to make so this can work?</p>
<div id="attachment_155" class="wp-caption alignleft" style="width: 339px"><a href="http://jpcamargo.com/wp-content/uploads/2009/10/message-style_470x150.png"><img class="size-full wp-image-155  " title="sample" src="http://jpcamargo.com/wp-content/uploads/2009/10/message-style_470x150.png" alt="message-style_470x150" width="329" height="105" /></a><p class="wp-caption-text">a sample message</p></div>
<p>I plan to only update this to fix bugs now, but if you have any ideas, suggestions or requests, just let me know.</p>
<p>To get this you can go to the <a title="Bash, Adium Xtra - message style" href="http://www.adiumxtras.com/index.php?a=xtras&amp;xtra_id=3665">Adium Xtras page</a>, or you can get it straight from <a href="http://github.com/jao/Bash.AdiumMessageStyle">GitHub</a>, where you can find more versions as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/29/bash-an-adium-message-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eclair for hero!</title>
		<link>http://jpcamargo.com/2009/10/28/eclair-for-hero/</link>
		<comments>http://jpcamargo.com/2009/10/28/eclair-for-hero/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 18:49:07 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=110</guid>
		<description><![CDATA[Well, according to androidGuys HTC will be updating Hero&#8217;s OS to 2.0, and skipping 1.6
The Hero will not be receiving the Android 1.6 upgrade, it will however get the 2.0 one. Do note however that we do not have a confirmed release date for this upgrade, all I can recommend at the moment is that [...]]]></description>
			<content:encoded><![CDATA[<p>Well, according to <a href="http://www.androidguys.com/2009/10/28/european-htc-hero-skipping-1-6-update/#more-10347">androidGuys</a> HTC will be updating Hero&#8217;s OS to 2.0, and skipping 1.6</p>
<blockquote><p>The Hero will not be receiving the Android 1.6 upgrade, it will however get the 2.0 one. Do note however that we do not have a confirmed release date for this upgrade, all I can recommend at the moment is that you keep yourself updated by visiting our website regularly as the latest information will be available to view from there.</p></blockquote>
<p>We don&#8217;t know when, let&#8217;s hope it happens soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/28/eclair-for-hero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A wp android app</title>
		<link>http://jpcamargo.com/2009/10/28/a-wp-android-app/</link>
		<comments>http://jpcamargo.com/2009/10/28/a-wp-android-app/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 03:05:58 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://jpcamargo.com/?p=109</guid>
		<description><![CDATA[Just typing from the cell phone testing the auto correct feature, which seems to be pretty good since I have fat thumbs and there are no typos.
/win
]]></description>
			<content:encoded><![CDATA[<p>Just typing from the cell phone testing the auto correct feature, which seems to be pretty good since I have fat thumbs and there are no typos.</p>
<p>/win</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/28/a-wp-android-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>android + vlc</title>
		<link>http://jpcamargo.com/2009/10/27/android-vlc/</link>
		<comments>http://jpcamargo.com/2009/10/27/android-vlc/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 23:44:00 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[android app]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http:///2009/10/27/android-vlc-2</guid>
		<description><![CDATA[I downloaded an android app and god I like this little thing, controlling my daily tv series watching session using my phone, while I&#8217;m just laying here is just awesome.
]]></description>
			<content:encoded><![CDATA[<p>I downloaded an <a href="http://code.google.com/p/android-vlc-remote">android app</a> and god I like this little thing, controlling my daily tv series watching session using my phone, while I&#8217;m just laying here is just awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/27/android-vlc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ruby: print in the same line</title>
		<link>http://jpcamargo.com/2009/10/26/ruby-print-in-the-same-line/</link>
		<comments>http://jpcamargo.com/2009/10/26/ruby-print-in-the-same-line/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 22:34:00 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[inline]]></category>
		<category><![CDATA[response]]></category>

		<guid isPermaLink="false">http:///2009/10/26/ruby-print-in-the-same-line</guid>
		<description><![CDATA[I’ve always tried to make my scripts’ responses prettier and less crowded, and I came across something like the following piece of code, that helped me a lot lately

#!/usr/bin/env ruby
STDOUT.sync = true
bars = ['/','-','\\','&#124;']
i=1
while i do
  print "\rrunning #{bars[i%4]}"
  i += 1
  sleep 1
end
trap("INT") {
  print "\n\n"
  exit
}


If you like [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve always tried to make my scripts’ responses prettier and less crowded, and I came across something like the following piece of code, that helped me a lot lately</p>
<p><code>
<pre class="brush: ruby">#!/usr/bin/env ruby
STDOUT.sync = true
bars = ['/','-','\\','|']
i=1
while i do
  print "\rrunning #{bars[i%4]}"
  i += 1
  sleep 1
end
trap("INT") {
  print "\n\n"
  exit
}
</pre>
<p></code><br />
If you like to see updates without flooding your terminal screen, this is one of the best ways to do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/26/ruby-print-in-the-same-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iphone or android?</title>
		<link>http://jpcamargo.com/2009/10/08/iphone-or-android/</link>
		<comments>http://jpcamargo.com/2009/10/08/iphone-or-android/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:30:00 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http:///2009/10/08/iphone-or-android</guid>
		<description><![CDATA[So, I need a new phone :P
What should I get? And why?
]]></description>
			<content:encoded><![CDATA[<p>So, I need a new phone :P</p>
<p>What should I get? And why?</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/10/08/iphone-or-android/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>google profile</title>
		<link>http://jpcamargo.com/2009/09/29/google-profile/</link>
		<comments>http://jpcamargo.com/2009/09/29/google-profile/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:11:00 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[geocities]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http:///2009/09/29/google-profile</guid>
		<description><![CDATA[Even if you don&#8217;t care too much about it, I think you should update your google profile.
Just use this link http://www.google.com/profiles and edit your personal information&#8230; All I want is to have my friend&#8217;s birthdays on my google calendar (contacts), without adding it myself :D
]]></description>
			<content:encoded><![CDATA[<p>Even if you don&#8217;t care too much about it, I think you should update your google profile.</p>
<p>Just use this link <a href="http://www.google.com/profiles">http://www.google.com/profiles</a> and edit your personal information&#8230; All I want is to have my friend&#8217;s birthdays on my google calendar (contacts), without adding it myself :D</p>
]]></content:encoded>
			<wfw:commentRss>http://jpcamargo.com/2009/09/29/google-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
