<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Roberto Carvajal</title>
	
	<link>http://robertocarvajal.org</link>
	<description>personal blog</description>
	<lastBuildDate>Thu, 22 Jul 2010 01:37:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RobertoCarvajal" /><feedburner:info uri="robertocarvajal" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Running roboSimu, ODE and drawstuff in Mac OS X Snow Leopard</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/bfUiVNkMgRE/</link>
		<comments>http://robertocarvajal.org/2010/07/21/running-robosimu-ode-and-drawstuff-in-mac-os-x-snow-leopard/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 20:45:35 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2010/07/21/running-robosimu-ode-and-drawstuff-in-mac-os-x-snow-leopard/</guid>
		<description><![CDATA[During this week my lovely wife is attending a conference at school about robotics, nano technology and neuroscience, all themes that we love and are very interested into learning as much as we can. One of the workshops was about simulating robots in the computer before attempting to build them in real life, of course [...]]]></description>
			<content:encoded><![CDATA[<p>During this week my lovely wife is attending a conference at school about <a href="http://robotica.elo.utfsm.cl/escuela/">robotics, nano technology and neuroscience</a>, all themes that we love and are very interested into learning as much as we can. One of the workshops was about simulating robots in the computer before attempting to build them in real life, of course the demo was in Windows but it used an open source library called <a href="http://ode.org/">ODE (Open Dynamics Engine)</a> and examples from <a href="http://demura.net/">Kosei Demura</a> for the simulations. Of course I was hooked right away and wanted to try the examples in my mac and since today I&#8217;m sick at home and feeling like not working at all I decided to get this running, this is how you can get to run roboSimu, ODE and drawstuff in your Snow Leopard.</p>
<p>First things first, you need to install Apple&#8217;s Developer Tools, they either come in your Extras DVD or you get them from <a href="http://developer.apple.com">Apple&#8217;s Developer</a> site, they are free but you need to register.</p>
<p>Once you have the dev tools, you need to install premake 3.7 and premake 4, this is because ODE svn sources needs premake4 and roboSimu sources are made for premake 3.x.</p>
<p>So go ahead and <a href="http://sourceforge.net/projects/premake/files/">download premake 3.7 and premake 4</a>, unzip and copy the premake and premake4 binary into <code>/usr/bin</code>.</p>
<p>Next you need to install ODE, currently drawstuff is broken with the latest ODE 0.11.1 so we need to get the sources using subversion (if you don&#8217;t have subversion get the package installer <a href="http://www.open.collab.net/downloads/community/">here</a>).</p>
<p>So run:</p>
<p><code>svn co https://opende.svn.sourceforge.net/svnroot/opende/trunk ode</code></p>
<p>Now to compile ode run this:</p>
<p><code><br />
	cd ode<br />
	./autogen.sh<br />
	./configure --enable-double-precision<br />
	make<br />
	cd build<br />
	premake4 gmake<br />
        cd gmake<br />
        make config=debugdoubledll<br />
</code></p>
<p>After this you should have <code>libode_doubled.dylib</code> in <code>ode/lib/DebugDoubleDLL</code>.</p>
<p>Now into roboSimu, go to <a href="http://demura.net/9ode/6077.html">Demura&#8217;s instructions</a> and you&#8217;ll find <a href="http://demura.net/downloads/robosimu">roboSimu090614.zip</a> along with instructions to build on Windows and CodeBlocks.</p>
<p>Unzip roboSimu sources and copy the files into <code>ode/roboSimu</code>.</p>
<p>Now we need to copy the ode and drawstuff libs into <code>ode/roboSimu/DebugLib</code>.</p>
<p>Standing inside <code>ode</code> run this:</p>
<p><code><br />
	mkdir roboSimu/DebugLib<br />
	cp lib/DebugDoubleDLL/libode_doubled.dylib roboSimu/DebugLib<br />
	cp drawstuff/src/.libs/libdrawstuff.a roboSimu/DebugLib/libdrawstuffd.a<br />
	cp drawstuff/src/libdrawstuff.la roboSimu/DebugLib/libdrawstuffd.la<br />
</code></p>
<p>Almost ready!, I promise!</p>
<p>Now you need to edit <code>roboSimu/roboSimu.lua</code> edit line 77 and add the following:</p>
<p><code><br />
	--table.insert(package.links, { "GL", "GLU" })<br />
    table.insert(package.linkoptions, {"-framework OpenGL", "-framework GLUT"})<br />
</code></p>
<p>Save and quit and now it&#8217;s time to compile!</p>
<p><code><br />
	cd roboSimu<br />
	premake --target gnu<br />
	cd src<br />
	make<br />
</code></p>
<p>If everything goes well you should see this:</p>
<p><code><br />
	==== Building amotor ====<br />
	Linking amotor<br />
	==== Building arm1 ====<br />
	arm1.cpp<br />
	Linking arm1<br />
	==== Building arm2 ====<br />
	arm2.cpp<br />
	Linking arm2<br />
	==== Building arm3 ====<br />
	arm3.cpp<br />
	Linking arm3<br />
	==== Building bounce ====<br />
	bounce.cpp<br />
	Linking bounce<br />
	==== Building hello ====<br />
	hello.cpp<br />
	Linking hello<br />
	==== Building hopper ====<br />
	hopper.cpp<br />
	Linking hopper<br />
	==== Building hopper2 ====<br />
	hopper2.cpp<br />
	Linking hopper2<br />
	==== Building hopper3 ====<br />
	hopper3.cpp<br />
	Linking hopper3<br />
	==== Building legged ====<br />
	legged.cpp<br />
	Linking legged<br />
	==== Building monoBot ====<br />
	monoBot.cpp<br />
	Linking monoBot<br />
	==== Building omni ====<br />
	omni.cpp<br />
	Linking omni<br />
	==== Building pk ====<br />
	pk.cpp<br />
	Linking pk<br />
	==== Building sensor4 ====<br />
	sensor4.cpp<br />
	Linking sensor4<br />
	==== Building slope ====<br />
	slope.cpp<br />
	Linking slope<br />
	==== Building wheel1 ====<br />
	wheel1.cpp<br />
	Linking wheel1<br />
	==== Building wheel2 ====<br />
	wheel2.cpp<br />
	Linking wheel2<br />
	==== Building wheel4 ====<br />
	wheel4.cpp<br />
	Linking wheel4<br />
</code></p>
<p>Note that all the example binaries will be inside <code>ode/roboSimu/DebugLib</code>. Enjoy!</p>
<p><img src="http://farm5.static.flickr.com/4074/4816563410_2149a1520a.jpg" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=bfUiVNkMgRE:ARuSS5WRoEE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=bfUiVNkMgRE:ARuSS5WRoEE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=bfUiVNkMgRE:ARuSS5WRoEE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=bfUiVNkMgRE:ARuSS5WRoEE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=bfUiVNkMgRE:ARuSS5WRoEE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/bfUiVNkMgRE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/07/21/running-robosimu-ode-and-drawstuff-in-mac-os-x-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/07/21/running-robosimu-ode-and-drawstuff-in-mac-os-x-snow-leopard/</feedburner:origLink></item>
		<item>
		<title>The Update</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/GusVnJ4WvKM/</link>
		<comments>http://robertocarvajal.org/2010/07/12/the-update/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 04:35:24 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/?p=103</guid>
		<description><![CDATA[So it&#8217;s been a few months since my last post, life it&#8217;s getting busy, wife is at school getting her degree, kid is at daycare, and I&#8217;m at home working and learning how to manage a remote team, trying to cooperate with some code and keeping the team and the clients happy as much as [...]]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been a few months since my last post, life it&#8217;s getting busy, wife is at school getting her degree, kid is at daycare, and I&#8217;m at home working and learning how to manage a remote team, trying to cooperate with some code and keeping the team and the clients happy as much as I can. Our operation has expanded and things are starting to look more like a real company rather than a few fellas freelancing for fun and profit. We are growing, which is good, but growth without control is <em>very</em> dangerous. </p>
<p>I&#8217;m a total noob when it comes to managing people, but this step was a forced step, someone had to do it and it felt like the right time to do it, after 10 years of coding and hacking I&#8217;m slowly starting to venture in the next step, <strong>management</strong>, ugh, I avoided that word for so long that is not even funny, back then in my late teens and early 20s I swear not to be <em>&#8220;that guy&#8221;</em>, and here I am, doing my best to enable the team to get things done and not being a total asshole at the same time, guess what?, it&#8217;s hard, fun and satisfying, very much like hacking but instead of logic skills you need social skills, yes, the ones that I as a former nerd developed late in life.</p>
<p>So yeah, this is cool, it takes a whole different set of skills and it&#8217;s a decent challenge by itself, life is good :)!.</p>
<p>PS: I replaced the MacBook with an iMac, best move evah. I keep the MacBook just in case I need to go mobile, which is about 5% of the time.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=GusVnJ4WvKM:yFanZ9G7LTY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=GusVnJ4WvKM:yFanZ9G7LTY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=GusVnJ4WvKM:yFanZ9G7LTY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=GusVnJ4WvKM:yFanZ9G7LTY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=GusVnJ4WvKM:yFanZ9G7LTY:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/GusVnJ4WvKM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/07/12/the-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/07/12/the-update/</feedburner:origLink></item>
		<item>
		<title>standing desk</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/8mXLOxM2WdY/</link>
		<comments>http://robertocarvajal.org/2010/03/30/standing-desk/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 15:38:54 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2010/03/30/standing-desk/</guid>
		<description><![CDATA[I&#8217;m a web developer working from home, this means I get to do whatever I want with my home office! so after reading a lot about health issues caused by sitting on your ass the whole day I decided to try a standing desk. Yet I really don&#8217;t know if it will work for me, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a web developer working from home, this means I get to do whatever I want with my home office! so after reading a lot about health issues caused by sitting on your ass the whole day I decided to try a standing desk. Yet I really don&#8217;t know if it will work for me, from what I&#8217;ve read it can greatly help you to avoid some of the bad back pains and other problems (which I&#8217;m sick of I must say), there was a tiny problem, I don&#8217;t have a standing desk and I don&#8217;t want to spend a lot of money or time in getting one, and in fact, I&#8217;m not really sure if someone sells this kinds of desks in my country (Chile), let alone in the little beach town I live (Viña del Mar). My solution is simple, ugly and quick, yet it works like a charm, I&#8217;m actually writing this posts in my brand new standing desk.</p>
<div class="portrait"><img src="http://farm3.static.flickr.com/2700/4475932859_9f07d92ae6.jpg" /><br />
<span class="picShadow"></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=8mXLOxM2WdY:M4pE3vbKSKE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=8mXLOxM2WdY:M4pE3vbKSKE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=8mXLOxM2WdY:M4pE3vbKSKE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=8mXLOxM2WdY:M4pE3vbKSKE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=8mXLOxM2WdY:M4pE3vbKSKE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/8mXLOxM2WdY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/03/30/standing-desk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/03/30/standing-desk/</feedburner:origLink></item>
		<item>
		<title>Great grandfather</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/rvobwUjz_h4/</link>
		<comments>http://robertocarvajal.org/2010/03/10/great-grandfather/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:26:11 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2010/03/10/great-grandfather/</guid>
		<description><![CDATA[A couple of days ago my father sent me an email with the scans of my great grandfather passport and some pics! he was a chinese merchant that came to Chile in the 30s. More pics in my Flickr set.]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago my father sent me an email with the scans of my great grandfather passport and some pics! he was a chinese merchant that came to Chile in the 30s.</p>
<div class="landscape"><img src="http://farm3.static.flickr.com/2679/4417888631_83df009c63.jpg" /><span class="picShadow"></span></div>
</div>
<div class="landscape"><img src="http://farm3.static.flickr.com/2769/4417889475_2d3160e52f.jpg" /><span class="picShadow"></span></div>
</div>
<p>More pics in my <a href="http://www.flickr.com/photos/netkrash/sets/72157623582392762/" title="Flickr Set">Flickr set</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=rvobwUjz_h4:0uuIfZ0dk9w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=rvobwUjz_h4:0uuIfZ0dk9w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=rvobwUjz_h4:0uuIfZ0dk9w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=rvobwUjz_h4:0uuIfZ0dk9w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=rvobwUjz_h4:0uuIfZ0dk9w:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/rvobwUjz_h4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/03/10/great-grandfather/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/03/10/great-grandfather/</feedburner:origLink></item>
		<item>
		<title>Earthquake</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/5mvgEDYVmJg/</link>
		<comments>http://robertocarvajal.org/2010/03/09/earthquake/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:24:10 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2010/03/09/earthquake/</guid>
		<description><![CDATA[As some of you may know, a week ago we had a big earthquake in Chile, not just big for what we are used to, this was the 5th strongest earthquake ever recorded in history, I&#8217;m talking about an effin M8.8 earthquake, this means it is 63 times &#8220;bigger in magnitude&#8221; but 500 times &#8220;stronger [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you may know, a week ago we had a big earthquake in Chile, not just big for what we are used to, this was the 5th strongest earthquake ever recorded in history, I&#8217;m talking about an effin M8.8 earthquake, this means it is 63 times <em>&#8220;bigger in magnitude&#8221;</em> but 500 times <em>&#8220;stronger in terms of energy release&#8221;</em> than the M7 that hit Haiti a couple of months ago. That particular night I was alone in my apartment in the 8th floor and my wife and son were at her parent&#8217;s, which is good because she totally freaks out with earthquakes and she most likely would have suffered a panic attack inside the building. Anyways I&#8217;m glad this is over and no one in our close family had any significant damage to either their health or homes but on the other side our country was hit very hard in some rural areas, small fish towns and some cities, not only because of the earthquake itself but the devastating tsunami that hit them a couple of minutes after. This are hard times for us, and we know it&#8217;s impossible to recover what we lost but at the same time this is a great opportunity, crisis are always good opportunities if you have the will power to overcome them, one of the positive things I&#8217;ve seen is how our people are bonding togheter, how they help each other, in some places there are so many people helping that it&#8217;s impossible to organize them all and not all of them are able to actually help!, this has to be some of the greatest acts of kindness and solidarity across the nation that I&#8217;ve seen in my life, I hope we leave behind all the horror and build a brighter, better future.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=5mvgEDYVmJg:QdLdV1HM1EM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=5mvgEDYVmJg:QdLdV1HM1EM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=5mvgEDYVmJg:QdLdV1HM1EM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=5mvgEDYVmJg:QdLdV1HM1EM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=5mvgEDYVmJg:QdLdV1HM1EM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/5mvgEDYVmJg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/03/09/earthquake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/03/09/earthquake/</feedburner:origLink></item>
		<item>
		<title>2010 challenges</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/_AO0TmTWf2c/</link>
		<comments>http://robertocarvajal.org/2010/02/08/2010-challenges/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:28:46 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2010/02/08/2010-challenges/</guid>
		<description><![CDATA[Life Challenge This year is going to be special in many aspects, my wife is starting college again, and she is going after a degree in Electronic Engineering at one of the top schools in our country. This time things are different, we are now married and proud parents of a very cute, smart and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Life Challenge</strong></p>
<p>This year is going to be special in many aspects, my wife is starting college again, and she is going after a degree in Electronic Engineering at one of the top schools in our country. This time things are different, we are now  married and proud parents of a very cute, smart and awesome 3 year old kid and we have something we can call home, not bad for a young couple!. This is start of a beautiful quest for all of us, and I hope to be as supportive as I can be and help her out to achieve her degree.</p>
<p><strong>Work Challenge</strong></p>
<p>Work is not going to be easy either, business is growing and we are working on some nice projects for big clients, the kind of client that can absorb most of your time and resources but you have to keep up with them. This is a good thing, it gives you peace of mind, specially as a freelancer, to know that money is not going to be an issue for a whole year, which I want to take as an opportunity to finish a product and finally move out of the freelance world and into the indy dev studio that I really want to be.</p>
<p><strong>Conclusion</strong></p>
<p>So that&#8217;s it, I am happy and thrilled about this year challenges and I am determined to make the most out of it. Also, this is the first time in my life that I make &#8220;resolutions&#8221;, not sure how they will turn out but it was a very interesting exercise, I wrote down 20 things, all very realistic and nothing too crazy. It&#8217;s amazing how much better I would feel if I actually do/achieve just some of them, small changes may have a big impact in your life after all.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=_AO0TmTWf2c:FcKNuIaskXI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=_AO0TmTWf2c:FcKNuIaskXI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=_AO0TmTWf2c:FcKNuIaskXI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=_AO0TmTWf2c:FcKNuIaskXI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=_AO0TmTWf2c:FcKNuIaskXI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/_AO0TmTWf2c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2010/02/08/2010-challenges/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2010/02/08/2010-challenges/</feedburner:origLink></item>
		<item>
		<title>Happy Holidays!</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/0Hk9aYt2JjQ/</link>
		<comments>http://robertocarvajal.org/2009/12/18/happy-holidays/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 17:36:30 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2009/12/18/happy-holidays/</guid>
		<description><![CDATA[I&#8217;ve been too busy to update this blog, but anyways, to those couple of users that read this, happy holidays!!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been too busy to update this blog, but anyways, to those couple of users that read this, happy holidays!!</p>
<div class="landscape"><img src="http://farm3.static.flickr.com/2552/4184656621_05f0eff02f.jpg" /><span class="picShadow"></span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=0Hk9aYt2JjQ:emdcq4_h5wU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=0Hk9aYt2JjQ:emdcq4_h5wU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=0Hk9aYt2JjQ:emdcq4_h5wU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=0Hk9aYt2JjQ:emdcq4_h5wU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=0Hk9aYt2JjQ:emdcq4_h5wU:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/0Hk9aYt2JjQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2009/12/18/happy-holidays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2009/12/18/happy-holidays/</feedburner:origLink></item>
		<item>
		<title>Safari 4 Google Search Shortcut</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/dmUfl9l7o_M/</link>
		<comments>http://robertocarvajal.org/2009/10/01/safari-4-google-search-shortcut/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 14:27:54 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Mac Tips]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2009/10/01/safari-4-google-search-shortcut/</guid>
		<description><![CDATA[By default Safari 4 has a very annoying shortcut to use the Google Search box and I am already used to the &#8984;K shortcut that Firefox has, to fix this we are going to use the same program I showed at my previous tip: Switching Safari Tabs With Custom Shortcuts. So, if you haven&#8217;t already [...]]]></description>
			<content:encoded><![CDATA[<p>By default Safari 4 has a very annoying shortcut to use the Google Search box and I am already used to the &#8984;K shortcut that Firefox has, to fix this we are going to use the same program I showed at my previous tip: <a href="http://robertocarvajal.org/2009/05/28/switching-safari-tabs-with-custom-shortcuts/" title="Switching Safari Tabs With Custom Shortcuts &laquo;  Roberto Carvajal">Switching Safari Tabs With Custom Shortcuts</a>.</p>
<p>So, if you haven&#8217;t already done so, go get <a href="http://www.shadowlab.org/Software/spark" title="Spark 3 B&ecirc;ta9">Spark</a>, open it and hit the &#8220;All Application&#8217;s HotKeys&#8221; button in the middle of the screen, it should show up a drawer, click the + sign and add Safari to the list, with Safari selected double click &#8220;Menu Item&#8221; in the &#8220;HotKey Groups&#8221; pane, in there press &#8220;click to edit&#8221; add &#8984;K or whatever shortcut you want, name it Google Search, hit the first drop down and select Safari again, and on the second drop down select &#8220;Edition -> Search -> Google Search&#8230;&#8221;, hit create and restart Safari, also make sure the Spark daemon is actually running.</p>
<p>That should be it, next time you press your shortcut you should be directly at the Google Search box.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=dmUfl9l7o_M:8Jjiol0z-jU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=dmUfl9l7o_M:8Jjiol0z-jU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=dmUfl9l7o_M:8Jjiol0z-jU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=dmUfl9l7o_M:8Jjiol0z-jU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=dmUfl9l7o_M:8Jjiol0z-jU:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/dmUfl9l7o_M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2009/10/01/safari-4-google-search-shortcut/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2009/10/01/safari-4-google-search-shortcut/</feedburner:origLink></item>
		<item>
		<title>Thank You</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/M_WNthrlPXQ/</link>
		<comments>http://robertocarvajal.org/2009/09/29/thank-you/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:29:47 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2009/09/29/thank-you/</guid>
		<description><![CDATA[My friend Guido made me this awesome theme, it&#8217;s pretty much a ripoff from Fabien Potencier blog ported to WordPress. I also added the cool image drop shadow from Mike Matas blog. Thanks man, you rock.]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://www.g2markup.com">Guido</a> made me this awesome theme, it&#8217;s pretty much a ripoff from <a href="http://fabien.potencier.org">Fabien Potencier</a> blog ported to WordPress. I also added the cool image drop shadow from <a href="http://www.mikematas.com">Mike Matas</a> blog.</p>
<p>Thanks man, you rock.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M_WNthrlPXQ:8dmXUdbLRhs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M_WNthrlPXQ:8dmXUdbLRhs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=M_WNthrlPXQ:8dmXUdbLRhs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M_WNthrlPXQ:8dmXUdbLRhs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=M_WNthrlPXQ:8dmXUdbLRhs:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/M_WNthrlPXQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2009/09/29/thank-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2009/09/29/thank-you/</feedburner:origLink></item>
		<item>
		<title>minimalism</title>
		<link>http://feedproxy.google.com/~r/RobertoCarvajal/~3/M4AFcNAZFD8/</link>
		<comments>http://robertocarvajal.org/2009/08/11/minimalism/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 21:59:26 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://robertocarvajal.org/2009/08/11/minimalism/</guid>
		<description><![CDATA[I&#8217;m working with the bare essentials now, no office, no extra monitor, no extra speakers&#8230;]]></description>
			<content:encoded><![CDATA[<div class="landscape"><img src="http://farm3.static.flickr.com/2516/3812321790_4a90179b87.jpg" /><span class="picShadow"></span></div>
<p>I&#8217;m working with the bare essentials now, no office, no extra monitor, no extra speakers&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M4AFcNAZFD8:9lN-jjhNn8c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M4AFcNAZFD8:9lN-jjhNn8c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=M4AFcNAZFD8:9lN-jjhNn8c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/RobertoCarvajal?a=M4AFcNAZFD8:9lN-jjhNn8c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/RobertoCarvajal?i=M4AFcNAZFD8:9lN-jjhNn8c:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/RobertoCarvajal/~4/M4AFcNAZFD8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robertocarvajal.org/2009/08/11/minimalism/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://robertocarvajal.org/2009/08/11/minimalism/</feedburner:origLink></item>
	</channel>
</rss>
