<?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>Pedro Assunção &#187; mac</title>
	<atom:link href="http://pedroassuncao.com/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://pedroassuncao.com</link>
	<description>Thoughts on technology, skydiving, life, the universe, you know, whatever comes to mind.</description>
	<lastBuildDate>Sat, 28 Aug 2010 19:18:55 +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>Sproutcore on OSX snow leopard</title>
		<link>http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/</link>
		<comments>http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 09:13:08 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[experiments]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=908</guid>
		<description><![CDATA[<p>It recently came to my attention the existence of this heavily-client-based web framework to develop desktop-like applications called Sproutcore and is backed up by Apple (there is another cool alternative called Capuccino). Basically it relies on Javascript to create nice desktop-like applications, but on the web.</p> <p>Ever since i (...)<br/ >[<a href="http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/' rel='bookmark' title='Permanent Link: Recover iSync after removing it from OSX'>Recover iSync after removing it from OSX</a></li>
<li><a href='http://pedroassuncao.com/2009/12/websockets-tutorialexample-with-pywebsocket/' rel='bookmark' title='Permanent Link: Websockets tutorial/example with pywebsocket'>Websockets tutorial/example with pywebsocket</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It recently came to my attention the existence of this heavily-client-based web framework to develop desktop-like applications called <a href="http://sproutcore.com/">Sproutcore</a> and is backed up by Apple (there is another cool alternative called <a href="http://cappuccino.org">Capuccino</a>). Basically it relies on Javascript to create nice desktop-like applications, but on the web.</p>
<p>Ever since i heard about node.js i have been curious to try out one of these things. My ideas on it will come later but, for now, here are the required steps to make Sproutcore work well on OSX snow leopard. And i say work well because if you rely on the vanilla Ruby 1.8.7 that comes with snow leopard you will have a very crappy experience with Sproutcore; It will take approximately 35 seconds to reload any webpage every time you make a code change. And that will make you not want to use it at all.</p>
<p>Fortunately a lot of people have been kind enough to explain me, on twitter, how to make it faster.</p>
<p>But let&#8217;s start from the beginning:</p>
<p><strong>1. Install Sproutcore using GEM, like so:</strong></p>
<pre>sudo gem install sproutcore</pre>
<address>Note: I don&#8217;t remember if gem comes installed with snow leopard. If not, you can always google it <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </address>
<p><strong>2. Follow the </strong><a href="http://www.sproutcore.com/get-started/"><strong>rest of the steps</strong></a><strong> to setup your first application</strong></p>
<p>By now you should have realized that (if you are using OSX snow leopard) the damn thing is freaking slow. So&#8230;</p>
<p><strong>3. &#8230;download and compile the <a href="http://www.ruby-lang.org/en/downloads/">Ruby 1.9 source</a> code for OSX</strong></p>
<pre>tar xzvf ruby-1.9.1-p376.tar.gz
cd ruby-1.9.1-p376
./configure --enable-shared --enable-pthread CFLAGS=-D_XOPEN_SOURCE=1
make
sudo make install</pre>
<address>Note: The actual version could be different, as stuff evolves over time <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </address>
<p><strong>4. Update the symbolic link on your system to point to the new ruby installation</strong></p>
<pre>sudo rm /usr/bin/ruby
sudo ln -s /usr/local/bin/ruby /usr/bin/ruby</pre>
<p><strong>5. Make sure the correct Ruby version is in use</strong></p>
<pre>ruby --version</pre>
<p>Should return something like this:</p>
<pre>ruby 1.9.1p376 (2009-12-07 revision 26041) [i386-darwin10.3.0]</pre>
<p><strong>6. Install thin. This server is faster than the one that comes with Sproutcore</strong></p>
<pre>sudo gem install thin</pre>
<p><strong>7. All done. Give it a try again</strong></p>
<p>If you try to refresh the page of a Sproutcore example now you will notice the speed difference, like night to day. Have fun coding client-side desktop web applications <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m planning to also take a look at <a href="http://cappuccino.org">Capuccino</a>, another similar framework, but created in Objective-J &#8211; a derivative of Objective-C for javascript. Looks interesting and it might get me into iPhone development at last <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;t=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Sproutcore+on+OSX+snow+leopard+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;title=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;title=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;t=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;title=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/&amp;t=Sproutcore+on+OSX+snow+leopard" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/' rel='bookmark' title='Permanent Link: Recover iSync after removing it from OSX'>Recover iSync after removing it from OSX</a></li>
<li><a href='http://pedroassuncao.com/2009/12/websockets-tutorialexample-with-pywebsocket/' rel='bookmark' title='Permanent Link: Websockets tutorial/example with pywebsocket'>Websockets tutorial/example with pywebsocket</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The quest for a simple music player on mac OSX</title>
		<link>http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/</link>
		<comments>http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 18:11:41 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[cries for help]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://diffract.me/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/</guid>
		<description><![CDATA[ I have to say this: looking for a simple music player for OSX is like searching for a needle in the middle of lots of big sticks; it should be easy, except the needle is under the carpet. Nevertheless, between trying out iTunes , Songbird , and a few other options, i have always felt like there should be something, you know, simple and memory efficient.  (...)<br/ >[<a href="http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2009/09/osx-preventing-itunes-from-launching-when-pressing-multimedia-key/' rel='bookmark' title='Permanent Link: OSX: Preventing iTunes from launching when pressing multimedia key'>OSX: Preventing iTunes from launching when pressing multimedia key</a></li>
<li><a href='http://pedroassuncao.com/2010/02/video-speed-controls-on-youtubes-html5-player/' rel='bookmark' title='Permanent Link: Video speed controls on youtube&#8217;s HTML5 player'>Video speed controls on youtube&#8217;s HTML5 player</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have to say this: looking for a simple music player for OSX is like searching for a needle in the middle of lots of big sticks; it should be easy, except the needle is under the carpet.</p>
<p>Nevertheless, between trying out <a href="http://www.apple.com/itunes/">iTunes</a>, <a href="http://www.getsongbird.com/">Songbird</a>, and a few other options, i have always felt like there should be something, you know, simple and memory efficient. Don&#8217;t get me wrong, i love the interface on iTunes. And i do love what the guys at songbird are trying to accomplish. But the fact remains: I want a music player for OSX that does not freeze whenever i task-switch back to it. This happens on a 4GB ram macbook pro with both iTunes and Songbird!</p>
<p><a href="http://cogx.org/"><img class="alignleft size-full wp-image-738" title="Cog Music Player" src="http://diffract.me/wp-content/uploads/2010/02/front.png" alt="Cog Music Player" width="176" height="74" /></a>So, a lot of google queries later, i came across <a href="http://cogx.org/">Cog</a>. It&#8217;s a very minimalistic music player that does one thing: it plays music. No multiple playlists, no plugins, no fuzz, it plays music. Period.</p>
<p>Time will tell if i&#8217;ll stick to it or miss something, but so far so good.</p>
<p>If anyone knows a better one, please let me know <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;t=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+quest+for+a+simple+music+player+on+mac+OSX+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;title=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;title=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;t=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;title=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/&amp;t=The+quest+for+a+simple+music+player+on+mac+OSX" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2009/09/osx-preventing-itunes-from-launching-when-pressing-multimedia-key/' rel='bookmark' title='Permanent Link: OSX: Preventing iTunes from launching when pressing multimedia key'>OSX: Preventing iTunes from launching when pressing multimedia key</a></li>
<li><a href='http://pedroassuncao.com/2010/02/video-speed-controls-on-youtubes-html5-player/' rel='bookmark' title='Permanent Link: Video speed controls on youtube&#8217;s HTML5 player'>Video speed controls on youtube&#8217;s HTML5 player</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/02/the-quest-for-a-simple-music-player-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Things i wanted in Apple&#8217;s iPad (tablet)</title>
		<link>http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/</link>
		<comments>http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:08:51 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=718</guid>
		<description><![CDATA[<p>Cool as it may be, i cannot but feel disappointed with Apple&#8217;s newest unveiling &#8211; the iPad:</p> No camera &#8211; Really? In this day and age of videoconferencing?!? What are you guys thinking? No GPS &#8211; It does have assisted (wifi/3G) GPS but it&#8217;s not quite the same, is it? Especially (...)<br/ >[<a href="http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2010/01/some-apple-tablet-features/' rel='bookmark' title='Permanent Link: Some Apple tablet features'>Some Apple tablet features</a></li>
<li><a href='http://pedroassuncao.com/2010/04/ipad-jailbroken-one-day-after-coming-out-that-was-fast/' rel='bookmark' title='Permanent Link: iPad jailbroken one day after coming out. That was fast.'>iPad jailbroken one day after coming out. That was fast.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Cool as it may be, i cannot but feel disappointed with Apple&#8217;s newest unveiling &#8211; the iPad:</p>
<ol>
<li>No camera &#8211; Really? In this day and age of videoconferencing?!? What are you guys thinking?</li>
<li>No GPS &#8211; It does have assisted (wifi/3G) GPS but it&#8217;s not quite the same, is it? Especially when you don&#8217;t have wifi or 3G available;</li>
<li>No magical, shiny, new multi-touch UI paradigm &#8211; Maybe i was affected too much by the hype that has been created around it but i like to be surprised. And i have to say i wasn&#8217;t. Apart from the changes to the iWork suite to make it usable on a touch screen there is nothing really awesome about it;</li>
<li>No multitasking &#8211; No comments there. I wonder if it has copy &amp; paste?</li>
<li>No phone calls (and SMS&#8217;s) &#8211; Has 3G but you cannot make phone calls or send messages? Doesn&#8217;t make sense to me;</li>
<li>64 GBs is really not enough for what you are going to want to carry around in it.</li>
</ol>
<p>Now things that i *do* like in the iPad, so that this is not a bashing post:</p>
<ol>
<li>It looks like the mockups that drifted on the internet before. And those looked cool;</li>
<li>The iBook application and store. As long as they support free/open PDF files;</li>
<li>Seems to be powerful enough to play basic 3D games (quake II &#8211; like);</li>
<li>Battery life is really nice. 10 hours for normal usage and up to 1 month in stand-by mode;</li>
<li>The price was a nice surprise. I always said that they would compete with netbooks&#8217; prices and apparently i was not mistaken;</li>
<li>I love the keyboard dock and also the hard cover that changes into stand. Really clever!</li>
</ol>
<p>That being said, i believe this is nothing more than a big iPod touch (not even an iPhone, since you cannot make phone calls) and will not deserve my $499 this time.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;t=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;title=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;title=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;t=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;title=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/&amp;t=Things+i+wanted+in+Apple%27s+iPad+%28tablet%29" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2010/01/some-apple-tablet-features/' rel='bookmark' title='Permanent Link: Some Apple tablet features'>Some Apple tablet features</a></li>
<li><a href='http://pedroassuncao.com/2010/04/ipad-jailbroken-one-day-after-coming-out-that-was-fast/' rel='bookmark' title='Permanent Link: iPad jailbroken one day after coming out. That was fast.'>iPad jailbroken one day after coming out. That was fast.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s Entourage process name in OSX</title>
		<link>http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/</link>
		<comments>http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 08:26:46 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=369</guid>
		<description><![CDATA[<p>They could have, I don&#8217;t know, used the name of the application as the process name. No? I&#8217;m just saying&#8230; <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p> <p><img class="alignnone size-full wp-image-371" title="microsoft" src="http://diffract.me/wp-content/uploads/2009/08/microsoft.png" alt="microsoft" width="500" height="106" /></p> Share this on Facebook Tweet This! Post on Google Buzz Digg this! Share this on Reddit
		
		
			Submit this to Hacker News
		
		
			Share this on del.icio.us
		
		
			Post this to MySpace
		






<p>No related posts.</p>


No related posts.]]></description>
			<content:encoded><![CDATA[<p>They could have, I don&#8217;t know, used the name of the application as the process name. No? I&#8217;m just saying&#8230; <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-371" title="microsoft" src="http://diffract.me/wp-content/uploads/2009/08/microsoft.png" alt="microsoft" width="500" height="106" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;t=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Microsoft%27s+Entourage+process+name+in+OSX+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;title=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;title=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;t=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;title=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/&amp;t=Microsoft%27s+Entourage+process+name+in+OSX" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2009/08/microsofts-entourage-process-name-in-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing default browser/email client in OSX</title>
		<link>http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/</link>
		<comments>http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 15:57:58 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=227</guid>
		<description><![CDATA[<p>I always forget this, so I might as well write it down. According to Apple&#8217;s support pages:</p> <p>Choosing another default email application</p> Open the Mail application (/Applications/Mail). From the Mail menu, choose Preferences. Click the General button. Choose your default email client from the pop-up menu. <p>Choosing another default (...)<br/ >[<a href="http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2009/09/osx-preventing-itunes-from-launching-when-pressing-multimedia-key/' rel='bookmark' title='Permanent Link: OSX: Preventing iTunes from launching when pressing multimedia key'>OSX: Preventing iTunes from launching when pressing multimedia key</a></li>
<li><a href='http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/' rel='bookmark' title='Permanent Link: Recover iSync after removing it from OSX'>Recover iSync after removing it from OSX</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I always forget this, so I might as well write it down. According to Apple&#8217;s support pages:</p>
<p><strong>Choosing another default email application</strong></p>
<ol>
<li>Open the Mail application (/Applications/Mail).</li>
<li>From the <strong>Mail </strong>menu, choose <strong>Preferences</strong>.</li>
<li>Click the General button.</li>
<li>Choose your default email client from the pop-up menu.</li>
</ol>
<p><strong>Choosing another default Web browser</strong></p>
<ol>
<li>Open Safari (/Applications).</li>
<li>From the <strong>Safari </strong>menu, choose <strong>Preferences</strong>.</li>
<li>Click the General button.</li>
<li>Choose your default internet browser from the pop-up menu.</li>
</ol>
<p>As an extremely important side note, <strong>NEVER DELETE Safari OR Mail</strong>. You may need to change your default applications later and that is the only (easy) way to do it.</p>
<p>Read the full article, <a href="http://support.apple.com/kb/HT1637">here</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;t=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Changing+default+browser%2Femail+client+in+OSX+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;title=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;title=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;t=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;title=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/&amp;t=Changing+default+browser%2Femail+client+in+OSX" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2009/09/osx-preventing-itunes-from-launching-when-pressing-multimedia-key/' rel='bookmark' title='Permanent Link: OSX: Preventing iTunes from launching when pressing multimedia key'>OSX: Preventing iTunes from launching when pressing multimedia key</a></li>
<li><a href='http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/' rel='bookmark' title='Permanent Link: Recover iSync after removing it from OSX'>Recover iSync after removing it from OSX</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2009/07/changing-default-browseremail-client-in-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recover iSync after removing it from OSX</title>
		<link>http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/</link>
		<comments>http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 14:18:49 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=45</guid>
		<description><![CDATA[<p>One of these days, accidentally, I removed isync from my mac. After *a lot* of googling around I found this page that saved my life: http://www.feisar.com/isync_tips.html</p> <p>Here are the steps. You can do one of 3 things to restore isync:</p> Restore iSync from your Time Machine backup (or any (...)<br/ >[<a href="http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2009/01/life-saver/' rel='bookmark' title='Permanent Link: Life saver'>Life saver</a></li>
<li><a href='http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/' rel='bookmark' title='Permanent Link: Sproutcore on OSX snow leopard'>Sproutcore on OSX snow leopard</a></li>
<li><a href='http://pedroassuncao.com/video/' rel='bookmark' title='Permanent Link: Video'>Video</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of these days, accidentally, I removed isync from my mac. After *a lot* of googling around I found this page that saved my life: http://www.feisar.com/isync_tips.html</p>
<p>Here are the steps. You can do one of 3 things to restore isync:</p>
<ol>
<li>Restore iSync from your Time Machine backup (or any other backup you&#8217;ve made).</li>
<li>Copy a fresh, unmodified version of iSync from another Mac running the same version of Mac OS X.</li>
<li>Re-install iSync from the original Mac OS X Installation Disks by following the instructions below:
<ol>
<li>Download Pacifist (a program that allows installing parts of Mac OS X)</li>
<li>Insert your original Mac OS X Installation Disk.</li>
<li>Open Pacifist and click &#8216;Open Apple Install Discs&#8217;.</li>
<li>Wait while it loads the packages.</li>
<li>In the window that appears, type &#8216;iSync&#8217; into the Find dialog at the top and press return.</li>
<li>Click once on the &#8216;iSync.app&#8217; it finds, then click &#8216;Install&#8217; at the top of the window.</li>
<li>Follow the instructions to install it.</li>
<li>Then you must download and install the latest Mac OS X Combo Updater for your Mac from Apple (even if its already installed), to update iSync from the newly installed version to the very latest version.</li>
</ol>
</li>
</ol>
<p>Happy syncing <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;t=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Recover+iSync+after+removing+it+from+OSX+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;title=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;title=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;t=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;title=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/&amp;t=Recover+iSync+after+removing+it+from+OSX" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2009/01/life-saver/' rel='bookmark' title='Permanent Link: Life saver'>Life saver</a></li>
<li><a href='http://pedroassuncao.com/2010/04/sproutcore-on-osx-snow-leopard/' rel='bookmark' title='Permanent Link: Sproutcore on OSX snow leopard'>Sproutcore on OSX snow leopard</a></li>
<li><a href='http://pedroassuncao.com/video/' rel='bookmark' title='Permanent Link: Video'>Video</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2009/01/recover-isync-after-removing-it-from-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computers and jumps</title>
		<link>http://pedroassuncao.com/2008/12/computers-and-jumps/</link>
		<comments>http://pedroassuncao.com/2008/12/computers-and-jumps/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 02:33:43 +0000</pubDate>
		<dc:creator>Pedro Assuncao</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[skydiving]]></category>
		<category><![CDATA[toys]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=23</guid>
		<description><![CDATA[<p>I’ve been loving my Mac Book Pro so far. OSX is, without a doubt, one of the most brilliant pieces of software engineering I have ever encountered; I almost feel sorry for not “going mac” earlier in my life.</p> <p>But, no matter how good it is, the only thing (...)<br/ >[<a href="http://pedroassuncao.com/2008/12/computers-and-jumps/">continue reading</a>]


Related posts:<ol><li><a href='http://pedroassuncao.com/2008/12/computers-and-jumps-2/' rel='bookmark' title='Permanent Link: Computers and jumps'>Computers and jumps</a></li>
<li><a href='http://pedroassuncao.com/2008/12/the-aftermath-of-the-jumps/' rel='bookmark' title='Permanent Link: The aftermath of the jumps'>The aftermath of the jumps</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I’ve been loving my Mac Book Pro so far. OSX is, without a doubt, one of the most brilliant pieces of software engineering I have ever encountered; I almost feel sorry for not “going mac” earlier in my life.</p>
<p>But, no matter how good it is, the only thing that has been going constantly through my mind lately is the thought of jumping again. I have been doing some spare time math, figuring out how much time one can spend in free fall (with and without a winged suit). I think once I do the AFF course (Accelerated Free Fall) I will be addicted for good <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;t=Computers+and+jumps" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Computers+and+jumps+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;title=Computers+and+jumps" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;title=Computers+and+jumps" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;t=Computers+and+jumps" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;title=Computers+and+jumps" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://pedroassuncao.com/2008/12/computers-and-jumps/&amp;t=Computers+and+jumps" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>



<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2008/12/computers-and-jumps-2/' rel='bookmark' title='Permanent Link: Computers and jumps'>Computers and jumps</a></li>
<li><a href='http://pedroassuncao.com/2008/12/the-aftermath-of-the-jumps/' rel='bookmark' title='Permanent Link: The aftermath of the jumps'>The aftermath of the jumps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2008/12/computers-and-jumps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
