<?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>ear-fung.us</title>
	
	<link>http://www.ear-fung.us</link>
	<description>I'm a programmer. I'm also pro-grammar.</description>
	<lastBuildDate>Mon, 15 Feb 2010 15:54:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ear-fung/feed" /><feedburner:info uri="ear-fung/feed" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Mouse Path – Graphical Representation</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/QFxsSO-SqGk/</link>
		<comments>http://www.ear-fung.us/2010/02/mouse-path/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 15:54:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[tracks]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1339</guid>
		<description><![CDATA[Here's a pictoral representation of my mouse path from Friday, Feb. 12, 2010.
It's not completely accurate seeing that I work with two monitors and this little app only supports the primary screen. so that's why you see a lot of horizontal movement near the right side of the image: it's me moving my mouse to [...]]]></description>
			<content:encoded><![CDATA[<p>Here's a pictoral representation of my mouse path from Friday, Feb. 12, 2010.</p>
<p>It's not completely accurate seeing that I work with two monitors and this little app only supports the primary screen. so that's why you see a lot of horizontal movement near the right side of the image: it's me moving my mouse to my secondary monitor. The large black dots are where the mouse was not moving for a period of time.</p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2010/02/mousePath-18_06_55.jpg" rel="shadowbox[post-1339];player=img;"><img class="aligncenter size-medium wp-image-1340" title="mousePath-18_06_55" src="http://www.ear-fung.us/wp-content/uploads/2010/02/mousePath-18_06_55-550x343.jpg" alt="" width="550" height="343" /></a></p>
<p><a href="http://www.doorsixteen.com/2010/02/05/my-mouse-path/" target="_blank">Check out the cross-platform java applet here</a>.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/QFxsSO-SqGk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/02/mouse-path/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/02/mouse-path/</feedburner:origLink></item>
		<item>
		<title>Code Snippet: Extract A Value From A Querystring in AS3</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/_VYWQYGtGgo/</link>
		<comments>http://www.ear-fung.us/2010/02/extract-value-from-querystring-in-as3/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 15:49:00 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[querystring]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1332</guid>
		<description><![CDATA[I found myself in need of extracting a given value from a query string that was inside an XML attribute. Searching for something like this, I couldn't find anything on par with PHP's parse_str() so I got the string out of the XML and wrote this handy function:
function getQueryStringVar(queryStr:String, targetVar:String):String
{
	var pairs = queryStr.split("&#38;");
	for(var i:String in [...]]]></description>
			<content:encoded><![CDATA[<p>I found myself in need of extracting a given value from a query string that was inside an XML attribute. Searching for something like this, I couldn't find anything on par with PHP's <a href="http://php.net/manual/en/function.parse-str.php">parse_str()</a> so I got the string out of the XML and wrote this handy function:</p>
<pre>function getQueryStringVar(queryStr:String, targetVar:String):String
{
	var pairs = queryStr.split("&amp;");
	for(var i:String in pairs)
	{
		var splitStr = pairs[i].split("=");
		if(splitStr[0] == targetVar)return splitStr[1];
	}
	return "";
}</pre>
<p>Usage is easy. Just send it your query string as the first parameter (make sure there's not a "?" at the beginning) and key you want to know the value of.</p>
<pre>
// myVal is set to "example"
var myVal:String = getQueryStringVar("val1=test&#038;val2=example", "val2");
</pre>
<p>Let me know if you find this function useful or if you improve upon it.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/_VYWQYGtGgo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/02/extract-value-from-querystring-in-as3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/02/extract-value-from-querystring-in-as3/</feedburner:origLink></item>
		<item>
		<title>Things People Say When I Write with My Left Hand</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/XQikHd8yRNg/</link>
		<comments>http://www.ear-fung.us/2010/02/left-handed/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:28:49 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[lefthanded]]></category>
		<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1329</guid>
		<description><![CDATA[This pretty much sums it up:
[via]
]]></description>
			<content:encoded><![CDATA[<p>This pretty much sums it up:</p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2010/02/funny-graphs-and-charts.jpeg" rel="shadowbox[post-1329];player=img;"><img class="aligncenter size-full wp-image-1330" title="funny graphs and charts" src="http://www.ear-fung.us/wp-content/uploads/2010/02/funny-graphs-and-charts.jpeg" alt="" width="504" height="342" /></a>[<a href="http://graphjam.com/2010/02/03/funny-graphs-write-left/">via</a>]</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/XQikHd8yRNg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/02/left-handed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/02/left-handed/</feedburner:origLink></item>
		<item>
		<title>The Cartoon That Shaped My Childhood</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/p3jr4WqECqs/</link>
		<comments>http://www.ear-fung.us/2010/02/the-cartoon-that-shaped-my-childhood/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:20:01 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[disney]]></category>
		<category><![CDATA[donald]]></category>
		<category><![CDATA[growingup]]></category>
		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1325</guid>
		<description><![CDATA[I had a VHS tape of the program Donald in Mathmagic Land that I can remember watching all the time as a child. It's a wonder if you've never heard of it since it was one of the most popular educational films ever made by Disney.
This little 27 minute cartoon introduced me to topics such [...]]]></description>
			<content:encoded><![CDATA[<p>I had a VHS tape of the program <a href="http://en.wikipedia.org/wiki/Donald_in_Mathmagic_Land">Donald in Mathmagic Land</a> that I can remember watching all the time as a child. It's a wonder if you've never heard of it since it was one of the most popular educational films ever made by Disney.</p>
<p>This little 27 minute cartoon introduced me to topics such as music theory, the golden ratio, geometry, and I feel most importantly: the concept of infinity.</p>
<p>Thanks to the wonder of the internet, you can now watch the program in its entirety <a href="http://www.youtube.com/view_play_list?p=2ACE25CEB782BAD3">on youtube</a>, but I've conveniently embedded it here for you to watch!</p>
<blockquote><p>Mathematics is the alphabet with which God has written the universe.</p>
<p>-Galileo Galilei</p></blockquote>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/p/2ACE25CEB782BAD3&#038;hl=en_US&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/p/2ACE25CEB782BAD3&#038;hl=en_US&#038;fs=1" type="application/x-shockwave-flash" width="480" height="385" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/p3jr4WqECqs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/02/the-cartoon-that-shaped-my-childhood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/02/the-cartoon-that-shaped-my-childhood/</feedburner:origLink></item>
		<item>
		<title>Mohawk vs. Fauxhawk</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/PWxXgTcJXGE/</link>
		<comments>http://www.ear-fung.us/2010/01/mohawk-vs-fauxhawk/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:57:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[fauxhawk]]></category>
		<category><![CDATA[hair]]></category>
		<category><![CDATA[hairstyles]]></category>
		<category><![CDATA[mohawk]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1300</guid>
		<description><![CDATA[Scott's ribbing got me all riled up. So here's an informational post on the differences between a mohawk and a fauxhawk haircut/style.
Mo·hawk
Etymology: of  Algonquian origin; akin to Narragansett or Massachusett Mohowawog Mohawk, literally, cannibal
Date: 1634
3 : a hairstyle with a narrow center strip of usually upright hair and the  sides of the head [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/spiritualtramp/statuses/8372297732">Scott's ribbing</a> got me all riled up. So here's an informational post on the differences between a mohawk and a fauxhawk haircut/style.</p>
<blockquote><p><a href="http://www.merriam-webster.com/dictionary/mohawk"><strong>Mo·hawk</strong></a></p>
<div>Etymology: of  Algonquian origin; akin to Narragansett or Massachusett <em>Mohowawog</em> Mohawk, literally, cannibal</div>
<div>Date: 1634</div>
<p><strong>3</strong> <strong>:</strong> a hairstyle with a narrow center strip of usually upright hair and the  sides of the head shaved</p></blockquote>
<p>Here are some examples of a mohawk haircut fresh from the tubes of the Internet:</p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/2007_12_31.mrt_.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1303" title="2007_12_31.mrt" src="http://www.ear-fung.us/wp-content/uploads/2010/01/2007_12_31.mrt_-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/mohawk.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1304" title="mohawk" src="http://www.ear-fung.us/wp-content/uploads/2010/01/mohawk-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/mohawk3.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1305" title="mohawk3" src="http://www.ear-fung.us/wp-content/uploads/2010/01/mohawk3-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/256_mohawk1.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1313" title="256_mohawk1" src="http://www.ear-fung.us/wp-content/uploads/2010/01/256_mohawk1-175x175.jpg" alt="" width="175" height="175" /></a></p>
<p>Since "fauxhawk" isn't really a word, it's not in the Merriam-Webster online dictionary, we must look to <a href="http://www.urbandictionary.com/define.php?term=fauxhawk">urbandictionary.com</a>.</p>
<blockquote><p>fauxhawk: A full head of hair combed into the middle to fabricate the look of a mohawk.</p></blockquote>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/fauxhawk4.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1309" title="fauxhawk4" src="http://www.ear-fung.us/wp-content/uploads/2010/01/fauxhawk4-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/ewanfaux.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1308" title="ewanfaux" src="http://www.ear-fung.us/wp-content/uploads/2010/01/ewanfaux-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/blake_fauxhawk_side.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1306" title="blake_fauxhawk_side" src="http://www.ear-fung.us/wp-content/uploads/2010/01/blake_fauxhawk_side-175x175.jpg" alt="" width="175" height="175" /></a> <a href="http://www.ear-fung.us/wp-content/uploads/2010/01/david-beckham-hairstyle-longr-mohawk-7-760159.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-thumbnail wp-image-1307" title="david-beckham-hairstyle-longr-mohawk-7-760159" src="http://www.ear-fung.us/wp-content/uploads/2010/01/david-beckham-hairstyle-longr-mohawk-7-760159-175x175.jpg" alt="" width="175" height="175" /></a></p>
<p>As you can clearly see, fauxhawks don't have a defined line from where  the short and long hair meet. It's basically just combed straight up  into the shape of a mohawk. Fauxhawks are generally associated with  pop-culture and general douchebaggery. Mohawks are generally associated with anti-pop-culture.</p>
<p>And for my final exhibit: a photo of me. I have a mohawk, not a fauxhawk.</p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/markrickert.jpg" rel="shadowbox[post-1300];player=img;"><img class="alignnone size-full wp-image-1310" title="markrickert" src="http://www.ear-fung.us/wp-content/uploads/2010/01/markrickert.jpg" alt="" width="500" height="375" /></a></p>
<p>If you're going to do something, do it all out. fauxhawks are a cop-out for people who don't want to make the commitment of shaving the sides of their head.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/PWxXgTcJXGE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/01/mohawk-vs-fauxhawk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/01/mohawk-vs-fauxhawk/</feedburner:origLink></item>
		<item>
		<title>Changing The Way I Collect Music</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/ROCK6q5Mclc/</link>
		<comments>http://www.ear-fung.us/2010/01/changing-the-way-i-collect-music/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:27:47 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[songs]]></category>
		<category><![CDATA[trash]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1295</guid>
		<description><![CDATA[I've amassed a lot of digital music over the years. Lots of times I'd download the entire album even if I just wanted one song... 'cause, you know... there might be some other good music on the album.
Sorry to say, that this wasn't the case in 70%-80% of the music I downloaded. I've always been [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1296" title="trash-bin1" src="http://www.ear-fung.us/wp-content/uploads/2010/01/trash-bin1.png" alt="" width="125" height="126" align="right" />I've amassed a <em>lot</em> of digital music over the years. Lots of times I'd download the entire album even if I just wanted one song... 'cause, you know... there might be some other good music on the album.</p>
<p>Sorry to say, that this wasn't the case in 70%-80% of the music I downloaded. I've always been a pretty fanatical completionist (<a href="http://www.adamduvander.com/simple/are-you-an-incrementalist-or-completionist" target="_blank">are you an incrementalist or a completionist?</a>) so I'd keep the bad songs around with the good ones, "because then I have the whole album," or "I might like that sometime in the future."</p>
<p><strong><em>No More!</em></strong></p>
<p>You may know about <a href="http://www.ear-fung.us/2008/06/my-obsessiveness-about-itunes/">my obsessive iTunes star ratings</a>, so I know what songs I don't really like. However, I'm not going to blindly delete all my 1 and 2-star rated songs. I'm going to delete songs as I come across them during my normal listening schedule for each day. I don't expect to delete any more than 4 or 5 songs a day from my 4,000 song, 20 GB music library.</p>
<p>Do you think I'm going about this the right way? Am I stupid for deleting songs in this age of extremely cheap storage mediums? Let me know. The deleting begins today.</p>
<p>First song to bite the dust and see the inside of my trash bin? "<a href="http://listen.grooveshark.com/#/song/Full+Moon/11290535" target="_blank">Full Moon</a>" by The Black Ghosts.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/ROCK6q5Mclc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/01/changing-the-way-i-collect-music/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/01/changing-the-way-i-collect-music/</feedburner:origLink></item>
		<item>
		<title>My Latest Creation</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/jF8taqCTi88/</link>
		<comments>http://www.ear-fung.us/2010/01/my-latest-creation/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 17:43:48 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Beer]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[bottles]]></category>
		<category><![CDATA[brewing]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[hops]]></category>
		<category><![CDATA[ipa]]></category>
		<category><![CDATA[labeling]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1287</guid>
		<description><![CDATA[As some of you may already know, I've started brewing my own beer at home ("homebrewing" creates "homebrew"). I've made some 2.5 gallon batches here and there including an American Light Ale, an Oatmeal Stout, and a few other misc brews. Then I decided to invest in some better equipment. Don't get me wrong, Mr. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-thumbnail wp-image-1292 " title="hops" src="http://www.ear-fung.us/wp-content/uploads/2010/01/hops-21-175x175.jpg" alt="Hops" width="175" height="175" align="right" />As some of you may already know, I've started brewing my own beer at home ("homebrewing" creates "homebrew"). I've made some 2.5 gallon batches here and there including an American Light Ale, an Oatmeal Stout, and a few other misc brews. Then I decided to invest in some better equipment. Don't get me wrong, <a href="http://www.mrbeer.com">Mr. Beer</a> is a great kit to start out with, but I felt the quality of the beer I could create was being held back by some of the more simplistic equipment and ingredients that you get with Mr. Beer.</p>
<p><em>I now have a problem:</em> I have a bunch of glass bottles with different styles of beer in them. The majority of these bottles are unlabeled. Luckily, I have two different color bottle caps that I've used, but that's really the only differentiation between the bottles at the moment.</p>
<p>I've decided that whenever I create a new batch of beer, I'm going to create a custom label for it. just like commercial micro-breweries do. I'll print out the labels on my inkjet printer on plain paper, cut them up, and adhere them to the bottles using Elmers' Spray Adhesive (the stuff schoolkids use to tack things to display boards for presentations). With the type of spray glue I'm using, it shouldn't be too hard to remove the labels once the bottle is empty. I understand that the inkjet printer won't produce the best and most lasting results, but it'll do for now.</p>
<p>So, I proudly unveil my first-ever label. It's for my latest batch which I'm calling "Bitter Old Lady IPA" (<a href="http://en.wikipedia.org/wiki/India_pale_ale" target="_blank">India Pale Ale</a>).</p>
<p>I'll be printing, cutting, and adhering the labels tonight. Who knows... if this turns out to be way more of a hassle than its worth this may also be my <em>last</em> label!</p>
<h2>Bitter Old Lady IPA</h2>
<p style="text-align: center;"><img class="size-full wp-image-1291 aligncenter" style="border: 1px solid black;" title="BitterOldLadyBeerLabel" src="http://www.ear-fung.us/wp-content/uploads/2010/01/BitterOldLadyBeerLabel.jpg" alt="" width="500" height="376" /></p>
<p>And here is the label on a few test bottles:</p>
<p style="text-align: center;"><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0400.jpg" rel="shadowbox[post-1287];player=img;"><img class="size-medium wp-image-1288 aligncenter" title="IMG_0400" src="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0400-412x550.jpg" alt="" width="412" height="550" /></a></p>
<p style="text-align: center;"><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0401.jpg" rel="shadowbox[post-1287];player=img;"><img class="size-medium wp-image-1289 aligncenter" title="IMG_0401" src="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0401-550x412.jpg" alt="" width="550" height="412" /></a></p>
<p style="text-align: center;"><a href="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0402.jpg" rel="shadowbox[post-1287];player=img;"><img class="size-medium wp-image-1290 aligncenter" title="IMG_0402" src="http://www.ear-fung.us/wp-content/uploads/2010/01/IMG_0402-412x550.jpg" alt="" width="412" height="550" /></a></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/jF8taqCTi88" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/01/my-latest-creation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2010/01/my-latest-creation/</feedburner:origLink></item>
		<item>
		<title>Collaborative Songwriting</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/uJEoaoubdWg/</link>
		<comments>http://www.ear-fung.us/2010/01/collaborative-songwriting/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 17:52:53 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Singing]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1281</guid>
		<description><![CDATA[My friend Jon loves to play the guitar. So the other day he started sending me a few audio files of songs he recorded (small clips).
So what do I do with the files? What any sane person would do: bring 'em into Garage Band and record the lead guitar part with nothing other than my [...]]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://www.jonwelborn.com/">Jon</a> loves to play the guitar. So the other day he started sending me a few audio files of songs he recorded (small clips).</p>
<p>So what do I do with the files? What any sane person would do: bring 'em into <a title="Garage Band" rel="amazon" href="http://www.apple.com/ilife/garageband/" target="_blank">Garage Band</a> and record the lead guitar part with nothing other than my vocal chords.</p>
<p>Here's two songs we collaborated on. I hope you enjoy them.</p>
<p>Dream Theater: The Count of Tuscany</p>
<p>Muse: Hysteria</p>
<p>Yeah... they're not that good... mostly because of my horrible hackjob on the vocals, but it was fun <img src='http://www.ear-fung.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/uJEoaoubdWg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2010/01/collaborative-songwriting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.ear-fung.us/wp-content/uploads/2010/01/dtcot_new_and_improved.mp3" length="923392" type="audio/mpeg" />
<enclosure url="http://www.ear-fung.us/wp-content/uploads/2010/01/hysteriariff_new_and_improved.mp3" length="334076" type="audio/mpeg" />
		<feedburner:origLink>http://www.ear-fung.us/2010/01/collaborative-songwriting/</feedburner:origLink></item>
		<item>
		<title>Family Photo Day</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/zdQOMZVPstI/</link>
		<comments>http://www.ear-fung.us/2009/12/family-photo-day/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 02:58:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1274</guid>
		<description><![CDATA[After Church today, I was tasked with taking the family photo for the Christmas letter this year since we hadn't all been able to take it earlier. They're going out tomorrow with the yearly Christmas letter in the mail so everyone should get theirs by Christmas.
Luckily I brought my tripod, remote shutter release device ("the [...]]]></description>
			<content:encoded><![CDATA[<p>After Church today, I was tasked with taking the family photo for the Christmas letter this year since we hadn't all been able to take it earlier. They're going out tomorrow with the yearly Christmas letter in the mail so everyone should get theirs by Christmas.</p>
<p>Luckily I brought my tripod, remote shutter release device ("the spoon") and a 10 foot cord so that I was able to be in the photo. Framing and taking photos while being a subject at the same time is difficult!</p>
<p>Anyways, here's the best of the results.</p>
<p>Merry Christmas!</p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7279.jpg" rel="shadowbox[post-1274];player=img;"><img class="alignnone size-medium wp-image-1275" title="IMG_7279" src="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7279-550x329.jpg" alt="" width="550" height="329" /></a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7306.jpg" rel="shadowbox[post-1274];player=img;"><img class="alignnone size-medium wp-image-1276" title="IMG_7306" src="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7306-550x366.jpg" alt="" width="550" height="366" /></a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7323.jpg" rel="shadowbox[post-1274];player=img;"><img class="alignnone size-medium wp-image-1277" title="IMG_7323" src="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7323-550x366.jpg" alt="" width="550" height="366" /></a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7350.jpg" rel="shadowbox[post-1274];player=img;"><img class="alignnone size-medium wp-image-1278" title="IMG_7350" src="http://www.ear-fung.us/wp-content/uploads/2009/12/IMG_7350-550x366.jpg" alt="" width="550" height="366" /></a></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/zdQOMZVPstI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/12/family-photo-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/12/family-photo-day/</feedburner:origLink></item>
		<item>
		<title>Greensboro Aquatic Center…. Are You Kidding Me?</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/HMmFOh4HwP4/</link>
		<comments>http://www.ear-fung.us/2009/12/greensboro-aquatic-center/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 17:06:12 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[ballot]]></category>
		<category><![CDATA[bonds]]></category>
		<category><![CDATA[issues]]></category>
		<category><![CDATA[taxes]]></category>
		<category><![CDATA[taxpayers]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1272</guid>
		<description><![CDATA[I don't often write about local news and events, but I'm just so perplexed by what's happening with the recent Greensboro, NC proposed Aquatic Center.
Turns out that the city council passed a measure (5-4) to put an additional $7 million bond on the next ballot because the first bond won't be enough to pay for [...]]]></description>
			<content:encoded><![CDATA[<p>I don't often write about local news and events, but I'm just so perplexed by what's happening with the recent Greensboro, NC proposed Aquatic Center.</p>
<p>Turns out that the city council <a href="http://www.wxii12.com/money/21981185/detail.html">passed</a> a measure (5-4) to put an additional $7 million bond on the next ballot because the first bond won't be enough to pay for the center. Granted, the taxpayers voted in favor of using bonds to finance it during the last election cycle. Wait... what? I wonder if anyone has ever done a poll of voters to see how many of them actually know what a bond is?</p>
<blockquote><p><a href="http://en.wikipedia.org/wiki/Bond_%28finance%29">Bond</a>:</p>
<p>In finance, a bond is a debt security, in which the authorized issuer owes the holders a debt and, depending on the terms of the bond, is obliged to pay interest (the coupon) and/or to repay the principal at a later date, termed maturity. A bond is a formal contract to repay borrowed money with interest at fixed intervals.</p></blockquote>
<p>I'll be willing to bet that if all voters realized that a bond is a fancy name for a great big loan and that you actually have to pay it back, that greater than 50% of those who voted for the bond to build the aquatic center would not have voted that way. Why doesn't the city save up money it needs by operating under budget, and when they have enough money to build the aquatic center, <em>then</em> build it? (That was a rhetorical question... we all know that governments-especially those in the great state of North Carolina-can't control their spending).</p>
<p>Now the Greensboro City Council have decided that the cost will be more than originally thought! Whoda-thunk-it?!</p>
<p>I'm sure that there was some heavy lobbying to get the first bond measure on the ballot by companies that stand to make a profit from building and/or operating the aquatic center</p>
<p>Personally, I vote all bond issues down-no matter what. There no reason the government can't save up for something to pay for it later. It's this whole American system of instant gratification and digging yourself into a debt hole.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/HMmFOh4HwP4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/12/greensboro-aquatic-center/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/12/greensboro-aquatic-center/</feedburner:origLink></item>
		<item>
		<title>Weight Loss Update (with numbers)</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/Lp7no3CkBks/</link>
		<comments>http://www.ear-fung.us/2009/11/weight-loss-update/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 15:00:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[alli]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[inches]]></category>
		<category><![CDATA[tweetweight]]></category>
		<category><![CDATA[weight]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1079</guid>
		<description><![CDATA[I took measurements shortly after I started dieting and taking Alli on Feb 2, 2009. Here are my numbers so far. I'm at (roughly) 165 lbs today.




2/8/09
5/1/09
11/27/09
Difference:


Chest
43.5"
40.75"
37.5"
-6"


Arm
14"
13"
11.5"
-2.5"


Hips
47"
43.5"
38"
-9"


Waist
41"
37"
29.5"
-11"


Thigh
24"
22"
21"
-3"



So my grand totals for the past 292 days is ~60 lbs and 37 inches!
If you haven't seen me in a while, you may not recognize me next time [...]]]></description>
			<content:encoded><![CDATA[<p>I took measurements shortly after I started dieting and taking <a href="http://www.myalli.com" target="_blank">Alli</a> on Feb 2, 2009. Here are my numbers so far. I'm at (roughly) 165 lbs today.</p>
<table border="0" width="50%" align="center">
<tbody>
<tr>
<th></th>
<th>2/8/09</th>
<th>5/1/09</th>
<th>11/27/09</th>
<th>Difference:</th>
</tr>
<tr>
<td>Chest</td>
<td>43.5"</td>
<td>40.75"</td>
<td>37.5"</td>
<td>-6"</td>
</tr>
<tr>
<td>Arm</td>
<td>14"</td>
<td>13"</td>
<td>11.5"</td>
<td>-2.5"</td>
</tr>
<tr>
<td>Hips</td>
<td>47"</td>
<td>43.5"</td>
<td>38"</td>
<td>-9"</td>
</tr>
<tr>
<td>Waist</td>
<td>41"</td>
<td>37"</td>
<td>29.5"</td>
<td>-11"</td>
</tr>
<tr>
<td>Thigh</td>
<td>24"</td>
<td>22"</td>
<td>21"</td>
<td>-3"</td>
</tr>
</tbody>
</table>
<p>So my grand totals for the past 292 days is ~60 lbs and 37 inches!</p>
<p>If you haven't seen me in a while, you may not recognize me next time you see me <img src='http://www.ear-fung.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Check out my weight loss tracking tool that uses Twitter, <a href="http://tweetweight.com" target="_blank">http://tweetweight.com</a> and my personal graphs and goals page <a href="http://tweetweight.com/markrickert" target="_blank">http://tweetweight.com/markrickert</a></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/Lp7no3CkBks" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/weight-loss-update/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/weight-loss-update/</feedburner:origLink></item>
		<item>
		<title>Happy Early Turkey Day</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/AblWIFlthc0/</link>
		<comments>http://www.ear-fung.us/2009/11/happy-early-turkey-day/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 19:48:11 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[musclemilk]]></category>
		<category><![CDATA[thanksgiving]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1263</guid>
		<description><![CDATA[Hilarious viral video that turns out to be an advertisement at the end. Watch In HD.

]]></description>
			<content:encoded><![CDATA[<p>Hilarious viral video that turns out to be an advertisement at the end. <a href="http://www.youtube.com/watch?v=G6YuLgyYZhc&#038;fmt=22" rel="shadowbox[post-1263];player=swf;width=640;height=385;">Watch In HD</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/G6YuLgyYZhc&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/G6YuLgyYZhc&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/AblWIFlthc0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/happy-early-turkey-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/happy-early-turkey-day/</feedburner:origLink></item>
		<item>
		<title>GIT Versioning System Just Blew My Mind</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/2uJRBueqeis/</link>
		<comments>http://www.ear-fung.us/2009/11/git-versioning-system-just-blew-my-mind/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 22:22:48 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[source control]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1255</guid>
		<description><![CDATA[Try and follow me here...
I have a source repository on a server and clone the project to my local machine to work on it. I also clone the project on that same server to a web-accessible directory so when I'm done with changes all I have to do is git pull in the web directory [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/11/git-scm.gif" rel="shadowbox[post-1255];player=img;"><img class="alignright size-full wp-image-1259" title="git-scm" src="http://www.ear-fung.us/wp-content/uploads/2009/11/git-scm.gif" alt="git-scm" width="207" height="77" align="right" /></a>Try and follow me here...</p>
<p>I have a source repository on a server and clone the project to my local machine to work on it. I also clone the project on that same server to a web-accessible directory so when I'm done with changes all I have to do is <code>git pull</code> in the web directory and it updates itself to the most recent version.</p>
<p>I was working on a project that needed some files and folders rearranged. It started out something like this:</p>
<pre>/*.fla
/*.as
/www/*.php
/www/includes/config.php</pre>
<p>I wanted to turn it into:</p>
<pre>/*.php
/includes/config.php
/flashsource/*.fla
/flashsource/*.as</pre>
<p>Thus, moving all the stuff from the /www/ directory to the root of the project. So I made the changes on the server in the web directory and did a commit and a push to the repository.</p>
<p>Whoops! I forgot that I needed to update that very same config file with some different information in order for it to work on the server (local vs. remote database authentication mumbo-jumbo). So on my local machine (which still had the old folder structure), I made the change and committed it to my local clone.</p>
<p>Anyone who has worked with version control systems knows what most of them (namely SVN) would do if I tried to push the changes to the server - vomit error messages all over my screen. Fingers crossed, I did a <code>git pull</code> to get the most recent version and then a <code>git push</code> to (hopefully) put the changes to the config file.</p>
<p>Holy crap it worked! The pull rearranged my folder structure locally, keeping the change I had previously committed to the config.php file but was smart enough to move the modified and committed config file to the new home I had given it on the server.</p>
<p>A <code>git pull</code> in the web directory to get the changes config file and we were in business.</p>
<p>SVN probably would have exploded in this situation.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/2uJRBueqeis" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/git-versioning-system-just-blew-my-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/git-versioning-system-just-blew-my-mind/</feedburner:origLink></item>
		<item>
		<title>Cool Cover Song</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/dRMXq7HAl1E/</link>
		<comments>http://www.ear-fung.us/2009/11/cool-cover-song/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 15:22:16 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[coversong]]></category>
		<category><![CDATA[grooveshark]]></category>
		<category><![CDATA[metal]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1253</guid>
		<description><![CDATA[I found this cover of Katy Perry's "I Kissed a Girl" that's really cool... techno beat and sung by a metal band male singer.
Check it out.

]]></description>
			<content:encoded><![CDATA[<p>I found this cover of Katy Perry's "<em>I Kissed a Girl</em>" that's really cool... techno beat and sung by a metal band male singer.</p>
<p>Check it out.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="250" height="40" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=16638080&amp;style=metal&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/songWidget.swf" /><embed type="application/x-shockwave-flash" width="250" height="40" src="http://listen.grooveshark.com/songWidget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=16638080&amp;style=metal&amp;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/dRMXq7HAl1E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/cool-cover-song/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/cool-cover-song/</feedburner:origLink></item>
		<item>
		<title>Adobe Air 2.0beta – No more Mac PPC Love</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/Gljfsi87hRk/</link>
		<comments>http://www.ear-fung.us/2009/11/adobe-air-2beta-no-more-mac-ppc-love/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 14:22:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[disappointment]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[ppc]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tweetdeck]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1250</guid>
		<description><![CDATA[I was a little disappointed this morning when I read in the release notes for the new Adobe AIR 2.0beta version (released today).
Turns out that they've dropped support for PPC Macs. I'm not sure why they did this, but I'd speculate that it had to do with all the fancy new networking features.
This move is [...]]]></description>
			<content:encoded><![CDATA[<p>I was a little disappointed this morning when I read in the <a href="http://labs.adobe.com/wiki/index.php/AIR_2:Release_Notes#New_Features_in_AIR_2">release notes</a> for the new <a href="http://labs.adobe.com/downloads/air2.html">Adobe AIR 2.0beta</a> version (released today).</p>
<p><img class="alignright size-full wp-image-690" title="adobeair" src="http://www.ear-fung.us/wp-content/uploads/2008/07/adobeair.jpg" alt="adobeair" width="200" height="106" align="right" />Turns out that they've <a href="http://labs.adobe.com/wiki/index.php/AIR_2:Developer_FAQ#What_are_the_system_requirements_for_the_AIR_2_Beta.3F">dropped support for PPC Macs</a>. I'm not sure why they did this, but I'd speculate that it had to do with all the fancy new networking features.</p>
<p>This move is going to alienate a lot of users sill on older PPC hardware. It also makes it so that developers of extremely popular AIR applications (such as <a href="http://tweetdeck.com/">TweetDeck</a>) won't want upgrade their apps to utilize these cool new features.</p>
<p>It's easy to upgrade software but extremely hard to upgrade hardware. Perhaps they'll add back PPC support in the final release build, but that's only wishful thinking.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/Gljfsi87hRk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/adobe-air-2beta-no-more-mac-ppc-love/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/adobe-air-2beta-no-more-mac-ppc-love/</feedburner:origLink></item>
		<item>
		<title>My Computer Backup Strategy</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/00Yl_K4POUs/</link>
		<comments>http://www.ear-fung.us/2009/11/my-computer-backup-strategy/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 23:00:17 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[mozy]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[trifecta]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1245</guid>
		<description><![CDATA[...and disaster recovery plan.
As someone who relies on their computer for their livelihood, I have what I consider to be a pretty solid backup strategy.
I don't care who you are... if you're reading this and thinking, "I don't need to backup my computer", I'm here to tell you that you're sorely mistaken. If you have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/11/backuptrifecta.png" rel="shadowbox[post-1245];player=img;"><img class="alignright size-full wp-image-1247" title="backuptrifecta" src="http://www.ear-fung.us/wp-content/uploads/2009/11/backuptrifecta.png" alt="backuptrifecta" width="320" height="298" align="right" /></a>...and disaster recovery plan.</p>
<p>As someone who relies on their computer for their livelihood, I have what I consider to be a pretty solid backup strategy.</p>
<p>I don't care <em>who</em> you are... if you're reading this and thinking, "I don't need to backup my computer", I'm here to tell you that you're sorely mistaken. If you have anything that you hold precious on your computer (whether that be photos, music, financial documents, recipes, etc) you need to backup your data <em>somehow</em>.</p>
<p>I have a 3-tiered backup and recovery plan:</p>
<ol>
<li><strong>I have a 250gig external drive</strong> that I use as a <a href="http://www.apple.com/macosx/what-is-macosx/time-machine.html">Time Machine</a> backup drive.
<p>Right now, I can go back about 2 months and see almost every file that has been on my computer in Apple's mildly annoying Time Machine interface. This makes it easy for me to go grab a file that I may have deleted accidentally or roll back to a previous version of a document that I had edited.</li>
<li><strong>I have a 1 terabyte external drive</strong> that gets a clone of my internal drive every night at 3am (Using <a href="http://www.bombich.com/">Carbon Copy Cloner</a>).
<p>This clone is bootable and also moves deleted files into an archive folder. This is a second layer of defense against accidentally deleting something in case of a catastrophic failure of my primary Time Machine drive. This drive also serves as a temporary working drive in case something should happen to my laptop's internal hard drive. I can work till I have time to grab another internal drive, install it, and copy all the content over.</li>
<li><strong>I use <a href="http://mozy.popularmedia.net/click/share/5a14d8caeccbbef1c43e05250ec75782" target="_blank">Mozy</a></strong> to back up my really important stuff online. This backup runs every night.<strong>
<p></strong>Granted, I don't copy everything to Mozy because of limited upload bandwidth at my house, but anything that I couldn't live without gets synced up to the Mozy cloud: my  iPhoto Library (16+gb), my iTunes Library (22+gb), financial documents (yes, Mozy storage is encrypted), archived project folders, and basically anything else that doesn't change a whole lot. Mozy is a great option to make an off site backup in case of a house fire, burglary,  or similar incident and I highly recommend it. (<a href="http://mozy.popularmedia.net/click/share/5a14d8caeccbbef1c43e05250ec75782" target="_blank">Click here save 10% on your first year of Mozy online backup service</a>). One important distinction to make is that Mozy is a <a href="http://en.wikipedia.org/wiki/Remote_backup_service">remote backup service</a>, not an <a href="http://en.wikipedia.org/wiki/Archive">remote archival service</a>. If you delete it from your machine, Mozy only stores that file for 30 days, after that, it's gone from their servers for all time.</li>
</ol>
<p>So there's my backup solution trifecta. It's automated, it's easy to recover files, off site backups are encrypted, and most of all it's saved my butt numerous times.</p>
<p>How do you back up?</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/00Yl_K4POUs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/my-computer-backup-strategy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/my-computer-backup-strategy/</feedburner:origLink></item>
		<item>
		<title>Reinvention Iminent? I need some suggestions.</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/nggnkGtwDoc/</link>
		<comments>http://www.ear-fung.us/2009/11/reinvention-iminent-i-need-some-suggestions/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 03:40:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[new directions]]></category>
		<category><![CDATA[reinvention]]></category>
		<category><![CDATA[suggestions]]></category>
		<category><![CDATA[testing the waters]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1239</guid>
		<description><![CDATA[Things have been a little quiet around here lately, I know.
I'm thinking a reinvention of my website is due. I'd keep all the content from my years of Wordpress blogging content as an archive, but what do you think would be a cool site idea?
The Twitter feed as a blog thing is pretty lame, and [...]]]></description>
			<content:encoded><![CDATA[<p>Things have been a little quiet around here lately, I know.</p>
<p>I'm thinking a reinvention of my website is due. I'd keep all the content from my years of Wordpress blogging content as an archive, but what do you think would be a cool site idea?</p>
<p>The Twitter feed as a blog thing is pretty lame, and I really want to consolidate my online "stuff" into one place–here. I feel like my digital content is spread around everywhere: Twitter, Flickr, Facebook, YouTube, etc. Twitter is the thing right now, so I'd want my updates to be a big portion of the site, but I'm thinking I want to delete all my Flickr photos, and only use my site as a host for my images. I'm also not so active on Facebook anymore but 2 or 3 times a month to check on events so i want this site to be an easy way to get in contact with me.</p>
<p>Any suggestions about the direction I should take the site? I feel like the blogging thing isn't really working for me recently.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/nggnkGtwDoc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/11/reinvention-iminent-i-need-some-suggestions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/11/reinvention-iminent-i-need-some-suggestions/</feedburner:origLink></item>
		<item>
		<title>Goodbye, My Friend</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/fa6RrOLqr8c/</link>
		<comments>http://www.ear-fung.us/2009/09/goodbye-my-friend/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 00:38:07 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[roland]]></category>
		<category><![CDATA[sadness]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1227</guid>
		<description><![CDATA[Although we grew apart after I graduated, I'll still miss you. You will never know the impact you had on my life and the lifes of everyone you came in contact with.

Roland Grenouillou and I were room mates during my senior year at the University of South Florida while he was working with the on [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Although we grew apart after I graduated, I'll still miss you. You will never know the impact you had on my life and the lifes of everyone you came in contact with.</p></blockquote>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/09/IMG_0013.jpg" rel="shadowbox[post-1227];player=img;"><img class="aligncenter size-medium wp-image-1228" title="Roland Grenouillou" src="http://www.ear-fung.us/wp-content/uploads/2009/09/IMG_0013-550x538.jpg" alt="Roland Grenouillou" width="550" height="538" /></a></p>
<p>Roland Grenouillou and I were room mates during my senior year at the University of South Florida while he was working with the on campus ministry, <a href="http://internationals.org/" target="_blank">Friends of Internationals</a>. Sadly, he passed away this week.</p>
<p><a href="http://www.legacy.com/obituaries/charlotte/obituary.aspx?page=notice&amp;pid=132913530" target="_blank">Roland's Obituary in the Charlotte Observer</a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002643.JPG" rel="shadowbox[post-1227];player=img;"><img class="aligncenter size-medium wp-image-1229" title="IM002643" src="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002643-550x412.jpg" alt="IM002643" width="550" height="412" /></a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002196.JPG" rel="shadowbox[post-1227];player=img;"><img class="aligncenter size-medium wp-image-1230" title="IM002196" src="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002196-550x412.jpg" alt="IM002196" width="550" height="412" /></a></p>
<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002109_cropped.jpg" rel="shadowbox[post-1227];player=img;"><img class="aligncenter size-medium wp-image-1231" title="IM002109_cropped" src="http://www.ear-fung.us/wp-content/uploads/2009/09/IM002109_cropped-450x550.jpg" alt="IM002109_cropped" width="450" height="550" /></a></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/fa6RrOLqr8c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/09/goodbye-my-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/09/goodbye-my-friend/</feedburner:origLink></item>
		<item>
		<title>My New Ride</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/CE_qaxSv8YA/</link>
		<comments>http://www.ear-fung.us/2009/08/my-new-ride/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 01:45:09 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[daewoo]]></category>
		<category><![CDATA[dodge]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[magnum]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1206</guid>
		<description><![CDATA[I finally bit the bullet and got rid of my old clunker 2001 Daewoo Nubira. It was pretty bad but it got me from point A to point B.
After about a week of searching and my wife getting sick and tired of me looking, I finally bought a new (to me) car. I settled on [...]]]></description>
			<content:encoded><![CDATA[<p>I finally bit the bullet and got rid of my old clunker 2001 Daewoo Nubira. It was pretty bad but it got me from point A to point B.</p>
<p>After about a week of searching and my wife getting sick and tired of me looking, I finally bought a new (to me) car. I settled on a 2008 Dodge Magnum. It's smaller than an SUV but larger than a standard car. That way I get better gas mileage than a large vehicle, but still have a decent amount of space in the vehicle.</p>
<p>My previous method of determining when I needed to cut my mohawk was when it hit the ceiling of my Daewoo. Looks like I'm going to have to change my criteria for the length I let my mohawk get because of all the headroom! We'll have to see about that.</p>
<p>Anyways, here are some photos. I didn't purchase the rims and wheels, so I'm going into the dealer to get them switched out for regular rims and wheels but for now I've got the *bling*. Those rims were $1,750 and I wasn't willing to add that to the total price of the car so that I could look (in some peoples' opinion) "cool".</p>

<a href='http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0137.JPG' rel='shadowbox[post-1206];player=img;' title='IMG_0137'><img width="175" height="175" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0137-175x175.jpg" class="attachment-thumbnail" alt="" title="IMG_0137" /></a>
<a href='http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0138.JPG' rel='shadowbox[post-1206];player=img;' title='IMG_0138'><img width="175" height="175" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0138-175x175.jpg" class="attachment-thumbnail" alt="" title="IMG_0138" /></a>
<a href='http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0139.JPG' rel='shadowbox[post-1206];player=img;' title='IMG_0139'><img width="175" height="175" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0139-175x175.jpg" class="attachment-thumbnail" alt="" title="IMG_0139" /></a>
<a href='http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0140.JPG' rel='shadowbox[post-1206];player=img;' title='IMG_0140'><img width="175" height="175" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0140-175x175.jpg" class="attachment-thumbnail" alt="" title="IMG_0140" /></a>
<a href='http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0141.JPG' rel='shadowbox[post-1206];player=img;' title='IMG_0141'><img width="175" height="175" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0141-175x175.jpg" class="attachment-thumbnail" alt="" title="IMG_0141" /></a>

<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/CE_qaxSv8YA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/08/my-new-ride/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/08/my-new-ride/</feedburner:origLink></item>
		<item>
		<title>Setting up Twitter Reply Push Notifications with Perl &amp; Prowl</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/LP8jj6MTWqE/</link>
		<comments>http://www.ear-fung.us/2009/08/setting-up-twitter-reply-push-notifications-with-perl-prowl/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 22:56:22 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[prowl]]></category>
		<category><![CDATA[push]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1200</guid>
		<description><![CDATA[Here's a quick and dirty tutorial on how to set up push notifications from a bluehost server to get all of your @replies from twitter to be pushed to your iPhone using Prowl. Well, it's pseudo-push, seeing that we'll set up a cron job to run a script that pulls from Twitter and pushes to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0099.PNG" rel="shadowbox[post-1200];player=img;"><img align="right" class="alignright size-full wp-image-1202" title="IMG_0099" src="http://www.ear-fung.us/wp-content/uploads/2009/08/IMG_0099.PNG" alt="IMG_0099" width="320" height="480" /></a>Here's a quick and dirty tutorial on how to set up push notifications from a bluehost server to get all of your @replies from twitter to be pushed to your iPhone using <a href="http://bit.ly/2zp44">Prowl</a>. Well, it's pseudo-push, seeing that we'll set up a cron job to run a script that pulls from Twitter and pushes to your iPhone. More on that later.</p>
<p>This tutorial will assume a few things:</p>
<ol>
<li>You have purchased the <a href="http://bit.ly/2zp44">Prowl iPhone application</a> and have it set up and working properly.</li>
<li>You have a Bluehost account or other hosting environment that allows you to schedule cron jobs and install custom Perl modules. Installing Perl modules on Bluehost is done from the control panel, other servers are out of luck for the scope of this tutorial, as I have no way to know how their setup works.</li>
<li>You are reasonably savvy at general computer and server things.</li>
</ol>
<p>First task is to purchase <a href="http://bit.ly/2zp44">Prowl</a> for the iPhone and get it working. Do not proceed if you don't own this application. It is probably the best $3.99 I've spent on an iPhone app to date. Then generate an API key in your account settings on the <a href="https://prowl.weks.net/" target="_blank">prowl.weks.net</a> site.</p>
<p>Next, you want to install some Perl modules in your environment. Again, these instructions are for Bluehost account holders.</p>
<ol>
<li>Log into your control panel (http://yourdomain/cpanel/) and click the camel icon that says "Perl Modules"</li>
<li>Under "Install a Perl Module", type: "Net::Twitter" and click "Install."  This will take some time as the Net::Twitter has quite a few dependencies.</li>
<li>Install the modules "WebService::Prowl" and "JSON::Any"</li>
</ol>
<p>After all these modules are successfully installed, we need to write our script and upload it to the server. I believe in giving credit where credit is due, so thanks to <a href="http://www.ohnekontur.de/index.php/2009/07/13/twitter-push-notifications-aufs-iphone-mit-prowl/" target="_blank">ohnekontur.de</a> for the code framework.</p>
<p><code>#!/home/earfungu/perl<br />
BEGIN {<br />
my $homedir = ( getpwuid($&gt;) )[7];<br />
my @user_include;<br />
foreach my $path (@INC) {<br />
if ( -d $homedir . '/perl' . $path ) {<br />
push @user_include, $homedir . '/perl' . $path;<br />
}<br />
}<br />
unshift @INC, @user_include;<br />
}<br />
use Net::Twitter;<br />
use WebService::Prowl;<br />
my $prowl = WebService::Prowl-&gt;new(apikey =&gt; "YOUR PROWL API KEY");<br />
my $nt = Net::Twitter-&gt;new(<br />
traits   =&gt; [qw/API::REST/],<br />
username =&gt; "YOUR TWITTER USERNAME",<br />
password =&gt; "YOUR TWITTER PASSWORD"<br />
);<br />
open(LASTTWEET, "<br />
my @IN = ;<br />
my $lastid = $IN[0];<br />
close(LASTTWEET);<br />
eval<br />
{<br />
my $statuses = $nt-&gt;replies({ since_id =&gt; $lastid});<br />
for my $status (@$statuses)<br />
{<br />
$prowl-&gt;add(application =&gt; "TwitterProwl",<br />
event =&gt; "$status-&gt;{user}{screen_name}",<br />
description =&gt; "$status-&gt;{time}\n$status-&gt;{text}");<br />
print " $status-&gt;{time} &lt;$status-&gt;{user}{screen_name}&gt; $status-&gt;{text}\n";<br />
$lastid = $status-&gt;{id};<br />
}<br />
open(LASTTWEET, "&gt;lasttweet.id");<br />
print LASTTWEET "$lastid";  #Write the data<br />
close(LASTTWEET);<br />
};<br />
if (my $err = $@)<br />
{<br />
die $@ unless blessed $err &amp;&amp; $err-&gt;isa('Net::Twitter::Error');<br />
warn "HTTP Response Code: ", $err-&gt;code, "\n",<br />
"HTTP Message......: ", $err-&gt;message, "\n",<br />
"Twitter error.....: ", $err-&gt;error, "\n";<br />
}</code></p>
<p>Save this script as "twitterprowl.pl" and upload it to your server.</p>
<p>Go to twitter and find your most recent tweet ID. You can do this by clicking the date and time of a tweet in your timeline. Look at the URL and the long number is the tweet id. Open a new text file and paste this tweet id. Save the file as "lasttweet.id", upload it to the same directory, and make sure that perl can write to the file. This most likely calls for CHMOD 766.</p>
<p>Run the command by SSHing into your serve,  traversing into the proper directory, and running: "perl twitterprowl.pl" to make sure there are no errors.</p>
<p>Set up a cron job to run every `n` minutes. How often is up to you, but make sure you are mindful of the Twitter API call limit of 150 calls per hour. My IP is whitelisted, so I can make 10,000 calls per hour, so I set up my cron job to run every minute.</p>
<p><strong>You now have a pseudo-push notification service for replies to you on twitter delivered right to your iPhone!</strong></p>
<p>One last thing: this script would be very easy to modify to include all of your timeline instead of just replies to you, but for those of you who are following hundreds of people, this might not be a great idea.</p>
<p>Let me know in the comments if this helped you, or how you modified the script to do something even cooler!</p>
<hr />
<strong>Update:</strong> After having this script running for about 15 hours now, I can say in the immortal words of Borat, "Great success!" Everything is doing what it should, and pushing only replies to Prowl on my iPhone.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/LP8jj6MTWqE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/08/setting-up-twitter-reply-push-notifications-with-perl-prowl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/08/setting-up-twitter-reply-push-notifications-with-perl-prowl/</feedburner:origLink></item>
		<item>
		<title>Geocaching iPhone Application Updated to 2.3</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/ZS0fxjN_Rgg/</link>
		<comments>http://www.ear-fung.us/2009/08/geocaching-iphone-application-updated-to-2-3/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 01:57:08 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Geocaching]]></category>
		<category><![CDATA[Gizmos]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1195</guid>
		<description><![CDATA[I love my new iPhone, and I love Geocaching.
Groundspeak has just realeased a new update to their Geocaching application. Here's a run-down of the new features:
In this update, we have added some of the most often requested features, including:
-The 3Gs compass is now supported.
-Field notes can now be automatically published to the cache page as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ear-fung.us/wp-content/uploads/2009/08/geocachingapp.jpg" rel="shadowbox[post-1195];player=img;"><img class="alignright size-medium wp-image-1196" title="geocachingapp" src="http://www.ear-fung.us/wp-content/uploads/2009/08/geocachingapp-412x550.jpg" alt="geocachingapp" width="247" height="330" /></a>I love my new iPhone, and I love Geocaching.</p>
<p>Groundspeak has just realeased a new update to their Geocaching application. Here's a run-down of the new features:</p>
<blockquote><p>In this update, we have added some of the most often requested features, including:</p>
<p>-The 3Gs compass is now supported.<br />
-Field notes can now be automatically published to the cache page as a cache log using the app.<br />
-The number of trackable items in a cache is now visible on the geocache list.</p>
<p>In this update, we have also addressed some issues, including:</p>
<p>-A series of bugs caused some geocache data to be lost, even if it had been saved. These bugs have been fixed.<br />
-The difficulty and terrain ratings for caches are no longer rounded down in some cases.<br />
-Search by Address now works for any type of address. Previously, there were documented issues with non-U.S. addresses.</p></blockquote>
<p>This is a great update, especially for a 3GS owner, like me.</p>
<p>I'm excited to see how well the new compass functionality works.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/ZS0fxjN_Rgg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/08/geocaching-iphone-application-updated-to-2-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/08/geocaching-iphone-application-updated-to-2-3/</feedburner:origLink></item>
		<item>
		<title>Drawing Dashed Lines in AS3</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/WqsiBESqcRo/</link>
		<comments>http://www.ear-fung.us/2009/08/drawing-dashed-lines-in-as3/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 16:22:17 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graphics]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1192</guid>
		<description><![CDATA[Today I was tasked with dynamically drawing dashed lines in Flex (Actionscript 3). Boy was I in for a trip... there's no property of lineStyle that allows for dashed lines.
Searching around the 'net, I found a great class that I used with no problems to create my dashed lines. It even has the capability to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was tasked with dynamically drawing dashed lines in Flex (Actionscript 3). Boy was I in for a trip... there's no property of <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Graphics.html#lineStyle%28%29">lineStyle</a> that allows for dashed lines.</p>
<p>Searching around the 'net, I found a <a href="http://www.quietlyscheming.com/blog/charts/dashed-lines/">great class</a> that I used with no problems to create my dashed lines. It even has the capability to create polylines! Awesome.</p>
<p><a href="http://www.quietlyscheming.com/blog/charts/dashed-lines/">Check out the blog post</a><br />
<a href="http://demo.quietlyscheming.com/dashes/index.html">Check out the example</a><br />
<a href="http://demo.quietlyscheming.com/dashes/srcview/index.html">Check out the source code</a></p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/WqsiBESqcRo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/08/drawing-dashed-lines-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/08/drawing-dashed-lines-in-as3/</feedburner:origLink></item>
		<item>
		<title>Nike+ iPod Wordpress Widget v1.4.4</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/MBtCOFLmceg/</link>
		<comments>http://www.ear-fung.us/2009/06/nike-ipod-wordpress-widget-v1-4-4/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 00:24:33 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1127</guid>
		<description><![CDATA[Nike updated their API the other day and it broke the plugin. I've updated the plugin and also started hosting it at Wordpress.
Head on over to the Wordpress plugin page  or just go to your plugins page in the admin to upgrade.
A word of warning about upgrading: the folder name of the plugin has [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1018" title="nike_plus" src="http://www.ear-fung.us/wp-content/uploads/2009/02/nike_plus.jpg" alt="nike_plus" width="240" height="180" />Nike updated their API the other day and it broke the plugin. I've updated the plugin and also started hosting it at Wordpress.</p>
<p>Head on over to the <a href="http://wordpress.org/extend/plugins/nike-ipod/">Wordpress plugin page </a> or just go to your plugins page in the admin to upgrade.</p>
<p>A word of warning about upgrading: the folder name of the plugin has changed and you'll have to do a few extra steps this time in order to get it working properly.</p>
<ol>
<li>After installing the plugin in its new directory: nike-ipod you need to check the permissions of the cache directory.</li>
<li>In the plugin options page, make sure you update the path of your cache directory and submit the changes.</li>
</ol>
<p>Your plugin should be working properly now at version 1.4.4.</p>
<p>Leave a comment on this post if you're having issues or need assistance.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/MBtCOFLmceg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/06/nike-ipod-wordpress-widget-v1-4-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/06/nike-ipod-wordpress-widget-v1-4-4/</feedburner:origLink></item>
		<item>
		<title>Nike+ Updated their API</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/sazInpaxipQ/</link>
		<comments>http://www.ear-fung.us/2009/06/nike-updated-their-api/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 15:30:46 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[borked]]></category>
		<category><![CDATA[nike]]></category>
		<category><![CDATA[workout]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1109</guid>
		<description><![CDATA[I'm still looking into it, but Nike has broken the Wordpress widget.
I'll keep you updated as to my progress.
]]></description>
			<content:encoded><![CDATA[<p>I'm still looking into it, but Nike has broken the Wordpress widget.</p>
<p>I'll keep you updated as to my progress.</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/sazInpaxipQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/06/nike-updated-their-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/06/nike-updated-their-api/</feedburner:origLink></item>
		<item>
		<title>I’m Jobless At The Moment</title>
		<link>http://feedproxy.google.com/~r/ear-fung/feed/~3/0ptFjUplEmc/</link>
		<comments>http://www.ear-fung.us/2009/06/im-jobless-at-the-moment/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 17:41:45 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[layoffs]]></category>
		<category><![CDATA[sad]]></category>

		<guid isPermaLink="false">http://www.ear-fung.us/?p=1106</guid>
		<description><![CDATA[This was my first experience ever getting laid off. I went into my manager's office and saw an MP there with a packet and knew something was up.
I'm not sure what I can or can't say about it so I'll keep it brief. I know that God has bigger and better things in store for [...]]]></description>
			<content:encoded><![CDATA[<p>This was my first experience ever getting laid off. I went into my manager's office and saw an MP there with a packet and knew something was up.</p>
<p>I'm not sure what I can or can't say about it so I'll keep it brief. I know that God has bigger and better things in store for my life.</p>
<p>Whether I start freelancing or go to work for another company, I know that God is in control and that this happened for a reason. Who knows, I might end up happier and wealthier because of it.</p>
<p>Please pray for me.</p>
<p>Also... anyone need a programmer/web developer?</p>
<img src="http://feeds.feedburner.com/~r/ear-fung/feed/~4/0ptFjUplEmc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ear-fung.us/2009/06/im-jobless-at-the-moment/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.ear-fung.us/2009/06/im-jobless-at-the-moment/</feedburner:origLink></item>
	</channel>
</rss>
