<?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>Hashbrown on the Mic</title>
	<atom:link href="http://hashbrownonthemic.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hashbrownonthemic.com</link>
	<description>Riffs from an overheated mind</description>
	<lastBuildDate>Sun, 23 Aug 2009 17:56:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Java Concurrency For Dummies: Pt 1 &#8211; The basics</title>
		<link>http://hashbrownonthemic.com/2009/07/31/java-concurrency-for-dummies-pt-1-the-basics/</link>
		<comments>http://hashbrownonthemic.com/2009/07/31/java-concurrency-for-dummies-pt-1-the-basics/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 03:43:27 +0000</pubDate>
		<dc:creator>hashbrown</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[concurrency]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://hashbrownonthemic.com/?p=209</guid>
		<description><![CDATA[During my recent week at the JavaOne conference, I attended several sessions dealing with issues of concurrency in programming.  What started as a cursory interest, turned into a strong desire to really understand these problems at a deeper level.  But I&#8217;m still really a noob when it comes to this stuff, so I [...]]]></description>
			<content:encoded><![CDATA[<p>During my recent week at the JavaOne conference, I attended several sessions dealing with issues of concurrency in programming.  What started as a cursory interest, turned into a strong desire to really understand these problems at a deeper level.  But I&#8217;m still really a noob when it comes to this stuff, so I figure this is a great time to try to explain it to other beginners.</p>
<p>Ok, let&#8217;s start with the basics, what is concurrency and why should you care?  Well according to <a href="http://en.wikipedia.org/wiki/Concurrency_(computer_science)">Wikipedia</a> concurrency is </p>
<blockquote><p>a property of systems in which several computations are executing simultaneously, and potentially interacting with each other. The computations may be executing on multiple cores in the same chip, preemptively time-shared threads on the same processor, or executed on physically separated processors.</p></blockquote>
<p>Unless you&#8217;re writing applications that only have a few simultaneous users, chances are you will use the threading features of java to try and take advantage of the performance benefits of asynchronous processing.  Even if you are writing a simple MVC style web app, that servlet container is going to be multi-threaded and you could encounter concurrency issues in your servlet code.  The problem is, when we&#8217;re coding our app, it&#8217;s only ever exercised in a single-user scenario.  And you can&#8217;t really write unit tests to check the behavior of multi-threaded areas of your code.  Therefore, concurrency issues tend to not be identified during testing.  Usually they appear as strange, random bugs during periods of heavy load, and cannot be reliably reproduced.  Awesome.  I love those.</p>
<p>So how do we identify the areas of our application that are susceptible to concurrency issues, and how do we code for them?  Those are some pretty tough questions, I&#8217;ve found.  Maybe by the end of this series we&#8217;ll have some answers.  In the simplest of terms, managing concurrency means managing the shared state in your application, more specifically, <em>mutable shared state</em>.  That really means any instance or static class level fields that are not declared as final.  (There are some nuances to the use of the final keyword, but let&#8217;s keep it easy for now).<br />
To control concurrency issues, follow 3 rules:</p>
<ul>
<li>Don&#8217;t share state across threads.  This is done by encapsulating your state.  In the simplest example, this means that class fields are private and access is limited to one or two methods.  This will make it easier to create code that is thread-safe.</li>
<li>Make your state immutable.  If the value of your fields cannot be changed, you are already thread-safe!  Consider exposing read-only versions of your objects when possible.</li>
<li>Finally, synchronize access.  Only allow a single thread to access your state at any given time.  Most concurrency discussion centers around locking and synchronization. </li>
</ul>
<p>What does it mean to synchronize access?   Synchronization is about controlling access to state and is handled primarily through locks.  Proper synchronization guarantees 2 things:</p>
<ul>
<li>Mutual Exclusion &#8211; this guarantees that only one thread can hold a given lock, and therefore only one thread has access to the locked state(data).</li>
<li>Visibility &#8211; this guarantees that as a thread releases a lock, any changes made to shared variables, the mutable shared state, will be immediately seen by all threads, most importantly the next thread acquiring the lock.  This ensures that no threads see stale data.</li>
</ul>
<p>So, concurrent programming in a nutshell:</p>
<blockquote><p>Limit the mutable state (data that can be changed) in your objects.  When allowing others to access and change your objects state, control that state using proper synchronization.</p></blockquote>
<p>So that&#8217;s the absolute basics on concurrency, but what about Java?<br />
The fundamental power of java is its memory model and the threading facilities that are built into the language.  Along with thread support are many mechanisms to correctly handle concurrent operations.  And this will be the subject of the rest of this blog series.  Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://hashbrownonthemic.com/2009/07/31/java-concurrency-for-dummies-pt-1-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Interview Puzzler</title>
		<link>http://hashbrownonthemic.com/2009/06/18/java-interview-puzzler/</link>
		<comments>http://hashbrownonthemic.com/2009/06/18/java-interview-puzzler/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 23:34:30 +0000</pubDate>
		<dc:creator>hashbrown</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[puzzler]]></category>

		<guid isPermaLink="false">http://hashbrownonthemic.com/?p=202</guid>
		<description><![CDATA[This is a puzzler we created at my work to use as an interview problem.  I had a fun time taking it myself, and got it wrong the first time!  It was designed to mimic some bad legacy code you might encounter when working on a large aging system, that has passed through [...]]]></description>
			<content:encoded><![CDATA[<p>This is a puzzler we created at my work to use as an interview problem.  I had a fun time taking it myself, and got it wrong the first time!  It was designed to mimic some bad legacy code you might encounter when working on a large aging system, that has passed through many hands.  Terrible coding practices, no javadocs or comments, etc.  You are tasked to figure out what the heck it does.<br />
First &#8211; does it compile?  If not, how do you fix it?<br />
Second &#8211; If it compiles, what is the output?</p>
<p>I&#8217;ll answer questions and post the solution in the comments.</p>
<pre class="brush: java;">
package crazy;

public class Timing extends R {
    public static final Integer t = new Integer(&quot;4&quot;);

    public static void main(String[] args) {
        Timing t = new Timing(11);

        System.out.print(t.foo);
        bat(t);
    }

    void fob() { fod(); }

    public Timing(int value) {

        super();
        foo = foo % value;
        bar();
    }

    static {
        System.out.print(&quot;6&quot;);

    }

    private void bar() {
        new Baz().bar(5);
        tr = &quot;2&quot;;
    }

    private int foo = 25;

    static void r() { System.out.println(&quot;1&quot;); }
}

abstract class R {

    String tr = &quot;9&quot;;

    static void bat(R r) {
        r.fob();
        System.out.print(r.tr);

    }

    private int negate(int bam) {
        return bam * -1;
    }

    public R() {
        System.out.print(&quot;7&quot;);
    }

    void fod() { System.out.print((int)Math.floor(.99)); }

    protected final int t() {
        return 5;
    }

    class Baz {

        void bar(int fob) {
            if (fob == 9)
                System.out.print(String.valueOf(fob++));

                System.out.print(String.valueOf(negate(fob++)));
            if (fob == 5)
                System.out.print(String.valueOf(fob+=2));

        }
    }

    static {
        System.out.print(&quot;8&quot;);
    }

    abstract void fob();

}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hashbrownonthemic.com/2009/06/18/java-interview-puzzler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Week At JavaOne</title>
		<link>http://hashbrownonthemic.com/2009/06/05/my-week-at-javaone/</link>
		<comments>http://hashbrownonthemic.com/2009/06/05/my-week-at-javaone/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 05:44:03 +0000</pubDate>
		<dc:creator>hashbrown</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[javaone]]></category>

		<guid isPermaLink="false">http://hashbrownonthemic.com/?p=185</guid>
		<description><![CDATA[I just returned home from a week in San Francisco at the JavaOne conference, I mean literally like 2 hours ago.  This is the first time I&#8217;ve been to any conference like this, and I had a great time!  The scale of this thing is really impressive, I mean it&#8217;s huge.  The [...]]]></description>
			<content:encoded><![CDATA[<p>I just returned home from a week in San Francisco at the <a href="http://java.sun.com/javaone/">JavaOne</a> conference, I mean literally like 2 hours ago.  This is the first time I&#8217;ve been to any conference like this, and I had a great time!  The scale of this thing is really impressive, I mean it&#8217;s huge.  The planning and logistics that go into putting on a conference of this size just amazes me.  It felt like they really went all out, all the small details were handled, and you could see the effort they put into making it a special experience.</p>
<p>I had originally registered for tech sessions Tuesday &#8211; Thursday, but Thursday night I just wasn&#8217;t ready for it to end, and ended up cramming 2 more sessions in on Friday morning before jumping in a cab for the airport.  I literally was in a cab 15 minutes after my final session.<br />
Overall, I attended 19 technical sessions over 3 1/2 days, plus the general session keynotes.</p>
<p>I attended sessions on the different dynamic scripting languages that run on the JVM, many on concurrency, and then some on how to use those dynamic languages to solve concurrency problems.  I had sessions on <a href="http://www.springsource.com/">Spring</a>, and <a href="http://jcp.org/aboutJava/communityprocess/final/jsr311/index.html">REST using JAX-RS</a>, sessions on unit testing and some of the tools available.  I had a session on defective java with the man behind <a href="http://findbugs.sourceforge.net/">FindBugs</a>, and a session on <a href="http://www.amazon.com/gp/product/0321356683?ie=UTF8&#038;tag=insightgalact-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0321356683">Effective Java (2nd Edition) </a><img src="http://www.assoc-amazon.com/e/ir?t=insightgalact-20&#038;l=as2&#038;o=1&#038;a=0321356683" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
  with one of the absolute rock-stars of the java world, Joshua Bloch.  My session on Spring 3.0 was given by THE man behind Spring, Rod Johnson.  My sessions on <a href="http://liftweb.net/">Lift</a> and <a href="http://clojure.org/">Clojure</a> were both given by the creators of the language, and the session on JAX-RS was given by the writers of the specification.  When I went to hear about how the <a href="http://code.google.com/appengine/docs/java/overview.html">Google App Engine</a> now supports java, it was directly from the 3 guys responsible for it.  I mean, talk about getting it from the source!  That google session led to a very late night with my co-worker as we sat in the bar playing with the new sdk until 1am! <span id="more-185"></span> Of course, the highlight was a late night session with the <a href="http://javaposse.com/">Java Posse</a>, the whole reason I wanted to go in the first place.  Even at the conference party on Thursday, when the band was covering Africa and Rosanna, it was the actual lead singer from Toto singing on stage!<br />
Of course, it was some of the non-session encounters that made the conference even better.  I randomly ran into the Java Posse guys in the hall and got a few words with them.  The host of the whole conference, Chris Mellisinos, happened to be sitting next to me in the hotel bar one night, and so I got to chat with him.  Sat next to the author of JAX-RS during a session on the new <a href="https://launchpad.net/drizzle">Drizzle</a> database, and then was honored to talk for a bit with Joshua Bloch when he stayed hours after his book signing just to hang with everyone.</p>
<p>If you want a bigger perspective on the conference, search twitter for the <a href="http://search.twitter.com/search?q=javaone">#javaone hashtag</a>, and follow me, <a href="http://twitter.com/hashbrown1">@hashbrown1</a>, as I was tweeting all week (when I could get a good connection).</p>
<p>So obviously I have tons of notes spread between my computer and a notepad (after my battery would die), and so I hope to be blogging in more detail about some of the things I learned.  Don&#8217;t look for it too soon though, I need to spend a few days in the yard.</p>
<p>-HB</p>
]]></content:encoded>
			<wfw:commentRss>http://hashbrownonthemic.com/2009/06/05/my-week-at-javaone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Rails, MySQL on Mac Leopard</title>
		<link>http://hashbrownonthemic.com/2009/04/19/installing-rails-mysql-on-mac-leopard/</link>
		<comments>http://hashbrownonthemic.com/2009/04/19/installing-rails-mysql-on-mac-leopard/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 00:25:32 +0000</pubDate>
		<dc:creator>hashbrown</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[ruby/rails]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://hashbrownonthemic.com/?p=164</guid>
		<description><![CDATA[Update: Some comments were mysteriously deleted, sorry if yours is not appearing, thanks for commenting though!  One person responded that they needed to install the XCode tools first.  I think they were building or upgrading ruby (which I didn&#8217;t do). There are certainly no issues with doing this step first, I just didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update: Some comments were mysteriously deleted, sorry if yours is not appearing, thanks for commenting though!  One person responded that they needed to install the XCode tools first.  I think they were building or upgrading ruby (which I didn&#8217;t do). There are certainly no issues with doing this step first, I just didn&#8217;t need to until I installed mysql.</em></p>
<p>I just recently finished tackling this oft attempted-failed-blogged-fixed(but not for you) ritual, getting a working ROR sandbox with mysql.<br />
Many others have blogged about this, trust me I spent many days reading them, and the approaches and results are all over the map.<br />
Sorry to say, this post is not the be-all end-all solution that other blogs claim.  It&#8217;s just what I did, posted mainly for my own documentation.</p>
<p>First, my requirements.  My web host, <a href="http://www.site5.com">Site5</a>, currently has installed Ruby 1.8.7 and Rails 2.2, plus MySQL 5.1.x.  So I wanted my dev environment to be close to what my deployment environment will be.<br />
I prefer to understand as much about my dev environment as I can, I want to know how things work, so that I can control them.  So magic out-of-the-box solutions generally aren&#8217;t favored.<br />
However, I&#8217;m generally the person that does it the hard way, and also runs into all those problems that people post about on the web, it never just works.  And I&#8217;ve got a lot of grokking ahead of me as it is, so taking the easiest approach migh not be bad this time.</p>
<p>After researching this, I boiled down the options to 3 popular approaches:</p>
<ol>
<li> Use the default mac installation of ruby, upgrade the rails gem and install mysql</li>
<li> Use <a href="http://paulsturgess.co.uk/articles/show/46-using-macportsdarwinports-to-install-ruby-on-rails-mysql-subversion-capistrano-and-mongrel-on-mac-os-x">MacPorts</a>, which provides a pre-packaged install</li>
<li> Build an entirely new environment from scratch, as detailed in the oft-cited <a href="http://hivelogic.com/articles/view/ruby-rails-leopard">Hivelogic</a> article.
</ol>
<p>Option 1 seemed to be the easiest, but Leopard comes with Ruby 1.8.6 installed, I will use 1.8.7 in production, probably not a deal breaker.  Also there is a potential that a future OS update could break something in my existing sandbox.</p>
<p>Option 2 gives me the magic all-in-one solution, but I always worry that I&#8217;m putting myself in their box.  Plus the community seems pretty split on macports in general.</p>
<p>Option 3 gives me total control, and the best chance for everything going to hell.</p>
<p>In the end I decided on option 1, use the existing mac install and upgrade rails.  I figured I start there, the other 2 options are still open to me if I find its needed.</p>
<p><em>&#8220;Finally, just get to it&#8221;</em>.  Surprisingly, everything worked very well, here&#8217;s how I did it.</p>
<p>In order to upgrade to 2.x rails gem, the gems package manager must be updated.</p>
<pre>
$ sudo gem install rubygems-update
$ sudo update_rubygems
</pre>
<p>Now  update the rails gem.</p>
<pre>$ sudo gem update
$ sudo gem update --system
$ sudo gem install rails</pre>
<p>Now you can check your versions. </p>
<pre>$ ruby -v
ruby 1.8.6 (2008-03-03 patchlevel 114) [universal-darwin9.0]
$ rails -v
Rails 2.3.2</pre>
<p>Ok, time install mysql.  First thing is to make sure Xcode tools are installed.</p>
<p>If you have your Leopard installation DVD, load it now. If you don’t have an installation DVD, you can download the Xcode 3.0 tools at Apple’s Developer Web Site. (Note: Apple developer accounts are free.)</p>
<p>Open the Optional Installs folder, and then the Xcode Tools folder. Double click on the XcodeTools.mpkg installer and select a standard install. This will take a few minutes to run.</p>
<p>Download MySQL from <a href="http://dev.mysql.com/downloads/mysql/5.1.html#macosx-dmg">their site</a>.  Make sure to get the 32-bit mac version.<br />
This a native mac application and is installed like any mac app.</p>
<p>Once mysql has been installed, the mysql gem must be installed.</p>
<p>There seem to be 2 secrets to make it work.  First you point the gem to the mysql client config folder, instead of the mysql home.  Second, if on an intel machine, provide the env ARCHTYPE flag.</p>
<pre>$sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-
config=/usr/local/mysql/bin/mysql_config </pre>
<p>ok, and that&#8217;s it.  Now to make sure everything is wired correctly, I just created a super simple rails app, following <a href="http://guides.rubyonrails.org/getting_started.html">this guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hashbrownonthemic.com/2009/04/19/installing-rails-mysql-on-mac-leopard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I Didn&#8217;t Switch To Macs</title>
		<link>http://hashbrownonthemic.com/2009/04/18/i-didnt-switch-to-macs/</link>
		<comments>http://hashbrownonthemic.com/2009/04/18/i-didnt-switch-to-macs/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 22:54:29 +0000</pubDate>
		<dc:creator>hashbrown</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://hashbrownonthemic.com/2009/04/18/i-didnt-switch-to-macs/</guid>
		<description><![CDATA[
But I did just buy my first one.  After a lifetime spent mastering windows, I never had a desire for a mac, and the fact that all the cool kids were getting them, made one even less desirable.
But lately I&#8217;ve wanted to get into some iphone development, and a mac is required.  Also, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://hashbrownonthemic.com/wp-content/uploads/2009/04/p4160196-300x225.jpg" alt="The New Macbook Pro" title="The New Macbook Pro" width="300" height="225" class="alignnone size-medium wp-image-161" /><br />
But I did just buy my first one.  After a lifetime spent mastering windows, I never had a desire for a mac, and the fact that all the cool kids were getting them, made one even less desirable.<br />
But lately I&#8217;ve wanted to get into some iphone development, and a mac is required.  Also, I&#8217;ve really needed to purchase a new laptop.  I&#8217;ve been using my work laptop as a personal computer for years, but it always feels borrowed.<br />
So, given that the new intel based macs do a great job of running windows as well, I swallowed my pride and bought a macbook pro.</p>
<p>Now, I&#8217;m not going to get all fanboy about this.  They do have a great aesthetic and its a pretty tight user experience, but in reality, as much as Vista has been bashed, the UI experiences aren&#8217;t that far apart.  This isn&#8217;t some mystical new experience in computing.  But I&#8217;ll save final judgment until I&#8217;ve really used it for awhile.</p>
<p>The first thing I really like about it, is that the terminal is a bash shell, no crappy ms-dos prompt.  Plus 100 for the mac.  The other thing I really love is that it seems to run MUCH cooler than my Dell, which would be burning up my lap in about an hour (yes I use a laptop on my lap).<br />
But for all the talk about how great the design and UI is, I find that I don&#8217;t like the fact that every application looks like iTunes.  It just gives it this rigid cold feeling, where every single app has to comply with the &#8220;apple way&#8221;.  No individuals in this world.<br />
I&#8217;m having a hard time adjusting to the command key vs ctrl on windows.  Also, Apple provides a Control key as well, but I don&#8217;t know what it does.  So far I use it just to control-click the track pad to enable &#8220;right-click&#8221; type features.  Also, the mac keyboard has the &#8220;fn&#8221; key where the ctrl key is on windows, so I&#8217;m constantly hitting that by mistake.  And I don&#8217;t like the key spacing on cut/paste which is cmd-c/cmd-v.  I&#8217;m just so used to doing with my pinky and index finger on windows, the cmd and c/v keys are too close together.  So I just have to get used to that I guess.<br />
But my biggest beef is the menu bar.  I&#8217;m not used to looking to the top of the screen to see the application controls, I expect them to be at the top of the application&#8217;s window. So I find myself constantly clicking around and application, trying to find a menu I&#8217;m looking for, until I final remember, &#8220;oh yeah, it&#8217;s up there&#8221;.<br />
I&#8217;m not bashing it though, just the initial perspective of new user, coming from an alternate system.<br />
We&#8217;ll see how it goes.</p>
<p>BTW &#8211; This mac does not make me cool.  I was cool long before it kids.</p>
<p>-HB</p>
]]></content:encoded>
			<wfw:commentRss>http://hashbrownonthemic.com/2009/04/18/i-didnt-switch-to-macs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fonolo Cuts Through Corporate Voicemail TreesLifehacker: Top</title>
		<link>http://lifehacker.com/5105351/fonolo-cuts-through-corporate-voicemail-treeshttp://lifehacker.com/tag/top</link>
		<comments>http://lifehacker.com/5105351/fonolo-cuts-through-corporate-voicemail-treeshttp://lifehacker.com/tag/top#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:30:00 +0000</pubDate>
		<dc:creator>Kevin Purdy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/ee396c60d618834a</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://lifehacker.com/5105351/fonolo-cuts-through-corporate-voicemail-treeshttp://lifehacker.com/tag/top/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Space Mission &#8211; Up Close and PersonalFuntasticus.com Humor &amp; Fun Blog</title>
		<link>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com</link>
		<comments>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com#comments</comments>
		<pubDate>Fri, 24 Oct 2008 01:19:00 +0000</pubDate>
		<dc:creator>(author unknown)</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/df5e6c08234955ba</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Space Mission &#8211; Up Close and PersonalFuntasticus.com Humor &amp; Fun Blog</title>
		<link>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com</link>
		<comments>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com#comments</comments>
		<pubDate>Fri, 24 Oct 2008 01:19:00 +0000</pubDate>
		<dc:creator>(author unknown)</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/df5e6c08234955ba</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://funtasticus.com/20081013/space-mission-up-close-and-personal/http://funtasticus.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lala May Have Just Built The Next Revolution In Digital MusicTechCrunch</title>
		<link>http://feedproxy.google.com/~r/Techcrunch/~3/_WyU4Eqsitw/http://www.techcrunch.com</link>
		<comments>http://feedproxy.google.com/~r/Techcrunch/~3/_WyU4Eqsitw/http://www.techcrunch.com#comments</comments>
		<pubDate>Tue, 21 Oct 2008 02:55:47 +0000</pubDate>
		<dc:creator>Jason Kincaid</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/b79e8a06a9f9a6df</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Techcrunch/~3/_WyU4Eqsitw/http://www.techcrunch.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fight Spam With A Direct Message To TwitterTechCrunch</title>
		<link>http://feedproxy.google.com/~r/Techcrunch/~3/eyWYQskgFZU/http://www.techcrunch.com</link>
		<comments>http://feedproxy.google.com/~r/Techcrunch/~3/eyWYQskgFZU/http://www.techcrunch.com#comments</comments>
		<pubDate>Tue, 07 Oct 2008 01:47:35 +0000</pubDate>
		<dc:creator>Mark Hendrickson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/517efae38a6fd51f</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Techcrunch/~3/eyWYQskgFZU/http://www.techcrunch.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
