<?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>www.freakinabox.com</title>
	<atom:link href="http://www.freakinabox.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freakinabox.com</link>
	<description></description>
	<lastBuildDate>Thu, 06 May 2010 17:53:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
   <image>
    <title>www.freakinabox.com</title>
    <url>http://www.gravatar.com/avatar/8aa3819b427026ada90481119d964b6d?s=48&amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%</url>
    <link>http://www.freakinabox.com</link>
   </image>
		<item>
		<title>MinGW and GCC 4.5.0</title>
		<link>http://www.freakinabox.com/2010/05/02/mingw-and-gcc-4-5-0/</link>
		<comments>http://www.freakinabox.com/2010/05/02/mingw-and-gcc-4-5-0/#comments</comments>
		<pubDate>Sun, 02 May 2010 12:15:18 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[GCC]]></category>
		<category><![CDATA[mingw]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=101</guid>
		<description><![CDATA[There has been a recent update to GCC, so naturally I updated my copy and set about recompiling the libraries I commonly use.
I then started getting some very odd out-of-memory errors coming out from ld. For those not in the know, ld is the &#8216;linker&#8217; tool that takes all the compiled object files and links [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a recent update to GCC, so naturally I updated my copy and set about recompiling the libraries I commonly use.</p>
<p>I then started getting some very odd out-of-memory errors coming out from <em>ld</em>. For those not in the know, <em>ld</em> is the &#8216;linker&#8217; tool that takes all the compiled object files and links them into a final binary (EXE or DLL on Windows). It turns out that a change of functionality has come about in the latest version of GCC that has massively affected the size of the object files it produces. In basic terms, any inline <em>dllexport</em>ed function is now written to every object file that includes the header containing the function. While usually not much of a problem, compiling something like <a href="http://www.wxwidgets.org/">wxWidgets</a> into a monolithic DLL now creates well over 2GB of object files.</p>
<p>The result of all of this is that either GCC needs to be patched with a switch to turn off this new functionality, or wxWidgets needs to be patched with some compiler-version specific workarounds. Not fun either way really.</p>
<p>EDIT: <a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43601">It&#8217;s been submitted to GCC&#8217;s bug tracker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2010/05/02/mingw-and-gcc-4-5-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Phase one</title>
		<link>http://www.freakinabox.com/2009/12/16/phase-one/</link>
		<comments>http://www.freakinabox.com/2009/12/16/phase-one/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 00:38:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Generator]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=84</guid>
		<description><![CDATA[And in a feat not seen since the last time I took time off work, I have completed the first part of my project. I now have a procedurally generated line. Oh the excitement is palpable!
The above montage demonstrates each step taken in the production of the resulting horizon line. Each step uses the same [...]]]></description>
			<content:encoded><![CDATA[<p>And in a feat not seen since the last time I took time off work, I have completed the first part of my project. I now have a procedurally generated line. Oh the excitement is palpable!</p>
<div id="attachment_83" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon1-allsteps.png"><img class="size-medium wp-image-83" title="Horizon 1-All steps" src="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon1-allsteps-300x107.png" alt="All steps in the generation of a horizon line" width="300" height="107" /></a><p class="wp-caption-text">All steps in the generation of a horizon line</p></div>
<p>The above montage demonstrates each step taken in the production of the resulting horizon line. Each step uses the same simple algorithm which is the whole point of content generation. Even using the terrible random number generator provided by the standard C++ libraries seeded with the current time can produce nicely different results. Another excellent point of procedurally generated content is that a better RNG gives a larger spread of results, while clamping the seed to a known value allows you to use the same simple small algorithm to reliably create large reproducible data sets; be that images, sounds, or meshes.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon1-step8.png"><img class="size-medium wp-image-81" title="Horizon 1-Step 8" src="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon1-step8-300x214.png" alt="Horizon 1 Step 8" width="300" height="214" /></a><p class="wp-caption-text">Horizon 1 Step 8</p></div>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon2-step8.png"><img class="size-medium wp-image-82" title="Horizon 2-Step 8" src="http://www.freakinabox.com/wp-content/uploads/2009/12/horizon2-step8-300x214.png" alt="Horizon 2 Step 8" width="300" height="214" /></a><p class="wp-caption-text">Horizon 2 Step 8</p></div>
<p>These two images show how with even a very small difference in seed on a very poor RNG, the differences are quite noticable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/12/16/phase-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meantime</title>
		<link>http://www.freakinabox.com/2009/12/15/meantime/</link>
		<comments>http://www.freakinabox.com/2009/12/15/meantime/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 02:46:49 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Generator]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=60</guid>
		<description><![CDATA[With all my work being taken up on building SOGui recently, I realised that I was loosing sight of the work that spurred me back into programming in the first place, namely procedural generation.
In that regard, I have started on another project. This one will let me begin producing procedurally generated visuals without having to [...]]]></description>
			<content:encoded><![CDATA[<p>With all my work being taken up on building <a href="http://github.com/TimJones/SOGui">SOGui</a> recently, I realised that I was loosing sight of the work that spurred me back into programming in the first place, namely procedural generation.</p>
<p>In that regard, I have started on another project. This one will let me begin producing procedurally generated visuals without having to go through all the legwork of creating a suitable GUI by using wxWidgets, and only using OpenGL as a component for drawing, rather than as a full interface. As with all my projects, I&#8217;m aiming to keep it as portable as possible, and useing Code::Blocks and gcc to develop it.</p>
<p>Below you&#8217;ll find a screenshot of the app in it&#8217;s early stage.</p>
<div id="attachment_61" class="wp-caption aligncenter" style="width: 434px"><a href="http://www.freakinabox.com/wp-content/uploads/2009/12/Horizon.png"><img class="size-full wp-image-61" title="Horizon" src="http://www.freakinabox.com/wp-content/uploads/2009/12/Horizon.png" alt="Screenshot of Horizon App" width="424" height="246" /></a><p class="wp-caption-text">Screenshot of Horizon App</p></div>
<p>This will be the first part of a suite of &#8216;generator&#8217; apps, and is concerned with only 2D procedural generation. This means it will simply take a line, and continually chop it in half, adjust the middle part up or down, and then continue to run on the new lines generated from that. An explanation of the algorithm itself can be found on <a href="http://www.gameprogrammer.com/fractal.html#midpoint">http://www.gameprogrammer.com/fractal.html#midpoint</a>. It is incredibly simple for now, but it should give me something to get started, and a break from SOGui.</p>
<p>If you&#8217;re interested, the source can be found, as always, on github at <a href="http://github.com/TimJones/Generator">http://github.com/TimJones/Generator</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/12/15/meantime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guides</title>
		<link>http://www.freakinabox.com/2009/12/06/guides/</link>
		<comments>http://www.freakinabox.com/2009/12/06/guides/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 22:59:22 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=53</guid>
		<description><![CDATA[Don&#8217;t look now, but I&#8217;ve actually started writing guides. The first one is simply a guide to get SVN Code::Blocks running under an Ubuntu system and available here. In time, I plan to add more for setting up MSys &#38; MinGW on Windows and leading on to build environments for SOGui.
Please leave feedback.
]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t look now, but I&#8217;ve actually started writing guides. The first one is simply a guide to get SVN Code::Blocks running under an Ubuntu system and available <a href="http://www.freakinabox.com/codeblocks-on-ubuntu">here</a>. In time, I plan to add more for setting up MSys &amp; MinGW on Windows and leading on to build environments for SOGui.</p>
<p>Please leave feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/12/06/guides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reinventing the wheel</title>
		<link>http://www.freakinabox.com/2009/11/21/reinventing-the-wheel/</link>
		<comments>http://www.freakinabox.com/2009/11/21/reinventing-the-wheel/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 14:37:04 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SOGui]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=35</guid>
		<description><![CDATA[After a massive drought of enthusiasm brought on by the endless issues with source dependencies that CEGUI needs I decided that I should begin from scratch with my own windowing system &#8211; something I wholly didn&#8217;t want to have to embark on.
Since making this decision, I have actually made quite a bit of progress. I [...]]]></description>
			<content:encoded><![CDATA[<p>After a massive drought of enthusiasm brought on by the endless issues with source dependencies that CEGUI needs I decided that I should begin from scratch with my own windowing system &#8211; something I wholly didn&#8217;t want to have to embark on.</p>
<p>Since making this decision, I have actually made quite a bit of progress. I have reverted back to trying my development closely to the SDL, including SDL_ttf (a TrueType fonts wrapper) and SDL_Image (handing the reading\writing of many image formats inc. loading them to textures).</p>
<p>I am still at the concept stage at this moment, but I have got several things sorted out, I have a FBO wrapper class to save an awful lot of time in building bits on top. I have a <em>very</em> basic window class to which I am adding input-handling and other bits as I go.</p>
<p>In the future, I plan to add a window manager class, through which you would actually make the windows etc&#8230; I also have to find a way to allow for user-drawn window decorations, pondering functors, inheritance, or something altogether more exotic. User-skinned windows are one of the lowest priorities, but I don&#8217;t want to work hard to produce a windowing system that has to be completely refactored to fit something like this in.</p>
<p>Still, I will release more information as I get further on with the coding, and it&#8217;s finally starting to look up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/11/21/reinventing-the-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Quiet on the Technological Front</title>
		<link>http://www.freakinabox.com/2009/09/13/all-quiet-on-the-technological-front/</link>
		<comments>http://www.freakinabox.com/2009/09/13/all-quiet-on-the-technological-front/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 08:53:11 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=33</guid>
		<description><![CDATA[Firstly, I must sincerely apologise for going more than a month without an update, though is is a technical blog and not a personal one so I will not bore you with details. Suffice to say my workload has expanded massively, certain things in my personal life have had to be reprioritised, and this has [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly, I must sincerely apologise for going more than a month without an update, though is is a technical blog and not a personal one so I will not bore you with details. Suffice to say my workload has expanded massively, certain things in my personal life have had to be reprioritised, and this has left me with precious little time for myself and my hobbyist pursuits.</p>
<p>Still, in the times I have not been in a vegetative state from exhaustion, I have been working on my little project. A game developer friend of mine suggested I might want to check out <a href="http://www.cegui.org.uk/">CEGUI</a>,which is actually a component of the previously-mentioned Ogre engine. It is a rather high-level windowing system for either OpenGL or Direct3D. It&#8217;s nicely object-oriented and contains good bindings for SDL too. It allows some major theme skinning as well as window\widget design though XML files which introduces great flexibility, but also allows you to fall back on hard-coded windows if you don&#8217;t want to be messing around with resources.</p>
<p>It seems to be that CEGUI could well be the answer to my problems, but I have yet to actually be able to use it in any of my code. While they are fantastic in providing assistance through the forums, and provide the binary SDKs for every version of MS Visual C++ from 6.0 onwards, Mac OS X, and Linux build environments, there is no package for GCC under Windows. This means I have to get the source version, and all the dependencies (16 packages in all), and then build them each 4 times over (both debug and release each for static and shared builds). As you may expect, this takes a not inconsiderable amount of time, which is coincidentally, the one thing I have least of right now.</p>
<p>Right now then, working on my &#8216;project&#8217; consists of mainly: once a week, downloading a package and building one (or two if I&#8217;m really lucky) of the bits I need, and marking it off the list. Though after having spoken to Crazy Eddie (Lead\Original developer of CEGUI), at least I can be safe in the fact that once I&#8217;ve got through all of this, the fruits of my labour will be hosted along side the other binary SDKs for the availability of other users. Who knows, maybe I can even get my name in a source file somwhere&#8230;</p>
<p>Until then, back to my build tree.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/09/13/all-quiet-on-the-technological-front/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Question Myself</title>
		<link>http://www.freakinabox.com/2009/08/03/i-question-myself/</link>
		<comments>http://www.freakinabox.com/2009/08/03/i-question-myself/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 22:50:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=27</guid>
		<description><![CDATA[Sometimes I wonder if I&#8217;m cut out to do any programming what so ever. This evening while playing with tying SDL, Agar, and OpenGL all together, I spent an hour and a half tracking down a single errant close bracket.
It was not helped by the fact that SDL helpfully, and silently, re#defines your normal &#8216;main&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I wonder if I&#8217;m cut out to do any programming what so ever. This evening while playing with tying SDL, Agar, and OpenGL all together, I spent an hour and a half tracking down a single errant close bracket.</p>
<p>It was not helped by the fact that SDL helpfully, and <em>silently</em>, re<strong>#define</strong>s your normal &#8216;main&#8217; entry point into SDL_main so it can supersede yours with its own. Had I known that simple fact I would not have had to spend the time trawling through SDL header files completely doubting my own sanity in how such a bug could be left in library code.</p>
<p>Not only this, but earlier in the afternoon I spent an equally rediculous amount of time wondering why I suddenly couldn&#8217;t declare a bool any more. In my foolish haste to copy &amp; paste example code to begin hacking away at it I failed to notice the source file had a .c extension rather than .cpp. Good old MIME getting in the way once again.</p>
<p>Yes, I will be handing back my membership card in at the door on my way out, but by root I&#8217;ll earn that damn thing back again!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/08/03/i-question-myself/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Not Quite What I Expected</title>
		<link>http://www.freakinabox.com/2009/07/29/not-quite-what-i-expected/</link>
		<comments>http://www.freakinabox.com/2009/07/29/not-quite-what-i-expected/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 06:20:24 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=21</guid>
		<description><![CDATA[After some time playing with Agar (the only documentation being the API and a wiki full of stubs) I&#8217;m not sure any more if we will get on. Don&#8217;t get me wrong, it seems like a fully-functional library, but its idiosyncrasies don&#8217;t mesh with my own. It has a very C-heavy syntax with raw pointers [...]]]></description>
			<content:encoded><![CDATA[<p>After some time playing with Agar (the only documentation being the API and a wiki full of stubs) I&#8217;m not sure any more if we will get on. Don&#8217;t get me wrong, it seems like a fully-functional library, but its idiosyncrasies don&#8217;t mesh with my own. It has a very C-heavy syntax with raw pointers all over the shop, I prefer C++ OOP structure with my pointers wrapped up safely in safe-pointer template objects. It also wants to be an independent library, or at least the ability to hook into many different frameworks. I would like a library tightly paired with the SDL as to not have to re-work any functionality already provided to me by it.</p>
<p>I will be continuing with it for the mean time, hoping that my increased familiarity with it will assuage my current misgivings. Failing that, I fear I might well have to embark on a much more trepidatious task than first realised&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/07/29/not-quite-what-i-expected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Term Ideas</title>
		<link>http://www.freakinabox.com/2009/07/26/long-term-ideas/</link>
		<comments>http://www.freakinabox.com/2009/07/26/long-term-ideas/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 00:18:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=11</guid>
		<description><![CDATA[I&#8217;ve been following the development of a project from UK indie game company Introversion. The project has been long running (two years and counting) and relies heavily on procedurally-generated content, that is, content created by an algorithm rather than an artist. The terrain, roads, blocks, buildings, even the internal building structure, lift space, staircases, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been following the development of a project from UK indie game company <a href="http://www.introversion.co.uk">Introversion</a>. The project has been long running (two years and counting) and relies heavily on procedurally-generated content, that is, content created by an algorithm rather than an artist. The terrain, roads, blocks, buildings, even the internal building structure, lift space, staircases, and structure support, all generated on the fly when required. The project is called Subversion and has a link in the sidebar over there&#8230;</p>
<p>This project has, for some reason, single-handedly reignited my desire to program. To begin with, I simply wanted to clone Chris Daley&#8217;s work bit-by-bit, start of with a simple terrain generation, then move on from there. Then I saw <a href="http://download.introversion.co.uk/mirror/introversion/blog/20081223/city2.jpg">this screenshot</a> and it blew me away. It was no longer the method of creation, but also the simplistic but incredibly stylistic presentation.</p>
<p>I&#8217;ve always wanted to be able to work with a windowing system within OpenGL, but the available APIs I&#8217;ve used have failed to satisfy completely. <a href="http://www.fltk.org/">FLTK</a> is too flat, <a href="http://www.ogre3d.org/">Ogre</a> is overly complex, most others either just aren&#8217;t polished enough or are stretching too far&#8230; I&#8217;ve used <a href="http://libagar.org/index.html.en">Agar</a> in the past, but not for some time. It looks to have made some major improvements in recent times, including a full skinning\theme system with the 1.3 release. To save myself some time and effort, I will attempt you see if Agar can be tweaked and teased into my expectations, but I will always be thinking of building a system from scratch specifically to solve my curious and self-challenging nature. Essentially, if Agar can be made to let me render to texture and use said texture as windows content then great. If it allows me to have multiple &#8216;rendering&#8217; windows in separate threads and a robust event system, then I&#8217;m sold.</p>
<p>To handle the more mundane OS windowing system, I&#8217;ve used <a href="http://www.opengl.org/resources/libraries/glut/">GLUT</a>\<a href="http://freeglut.sourceforge.net/">freeGLUT</a> in the past and never really felt them to be flexible, or functional enough to make them worth using rather than rolling my own. I&#8217;ve used SDL (link in the sidebar) an awful lot and found it be powerful, flexible, and best of all, pretty damn easy to use. What&#8217;s more it&#8217;s still actively developed, unlike GLUT (last updated to 3.7 in Aug &#8216;98). SDL also gives me cross-platform handling of threads and event signalling, without needing to rely on any extra libraries, again reducing complexity of the build. It also has extensions for sound, true-type fonts, and network stacks so it&#8217;s pretty fair to say that unless something really amazing shows up, I&#8217;ll be sticking with SDL.</p>
<p>Code::Blocks has always been a favourite IDE of mine, hooking in to all manner of compilers and quite a few interactive debuggers, plenty of features and extensibility whilst still maintaining a low running footprint. It hooks nicely into MinGW, the GNU build toolchain for Windows, but will also play well with MSVC if you want to use that.</p>
<p>To finish it all off I use Git for version control. It&#8217;s a fantastically quick &amp; simple source control system, with no large overheads required of the client-server systems such as CVS and SVN. I&#8217;ve never had to use it in a massive development environment (but the Linux Kernel peeps don&#8217;t seem to have a problem) nor in a corporate setup, but for my purposes, nothing works as well.</p>
<p>So, it&#8217;s taken me a good day&#8217;s work just getting my build environment back up and running, and tomorrow won&#8217;t be time I have available to work on this, so it really will be a Long Term Project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/07/26/long-term-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The start of something new</title>
		<link>http://www.freakinabox.com/2009/07/25/the-start-of-something-new/</link>
		<comments>http://www.freakinabox.com/2009/07/25/the-start-of-something-new/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 15:46:13 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.freakinabox.com/?p=3</guid>
		<description><![CDATA[So, this is going to be a new blog. It&#8217;s not going to be a personal journal documenting an inner monolouge but that sort of stuff may well bleed through.
No, this should stick to technical discussion slash rant, with a heavy smattering of programming projects I feel like doing in my spare time.
So, without further [...]]]></description>
			<content:encoded><![CDATA[<p>So, this is going to be a new blog. It&#8217;s not going to be a personal journal documenting an inner monolouge but that sort of stuff may well bleed through.</p>
<p>No, this should stick to technical discussion slash rant, with a heavy smattering of programming projects I feel like doing in my spare time.</p>
<p>So, without further ado, let the blogging begin!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freakinabox.com/2009/07/25/the-start-of-something-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
