<?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>The One With D &#187; Code</title>
	<atom:link href="http://dblog.aldacron.net/category/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://dblog.aldacron.net</link>
	<description>News and Opinions of the Digital Mars D Programming Language</description>
	<lastBuildDate>Wed, 25 Aug 2010 12:40:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>D.NET Source Released</title>
		<link>http://dblog.aldacron.net/2009/05/22/dnet-source-released/</link>
		<comments>http://dblog.aldacron.net/2009/05/22/dnet-source-released/#comments</comments>
		<pubDate>Fri, 22 May 2009 01:46:28 +0000</pubDate>
		<dc:creator>Aldacron</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[D.NET]]></category>

		<guid isPermaLink="false">http://dblog.aldacron.net/?p=634</guid>
		<description><![CDATA[Cristi Vlasceanu has released the source to the D.NET compiler backend under the Microsoft Public License, with the qualifier that the code "is not of production quality" and "is intended for research and educational purposes."]]></description>
		<wfw:commentRss>http://dblog.aldacron.net/2009/05/22/dnet-source-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-Configuration of Classes With Delegates</title>
		<link>http://dblog.aldacron.net/2007/03/11/self-configuration-of-classes-with-delegates/</link>
		<comments>http://dblog.aldacron.net/2007/03/11/self-configuration-of-classes-with-delegates/#comments</comments>
		<pubDate>Sun, 11 Mar 2007 13:59:32 +0000</pubDate>
		<dc:creator>Aldacron</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[D Programming]]></category>

		<guid isPermaLink="false">http://dblog.aldacron.net/2007/03/11/self-configuration-of-classes-with-delegates/</guid>
		<description><![CDATA[Sometimes you need to execute different code paths depending upon certain runtime parameters. For example, in graphics applications it is quite common to create different rendering paths based upon the graphics API features supported by the user's graphics card. In simple cases, this can be handled with an if...else block, or perhaps a switch. More [...]]]></description>
		<wfw:commentRss>http://dblog.aldacron.net/2007/03/11/self-configuration-of-classes-with-delegates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singletons In D</title>
		<link>http://dblog.aldacron.net/2007/03/03/singletons-in-d/</link>
		<comments>http://dblog.aldacron.net/2007/03/03/singletons-in-d/#comments</comments>
		<pubDate>Sat, 03 Mar 2007 18:19:31 +0000</pubDate>
		<dc:creator>Aldacron</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[D Programming]]></category>

		<guid isPermaLink="false">http://dblog.aldacron.net/2007/03/03/singletons-in-d/</guid>
		<description><![CDATA[The intent of the Singleton pattern is described by the Gang of Four thusly: Ensure a class only has one instance, and provide a global point of access to it. Singletons are ubiquitous in object oriented programming. They are also, I feel, abused and overused. But, I'm not going to go into a philosophical rant [...]]]></description>
		<wfw:commentRss>http://dblog.aldacron.net/2007/03/03/singletons-in-d/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Some Useful Templates</title>
		<link>http://dblog.aldacron.net/2007/02/06/some-useful-templates/</link>
		<comments>http://dblog.aldacron.net/2007/02/06/some-useful-templates/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 02:48:01 +0000</pubDate>
		<dc:creator>Aldacron</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dblog.aldacron.net/2007/02/06/some-useful-templates/</guid>
		<description><![CDATA[Erik Rasmussen has posted a collection of D templates on his blog. You can use them to, as he says, "avoid the deadly programming sin of code duplication." Thanks, Erik! Technorati Tags: D Programming Language, templates]]></description>
		<wfw:commentRss>http://dblog.aldacron.net/2007/02/06/some-useful-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Policy-based Free List</title>
		<link>http://dblog.aldacron.net/2006/06/23/policy-based-free-list/</link>
		<comments>http://dblog.aldacron.net/2006/06/23/policy-based-free-list/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 08:10:17 +0000</pubDate>
		<dc:creator>Aldacron</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://dblog.aldacron.net/2006/06/23/policy-based-free-list/</guid>
		<description><![CDATA[One of the reasons I was experimenting with policies earlier (1, 2) was to implement a policy-based free list I had seen in Game Programming Gems 5 in an article by Nathan Mefford of Firaxis (1.11 Improving Freelists with Policy Based Design). I'm fairly satisfied with the implementation I put together. The implementation uses two [...]]]></description>
		<wfw:commentRss>http://dblog.aldacron.net/2006/06/23/policy-based-free-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
