<?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"
	>

<channel>
	<title>Practical Programming&#187; Programming Music</title>
	<atom:link href="http://www.programmers.org/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programmers.org</link>
	<description>Experience is knowledge.</description>
	<pubDate>Fri, 11 Jun 2010 14:42:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Programming Music</title>
		<link>http://www.programmers.org/index.php/2010/06/music-while-coding/</link>
		<comments>http://www.programmers.org/index.php/2010/06/music-while-coding/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 13:45:03 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=465</guid>
		<description><![CDATA[I can&#8217;t recall a time I have engineered any code worth its salt while not listening to music&#8230; One of my favorites is Metal/Alternative, Chillout/Ambient/Smooth Jazz/Downtempo and Native American. Grab winamp and check it out:
ShoutCast:
http://scfire-dtc-aa02.stream.aol.com:80/stream/1039
http://scfire-mtc-aa03.stream.aol.com:80/stream/1018
http://scfire-ntc-aa08.stream.aol.com:80/stream/1080
http://64.62.164.208:3002
*I use Pandora too, but this is free and they tend to have far fewer commercials/interruptions.



No related posts.]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t recall a time I have engineered any code worth its salt while not listening to music&#8230; One of my favorites is Metal/Alternative, Chillout/Ambient/Smooth Jazz/Downtempo and Native American. Grab <a href="http://www.winamp.com/">winamp</a> and check it out:</p>
<p>ShoutCast:</p>
<p><a href="http://scfire-dtc-aa02.stream.aol.com:80/stream/1039">http://scfire-dtc-aa02.stream.aol.com:80/stream/1039</a></p>
<p><a href="http://scfire-mtc-aa03.stream.aol.com:80/stream/1018">http://scfire-mtc-aa03.stream.aol.com:80/stream/1018</a></p>
<p><a href="http://scfire-ntc-aa08.stream.aol.com:80/stream/1080">http://scfire-ntc-aa08.stream.aol.com:80/stream/1080</a></p>
<p><a href="http://66.216.18.247:2260">http://64.62.164.208:3002</a></p>
<p>*I use Pandora too, but this is free and they tend to have far fewer commercials/interruptions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/06/music-while-coding/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with Regular Expressions</title>
		<link>http://www.programmers.org/index.php/2010/05/working-with-regular-expressions/</link>
		<comments>http://www.programmers.org/index.php/2010/05/working-with-regular-expressions/#comments</comments>
		<pubDate>Tue, 11 May 2010 13:47:43 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=460</guid>
		<description><![CDATA[Just a quick note, to help write your regular expressions I highly recommend The Regulator for developing, tweaking, and testing before deployment into your code. It is available on source forge here:
http://sourceforge.net/projects/regulator/
One caveat, sometimes the config file gets screwed up and the program wont load anymore. Navigate to the directory and delete the config file [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Just a quick note, to help write your regular expressions I highly recommend The Regulator for developing, tweaking, and testing before deployment into your code. It is available on source forge here:</p>
<p><a href="http://sourceforge.net/projects/regulator/">http://sourceforge.net/projects/regulator/</a></p>
<p>One caveat, sometimes the config file gets screwed up and the program wont load anymore. Navigate to the directory and delete the config file then restart and you&#8217;re good to go.</p>
<p>Another tool you&#8217;ll need in your arsenal is a good reference, and the best I have found can be located here:</p>
<p><a href="http://www.regular-expressions.info/">http://www.regular-expressions.info/</a></p>
<p>Keep on coding`</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/05/working-with-regular-expressions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Regular Expressions: Forward and Backward Lookups</title>
		<link>http://www.programmers.org/index.php/2010/05/regular-expressions-forward-and-backward-lookups/</link>
		<comments>http://www.programmers.org/index.php/2010/05/regular-expressions-forward-and-backward-lookups/#comments</comments>
		<pubDate>Tue, 11 May 2010 13:43:39 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=453</guid>
		<description><![CDATA[Several years ago I read the regular expression syntax and was instantly hooked because it made parsing text just so darn simple. But one thingÂ particularÂ to regexÂ that I never actually had a need for was forward and backward lookups, much less both of those within the same regularÂ expression&#8230;. that is, until now.
Problem:
Write a regular expression to [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Several years ago I read the regular expression syntax and was instantly hooked because it made parsing text just so darn simple. But one thingÂ particularÂ to regexÂ that I never actually had a need for was forward and backward lookups, much less both of those within the same regularÂ expression&#8230;. that is, until now.</p>
<p>Problem:</p>
<p>Write a regular expression to pull out everything not within {brackets}.</p>
<p>Ex. Input:</p>
<p>{ed ut perspiciatis}<span style="text-decoration: underline;"><span style="color: #993300;">test</span></span>{unde omnis iste}<span style="text-decoration: underline;"><span style="color: #993300;"> foo </span></span>{natus error sit voluptatem}</p>
<p>This should pull out &#8220;test&#8221; and &#8220;foo&#8221; (as well as the space prefixed to &#8220;foo&#8221;, and the space suffixed to &#8220;foo&#8221;. These are underliend and in red above for your reference.</p>
<p>I would like to point out that I could not simply replace everything in brackets since I was modifying the string to be in a paticular format (in my case another programming language). And with that having been said,Â it does (and I might add quite suddenly) occur to me it would have beenÂ simpler, and for that matter faster, to have a simple regular expression such as ({.*?}) and then use the the index and length parameters of the GroupsCollection to pull out everything else, yet for some reason I got caught in theÂ theoreticalÂ enjoyment of doing it the hard way <img src='http://www.programmers.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And so here it is:</p>
<blockquote><p>(?&lt;!{[^}]*?)(?&lt;=^|\s|})(?&lt;Text&gt;[^{][^}]*?)(?&lt;TrailingChar&gt;\s|$|{)</p></blockquote>
<p>Couple cool things here: 1. named groups which come in handy when you&#8217;ve got a lot of groups. Why count up the index if you can just name it? I also feel this makes it easier to understand and work with the regex in the future in case you have to revisit it.</p>
<p>The regular expression used above did require me to use .Replace(&#8230;., new MatchEvaulater(customFunc)). This is another cool feature I had never used before but it kept things quite simple and neat in the code.</p>
<p>Anyway, just a note about what Forward and Backward Lookups are and how they work:</p>
<p>Basically a lookup is just that, it looks up a match either to the left (backward) or to the right (forward) but since its only &#8220;looking&#8221; it doesn&#8217;t append that match to the MatchCollection.</p>
<p>To look forward (?&gt;=[a-z]{1}) to look backward (?&lt;=[a-z]{1}) , and then you can negate these like so (?&gt;[a-z]{1}) and (?&lt;![a-z]{1}) &#8230; *obviously Â you can replaceÂ [a-z]{1} with whatever you need/want.</p>
<p>Let this serve as a reminder to both myself and you, if things seem overly complicated it&#8217;s probably because your making it that way. But hey, this is fun so who cares?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/05/regular-expressions-forward-and-backward-lookups/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with multiple NICs</title>
		<link>http://www.programmers.org/index.php/2010/05/working-with-multiple-nics/</link>
		<comments>http://www.programmers.org/index.php/2010/05/working-with-multiple-nics/#comments</comments>
		<pubDate>Mon, 10 May 2010 12:41:24 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=451</guid>
		<description><![CDATA[Ever since the programmers.org server crashed due to a hard drive failure (mind you, while I was doing a defrag) it has been dropping off-line periodically (we are talking months here). I spent an enormous amount of time trying to figure out what was happening and why&#8230; all to no avail.
Finally one day after it [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Ever since the programmers.org server crashed due to a hard drive failure (mind you, while I was doing a defrag) it has been dropping off-line periodically (we are talking months here). I spent an enormous amount of time trying to figure out what was happening and why&#8230; all to no avail.</p>
<p>Finally one day after it dropped offline I trotted over to the console to see that it&#8217;s IP address was cut short. Oddly the last 2 digits seemed to have been cropped off. Checking all of the TCP/IP settings on both NICs in the machine the only thing I could find with any similarity was the DNS of the second NIC which was set to the LAN DNS&#8230; that similarity was that its string size and the string size of the newly cropped ip address were the same. Weird.</p>
<p>After tinkering around a bit with the settings I clicked apply and noticed a message I had seen previously but not really read. It said, as best I can recall, something to the effect of &#8220;Multiple DNS are intended for redundancy and may not function properly if not on the same network.&#8221;</p>
<p>HUH? What&#8217;s this I thought&#8230;. when I suddenly realized I did not need the second NIC to have a DNS at all since it was being used to communicate with the NAS and not the outside world. PLUS the other NIC was set as the primary so I could still browse the web from the machine as need be. Voila. No warning message, and no more server falling offline. Finally.</p>
<p>Until next time, happy coding <img src='http://www.programmers.org/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/05/working-with-multiple-nics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery Google Suggest goes Live on DiscMakers.com!</title>
		<link>http://www.programmers.org/index.php/2010/05/jquery-google-suggest-goes-live-on-discmakerscom/</link>
		<comments>http://www.programmers.org/index.php/2010/05/jquery-google-suggest-goes-live-on-discmakerscom/#comments</comments>
		<pubDate>Wed, 05 May 2010 14:13:35 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[jQuery Google Suggest]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=443</guid>
		<description><![CDATA[Special thanks to the work of Charles Kline and the rest of the dev team at DM for giving GSuggest a shot. They also integrated the Google Search API too and everything fits together quite nicely. Check it out!
http://www.discmakers.com/websearch/Index.aspx?SearchTerms=digipaks



Related posts:<ol><li><a href='http://www.programmers.org/index.php/2010/02/jquery-google-suggest-jquerygsuggestjs-update/' rel='bookmark' title='Permanent Link: JQuery Google Suggest (jquery.gsuggest.js) - update'>JQuery Google Suggest (jquery.gsuggest.js) - update</a> <small>Due to a hard drive failure the sample page "SEE...</small></li><li><a href='http://www.programmers.org/index.php/2010/03/jquery-google-suggest-jquerygsuggestjs-update-2/' rel='bookmark' title='Permanent Link: JQuery Google Suggest (jquery.gsuggest.js) - update'>JQuery Google Suggest (jquery.gsuggest.js) - update</a> <small>Make sure you download the latest release. I fixed a...</small></li><li><a href='http://www.programmers.org/index.php/2009/12/jquery-google-suggest-jquerygsuggestjs/' rel='bookmark' title='Permanent Link: JQuery Google Suggest (jquery.gsuggest.js)'>JQuery Google Suggest (jquery.gsuggest.js)</a> <small>I was unable to find an jQuery autocomplete /Â jQueryÂ...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Special thanks to the work of Charles Kline and the rest of the dev team at DM for giving GSuggest a shot. They also integrated the Google Search API too and everything fits together quite nicely. Check it out!</p>
<p><a href="http://www.discmakers.com/websearch/Index.aspx?SearchTerms=digipaks">http://www.discmakers.com/websearch/Index.aspx?SearchTerms=digipaks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/05/jquery-google-suggest-goes-live-on-discmakerscom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SQL Server Reporting Services and rsAccessDenied</title>
		<link>http://www.programmers.org/index.php/2010/04/sql-server-reporting-services-and-rsaccessdenied/</link>
		<comments>http://www.programmers.org/index.php/2010/04/sql-server-reporting-services-and-rsaccessdenied/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 17:37:30 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=434</guid>
		<description><![CDATA[Since this saved me what would haveÂ undoubtedlyÂ become a migraine, I thought I would repost it here. All credit goes to the original Author (see the jump):
SQL Server Reporting Services and rsAccessDenied
rsAccessDenied was all that stood between me and high fives from the customer. Â The message from SQL Server Reporting Service (SRS) even displayed the clients [...]


Related posts:<ol><li><a href='http://www.programmers.org/index.php/2010/04/working-with-ssrs-2005/' rel='bookmark' title='Permanent Link: Working with SSRS 2005'>Working with SSRS 2005</a> <small>Recently asked to replace Crystal Reporting Services with SQL Server...</small></li><li><a href='http://www.programmers.org/index.php/2009/12/restarting-terminal-services-remotely/' rel='bookmark' title='Permanent Link: Restarting Terminal Services Remotely'>Restarting Terminal Services Remotely</a> <small>If you find yourself using terminal services a lot to...</small></li><li><a href='http://www.programmers.org/index.php/2008/11/working-with-legacy-dts-packages-with-sql-server-2005/' rel='bookmark' title='Permanent Link: Working with legacy DTS Packages with SQL Server 2005'>Working with legacy DTS Packages with SQL Server 2005</a> <small>Users of SQL Server 2005 already know DTS Packages have...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Since this saved me what would haveÂ undoubtedlyÂ become a migraine, I thought I would repost it here. All credit goes to the original Author (see the jump):</p>
<p><a id="viewpost_ascx_TitleUrl" title="Title of this entry." href="http://geekswithblogs.net/bjones/archive/2005/05/01/38818.aspx">SQL Server Reporting Services and rsAccessDenied</a></p>
<p>rsAccessDenied was all that stood between me and high fives from the customer. Â The message from SQL Server Reporting Service (SRS) even displayed the clients log on name â€“ so SRS KNEW who it was denying. Â No impersonation was going to solve this one.</p>
<p>The Redirect string was fine, because it worked in test and on the server for those of us with admin rights. Â (Yeah, I know &#8212; but this a practical blog &#8212; remember?) Â So I fired up Report Manager to see what it had to say about the security settings on my report folders. Â All I saw was the built in administrator and no way to add any more.</p>
<p>Hmmm. Â At the Home folder level, I could add roles. Â Since my client had access to the box, she must be in some local group or another, so I added Guests and Users with SRS Browser capacity. Â I sauntered over to the client and acted as if I expected the report to work now. Â It did. Â I took my bows and made my exit with no small relief.</p>
<p>If this stuff was easy, nobody would need developers.</P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/04/sql-server-reporting-services-and-rsaccessdenied/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with SSRS 2005</title>
		<link>http://www.programmers.org/index.php/2010/04/working-with-ssrs-2005/</link>
		<comments>http://www.programmers.org/index.php/2010/04/working-with-ssrs-2005/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:09:47 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=429</guid>
		<description><![CDATA[Recently asked to replace Crystal Reporting Services with SQL Server Reporting Services I went about reading, testing, reading, and testing yet again the features of SSRS.
I found the Report Designer (SQL Server Business Intelligence Development Studio) to be a bit clunky&#8230; but, it does work once you get the hang of it. My main complaint [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Recently asked to replace Crystal Reporting Services with SQL Server Reporting Services I went about reading, testing, reading, and testing yet again the features of SSRS.</p>
<p>I found the Report Designer (SQL Server Business Intelligence Development Studio) to be a bit clunky&#8230; but, it does work once you get the hang of it. My main complaint is that its so tedious to reference values =Fields!foobar.Value &#8230; not sure why these aren&#8217;t aliased as with Crystal Reports. And the WYSIWYG leaves me scratching my head a bit b/c it just doesn&#8217;t work as fluidly as one would expect it to.</p>
<p>Dipping a bit more into the programming I found I could use the Microsoft Report Viewer to display the report by specifying a URL (in contrast to using the web services which I did not need). Unfortunately it took me a full two hours to determine how to set parameter values! &#8230;. While I may have moments ofÂ lunacy, last I checked I was not an idiot, so why was this not made more clear by the documentation since it seems like such a common need?</p>
<p>For those of you facing the same issue, here is how you do it:</p>
<blockquote><p>//dynamically set parameter values</p>
<p><span> </span>ReportParameter reportParams = new ReportParameter(&#8221;paramName&#8221;, &#8220;yourValue&#8221;);</p>
<p style="text-align: left;"><span> </span>reportViewer1.ServerReport.SetParameters(new ReportParameter[] {reportParams});</p>
</blockquote>
<p>*Note that the parameters are case sensitive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/04/working-with-ssrs-2005/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Generating Excel Reports in Binary Format</title>
		<link>http://www.programmers.org/index.php/2010/04/generating-excel-reports-in-binary-format/</link>
		<comments>http://www.programmers.org/index.php/2010/04/generating-excel-reports-in-binary-format/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 14:06:53 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=427</guid>
		<description><![CDATA[Some years ago I wrote a .NET Class that used the Microsoft Office Interop Services (Microsoft.Office.Interop.Excel). While I wrote it nearly complete to the exact specification I found it was never quite fast enough since a) it was using COM and b) I had to deal with the .NET wrappers for that unmanaged code. Knowing [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Some years ago I wrote a .NET Class that used the Microsoft Office Interop Services (<em>Microsoft</em>.<em>Office</em>.Interop.Excel). While I wrote it nearly complete to the exact specification I found it was never quite fast enough since a) it was using COM and b) I had to deal with the .NET wrappers for that unmanaged code. Knowing I had to produce the report in binary for optimal performance I pretty much gave up on ever discovering the format of the file&#8230; until today, while researching SQL Server Reporting Services when I came across these links:</p>
<p><a class="external text" rel="nofollow" href="http://sc.openoffice.org/excelfileformat.pdf">&#8220;OpenOffice.org&#8217;s documentation of the Microsoft Excel File Format&#8221;</a></p>
<p><span class="citation web"><a class="external text" rel="nofollow" href="http://download.microsoft.com/download/0/B/E/0BE8BDD7-E5E8-422A-ABFD-4342ED7AD886/Excel97-2007BinaryFileFormat(xls)Specification.xps">&#8220;Microsoft Office Excel 97 - 2007 Binary File Format Specification (*.xls 97-2007 format)&#8221;</a></span></p>
<p>Happy coding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/04/generating-excel-reports-in-binary-format/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Best Free Image Converter (png to gif)</title>
		<link>http://www.programmers.org/index.php/2010/04/best-free-image-converter-png-to-gif/</link>
		<comments>http://www.programmers.org/index.php/2010/04/best-free-image-converter-png-to-gif/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 14:12:20 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=425</guid>
		<description><![CDATA[If you do any web programming you will eventually need to do some image conversions. This is especially true if you download icon libraries that are in PNG and need to convert them to transparent GIFs.
My favorite and free program for this is ImageMagick. You will find the command line tool especially useful for doing [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you do any web programming you will eventually need to do some image conversions. This is especially true if you download icon libraries that are in PNG and need to convert them to transparent GIFs.</p>
<p>My favorite and free program for this is ImageMagick. You will find the command line tool especially useful for doing batch conversions.</p>
<p><a href="http://www.imagemagick.org/script/index.php">http://www.imagemagick.org/script/index.php</a></p>
<p>Note: If you can use PNG stick with it as you will lose opacity layers if you convert these to GIF. Unfortunately some older browsers don&#8217;t support PNG so I typically use GIF for compatibility reasons.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/04/best-free-image-converter-png-to-gif/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Direct2d (hardware acceleration) FireFox</title>
		<link>http://www.programmers.org/index.php/2010/04/direct2d-hardware-acceleration-firefox/</link>
		<comments>http://www.programmers.org/index.php/2010/04/direct2d-hardware-acceleration-firefox/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 14:55:17 +0000</pubDate>
		<dc:creator>Micah Lacombe</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.programmers.org/?p=422</guid>
		<description><![CDATA[This is amazingly fast&#8230; check it out. IE 9 is supposed to have hardware acceleration too&#8230;. (btw: this won&#8217;t work on XP)
http://www.basschouten.com/blog1.php/2010/03/02/presenting-direct2d-hardware-acceleratio



No related posts.]]></description>
			<content:encoded><![CDATA[<p>This is amazingly fast&#8230; check it out. IE 9 is supposed to have hardware acceleration too&#8230;. (btw: this won&#8217;t work on XP)</p>
<p><a href="http://www.basschouten.com/blog1.php/2010/03/02/presenting-direct2d-hardware-acceleratio">http://www.basschouten.com/blog1.php/2010/03/02/presenting-direct2d-hardware-acceleratio</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.programmers.org/index.php/2010/04/direct2d-hardware-acceleration-firefox/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
