<?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>thoughtmerge</title>
	<atom:link href="http://www.thoughtmerge.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thoughtmerge.net</link>
	<description>bringing ideas together</description>
	<lastBuildDate>Fri, 22 Apr 2011 23:48:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Jevolution</title>
		<link>http://www.thoughtmerge.net/2011/02/25/jevolution/</link>
		<comments>http://www.thoughtmerge.net/2011/02/25/jevolution/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 01:42:43 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[jevolution]]></category>
		<category><![CDATA[pet projects]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=173</guid>
		<description><![CDATA[Been working on a Java app to explore evolving systems. Links: Jevolution writeup applet page Jevolution source on github]]></description>
			<content:encoded><![CDATA[<p>Been working on a Java app to explore evolving systems.</p>
<p>Links:</p>
<ul>
<li><a href="http://thoughtmerge.net/projects/jevolution">Jevolution writeup</a></li>
<li><a href="http://thoughtmerge.net/distribution/jevolution/launch.html">applet page</a></li>
<li><a href="https://github.com/evangates/jevolution2d">Jevolution source on github</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2011/02/25/jevolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>remember to test bash aliases</title>
		<link>http://www.thoughtmerge.net/2010/08/31/remember-to-test-bash-aliases/</link>
		<comments>http://www.thoughtmerge.net/2010/08/31/remember-to-test-bash-aliases/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:48:38 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[oops]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=122</guid>
		<description><![CDATA[My linux vm reminded me of the importance of testing bash aliases before adding them to the .bash_aliases file. This was the mistake: alias local='git checkout local' The next time I opened a terminal, I received this wonderful message: bash: &#8230; <a href="http://www.thoughtmerge.net/2010/08/31/remember-to-test-bash-aliases/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My linux vm reminded me of the importance of testing bash aliases before adding them to the .bash_aliases file.</p>
<p>This was the mistake:</p>
<pre class="brush:bash">alias local='git checkout local'</pre>
<p>The next time I opened a terminal, I received this wonderful message:</p>
<pre class="brush:bash">bash: /etc/bash_completion.d/gdb: line 23: syntax error near unexpected token `('
bash: /etc/bash_completion.d/gdb: line 23: `            local path_array=( $(echo "$PATH" | sed 's/::\+/:/g;s/^:\|:$//g') )'
bash: /etc/bash_completion.d/vncviewer: line 92: syntax error near unexpected token `('
bash: /etc/bash_completion.d/vncviewer: line 92: `        local dash options=( \'</pre>
<p>I had done several other things before opening the terminal, so I didn&#8217;t immediately recognize the alias as the culprit.  The message just confused me more.  The terminal still seemed to work properly.</p>
<p>Took some time, but I narrowed it down to that alias.  Turns out that <code>local</code> is a bash builtin command and using it as an alias command is a syntax error.  The message has to do with where the .bash_alias file is included and evaluated.</p>
<p>Here&#8217;s the main point of the post:</p>
<p><strong>Always</strong> remember to test aliases before adding them to the .bash_aliases file.  Check the man pages, google it, actually type it.  I have been surprised several times by how many two- and three-letter commands that already exist while thinking of short aliases for common commands.</p>
<p>And read <a href="http://www.gnu.org/software/bash/manual/bashref.html">the bash reference manual</a>.  There will be a test on Tuesday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/08/31/remember-to-test-bash-aliases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>you can escape spaces when using ruby&#8217;s %w operator</title>
		<link>http://www.thoughtmerge.net/2010/08/22/you-can-escape-spaces-when-using-rubys-w-operator/</link>
		<comments>http://www.thoughtmerge.net/2010/08/22/you-can-escape-spaces-when-using-rubys-w-operator/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 23:17:07 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[ruby]]></category>
		<category><![CDATA[%w]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=113</guid>
		<description><![CDATA[Discovered something cool about ruby&#8217;s %w operator the other day. You can escape spaces in it. %w{there will be four\ elements} evaluates to: ['there', 'will', 'be', 'four elements'] Just a little neat tidbit I haven&#8217;t seen in any examples.]]></description>
			<content:encoded><![CDATA[<p>Discovered something cool about ruby&#8217;s %w operator the other day.  You can escape spaces in it.</p>
<pre class="brush:ruby">%w{there will be four\ elements}</pre>
<p>evaluates to:</p>
<pre class="brush:ruby">['there', 'will', 'be', 'four elements']</pre>
<p>Just a little neat tidbit I haven&#8217;t seen in any examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/08/22/you-can-escape-spaces-when-using-rubys-w-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access modifiers in C#</title>
		<link>http://www.thoughtmerge.net/2010/01/19/access-modifiers-in-c-sharp/</link>
		<comments>http://www.thoughtmerge.net/2010/01/19/access-modifiers-in-c-sharp/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 21:36:28 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[internal]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[protected]]></category>
		<category><![CDATA[protected internal]]></category>
		<category><![CDATA[public]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=81</guid>
		<description><![CDATA[Had some confusion with NHibernate and its proxy generation. It couldn&#8217;t create proxies for an item with an internal property. It told me to mark the property as protected internal. Turned out my understanding of protected internal was wrong. These &#8230; <a href="http://www.thoughtmerge.net/2010/01/19/access-modifiers-in-c-sharp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Had some confusion with NHibernate and its proxy generation.  It couldn&#8217;t create proxies for an item with an <code>internal</code> property.  It told me to mark the property as <code>protected internal</code>.  Turned out my understanding of <code>protected internal</code> was wrong.</p>
<p>These are the choices for accessibility in C#.  They are roughly in order of decreasing accessibility.  However, the internal keyword messes things up a bit.</p>
<p><code>public</code><br />
Any class in any assembly can access something with this modifier.</p>
<p><code>protected internal</code><br />
Any class in the same assembly can access this.  In other assemblies, only child classes can access this.</p>
<p><code>internal</code><br />
Only classes in the same assembly can access this.</p>
<p><code>protected</code><br />
Only child classes can access this, regardless of assembly.</p>
<p><code>private</code><br />
Can only be accessed within the class where it is defined.</p>
<p>Some posts/articles that helped:</p>
<ul>
<li><a href="http://www.gotw.ca/publications/mill18.htm">http://www.gotw.ca/publications/mill18.htm</a></li>
<li><a href="http://haacked.com/archive/2007/10/29/what-does-protected-internal-mean.aspx">http://haacked.com/archive/2007/10/29/what-does-protected-internal-mean.aspx</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/01/19/access-modifiers-in-c-sharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Additions to the list of db4o shortcomings</title>
		<link>http://www.thoughtmerge.net/2010/01/19/additions-to-the-list-of-db4o-shortcomings/</link>
		<comments>http://www.thoughtmerge.net/2010/01/19/additions-to-the-list-of-db4o-shortcomings/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 21:29:54 +0000</pubDate>
		<dc:creator>Brad Buckingham</dc:creator>
				<category><![CDATA[db4o]]></category>
		<category><![CDATA[shortcomings]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=38</guid>
		<description><![CDATA[I had initially intended this to be a comment on Evan&#8217;s previous post, but as it grew longer I thought it&#8217;d be better served as an actual post. After working with Evan on a db4o-based project for a while now, &#8230; <a href="http://www.thoughtmerge.net/2010/01/19/additions-to-the-list-of-db4o-shortcomings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>I had initially intended this to be a comment on Evan&#8217;s <a href="/2010/01/17/roadmap/">previous post</a>, but as it grew longer I thought it&#8217;d be better served as an actual post.</em></p>
<p>After working with Evan on a db4o-based project for a while now, I too have some constructive criticism for db4o.  Before I get to the criticism, though, I&#8217;d like to add that I really enjoy using db4o.</p>
<p>In contrast to db4o, we had initially tried ORM&#8217;s like NHibernate and SubSonic, but we always found ourselves back at the same spot&#8230; we weren&#8217;t actually getting anything <em>done</em>! We were either fighting with installing SQL Server (which, on one attempt blue-screened my computer and necessitated a full reinstall of Windows) or fighting with learning and/or configuring the ORM&#8217;s. Among other time sinks, we had to figure out a way to synchronize our SQL schema changes between me, Evan, our development server, and SVN. The story goes on and is exceedingly painful to add up all the hours of wasted time. It all boils down to one question: Why should you have to learn something completely unrelated to the domain of your project just to get things done!</p>
<p>The lustre of a purely object-oriented database is too strong to deny. Think about it: no more object/relational impedance mismatch! No more schema synchronization! No more battles over who&#8217;s ORM is the best! It is in these pillars of data-access where db4o shines.  Db4o tries its hardest to get out of your way and let you get on with your work!</p>
<p>My following criticism about db4o should be taken constructively: in all honesty, I <em>want</em> to use db4o and forever do away with the other DB/ORM &#8220;solutions&#8221; out there. IMHO, db4o is all about getting things done, while the other solutions are all about <a href="http://en.wikipedia.org/wiki/Parkinson's_Law_of_Triviality">picking the color of the bike shed</a>.</p>
<h3>1. db4o transactions</h3>
<p>The transactional nature of db4o is not up to par with the offerings of NHibernate, ADO.NET, etc.  I know this is like comparing apples to oranges, but I think it still holds that db4o&#8217;s transactions need a first-class presence.</p>
<h3>2. &#8220;Real&#8221; lazy loading support</h3>
<p>Without lazy loading, db4o forces you to choose a load-depth each time you run a query. If you don&#8217;t chose a load-depth then db4o uses a default value (5, I think). Either way, you must be aware of the consequences of choosing load-depth values.</p>
<p>If you choose a load-depth value that is too large, you will load more data than you&#8217;ll actually use which, in turn, negatively affects query performace. But, if you choose a load-depth value that is too small, you will not load enough data and db4o will leave any references to data beyond your load-depth value as null. Hopefully you are aware of this gotcha and have implemented null-checks throughout your data-access codebase.</p>
<p>Dealing with the load-depth problem forces the developer to be aware of intricate low-level details of their domain persistence, which no developer should ever be burdened with. Heck, isn&#8217;t this is why we&#8217;ve chosen to program in higher-level languages!</p>
<p>One of the most important reasons, if not <strong>the most important reason to do-away with load-depth</strong>, is that once you choose a value, you are tightly coupling your codebase to a magic number that you&#8217;ll need to remember to update whenever you change the structure of your domain.</p>
<p>If you choose not to tightly couple your code with load-depth values, you&#8217;ll use the default load depth. But with the risk of not loading enough data still present, you&#8217;ll still need to include null-checks. Though it is a simple stop-gap solution, using the default load-depth is definately not optimal. We need the ability to load the exactly amount of data that we&#8217;ll use: enter lazy loading.</p>
<p>Yes, I&#8217;ll admit that db4o currently offers a lazy loading solution, albeit a _very_ bad one at that! They&#8217;ve &#8220;implemented&#8221; lazy loading via a post-build process (yuck!). In my opinion, this doesn&#8217;t even constitute a viable option. If NHibernate can do lazy loading (via Castle&#8217;s DynamicProxy, or linfu) <strong>without requiring an added post-build process</strong>, so should db4o.</p>
<h3>3. Built-in change tracking</h3>
<p>This almost goes hand in hand with #2. Though Db4o makes saving a new object graph to the database very easy, updating data requires the developer be aware of details they shouldn&#8217;t be bothered with (hey, just like with load-depth!).</p>
<p>First, you have to make sure the object you are updating is loaded from db4o. You can&#8217;t just create a new instance of the object with the updated data and save it to the database: this will <em>not</em> have the effect of updating the original object, instead it will save a new object to the database! Granted, this requirement is understandable; but then again, it isn&#8217;t this requirement that I&#8217;ve got a beef with.</p>
<p>Now that you&#8217;ve made sure your object has been loaded from db4o before you begin updating it, you need to make sure that the object&#8217;s graph (i.e. references from your object to other objects) has been loaded to the correct load-depth; just because one of your object&#8217;s references is null doesn&#8217;t mean there isn&#8217;t an object referenced &#8211; it&#8217;s just that db4o might not have loaded it. If the object you&#8217;ve loaded from db4o has a null reference to an object which actually exists in the database but wasn&#8217;t loaded by db4o (due to shallow load-depth) and you replace that null reference with a new object, when you save your updated object (the one that was initially loaded from db4o) db4o will happily save the newly referenced object without complaint while silently leaving the previous instance untouched in the database. This creates what I like to call a &#8220;dangling object&#8221; because nothing points to it anymore! This problem is only worsened by the fact that you can&#8217;t (easily) load the database into a manager to look for these &#8220;dangling objects&#8221;.</p>
<p>With proper change tracking implemented, developers shouldn&#8217;t be bothered with keeping track of load-depths when updating an objects.</p>
<h3>Final thoughts</h3>
<p>Although I think db4o has some major shortcomings, I think it is a promising project.  With these items addressed, I think db4o could be a major contender in the DB/ORM space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/01/19/additions-to-the-list-of-db4o-shortcomings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RName: a grammar file based name generator</title>
		<link>http://www.thoughtmerge.net/2010/01/18/rname-a-grammar-file-based-name-generator/</link>
		<comments>http://www.thoughtmerge.net/2010/01/18/rname-a-grammar-file-based-name-generator/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 05:28:45 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[pet projects]]></category>
		<category><![CDATA[rname]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=67</guid>
		<description><![CDATA[I&#8217;ve wanted a name generator a couple times recently. The name generator I want consists of a grammar file for generating names within that grammar. The ultimate use for this will be in games. I want to be able come &#8230; <a href="http://www.thoughtmerge.net/2010/01/18/rname-a-grammar-file-based-name-generator/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve wanted a name generator a couple times recently.  The name generator I want consists of a grammar file for generating names within that grammar.</p>
<p>The ultimate use for this will be in games.  I want to be able come up with naming conventions so that I can generate internally consistent names for places, characters, and items.</p>
<p>I hacked together a hard-coded version and put it up on <a href="http://bitbucket.org">Bitbucket</a>.  I called it RName.  The project page is <a href="http://bitbucket.org/evangates/rname/">here</a>.</p>
<p>It&#8217;s very bad code right now.  I just got something up there so I would have a starting point.</p>
<p>My next steps are:</p>
<ol>
<li>spec out the grammar for the grammar files</li>
<li>get a parser for the grammar files</li>
<li>write the actual generation code</li>
<li>make a ui or console frontend</li>
</ol>
<p>Time for flashbacks to compilers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/01/18/rname-a-grammar-file-based-name-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grot: a db4o manager in WPF</title>
		<link>http://www.thoughtmerge.net/2010/01/18/grot-a-db4o-manager-in-wpf/</link>
		<comments>http://www.thoughtmerge.net/2010/01/18/grot-a-db4o-manager-in-wpf/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 04:56:07 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[db4o]]></category>
		<category><![CDATA[grot]]></category>
		<category><![CDATA[pet projects]]></category>
		<category><![CDATA[wpf]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=57</guid>
		<description><![CDATA[I posted yesterday about wanting a manager for db4o. The one currently offered by Versant (the company in charge of db4o) is not usable. It exists solely as a plug-in for Visual Studio. I could overcome this, but the plug-in &#8230; <a href="http://www.thoughtmerge.net/2010/01/18/grot-a-db4o-manager-in-wpf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I posted yesterday about wanting a manager for db4o.</p>
<p>The one currently offered by <a href="http://www.versant.com/">Versant</a> (the company in charge of db4o) is not usable.  It exists solely as a plug-in for Visual Studio.  I could overcome this, but the plug-in messes up all my Visual Studio settings.  Also, while it&#8217;s installed, I can&#8217;t fix any of those settings.</p>
<p>So I&#8217;m going to try making my own.  I want it to (in approximate order of importance):</p>
<ul>
<li>view metadata stored in a db4o file</li>
<li>view data stored in a db4o file</li>
<li>run readonly queries on a db4o file</li>
<li>edit data in a db4o file
<ul>
<li>add new instances to the db</li>
<li>edit current instances in the db</li>
<li>remove instances from the db</li>
<li>perform batch updates / deletes on instances mathching a filter</li>
</ul>
</li>
<li>manage indeces</li>
<li>attach to an opened db4o file</li>
<li>handle migrating objects to newer versions</li>
<li>intercept traffic between an application and db4o for reporting</li>
</ul>
<p>I am also going to do this as a way to learn WPF.  I&#8217;ve messed with it a big and found it interesting.  Much easier than any other windows programming frameworks I&#8217;ve looked at.</p>
<p>I shall name the project Grot.  There is nothing special about the name.  Right now the code is just a spike of me messing with WPF and db4o&#8217;s metadata.  You can find the code <a href="http://bitbucket.org/evangates/grot/">here</a>.</p>
<p>You&#8217;ll need <a href="http://mercurial.selenic.com/">mercurial</a> to work with it.  If you haven&#8217;t tried mercurial for source control, do so now.  I have really enjoyed using it and the Windows client, <a href="http://tortoisehg.bitbucket.org/">TortoiseHG</a> has been a breeze to use.  I&#8217;ve been using <a href="http://bitbucket.org/">Bitbucket</a> to host my central mercurial repositories.  The site is slick and hasn&#8217;t gotten in my way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/01/18/grot-a-db4o-manager-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roadmap</title>
		<link>http://www.thoughtmerge.net/2010/01/17/roadmap/</link>
		<comments>http://www.thoughtmerge.net/2010/01/17/roadmap/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 05:56:56 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[db4o]]></category>

		<guid isPermaLink="false">http://www.thoughtmerge.net/?p=17</guid>
		<description><![CDATA[Brad and I have been using db4o on a project for a while now, and I have some problems with it: There isn&#8217;t a usable manager for it. The plug-in for Visual Studio isn&#8217;t usable. There is no built in &#8230; <a href="http://www.thoughtmerge.net/2010/01/17/roadmap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Brad and I have been using <a href="http://www.db4o.com/">db4o</a> on a project for a while now, and I have some problems with it:</p>
<ol>
<li>There isn&#8217;t a usable manager for it.  The plug-in for Visual Studio isn&#8217;t usable.</li>
<li>There is no built in support for associating ids with objects.  This is important for web work.</li>
<li>There is no easy way to enforce uniqueness constraints at the database level.</li>
</ol>
<p>The first one is the biggest issue.  Using db4o without a way to check and edit the contents of a database makes development much harder.</p>
<p>Brad and I have put together solutions to the second two, but neither of us are satisfied with them yet.</p>
<p>I have started working on a db4o manager.  I got a couple things working and need to create a plan for how I want to move the project forward now that I&#8217;ve figured out how to start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2010/01/17/roadmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let there be blog</title>
		<link>http://www.thoughtmerge.net/2009/09/14/let-there-be-blog/</link>
		<comments>http://www.thoughtmerge.net/2009/09/14/let-there-be-blog/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 08:37:32 +0000</pubDate>
		<dc:creator>Evan Gates</dc:creator>
				<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://thoughtmerge.net/?p=3</guid>
		<description><![CDATA[I decided to start publicly using my website again.  I plan to mostly post about two things.  First is lessons I learn while programming.  Second will be lessons about running a business. My current programming partner has expressed interest in &#8230; <a href="http://www.thoughtmerge.net/2009/09/14/let-there-be-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I decided to start publicly using my website again.  I plan to mostly post about two things.  First is lessons I learn while programming.  Second will be lessons about running a business.</p>
<p>My current programming partner has expressed interest in sharing his programming experiences as well.</p>
<p>The apparent lack of quality media coverage on politics for the last couple years has finally made me decide to do my own research.  I may post findings here.  I may do that on another site if it interferes with technical posts and discussion.</p>
<p>For the near future, I&#8217;ll be posting about issues from the last year or so.</p>
<p>More later&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thoughtmerge.net/2009/09/14/let-there-be-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

