<?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>Dusty Reagan &#187; Random Thoughts &amp; Going Ons</title>
	<atom:link href="http://dustyreagan.com/category/random-thoughts-going-ons/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustyreagan.com</link>
	<description>On Technology &#38; Entrepreneurship</description>
	<lastBuildDate>Thu, 01 Dec 2011 08:00:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Bill Gates is richer than you&#8217;ve imagined.</title>
		<link>http://dustyreagan.com/bill-gates-richer-than-you-imagined/</link>
		<comments>http://dustyreagan.com/bill-gates-richer-than-you-imagined/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 08:00:26 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=736</guid>
		<description><![CDATA[While having pizza with friends the other day, we realized something&#8230; In 2011 Forbes estimated Scrooge McDuck&#8217;s net worth to be $44.1 billion! He is the richest fictional character imagined, according to Forbes magazine. His favorite pastime is swimming in a giant &#8230; <a href="http://dustyreagan.com/bill-gates-richer-than-you-imagined/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While having pizza with friends the other day, we realized something&#8230;</p>
<p>In 2011 <a href="http://en.wikipedia.org/wiki/Forbes_Fictional_15" target="_blank">Forbes estimated</a> Scrooge McDuck&#8217;s net worth to be <strong>$44.1 billion</strong>! He is the richest fictional character imagined, according to Forbes magazine. His favorite pastime is swimming in a giant vault of gold coins.</p>
<div class="wp-caption aligncenter" style="width: 410px"><img title="Scrooge McDuck" src="http://c1878262.r62.cf0.rackcdn.com/scrooge-mcduck.jpg" alt="Scrooge McDuck swimming in gold coins." width="400" height="316" /><p class="wp-caption-text">Scrooge McDuck - Net Worth $44.1 Billion</p></div>
<p>In contrast, <a href="http://en.wikipedia.org/wiki/Bill_Gates" target="_blank">Bill Gates net worth</a> is estimated to be <strong>$56 billion</strong>!</p>
<div class="wp-caption aligncenter" style="width: 400px"><img title="Bill Gates" src="http://c1878262.r62.cf0.rackcdn.com/bill-gates-1983.jpg" alt="Bill Gates" width="390" height="312" /><p class="wp-caption-text">Bill Gates - Net Worth $56 Billion</p></div>
<p>Bill Gates has more money than your childhood&#8217;s richest fictional character!</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=736&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/bill-gates-richer-than-you-imagined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Downgrade PHPUnit 3.6 to 3.5.15</title>
		<link>http://dustyreagan.com/downgrade-phpunit-3-6-to-3-5-15/</link>
		<comments>http://dustyreagan.com/downgrade-phpunit-3-6-to-3-5-15/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 23:14:29 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=732</guid>
		<description><![CDATA[The newest release of PHPUnit 3.6 broke my unit test process in PHPStorm. PHPStorm is aware of the issue and is fixing it in the next update. However, in order to run my unit tests in the meantime I had &#8230; <a href="http://dustyreagan.com/downgrade-phpunit-3-6-to-3-5-15/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The newest release of PHPUnit 3.6 broke my unit test process in <a href="http://www.jetbrains.com/phpstorm/" target="_blank">PHPStorm</a>. PHPStorm is <a href="http://youtrack.jetbrains.net/issue/WI-7554" target="_blank">aware of the issue</a> and is fixing it in the next update. However, in order to run my unit tests in the meantime I had to downgrade from PHPUnit 3.6 to 3.5.15, which was harder than it should&#8217;ve been.</p>
<p>If you try installing PHPUnit-3.5.15 first, you&#8217;ll find PEAR forces you to install 3.6. The way around this is installing the old versions of all of the PHPUnit dependencies.</p>
<p>First you need to uninstall PHPUnit 3.6 and all of it&#8217;s dependencies.</p>
<p>sudo pear uninstall phpunit/PHPUnit<br />
sudo pear uninstall phpunit/DbUnit<br />
sudo pear uninstall phpunit/PHP_CodeCoverage<br />
sudo pear uninstall phpunit/File_Iterator<br />
sudo pear uninstall phpunit/Text_Template<br />
sudo pear uninstall phpunit/PHP_Timer<br />
sudo pear uninstall phpunit/PHPUnit_MockObject<br />
sudo pear uninstall phpunit/PHPUnit_Selenium<br />
sudo pear uninstall pear.symfony-project.com/YAML</p>
<p>Next install these specific versions of each dependency, in this order, installing PHPUnit-3.5.15 last.</p>
<p>sudo pear install pear.symfony-project.com/YAML-1.0.2<br />
sudo pear install phpunit/PHPUnit_Selenium-1.0.1<br />
sudo pear install phpunit/PHPUnit_MockObject-1.0.3<br />
sudo pear install phpunit/PHP_Timer-1.0.0<br />
sudo pear install phpunit/File_Iterator-1.2.3<br />
sudo pear install phpunit/PHP_CodeCoverage-1.0.2<br />
sudo pear install phpunit/Text_Template-1.0.0<br />
sudo pear install phpunit/DbUnit-1.0.0<br />
sudo pear install phpunit/PHPUnit-3.5.15</p>
<p>Now you should be good to go!</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=732&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/downgrade-phpunit-3-6-to-3-5-15/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Jelly co-founder, Amit Gupta, needs our help!</title>
		<link>http://dustyreagan.com/jelly-co-founder-amit-gupta-needs-our-help/</link>
		<comments>http://dustyreagan.com/jelly-co-founder-amit-gupta-needs-our-help/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:11:41 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=712</guid>
		<description><![CDATA[Today I learned Amit Gupta was diagnosed with Acute Leukemia, and he needs our help to find a bone marrow transplant. You may not know Amit, but he&#8217;s a brilliant guy who is responsible for the website Photojojo, and he&#8217;s also indirectly responsible for the &#8230; <a href="http://dustyreagan.com/jelly-co-founder-amit-gupta-needs-our-help/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I learned <a href="http://tumblr.amitgupta.com/" target="_blank">Amit Gupta</a> was diagnosed with Acute Leukemia, and he needs our help to find a bone marrow transplant. You may not know Amit, but he&#8217;s a brilliant guy who is responsible for the website <a href="http://photojojo.com/" target="_blank">Photojojo</a>, and he&#8217;s also indirectly responsible for the coworking movement in Austin.</p>
<div class="wp-caption alignright" style="width: 250px"><a title="Jelly Austin by DustyReagan, on Flickr" href="http://www.flickr.com/photos/dustyreagan/2616643771/"><img title="Jelly in Austin" src="http://farm4.static.flickr.com/3095/2616643771_5d453b0955_m.jpg" alt="Jelly in Austin" width="240" height="180" /></a><p class="wp-caption-text">Jelly in Austin</p></div>
<p>Some of you may remember back in good ol&#8217; 2007, a meetup in Austin I used to organize called <a href="http://workatjelly.com/" target="_blank">Jelly</a>. We met at coffee shops and coworked together for the whole day, once or twice per week. Jelly is a product of Amit&#8217;s mind, and it was a combination of my desire for a coworking space, a lack of money, and Amit&#8217;s genius free Jelly coworking meetups, that inspired me to start Jelly in Austin. These meetups later broke off and evolved into our city&#8217;s first coworking space <a href="http://Conjunctured.com" target="_blank">Conjunctured</a>, which uncovered a need, that has since set in motion many other coworking spaces in Austin. So, if you enjoy coworking in our fair city, you owe Amit a bit of thanks.</p>
<p>Amit posted about <a href="http://tumblr.amitgupta.com/post/11102689089/two-weeks-ago-i-got-a-call-from-my-doctor-who-id" target="_blank">his diagnosis</a> on his blog. He also posted several ways that we can help. I&#8217;ve reposted them below as a quote from his blog:</p>
<blockquote><p>I have a couple more months of chemo to go, then the next step is a bone marrow transplant. As Jay and Tony describe below, minorities are severely underrepresented in the bone marrow pool, and <strong>I need help</strong>.</p>
<p>A few ways to help:</p>
<ol>
<li><strong>If you’re South Asian</strong>, <a href="http://www.marrow.org/Join/Join_Now/Join_Now.aspx">get a free test by mail</a>. You rub your cheeks with a cotton swab and mail it back. It’s easy.</li>
<li><strong>If you’re in NYC</strong>, you can <a href="http://brownbones.eventbrite.com/">go to this event my friends are putting on</a>.</li>
<li><strong>If you know any South Asians</strong><em>(India, Pakistan, Bangladesh, Nepal, Bhutan, Maldives, or Sri Lanka)</em>, please point ‘em to the links above.</li>
</ol>
<p><em><strong>*NEW* </strong><strong>Organize a donor drive near you</strong> (the most helpful thing you could possibly do!) <strong>email <a href="mailto:100kcheeks@gmail.com">100kcheeks@gmail.com</a></strong>. <strong>They’ll send you kits</strong>, flyers, tell you what to say, and make the whole process easy cheesy.</em></p></blockquote>
<p>Please help however you can. I mean come on, just look at this guy. How can you not love him and want to help?</p>
<p style="text-align: center;"><a href="http://www.marrow.org/Join/Join_Now/Join_Now.aspx" target="_blank"><img class="aligncenter" title="Amit Gupta" src="http://30.media.tumblr.com/tumblr_lsngaj77wZ1qz72ywo1_500.jpg" alt="Amit Gupta" width="500" height="340" /></a></p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=712&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/jelly-co-founder-amit-gupta-needs-our-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs is Watching You!</title>
		<link>http://dustyreagan.com/steve-jobs-is-watching-you/</link>
		<comments>http://dustyreagan.com/steve-jobs-is-watching-you/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 19:51:49 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=650</guid>
		<description><![CDATA[Wow! Turns out the iPhone and 3G iPad have been secretly logging everyone&#8217;s GPS location in a local unencrypted database file ever since the release of iOS 4. The file is backed-up locally every time you sync your device with your computer, so it &#8230; <a href="http://dustyreagan.com/steve-jobs-is-watching-you/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow! Turns out the iPhone and 3G iPad have been secretly logging everyone&#8217;s GPS location in a local unencrypted database file ever since the release of iOS 4. The file is backed-up locally every time you sync your device with your computer, so it persists even if you replace your device. You can read more about the details on <a href="http://radar.oreilly.com/2011/04/apple-location-tracking.html" target="_blank">O&#8217;Reilly Radar</a>.</p>
<p>Out of curiosity, I downloaded <a href="http://petewarden.github.com/iPhoneTracker/" target="_blank">the app that uncovers this data</a>, and sure enough, you can see nearly everywhere I&#8217;ve been for the last year or so.</p>
<p><a title="Big Brother is Watching! by DustyReagan, on Flickr" href="http://www.flickr.com/photos/dustyreagan/5637999601/"><img src="http://farm6.static.flickr.com/5308/5637999601_b60291a97f.jpg" alt="Big Brother is Watching!" width="500" height="323" /><br />
</a><br />
The funny thing about this is I&#8217;m the type of person who would probably opt-in to a program that tracked my travels. I like being able to visualize the map above. However, the fact that Apple did this in secret, without my permission, clearly crosses into unethical behavior, whatever their intentions were/are.</p>
<p>The moral of this story is <a href="http://amzn.to/i3FwWT" target="_blank">Steve Jobs is watching you</a>!</p>
<p>There is something you can do though! You can join (or donate to) the <a href="https://www.eff.org/" target="_blank">EFF</a> (Electronic Frontier Foundation). The EFF is the leading civil liberties group defending your rights in the information age.</p>
<p><a href="https://secure.eff.org/site/Donation2?idb=844512930&amp;df_id=1280&amp;1280.donation=form1"><img src="http://c1878262.r62.cf0.rackcdn.com/eff.png" border="0" alt="Bloggers' Rights at EFF" width="468" height="60" /></a></p>
<p>Apple&#8217;s response should be pretty interesting.</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=650&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/steve-jobs-is-watching-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What good shall I do this day?</title>
		<link>http://dustyreagan.com/what-good-shall-i-do-this-day/</link>
		<comments>http://dustyreagan.com/what-good-shall-i-do-this-day/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 02:50:02 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=629</guid>
		<description><![CDATA[For about 4 years now I&#8217;ve been rocking the Hipster PDA.  I carry a stack of blank 3 by 5 index cards in my wallet (see the pic to the right on exactly how that works) and use them for to-do lists &#8230; <a href="http://dustyreagan.com/what-good-shall-i-do-this-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 250px"><a title="The Items I Carry v1 by DustyReagan, on Flickr" href="http://www.flickr.com/photos/dustyreagan/2199170770/"><img title="My Fancy Wallet" src="http://farm3.static.flickr.com/2382/2199170770_7572b12731_m.jpg" alt="My Fancy Wallet" width="240" height="180" /></a><p class="wp-caption-text">My Fancy Wallet</p></div>
<p>For about 4 years now I&#8217;ve been rocking the <a href="http://en.wikipedia.org/wiki/Hipster_PDA" target="_blank">Hipster PDA</a>.  I carry a stack of blank 3 by 5 <a href="http://en.wikipedia.org/wiki/Index_card" target="_blank">index cards</a> in my wallet (see the pic to the right on exactly how that works) and use them for to-do lists and discardable notes. I also cary a <a href="http://amzn.to/f6tlrO" target="_blank">full-size hardback Moleskine</a> for notes I intend to keep, though not necessarily for journaling. I typically only write jornal entries when I need to dig myself out of a rut. But I digress.</p>
<div class="wp-caption alignleft" style="width: 155px"><a title="Benjamin Franklin's daily schedule by nickbilton, on Flickr" href="http://www.flickr.com/photos/nickbilton/3779169741/"><img title="Benjamin Franklin's Daily Schedule" src="http://farm3.static.flickr.com/2537/3779169741_a1f678caea_m.jpg" alt="Benjamin Franklin's daily schedule" width="145" height="240" /></a><p class="wp-caption-text">Benjamin Franklin&#39;s Daily Schedule</p></div>
<p>I recently started listening to <a href="http://en.wikipedia.org/wiki/Benjamin_Franklin" target="_blank">Benjamin Franklin</a>&#8216;s autobiography. I admire Franklin and I&#8217;d like to imitate certain aspects of his character. One thing that really struck me was his outline for a perfect daily routine. He mentioned that he himself was terrible at sticking to the routine as he must &#8220;mix with the world&#8221; and &#8221;often receive people of business at their own hours&#8221;, but one idea I really liked was the first thing he had on the schedule: ask yourself &#8220;what good shall I do this day?&#8221;</p>
<p>This is basically the creation of a to-do list for the day. Big deal. I&#8217;ve been writing to-do lists constantly for 4 years. But what I really liked about this notion was the phrasing and the ritual. I typically write a to-do list only when I feel overwhelmed, to help add order to my life. But Franklin&#8217;s outlook is not &#8220;make a to-do list when you feel overwhelmed&#8221; it is, every day consider what good you will do. In addition he sugests every night evaluate the good you&#8217;ve done that day.</p>
<div class="wp-caption alignright" style="width: 203px"><a href="http://amzn.to/hi7y1R"><img title="Small Moleskine Journal" src="http://g-ecx.images-amazon.com/images/G/01/ciu/aa/e9/a4cf92c008a0e8c9492fb010.L.jpg" alt="Small Moleskine Journal" width="193" height="169" /></a><p class="wp-caption-text">Small Moleskine Journal</p></div>
<p>So, in an effort to be more like one of my role models, I&#8217;m moving my to-do list from index cards, that I quickly discard, to a more permanent <a href="http://amzn.to/hbHvgP" target="_blank">small paperback Moleskine</a>, that I&#8217;ll cary in my pocket. By keeping my daily to-dos together in a book, I&#8217;ll be able to flip back on previous days to find items I&#8217;ve forgotten about or neglected. And, at the beginning of everyday, instead of writing &#8220;to-do,&#8221; I will write &#8220;what good shall I do this day?&#8221; I hope that by writing this it will put me in the frame of mind to not only consider my daily minutiae, but also what I can do that is truly good.</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=629&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/what-good-shall-i-do-this-day/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to create a Twitter account that tweets your DonorsChoose search criteria</title>
		<link>http://dustyreagan.com/how-to-create-a-twitter-account-that-tweets-your-donorschoose-search-criteria/</link>
		<comments>http://dustyreagan.com/how-to-create-a-twitter-account-that-tweets-your-donorschoose-search-criteria/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 02:28:43 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=617</guid>
		<description><![CDATA[One of my favorite non-profits is DonorsChoose.org. For those that aren&#8217;t familiar with DonorsChoose.org, It&#8217;s a website that allows teachers to request items they need for their class that their school hasn&#8217;t budgeted for. Depending on the wealth of the &#8230; <a href="http://dustyreagan.com/how-to-create-a-twitter-account-that-tweets-your-donorschoose-search-criteria/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my favorite non-profits is <a href="http://DonorsChoose.org">DonorsChoose.org</a>. For those that aren&#8217;t familiar with DonorsChoose.org, It&#8217;s a website that allows teachers to request items they need for their class that their school hasn&#8217;t budgeted for. Depending on the wealth of the school these items could range from books to iPads. As a donor you can choose which projects to donate money to. You might choose to donate to classes in your area, or maybe based on the subject being taught, or the need of the class.</p>
<p>I prefer to donate to classes in Austin, but I also like to search for projects that are only a few bucks from completion and finish them. To aid my effort in finding projects that are near completion I created a Twitter account, called @<a href="http://twitter.com/AlmostCompleted" target="_blank">AlmostCompleted</a>, that tweets when it finds a project that needs less than $20. I have Twitter send these tweet to my phone via SMS so I know about it immediately. Why? Just for fun. I can&#8217;t afford to complete every project that needs less than $20, but you have to be fast if you find a project near completion that you want to donate to.</p>
<p>Creating this Twitter account was very simple. I&#8217;ll detail the steps here so you can create an account with your own search criteria. For example, you could create an account that only tweets project in your state that need less than $20. Here&#8217;s how it&#8217;s done.</p>
<ol>
<li>Create a new Twitter account.</li>
<li>Go to the <a href="http://www.donorschoose.org/donors/search.html?max=50" target="_blank">DonorsChoose.org projects listing page</a> and use the filters on the right hand sidebar to find the projects you&#8217;d like to tweet about.</li>
<li>Once you&#8217;ve got your search criteria figured out, look at bottom of the project listings. On the left hand side you&#8217;ll see a drop down menu that says &#8220;Add to your website or feedreader.&#8221; Click on that drop down menu and select &#8220;RSS 2.0.&#8221;</li>
<li>A new tab will open up with an RSS feed of projects that meet your search criteria. Copy the URL of this RSS feed found in your browser&#8217;s address bar.</li>
<li>Next you must create a <a href="http://feedburner.com" target="_blank">FeedBurner.com</a> account.</li>
<li>After you have a FeedBurner account, login and where it says &#8220;Burn a feed right this instant. Type your blog or feed address here:&#8221; put your RSS feed you copied in step 4.</li>
<li>Next, in FeedBurner, go to the &#8220;Publicize&#8221; tab and select &#8220;Socialize&#8221; found in the left hand column.</li>
<li>In the &#8220;Socialize&#8221; section you can connect the Twitter account you created in step 1. In the options, for &#8220;Post content,&#8221; you&#8217;ll probably want to select &#8220;Title and Body,&#8221; and you&#8217;ll definitely want to make sure you checkmark &#8220;Include link.&#8221; Other than that, you&#8217;ll can play with the other options however you&#8217;d like.</li>
<li>Finally click the &#8220;Save&#8221; button in the bottom left hand of &#8220;Socialize&#8221; section.</li>
<li>That&#8217;s it! You&#8217;re Twitter account should Tweet every 30 minutes or so if there are new projects that meet your search criteria on DonorsChoose.org.</li>
</ol>
<p>In FeedBurner you might also want to turn activate &#8220;PingShot.&#8221; I understand that should make your Tweets update faster, but I&#8217;m not sure how well it actually works. To activate &#8220;PingShot&#8221; under the &#8220;Publicize&#8221; tab, select &#8220;PingShot&#8221; found in the left hand column, then click &#8220;Activate.&#8221; That&#8217;s it! Enjoy!</p>
<p>Please give @<a href="http://twitter.com/AlmostCompleted" target="_blank">AlmostCompleted</a> a shout out on the Twitter! <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=617&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-create-a-twitter-account-that-tweets-your-donorschoose-search-criteria/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Life-hacking Productivity Tip #1: You&#8217;re gonna&#8217; die.</title>
		<link>http://dustyreagan.com/life-hacking-productivity-tip-1-youre-gonna-die/</link>
		<comments>http://dustyreagan.com/life-hacking-productivity-tip-1-youre-gonna-die/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 19:54:17 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[Work & Business]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=424</guid>
		<description><![CDATA[Yes my friends, it&#8217;s true. You&#8217;re gonna&#8217; die. This is my #1 productivity tip. Don&#8217;t forget, that someday, maybe tomorrow, you&#8217;re gonna&#8217; die. How does this help productivity? Remember all those things you&#8217;ve been planning on doing. You better do &#8230; <a href="http://dustyreagan.com/life-hacking-productivity-tip-1-youre-gonna-die/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yes my friends, it&#8217;s true. You&#8217;re gonna&#8217; die. This is my #1 productivity tip. Don&#8217;t forget, that someday, maybe tomorrow, you&#8217;re gonna&#8217; die. How does this help productivity? Remember all those things you&#8217;ve been planning on doing. You better do them&#8230; soon, because you&#8217;re gonna&#8217; die.</p>
<p>Not only is remembering that you&#8217;re gonna&#8217; die (and possibly soon) a good productivity tip, it&#8217;s also great for work life balance. When you think about the fact that you will die, you suddenly have a good sense of priority. Naturally family and friends come to mind first, but work is important too if you love what you do. For example, I&#8217;m a programmer and entrepreneur. I make stuff. How does this tip help me? I release my products early and often. Why? Because I might die tomorrow.</p>
<p>Thinking about death can be dark, and if you think about it too much you&#8217;ll make yourself depressed, or possibly find yourself in a religious frenzy. But by remembering your mortality, you&#8217;ll have the motivation to really &#8220;get things done,&#8221; the things that are most important to you.</p>
<p>To quote William Shatner, &#8220;Live life like you&#8217;re gonna&#8217; die, because you&#8217;re gonna&#8217;.&#8221;</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/h9eQ8_T1ytU?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/h9eQ8_T1ytU?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=424&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/life-hacking-productivity-tip-1-youre-gonna-die/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>On Strategic Life Goals</title>
		<link>http://dustyreagan.com/on-strategic-life-goals/</link>
		<comments>http://dustyreagan.com/on-strategic-life-goals/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 22:57:14 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=337</guid>
		<description><![CDATA[Strategic life goals are those fuzzy goals that are hard to quantify, like &#8220;better humanity&#8221; and &#8220;create a legacy.&#8221; They&#8217;re your purpose in life. Everyone&#8217;s goals are different, and they may change overtime. Some folks even choose not to have &#8230; <a href="http://dustyreagan.com/on-strategic-life-goals/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Strategic life goals are those fuzzy goals that are hard to quantify, like &#8220;better humanity&#8221; and &#8220;create a legacy.&#8221; They&#8217;re your purpose in life. Everyone&#8217;s goals are different, and they may change overtime. Some folks even choose not to have broad overarching goals, and that&#8217;s fine. Me however, I need them. I need autonomy and I need to occupy myself on things I believe somehow matter. Goals create a road map for your life.</p>
<p>Strategic goals should not be confused with tactical goals. Tactical goals are things like &#8220;climb a mountain&#8221; whereas a strategic goal might be &#8220;experience nature to the fullest.&#8221; The tactic and act of climbing a mountain helps you achieve your broader strategic goal of experiencing nature to the fullest.</p>
<p>Everyones life goals will be different because we all have different world views, but here are some examples of broad strategic goals to get you thinking.</p>
<ul>
<li>Feed the world&#8217;s hungry</li>
<li>Become exceedingly wealthy</li>
<li>Affect peoples lives with art</li>
<li>Entertain people</li>
<li>Help people</li>
<li>Rule the world</li>
<li>Be happy</li>
</ul>
<p>You can probably think of much better examples than me, but you get the point.</p>
<p>Take the time to write down your life&#8217;s strategic goals, and reflect often on how you are achieving them. It&#8217;s easy to get caught up in the day-to-day grind and to-do lists and forget what you&#8217;re really trying to achieve.</p>
<p>In my attempt to measure my progress towards my strategic life goals, I&#8217;ve created a dashboard that attempts to mimic the behavior of unlocking achievements and leveling up in a video game. It&#8217;s certainly a work in progress, but you&#8217;re welcome to check it out on my <a href="/strategic-life-goals/">Strategic Life Goals</a> page.</p>
<p>What are your goals? How do you measure your success in achieving them?</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=337&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/on-strategic-life-goals/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The Programming Women&#8217;s Dress Code</title>
		<link>http://dustyreagan.com/the-programming-womens-dress-code/</link>
		<comments>http://dustyreagan.com/the-programming-womens-dress-code/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 19:13:54 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Computer History]]></category>
		<category><![CDATA[Random Thoughts & Going Ons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=225</guid>
		<description><![CDATA[Inspired by The Programmer Dress Code, and a lady friend of mine in the field of computing, I present the programming women&#8217;s dress code. Here is a list of seven famous women programmers and their pictures to illustrate their style of fashion. &#8230; <a href="http://dustyreagan.com/the-programming-womens-dress-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a href="http://www.codethinked.com/post/2007/12/The-Programmer-Dress-Code.aspx" target="_blank">The Programmer Dress Code</a>, and a lady friend of mine in the field of computing, I present the programming women&#8217;s dress code.</p>
<p>Here is a list of seven famous women programmers and their pictures to illustrate their style of fashion.</p>
<h2><a href="http://en.wikipedia.org/wiki/Ada_Lovelace" target="_blank">Ada Lovelace</a></h2>
<div class="wp-caption alignleft" style="width: 210px"><a href="http://en.wikipedia.org/wiki/Ada_Lovelace" target="_blank"><img title="Ada Lovelace" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/Ada_Lovelace.jpg" alt="Ada Lovelace" width="200" height="318" /></a><p class="wp-caption-text">Ada Lovelace</p></div>
<p>The only child of <a title="George Gordon Byron, 6th Baron Byron" href="http://en.wikipedia.org/wiki/George_Gordon_Byron,_6th_Baron_Byron" target="_blank">Lord Byron</a>, Ada Lovelace was born in London in 1815. She wrote an algorithm to compute <a title="Bernoulli number" href="http://en.wikipedia.org/wiki/Bernoulli_number">Bernoulli numbers</a> using <a title="Charles Babbage" href="http://en.wikipedia.org/wiki/Charles_Babbage" target="_blank">Charles Babbage</a>&#8216;s mechanical computer, the <a title="Analytical engine" href="http://en.wikipedia.org/wiki/Analytical_engine" target="_blank">analytical engine</a>. This makes her the world&#8217;s first computer programmer. The programming language <a href="http://en.wikipedia.org/wiki/Ada_(programming_language)" target="_blank">Ada</a> is named after her.</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Adele_Goldberg_(computer_scientist)" target="_blank">Adele Goldberg</a></span></p>
<div class="wp-caption alignleft" style="width: 310px"><a href="http://en.wikipedia.org/wiki/Adele_Goldberg_(computer_scientist)" target="_blank"><img class=" " title="Adele Goldberg" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/Adele_Goldberg.jpg" alt="Adele Goldberg" width="300" height="257" /></a><p class="wp-caption-text">Adele Goldberg</p></div>
<p>Adele Goldberg wrote several books on <a title="Smalltalk-80" href="http://en.wikipedia.org/wiki/Smalltalk-80" target="_blank">Smalltalk-80</a>. In the 70&#8242;s Adele worked on the <a title="Xerox Alto" href="http://en.wikipedia.org/wiki/Xerox_Alto" target="_blank">Xerox Alto</a>, the first computers to have a GUI and use a desktop metaphor.</p>
<p>Steve Jobs requested to see a demo of the Xerox Alto and Adele refused to show him. Her superiors at Xerox ordered her to show Jobs a demo, and naturally Apple copied all of their best ideas.</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Erna_Schneider_Hoover" target="_blank">Erna Schneider Hoover</a></span></p>
<div class="wp-caption alignleft" style="width: 130px"><a href="http://en.wikipedia.org/wiki/Erna_Schneider_Hoover" target="_blank"><img class=" " title="Erna Hoover" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/Erna_Hoover.jpg" alt="Erna Hoover" width="120" height="161" /></a><p class="wp-caption-text">Erna Hoover</p></div>
<p>Erna invented the computerized telephone traffic switching system at Bell Labs in the 70s. It was one of the first software patents ever.</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Mary_Lou_Jepsen" target="_blank">Mary Lou Jepsen</a></span></p>
<div class="wp-caption alignleft" style="width: 270px"><a href="http://en.wikipedia.org/wiki/Mary_Lou_Jepsen" target="_blank"><img title="Mary Lou Jepsen" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/mary_lou_jepsen.jpg" alt="Mary Lou Jepsen" width="260" height="320" /></a><p class="wp-caption-text">Mary Lou Jepsen</p></div>
<p>Mary was the founding CTO of the <a href="http://en.wikipedia.org/wiki/One_Laptop_per_Child" target="_blank">One Laptop Per Child</a> (OLPC) project. She invented the laptop&#8217;s sunlight-readable display technology and co-invented its ultra-low power management system.</p>
<p>She left OLPC in 2008 to found her for profit company <a href="http://en.wikipedia.org/wiki/Pixel_Qi" target="_blank">Pixel Qi</a> which focuses on display technologies.</p>
<p>Mary is in the 2008 &#8220;<a href="http://www.time.com/time/specials/2007/article/0,28804,1733748_1733754_1736211,00.html" target="_blank">TIME 100</a>.&#8221;</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Shafi_Goldwasser" target="_blank">Shafi Goldwasser</a></span></p>
<div class="wp-caption alignleft" style="width: 190px"><a href="http://en.wikipedia.org/wiki/Shafi_Goldwasser" target="_blank"><img class="  " title="Shafi Goldwasser" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/goldwasser.jpg" alt="Shafi Goldwasser" width="180" height="180" /></a><p class="wp-caption-text">Shafi Goldwasser</p></div>
<p>Shafi is a professor at MIT and the <a title="Weizmann Institute of Science" href="http://en.wikipedia.org/wiki/Weizmann_Institute_of_Science" target="_blank">Weizmann Institute of Science</a> where she researches <a title="Computational complexity theory" href="http://en.wikipedia.org/wiki/Computational_complexity_theory">computational complexity theory</a>, <a title="Cryptography" href="http://en.wikipedia.org/wiki/Cryptography">cryptography</a> and <a title="Computational number theory" href="http://en.wikipedia.org/wiki/Computational_number_theory">computational number theory</a>. She&#8217;s won two prestigeous <a title="Gödel Prize" href="http://en.wikipedia.org/wiki/G%C3%B6del_Prize">Gödel Prize</a> awards on her work in <a title="Theoretical computer science" href="http://en.wikipedia.org/wiki/Theoretical_computer_science">theoretical computer science</a>. I can&#8217;t even begin to understand what this means in English, but it sounds impressive doesn&#8217;t it? :p</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Jeri_Ellsworth" target="_blank">Jeri Ellsworth</a></span></p>
<div class="wp-caption alignleft" style="width: 235px"><a href="http://en.wikipedia.org/wiki/Jeri_Ellsworth" target="_blank"><img class=" " title="Jeri Ellsworth" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/Jeri_Ellsworth.jpg" alt="Jeri Ellsworth" width="225" height="201" /></a><p class="wp-caption-text">Jeri Ellsworth</p></div>
<p>Jeri is a self taught chip designer and hacker extraordinaire. Remember Christmas 2004 when all the shopping malls had those joysticks that plugged directly into your TV loaded with tons of <a title="Commodore 64" href="http://en.wikipedia.org/wiki/Commodore_64" target="_blank">Commodore 64</a> games? You can thank Jeri for that. The <a href="http://en.wikipedia.org/wiki/C64_Direct-to-TV" target="_blank">C64 Direct-to-TV</a> is her creation.</p>
<hr /><span style="font-size: 23px; color: #000000; line-height: 35px;"><a href="http://en.wikipedia.org/wiki/Grace_Hopper" target="_blank">&#8220;Amazing Grace&#8221; Hopper</a></span></p>
<div class="wp-caption alignleft" style="width: 210px"><a href="http://en.wikipedia.org/wiki/Grace_Hopper" target="_blank"><img title="Grace Hopper" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/GraceHopper.jpg" alt="Grace Hopper" width="200" height="250" /></a><p class="wp-caption-text">Grace Hopper</p></div>
<p>I saved my favorite for last. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Rear Admiral Grace Hopper (nicknamed &#8220;Amazing Grace&#8221;) served in the United States Navy for over 40 years and was awarded the highest non-combat award possible when she retired. With a masters in mathematics and physics from Yale university, Grace developed the first <a href="http://en.wikipedia.org/wiki/Compiler">compiler</a>, and conceptualized machine-independent programming languages, ala <a href="http://en.wikipedia.org/wiki/COBOL" target="_blank">COBOL</a>. Grace is sometimes called &#8220;the mother of COBOL.&#8221;</p>
<p>You&#8217;ve probably heard the old story of how a moth got caught in one of those old massive computers, causing it to crash. Grace remembers that story, she was there! She&#8217;s the one that popularized the phrase &#8220;debugging.&#8221;</p>
<div class="wp-caption alignleft" style="width: 210px"><a href="http://en.wikipedia.org/wiki/Grace_Hopper" target="_blank"><img title="Grace Hopper" src="http://c1878262.cdn.cloudfiles.rackspacecloud.com/Grace_Hopper.jpg" alt="Grace Hopper" width="200" height="234" /></a><p class="wp-caption-text">Grace Hopper</p></div>
<p>Grace Hooper is also responsible for one of my most frequently used quotes, &#8220;It&#8217;s easier to ask forgiveness than it is to get permission.&#8221;</p>
<p>And if you&#8217;re still not impressed, the US Navy named the destroyer ship <a href="http://en.wikipedia.org/wiki/USS_Hopper_(DDG-70)" target="_blank">USS Hopper (DDG-70)</a> after her.</p>
<p>The majority of Grace&#8217;s retirement was spent speaking and lecturing about technology at computer events, where she always wore her full military dress.</p>
<p>Grace is kind of my hero.</p>
<hr />So, what have we learned about the woman programmer&#8217;s dress code? Unlike the men&#8217;s dress code, beards are not in fashion, and long hair is optional. Fine Victorian era gowns are in, as are military uniforms. But, with the exception of a rare few, it seems that neither male nor female programmers give a rat&#8217;s ass about fashion.</p>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=225&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/the-programming-womens-dress-code/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Why I’ll never set foot in a Star Trek transporter</title>
		<link>http://dustyreagan.com/star-trek-transporter/</link>
		<comments>http://dustyreagan.com/star-trek-transporter/#comments</comments>
		<pubDate>Sun, 30 May 2010 21:21:31 +0000</pubDate>
		<dc:creator>Dusty Reagan</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[alt]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=201</guid>
		<description><![CDATA[Transporter software snippet: $dusty = new Person($attributes, $experiences, $startLocation); $dusty = transport($dusty, $newLocation) function transport($person, $newLocation) { return new Person($person-&#62;attributes, $person-&#62;experiences, $newLocation); }]]></description>
			<content:encoded><![CDATA[<p>Transporter software snippet:</p>
<pre>$dusty = new Person($attributes, $experiences, $startLocation);

$dusty = transport($dusty, $newLocation)

function transport($person, $newLocation)
{
   return new Person($person-&gt;attributes, $person-&gt;experiences, $newLocation);
}</pre>
<img src="http://dustyreagan.com/?ak_action=api_record_view&id=201&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/star-trek-transporter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

