<?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>David Chan's Blog</title>
	<atom:link href="http://adavidchan.com/feed" rel="self" type="application/rss+xml" />
	<link>http://adavidchan.com</link>
	<description>Through the eyes of David Chan</description>
	<lastBuildDate>Tue, 13 Apr 2010 01:12:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Leaders</title>
		<link>http://adavidchan.com/leaders</link>
		<comments>http://adavidchan.com/leaders#comments</comments>
		<pubDate>Tue, 13 Apr 2010 01:12:25 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=322</guid>
		<description><![CDATA[
Love this.
[via One Trick Pony in FlickR]
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/onetrickponyinflickr/2840463225/"><img src="http://adavidchan.com/wp-content/uploads/2010/04/2840463225_1ef88d488d_o.jpg" alt="Leaders" title="Leaders" width="212" height="382" class="alignnone size-full wp-image-323" /></a></p>
<p>Love this.</p>
<p>[via <a href="http://www.flickr.com/photos/onetrickponyinflickr/" target="_blank">One Trick Pony in FlickR</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/leaders/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending HTTP DELETE requests to Twitter&#8217;s API using OAuth</title>
		<link>http://adavidchan.com/sending-http-delete-requests-to-twitters-api-using-oauth</link>
		<comments>http://adavidchan.com/sending-http-delete-requests-to-twitters-api-using-oauth#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:46:17 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=311</guid>
		<description><![CDATA[If you&#8217;ve been using Twitter&#8217;s API, chances are you&#8217;ve switched, or are considering switching, to use OAuth (read about the benefits here).  The easiest way to do this is to use a third-party library to help you make the API calls &#8211; just make sure that it supports HTTP DELETE, which is used for [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been using <a href="http://apiwiki.twitter.com/">Twitter&#8217;s API</a>, chances are you&#8217;ve switched, or are considering switching, to use OAuth (<a href="http://apiwiki.twitter.com/OAuth-FAQ">read about the benefits here</a>).  The easiest way to do this is to use a third-party library to help you make the API calls &#8211; just make sure that it supports <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer#RESTful_web_services">HTTP DELETE</a>, which is used for deleting Twitter Lists and List members.</p>
<p>If your library doesn&#8217;t support the HTTP DELETE method (like the <a href="http://php.net/manual/en/book.oauth.php">official PHP OAuth extension</a>), you can still make a call by doing the following:</p>
<ul>
<li>tell Twitter to use delete with a parameter called _method with the value DELETE (eg. _method=DELETE)</li>
<li>send the request using HTTP POST method</li>
</ul>
<p>Here&#8217;s an example of doing this using the PHP OAuth extension</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$client</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> OAuth<span style="color: #009900;">&#40;</span>MY_CONSUMER_KEY<span style="color: #339933;">,</span> MY_CONSUMER_SECRET<span style="color: #339933;">,</span> OAUTH_SIG_METHOD_HMACSHA1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$client</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setToken</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$userKey</span><span style="color: #339933;">,</span> <span style="color: #000088;">$userSecret</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// ... set up the url and parameters for the call (eg. $url and $params)</span>
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://api.twitter.com/1/..... .json&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$params</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;some_key&quot;</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">&quot;someValue&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$params</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;_method&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;DELETE&quot;</span><span style="color: #339933;">;</span>    <span style="color: #666666; font-style: italic;">// supply the _method param with a value of DELETE</span>
&nbsp;
<span style="color: #000088;">$client</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fetch</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #339933;">,</span> <span style="color: #000088;">$params</span><span style="color: #339933;">,</span> OAUTH_HTTP_METHOD_POST<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    <span style="color: #666666; font-style: italic;">// use POST</span>
<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$client</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getLastResponse</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/sending-http-delete-requests-to-twitters-api-using-oauth/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Translate Twitter and more in HootSuite</title>
		<link>http://adavidchan.com/translate-twitter-and-more-in-hootsuite</link>
		<comments>http://adavidchan.com/translate-twitter-and-more-in-hootsuite#comments</comments>
		<pubDate>Wed, 06 Jan 2010 18:52:27 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[HootSuite]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=278</guid>
		<description><![CDATA[Monitoring user/customer sentiment and feedback is one of the big benefits of Twitter (and other Social Networks, but Twitter does it better).  As HootSuite&#8217;s user base grew, people were talking about it in other languages.  To scratch my own itch, I created a GreaseMonkey script to translate tweets from any language to English, [...]]]></description>
			<content:encoded><![CDATA[<p>Monitoring user/customer sentiment and feedback is one of the big benefits of Twitter (and other Social Networks, but Twitter does it better).  As <a href="http://hootsuite.com" target="_blank">HootSuite</a>&#8217;s user base grew, people were talking about it in other languages.  To scratch my own itch, I created a <a href="http://en.wikipedia.org/wiki/Greasemonkey" target="_blank">GreaseMonkey</a> script to translate tweets from any language to English, right in the HootSuite dashboard.</p>
<p><img src="http://adavidchan.com/wp-content/uploads/2010/01/hs_translator.png" alt="hs_translator" title="hs_translator" width="666" height="132" class="alignnone size-full wp-image-279" style="border: 1px #333333 solid" /></p>
<p>Just click on a tweet&#8217;s text in any column to translate it.  The text will show up in a ligher grey when the translation is finished.  All links in the tweet will continue to work properly after translation.</p>
<p>The script is simple and thrown together hastily, and uses <a href="http://translate.google.com/" target="_blank">Google Translate</a> to do the translation, so don&#8217;t expect perfect translations (often you have to put a bit of thought into deciphering the translated text, and sometimes they just come out unintentionally humorous).</p>
<p>Interested in listening to your entire audience?  Grab the <a href="http://userscripts.org/scripts/show/65770" target="_blank">HootSuite translator script</a> or <a href="http://userscripts.org/scripts/review/65770" target="_blank">view the script source</a>.  If English isn&#8217;t your primary language, you can also have tweets in HootSuite translated to Japanese [<a href="http://userscripts.org/scripts/show/65772" target="_blank">HS translator Japanese</a>] and German  [<a href="http://userscripts.org/scripts/show/65771" target="_blank">HS translator German</a>] as well!   </p>
<p>To install this script in your <a href="http://adavidchan.com/how-to-hootsuite-on-your-mac-dock-with-fluidapp" target="_blank">HootSuite Fluid app</a> (Mac), visit the <a href="http://userscripts.org/scripts/show/65770" target="_blank" title="HS Translator English">script page</a> and save the script to your desktop, then drag it into your HootSuite Fluid app.</p>
<p><a href="http://hootsuite.com/apps" target="_blank"><img src="http://adavidchan.com/wp-content/uploads/2010/01/directory_promo.png" alt="" title="" width="152" height="60" class="alignnone size-full wp-image-294" /></a></p>
<p>For more goodies to empower your social media reach, visit <a href="http://hootsuite.com/apps" target="_blank">http://hootsuite.com/apps</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/translate-twitter-and-more-in-hootsuite/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Epic Christmas gift</title>
		<link>http://adavidchan.com/epic-christmas-gift</link>
		<comments>http://adavidchan.com/epic-christmas-gift#comments</comments>
		<pubDate>Sat, 12 Dec 2009 19:37:31 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=256</guid>
		<description><![CDATA[I work at Invoke, making things in HootSuite and Ow.ly.  As of this writing, the company is having a Christmas party tomorrow, and everyone has to bring a $20 gift for exchange.
I thought up a random gift.
After work, I headed over to Urban Outfitters (a great place for miscellaneous toys and things), and dug [...]]]></description>
			<content:encoded><![CDATA[<p>I work at Invoke, making things in HootSuite and Ow.ly.  As of this writing, the company is having a Christmas party tomorrow, and everyone has to bring a $20 gift for exchange.</p>
<p>I thought up a random gift.</p>
<p>After work, I headed over to <a href="http://www.urbanoutfitters.com">Urban Outfitters</a> (a great place for miscellaneous toys and things), and dug around.  I wanted to get a camera, since I believe everyone at work likes taking photos.  Unfortunately, most of the Lomos and the Holga cameras were way out of this budget (ranging from $50-90).  Fortunately I found a <a href="http://www.urbanoutfitters.com/urban/catalog/productdetail.jsp?id=17172016&#038;itemdescription=true&#038;navAction=jump">LOL CAM</a>, which is a single-use camera with funny stuff pre-printed on the film.</p>
<p>Great choice!  But the camera was $14.  Not to worry, my fridge was stocked some <a href="http://www.innisandgunn.com/">Innis &amp; Gunn beers</a>, each worth $3.  I decided to include two of them.  This gift is now epic!</p>
<div>
<img class="alignnone size-medium wp-image-257" title="IMG_5011" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5011-300x225.jpg" alt="IMG_5011" width="300" height="225" style="float:left;margin-right:10px" /></p>
<p><img class="alignnone size-medium wp-image-258" title="IMG_5012" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5012-300x225.jpg" alt="IMG_5012" width="300" height="225" style="float:left;position:relative" /></p>
<div class="clear"> </div>
</div>
<p>No, not yet.  What about wrapping?  How does one present two beers and a camera?  I think my gift is way too awesome to be given away in a gift bag.  It deserves presentation greatness.  Here&#8217;s the gift, in pieces:</p>
<p><img class="alignnone size-medium wp-image-259" title="IMG_5018" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5018-300x225.jpg" alt="IMG_5018" width="300" height="225" /></p>
<p>I&#8217;ve decided to put it all in an old Converse shoe box.  The beers will be kept safe with bubble wrap and package from buying ram at Newegg.  All of this will be wrapped with a lining from a Diesel shoe box.</p>
<p><img class="alignnone size-medium wp-image-260" title="IMG_5022" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5022-300x225.jpg" alt="IMG_5022" width="300" height="225" /></p>
<p>Alright, the beers are packed and so is the camera.  But there is still some empty space in the box, which must be padded to prevent the contents from shifting.  I know, I shall include the latest issue of Synergy, the UBC Science journal (which I get in exchange for receiving phone calls to donate money to my graduate faculty).</p>
<div>
<img class="alignnone size-medium wp-image-261" title="IMG_5023" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5023-300x225.jpg" alt="IMG_5023" width="300" height="225" style="float:left;margin-right:10px" /></p>
<p><img class="alignnone size-medium wp-image-262" title="IMG_5024" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5024-300x225.jpg" alt="IMG_5024" width="300" height="225" style="float:left" /></p>
<div class="clear"> </div>
</div>
<p>Now it is ready to be wrapped up.  While looking for scotch tape, I found tissue paper wrapping that came with a Club Monaco shirt I bought, and decided to use it to wrap the gift.  This is getting classy!</p>
<p><img class="alignnone size-medium wp-image-264" title="IMG_5028" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5028-300x225.jpg" alt="IMG_5028" width="300" height="225" /></p>
<p>It&#8217;s done &#8211; my masterpiece.  The gift even pretends it&#8217;s from Club Monaco, with the sticker, but my wrapping skills are too weak for anyone with common sense to be fooled.  Either way, someone&#8217;s going to get an awesome gift this year.</p>
<div>
<img class="alignnone size-medium wp-image-265" title="IMG_5029" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5029-300x225.jpg" alt="IMG_5029" width="300" height="225" style="float:left; margin-right:10px" /></p>
<p><img class="alignnone size-medium wp-image-263" title="IMG_5030" src="http://adavidchan.com/wp-content/uploads/2009/12/IMG_5030-300x225.jpg" alt="IMG_5030" width="300" height="225" style="float:left" /></p>
<div class="clear"> </div>
</div>
<p>I can&#8217;t publish this post until tomorrow afternoon, but I will announce who received this epic Christmas gift.  Stay tuned.</p>
<p>Edit: my Christmas gift went over even better than I thought, and now belongs to the amazing Nadia Nascimento (in case you haven&#8217;t heard of this amazing woman, read this <a href="http://www.straight.com/article-274844/vancouver/geek-speak-nadia-nascimento-senior-strategist-invoke-media">interview</a>!)</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/epic-christmas-gift/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter in a whole new light</title>
		<link>http://adavidchan.com/twitter-in-a-whole-new-light</link>
		<comments>http://adavidchan.com/twitter-in-a-whole-new-light#comments</comments>
		<pubDate>Wed, 09 Dec 2009 20:25:55 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=251</guid>
		<description><![CDATA[Driving to work today, the unused cycles of my brain were cranking away at useless thoughts.  Here&#8217;s one:
Remove the &#8220;w&#8221; from &#8220;Twitter&#8221;.

Twitter, the popular microblogging site, becomes &#8220;Titter&#8221;.
Tweets, messages from said app, become &#8220;Teets&#8221;.
Twits, users of Twitter, come &#8220;Tits&#8221;.
Coincidence?  Or was I just thinking about mammaries at 9:47 am?
]]></description>
			<content:encoded><![CDATA[<p>Driving to work today, the unused cycles of my brain were cranking away at useless thoughts.  Here&#8217;s one:</p>
<p><em><strong>Remove the &#8220;w&#8221; from &#8220;Twitter&#8221;.</strong></em></p>
<p><img class="alignnone size-medium wp-image-252" title="I wish these were brains" src="http://adavidchan.com/wp-content/uploads/2009/12/81842781-300x168.jpg" alt="I wish these were brains" width="300" height="168" /></p>
<p>Twitter, the popular microblogging site, becomes &#8220;Titter&#8221;.<br />
Tweets, messages from said app, become &#8220;Teets&#8221;.<br />
Twits, users of Twitter, come &#8220;Tits&#8221;.</p>
<p>Coincidence?  Or was I just thinking about mammaries at 9:47 am?</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/twitter-in-a-whole-new-light/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Griddy custom WordPress theme</title>
		<link>http://adavidchan.com/griddy-custom-wordpress-theme</link>
		<comments>http://adavidchan.com/griddy-custom-wordpress-theme#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:36:19 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=185</guid>
		<description><![CDATA[It was a long time coming, but I&#8217;ve redesigned my blog.  The last time I changed themes I was using an existing theme, modified to be minimalistic.  This time I&#8217;m still keeping things minimal, but I&#8217;ve gotten my hands dirty and dove into the WP code to make this custom theme.

&#8220;Griddy&#8221; is all [...]]]></description>
			<content:encoded><![CDATA[<p>It was a long time coming, but I&#8217;ve redesigned <a title="David Chan's blog" href="http://adavidchan.com">my blog</a>.  The <a href="http://adavidchan.com/obtrusive-layout-disappearing-blog-remains">last time I changed themes</a> I was using an existing theme, modified to be minimalistic.  This time I&#8217;m still keeping things minimal, but I&#8217;ve gotten my hands dirty and dove into the WP code to make this custom theme.</p>
<p><img class="size-medium wp-image-186" title="Griddy custom WordPress theme" src="http://adavidchan.com/wp-content/uploads/2009/10/griddy-300x197.png" alt="Griddy custom WordPress theme by David Chan" width="300" height="197" style="border:1px #dedede solid" /></p>
<p>&#8220;Griddy&#8221; is all about discovery and relevancy.  I don&#8217;t publish many time-sensitive posts, so I drew the focus away from the reverse cronological view of most blogs and opted for an archive view.  The grid design is inspired by the <a href="http://ssense.com" target="_blank">SSENSE</a> site interface, and I&#8217;ve added some neat features such as the post thumbnail/title display, and the single category archive view.</p>
<p>I did this over a few evenings to get this idea out quickly.  A few issues I have noticed are:</p>
<ul>
<li>massive lists/duplication in category grids, due to my careless tagging of posts!</li>
<li>font can be a bit small, and made worse by font-smoothing (esp. in <a href="http://www.apple.com/safari/" target="_blank">Safari</a>)</li>
<li>post thumbnail/title display may not be very informative</li>
</ul>
<p>I believe this theme has a lot of potential.  I&#8217;ll be tweaking it often, so if you have any thoughts please leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/griddy-custom-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacFuse on Snow Leopard (64-bit mode)</title>
		<link>http://adavidchan.com/macfuse-on-snow-leopard-64-bit-mode</link>
		<comments>http://adavidchan.com/macfuse-on-snow-leopard-64-bit-mode#comments</comments>
		<pubDate>Sun, 13 Sep 2009 21:28:32 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=177</guid>
		<description><![CDATA[Since I&#8217;ve upgraded to Snow Leopard, I&#8217;ve been booting into 64-bit mode.  Pretty much every app I use regularly works, with the exception to MacFuse.  There have been a lot of ad-hoc fixes to making it work on 10.6, but they all require recompiling (ie. not for the lazy).  So when Tomas Carnecky posted a [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;ve upgraded to Snow Leopard, I&#8217;ve been booting into 64-bit mode.  Pretty much every app I use regularly works, with the exception to <a href="http://code.google.com/p/macfuse/">MacFuse</a>.  There have been a lot of ad-hoc fixes to making it work on 10.6, but they all require recompiling (ie. not for the lazy).  So when Tomas Carnecky <a href="http://caurea.org/2009/09/15/unofficial-macfuse-release-for-64bit-kernels/">posted</a> a compiled version of MacFuse 2.1.7 for 64-bit Snow Leopard, I jumped on it right away.  It works great, and I hope it helps if you&#8217;re looking for a quick fix.</p>
<div style="float:left">
<script type="text/javascript"><!--
google_ad_client = "pub-7986956041866911";
/* 336x280, created 2/15/10, macfuse */
google_ad_slot = "7583620701";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div style="float:left; margin-left:20px">
<script type="text/javascript"><!--
google_ad_client = "pub-7986956041866911";
/* 336x280, created 2/17/10, macfuse2 */
google_ad_slot = "0084377505";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div style="clear:both"></div>
<p>[<a href="http://groups.google.com/group/macfuse/msg/f7de55623e8b8f57?" style="text-decoration: line-through">MacFuse Google Groups</a>]<br />
[<a href="http://caurea.org/2009/09/15/unofficial-macfuse-release-for-64bit-kernels/" target="_blank">Tomas Carnecky's site</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/macfuse-on-snow-leopard-64-bit-mode/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Your biggest liability is your need to succeed</title>
		<link>http://adavidchan.com/your-biggest-liability-is-your-need-to-succeed</link>
		<comments>http://adavidchan.com/your-biggest-liability-is-your-need-to-succeed#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:57:09 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=173</guid>
		<description><![CDATA[An entertaining and inspirational grad speech by Conan O&#8217;Brien (Harvard, 2000) where he encourages the graduates to &#8220;fall down, make a mess&#8221;.  I love it.

]]></description>
			<content:encoded><![CDATA[<p>An entertaining and inspirational grad speech by Conan O&#8217;Brien (Harvard, 2000) where he encourages the graduates to &#8220;fall down, make a mess&#8221;.  I love it.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="375" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="root" /><param name="name" value="root" /><param name="bgcolor" value="#FFFFFF" /><param name="align" value="middle" /><param name="src" value="http://www.guba.com/f/root.swf?video_url=http://free.guba.com/uploaditem/3000034406/flash.flv&amp;isEmbeddedPlayer=true" /><embed id="root" type="application/x-shockwave-flash" width="375" height="360" src="http://www.guba.com/f/root.swf?video_url=http://free.guba.com/uploaditem/3000034406/flash.flv&amp;isEmbeddedPlayer=true" align="middle" bgcolor="#FFFFFF" name="root"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/your-biggest-liability-is-your-need-to-succeed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO: HootSuite on your Mac dock with fluid.app</title>
		<link>http://adavidchan.com/how-to-hootsuite-on-your-mac-dock-with-fluidapp</link>
		<comments>http://adavidchan.com/how-to-hootsuite-on-your-mac-dock-with-fluidapp#comments</comments>
		<pubDate>Thu, 30 Jul 2009 19:01:29 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[HootSuite]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=170</guid>
		<description><![CDATA[
Update! (Jan 6, 2010) 
I have made a HootSuite Fluid app that you can download from http://hootsuite.com/apps.  It&#8217;s the exact same one outlined in this blog post, but saves you the work!  Also check out my Translator script to translate tweets in HootSuite.

HootSuite is a very powerful web-based Twitter client.  It runs [...]]]></description>
			<content:encoded><![CDATA[<div style="border:1px #666666 dashed; padding: 6px; background-color: #FFFFCC">
<span style="font-weight:bold; font-size:14pt">Update!</span> (Jan 6, 2010) <br />
I have made a HootSuite Fluid app that you can download from <a href="http://hootsuite.com/apps">http://hootsuite.com/apps</a>.  It&#8217;s the exact same one outlined in this blog post, but saves you the work!  Also check out my Translator script to <a href="http://adavidchan.com/translate-twitter-and-more-in-hootsuite">translate tweets in HootSuite</a>.
</div>
<p><a title="HootSuite Twitter client" href="http://hootsuite.com" target="_blank">HootSuite</a> is a very powerful web-based <a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a> client.  It runs inside your browser, meaning that there&#8217;s nothing to install, and you can access it and use it the same way from any computer.</p>
<p>(Disclosure: I am currently a developer on the HootSuite team)</p>
<p>However, I came from a background of Twitterrific, Tweetdeck, and other desktop Twitter apps, and running HootSuite inside a tab in my browser just doesn&#8217;t feel right.  I need my Twitter fix right on my dock!</p>
<p>Fortunately, there&#8217;s an app on the Mac called <a title="Fluid app" href="http://fluidapp.com/">Fluid</a>, which allows you to create a site-specific browser that acts as a separate application.  <a title="Fluid app" href="http://fluidapp.com/">Download Fluid</a> and open it up!  Also, download this <a title="HootSuite icon" href="http://adavidchan.com/images/fluid_hs/hootsuite_icon.png" target="_blank">HootSuite icon</a> &#8211; we will use it as the app icon (for displaying in the dock).</p>
<p>This is the main Fluid set up screen, here you can enter <a title="HootSuite Twitter client" href="http://hootsuite.com">http://hootsuite.com</a> as the URL, and give a name to the app (HootSuite, HootSuite Twitter client, etc):</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid1.jpg" alt="HootSuite on fluid.app" /></p>
<p>Next, click on the Icon dropdown and choose &#8220;Other&#8230;&#8221;, and choose the <a title="HootSuite icon" href="http://adavidchan.com/images/fluid_hs/hootsuite_icon.png" target="_blank">HootSuite icon</a> downloaded earlier.  Fluid should give you a preview of it:</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid2.jpg" alt="HootSuite on fluid.app" /></p>
<p>That&#8217;s it!  Click &#8220;Create&#8221; and let Fluid do its magic.</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid3.jpg" alt="HootSuite on fluid.app" /></p>
<p>Success!  Choose &#8220;Launch Now&#8221; and don&#8217;t forget to keep the icon in your dock (right-click on the dock icon and choose &#8220;Keep in Dock&#8221;).</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid4.jpg" alt="HootSuite on fluid.app" /></p>
<p><strong>Update:</strong></p>
<p>You may have experienced your new HootSuite fluid app opening the site in a new browser window (instead of inside the fluid app itself).  That surely defeats the point of having a site-specific browser!  To fix it, goto your HootSuite fluid app&#8217;s preference:</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid4-5.jpg" alt="HootSuite on fluid" /></p>
<p>Choose &#8220;Advanced&#8221;, and edit the very first entry in the &#8220;Pattern&#8221; list (double click on it), and change it to <strong>*.hootsuite.com*</strong>:</p>
<p><img class="alignnone" src="http://adavidchan.com/images/fluid_hs/hs_fluid5.jpg" alt="HootSuite on fluid" /></p>
<p>That should do it!  (Thanks to commenter Tim for pointing the issue out)</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/how-to-hootsuite-on-your-mac-dock-with-fluidapp/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Weak Bonds</title>
		<link>http://adavidchan.com/weak-bonds</link>
		<comments>http://adavidchan.com/weak-bonds#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:56:58 +0000</pubDate>
		<dc:creator>David Chan</dc:creator>
				<category><![CDATA[Quotes]]></category>

		<guid isPermaLink="false">http://adavidchan.com/?p=172</guid>
		<description><![CDATA[I was digging through my iPhone notes and found this quote that I had scribbled in there in May 2008:
&#8220;Weak bonds give you novelty&#8221;
Andrew McAfee said this at an Oracle/BEA conference I attended in Chicago.  Strong bonds are people who you have a deep connection with and are usually like-minded and have similar experiences.  People [...]]]></description>
			<content:encoded><![CDATA[<p>I was digging through my iPhone notes and found this quote that I had scribbled in there in May 2008:</p>
<p><span style="font-size: 20pt">&#8220;Weak bonds give you novelty&#8221;</span></p>
<p><a title="Andrew McAfee blog" href="http://andrewmcafee.org/blog/" target="_blank">Andrew McAfee</a> said this at an Oracle/BEA conference I attended in Chicago.  Strong bonds are people who you have a deep connection with and are usually like-minded and have similar experiences.  People you don&#8217;t have have a close link with &#8211; weak bonds &#8211; are likely to provide new perspectives, opinions, and ideas.</p>
<p>I think that Twitter allows us to discover and build weak bonds extremely well, better than other social networking tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://adavidchan.com/weak-bonds/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
