<?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>Sheru! &#187; Tech</title>
	<atom:link href="http://www.shellbryson.com/index.php/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shellbryson.com</link>
	<description>Musings of a frustrated designer</description>
	<lastBuildDate>Tue, 13 Jul 2010 18:20:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Magazine 2.0? Can the iPad replace printed magazines</title>
		<link>http://www.shellbryson.com/index.php/2010/07/13/magazine-2-0-can-the-ipad-replace-printed-magazines/</link>
		<comments>http://www.shellbryson.com/index.php/2010/07/13/magazine-2-0-can-the-ipad-replace-printed-magazines/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:20:52 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[magazine]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=262</guid>
		<description><![CDATA[There&#8217;s no doubt that the iPad is a superb delivery device for magazines, books, and browsing the net. Magazines in particular work really well in this new format. The large uncluttered screen allows for well designed magazine layouts, without limitation in typography or illustration, and introduces a whole new dimension of interactivity. However, there is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.shellbryson.com/wp-content/uploads/2010/07/wired-magazine-ipad.jpg"><img class="alignright size-medium wp-image-265" title="wired-magazine-ipad" src="http://www.shellbryson.com/wp-content/uploads/2010/07/wired-magazine-ipad-300x240.jpg" alt="" width="300" height="240" /></a>There&#8217;s no doubt that the iPad is a superb delivery device for magazines, books, and browsing the net. Magazines in particular work really well in this new format. The large uncluttered screen allows for well designed magazine layouts, without limitation in typography or illustration, and introduces a whole new dimension of interactivity.</p>
<p>However, there is a downside to this. As yet, there is no common, more efficient delivery method. Unlike books, which can be purchased and downloaded through either Apples&#8217; iBooks app or Amazons&#8217; Kindle, each magazine packages their own downloader &#8212; and those downloads can be huge. There are only so many 500Mb issues of Wired that you can fit even on the largest iPad.</p>
<p>We&#8217;re almost there, and this is definitely the device to take us there!</p>
<ul>
<li>Cost of the device &#8211; iPads are clearly prohibitively expensive for the majority of folks, limiting the market</li>
<li>Only a handful of truly interactive Magazines, such as Wired</li>
<li>Delivery format: current crop of interactive magazines are very large in size, filling up a lot of space on the iPad</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2010/07/13/magazine-2-0-can-the-ipad-replace-printed-magazines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When not to use jQuery &amp; AJAX</title>
		<link>http://www.shellbryson.com/index.php/2009/11/25/when-not-to-use-jquery-ajax/</link>
		<comments>http://www.shellbryson.com/index.php/2009/11/25/when-not-to-use-jquery-ajax/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 11:29:49 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web stuff]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Intranet]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=173</guid>
		<description><![CDATA[While AJAX has its place, it&#8217;s good to learn when not to use it. We discovered with our Intranet project significant speed penalties introduced by loading a lot of dynamic content in via AJAX at the same time. It&#8217;s very easy to get carried away and try load everything in with jQuery, but on an [...]]]></description>
			<content:encoded><![CDATA[<p>While AJAX has its place, it&#8217;s good to learn when <em>not </em>to use it.</p>
<p>We discovered with our Intranet project significant speed penalties introduced by loading a lot of dynamic content in via AJAX at the same time. It&#8217;s very easy to get carried away and try load everything in with jQuery, but on an initial page draw this is clearly a <em><strong>Bad Thing</strong></em>:</p>
<p>Take our Intranet portal as an example. It consists of 9 widgets, each of which has fully dynamic content. After the portal is initially constructed by the server, loaded by the client, and jQuery has initialised, each Widget then goes and fetches its own content. This resulted in an average <em>35 seconds </em>until the page was fully ready. Clearly this in unacceptable.</p>
<p>Going back and re-working the widgets so that they &#8220;pre-populate&#8221; the data server side reduced this time to <em>5 seconds</em>. Subsequent updates are then performed by jQuery AJAX calls so the user experience is unaffected.</p>
<p>A lot of this is due to locking &#8211; only two connections can be made to a web server at once from a single client, so an application that generates many AJAX requests will end up having request queued. Also all those requests going back and forth from the server generate a lot of overhead, not to mention that once all the data has finally been received by the client poor jQuery has to do a lot of work!</p>
<p>So we learned the hard way: be careful how you use AJAX!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/11/25/when-not-to-use-jquery-ajax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>32bit aspupload, aspemail &amp; aspjpeg on Windows 2003 x64</title>
		<link>http://www.shellbryson.com/index.php/2009/11/20/32bit-aspupload-aspemail-aspjpeg-on-windows-2003-x64/</link>
		<comments>http://www.shellbryson.com/index.php/2009/11/20/32bit-aspupload-aspemail-aspjpeg-on-windows-2003-x64/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 15:07:02 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows 2003]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=163</guid>
		<description><![CDATA[We use Persits excellent ASPEmail, ASPJpeg and ASPUpload components, however we found another gotcha with the installation of these components under Windows Server 2003 x64 with IIS running in 32bit mode (see previous post). Despite uninstalling our previous x64 bit versions of these components, we had issues with the components simply doing &#8220;nothing&#8221; after a [...]]]></description>
			<content:encoded><![CDATA[<p>We use Persits excellent <a href="http://www.aspemail.com/">ASPEmail</a>, <a href="http://www.aspjpeg.com/">ASPJpeg</a> and <a href="http://www.aspupload.com/">ASPUpload</a> components, however we found another gotcha with the installation of these components under Windows Server 2003 x64 with IIS running in 32bit mode (see previous post).</p>
<p>Despite uninstalling our previous x64 bit versions of these components, we had issues with the components simply doing &#8220;nothing&#8221; after a subsequent server restart. Loading pages that made use of any of these server side components simply returned blank values, without any sort of error.</p>
<p>After a bit of digging around, it seems that our uninstalling of the x64 components leaves some stuff in the registry, and in turn causes some sort of conflict with the 32bit versions. So the trick is:</p>
<ul>
<li>In <strong>RegEdit</strong>, Find the key <em>HKEY_LOCAL_MACHINE\SOFTWARE\Persits Software\</em> and remove it</li>
<li>Uninstall all the components, even if they are 32bit</li>
<li>Reboot the server</li>
<li>Reinstall the components</li>
<li>Reboot the server again</li>
</ul>
<p>So far everything seems to be working again for us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/11/20/32bit-aspupload-aspemail-aspjpeg-on-windows-2003-x64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>32bit IIS on 64bit Windows 2003, take 2</title>
		<link>http://www.shellbryson.com/index.php/2009/11/20/32bit-iis-on-64bit-windows-2003-take-2/</link>
		<comments>http://www.shellbryson.com/index.php/2009/11/20/32bit-iis-on-64bit-windows-2003-take-2/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 23:03:47 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows 2003]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=158</guid>
		<description><![CDATA[After struggling for a week trying to get various 64bit components to run under IIS6 on our new servers, I was banging my head against the wall. Why oh why doesn&#8217;t Microsoft make these things easy? So with a deep breath I tried tackling running IIS in 32bit mode again&#8230; and discovered a &#8220;gotcha&#8221; that [...]]]></description>
			<content:encoded><![CDATA[<p>After struggling for a week trying to get various 64bit components to run under IIS6 on our new servers, I was banging my head against the wall. Why oh why doesn&#8217;t Microsoft make these things <em>easy</em>?</p>
<p>So with a deep breath I tried tackling running IIS in 32bit mode again&#8230; and discovered a &#8220;gotcha&#8221; that probably caused our issues the first time around.</p>
<p>It appears when you run the &#8220;fix&#8221; that turns 64bit IIS into 32bit, Windows isn&#8217;t smart enough to realise &#8220;<em>yes I really did mean 32bit</em>&#8221; and promptly breaks IIS completely &#8211; resulting in the ever so popular &#8220;<em><strong>Service not available</strong></em>&#8221; message for all your precocious web sites. Why? Well, it seems this is due to the .NET framework running in 64bit, regardless of the fix. Thankfully (!!!!) you can install .NET from the command line with 32bit-ness in place&#8230;</p>
<ol>
<li>To enable 32bit IIS mode run: <strong>cscript %SystemDrive%\inetpub\AdminScripts\adsutil.vbs set w3svc/AppPools/Enable32bitAppOnWin64 1</strong></li>
<li>Restart IIS (at this point IIS will probably stop serving sites)</li>
<li>Reinstall the .NET framework in 32bit mode: <strong>C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i -enable</strong></li>
<li>Restart your server</li>
</ol>
<p>Very frustrating. We&#8217;ve yet to full test this, but we applied the change on our test server and all our sites are working. Tomorrow we&#8217;ll add some 32bit components and see what happens&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/11/20/32bit-iis-on-64bit-windows-2003-take-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>publisher</title>
		<link>http://www.shellbryson.com/index.php/2009/11/14/publisher/</link>
		<comments>http://www.shellbryson.com/index.php/2009/11/14/publisher/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 13:59:36 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web stuff]]></category>
		<category><![CDATA[BiteSizedJapan]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[TinyMCE]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=152</guid>
		<description><![CDATA[In our infinite wisdom, for the BiteSizedJapan project it was decided that writing a Publishing system from scratch would ensure a much better fit for the magazine than trying to hack an existing content management system. Let me say this up front: Content Managers are not easy to write! Thankfully the pain is somewhat mitigated [...]]]></description>
			<content:encoded><![CDATA[<p>In our infinite wisdom, for the <a title="The Japanese Culture Magazine" href="http://www.bitesizedjapan.com">BiteSizedJapan</a> project it was decided that writing a Publishing system from scratch would ensure a much better fit for the magazine than trying to hack an existing content management system.</p>
<p>Let me say this up front: Content Managers are not easy to write!</p>
<p>Thankfully the pain is somewhat mitigated thanks to TinyMCE and a lot of jQuery.</p>
<p><a rel="attachment wp-att-154" href="http://www.shellbryson.com/index.php/2009/11/14/publisher/publisher/"><img class="alignnone size-full wp-image-154" title="Publisher" src="http://www.shellbryson.com/wp-content/uploads/2009/11/publisher.png" alt="Publisher" width="300" height="258" /></a></p>
<p><a rel="attachment wp-att-155" href="http://www.shellbryson.com/index.php/2009/11/14/publisher/publisher2/"><img class="alignnone size-full wp-image-155" title="Publisher MCE" src="http://www.shellbryson.com/wp-content/uploads/2009/11/publisher2.png" alt="Publisher MCE" width="300" height="258" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/11/14/publisher/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fancy fonts</title>
		<link>http://www.shellbryson.com/index.php/2009/10/27/fancy-fonts/</link>
		<comments>http://www.shellbryson.com/index.php/2009/10/27/fancy-fonts/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 13:21:59 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web stuff]]></category>
		<category><![CDATA[BiteSizedJapan]]></category>
		<category><![CDATA[Cufon]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=117</guid>
		<description><![CDATA[So, if you come up with a fab design with sexy typefaces and a wonderful layout&#8230;  and then you can pretty much kiss that goodbye within a browser. After all, you are limited to a handful of rather dull typefaces, and until now there was very little you could do about that&#8230;. The solution? Well, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-118" href="http://www.shellbryson.com/index.php/2009/10/27/fancy-fonts/cufon/"><img class="alignnone size-full wp-image-118" title="cufon" src="http://www.shellbryson.com/wp-content/uploads/2009/10/cufon.png" alt="cufon" width="365" height="199" /></a></p>
<p>So, if you come up with a fab design with sexy typefaces and a wonderful layout&#8230;  and then you can pretty much kiss that goodbye within a browser. After all, you are limited to a handful of rather dull typefaces, and until now there was very little you could do about that&#8230;.</p>
<p>The solution? Well, over the past week or so I&#8217;ve been playing with the <a title="Cufon" href="http://cufon.shoqolate.com/generate/">Cufon font library</a>.</p>
<p>Cufon is a very clever tool that lets you upload fonts and reprocess them in a format that can then be displayed in almost all browsers. Simply including the Cufon script:</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/script/cufon.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>&#8230;the font script (generated via their web site)&#8230;</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/fonts/EurostileT_400-EurostileT_700.font.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>&#8230;and a simple jQuery call and you&#8217;re good to go:</p>
<blockquote><p>Cufon.replace(&#8220;.myCssClass&#8221;);</p></blockquote>
<p>Cufon will walk through your page and replace all instances of &#8220;.myClass&#8221; with your fancy font. It&#8217;ll even maintain the formatting (including colour).</p>
<p>We&#8217;ve tested this on Internet Explorer 6 and 7, FireFox 3.5 and Safari 4.1 and it works like a charm &#8211; and ideal tool for a type-heavy publication like a magazine (BiteSizedJapan).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/10/27/fancy-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop CS5</title>
		<link>http://www.shellbryson.com/index.php/2009/10/08/photoshop-cs5/</link>
		<comments>http://www.shellbryson.com/index.php/2009/10/08/photoshop-cs5/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 15:48:04 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=87</guid>
		<description><![CDATA[Adobe have released some details regarding the next release of PhotoShop. My instinct on hearing this was pretty much &#8220;meh, whatever&#8221;. PhotoShop CS4 was hardly overflowing with new features compared to CS3 after all (apart from rotating the canvas, which I adore). But Adobe have managed to pack in some interesting new features! The morphing [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe have released some details regarding the next release of PhotoShop. My instinct on hearing this was pretty much &#8220;meh, whatever&#8221;. PhotoShop CS4 was hardly overflowing with new features compared to CS3 after all (apart from rotating the canvas, which I adore). But Adobe have managed to pack in some interesting new features! The morphing tool from After Effects is in there, and 3D brushes (interesting), but I think the killer feature is the Corel Painter X style natural brushes. About time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/10/08/photoshop-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bamboo</title>
		<link>http://www.shellbryson.com/index.php/2009/10/07/bamboo/</link>
		<comments>http://www.shellbryson.com/index.php/2009/10/07/bamboo/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 22:28:34 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=52</guid>
		<description><![CDATA[Soon as I saw these new graphics tablets were out from Wacom I couldn&#8217;t wait to get my hands on one. Combining a extra-large touch-pad plus a graphics tablet all in one sounded just fab. After an impatient wait of a week, mine turned up this morning and I love it already! The Bamboo has [...]]]></description>
			<content:encoded><![CDATA[<p>Soon as I saw these new graphics tablets were out from <a href="http://www.wacom.com">Wacom</a> I couldn&#8217;t wait to get my hands on one. Combining a extra-large touch-pad plus a graphics tablet all in one sounded just fab.</p>
<p>After an impatient wait of a week, mine turned up this morning and I love it already!</p>
<div id="attachment_53" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-53" href="http://www.shellbryson.com/index.php/2009/10/07/bamboo/img_0445/"><img class="size-medium wp-image-53" title="Bamboo and MacBook" src="http://www.shellbryson.com/wp-content/uploads/2009/10/IMG_0445-300x225.jpg" alt="Bamboo and MacBook" width="300" height="225" /></a><p class="wp-caption-text">Bamboo and MacBook</p></div>
<div id="attachment_54" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-54" href="http://www.shellbryson.com/index.php/2009/10/07/bamboo/img_0447/"><img class="size-medium wp-image-54" title="Bamboo close-up" src="http://www.shellbryson.com/wp-content/uploads/2009/10/IMG_0447-300x225.jpg" alt="Bamboo close-up" width="300" height="225" /></a><p class="wp-caption-text">Bamboo close-up</p></div>
<p>The Bamboo has all the gesture functionality found on my Apple MacBook Pro&#8217;s native trackpad and iPhones, so its almost second nature using it. I find it more responsive that my aging 6&#8243; Wacom tablet that I normally carry with the MacBook. Also the new &#8220;paper-like&#8221; surface is wonderful to draw on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/10/07/bamboo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>64bit Windows 2003 + MySQL = Pain</title>
		<link>http://www.shellbryson.com/index.php/2009/10/07/64bit-windows-2003-mysql-pain/</link>
		<comments>http://www.shellbryson.com/index.php/2009/10/07/64bit-windows-2003-mysql-pain/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:58:45 +0000</pubDate>
		<dc:creator>Shell</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[mySql]]></category>
		<category><![CDATA[Windows 2003]]></category>

		<guid isPermaLink="false">http://www.shellbryson.com/?p=15</guid>
		<description><![CDATA[You&#8217;d think that moving from our old servers (Windows 2008) to our new servers (Windows 2003) would be pretty simple, seeing as our code is so old-school. But oh now, Microsoft don&#8217;t ship the database drivers for 64bit Windows by default. Joy. So here&#8217;s what you have to do to get MySQL 5.1 working with [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;d think that moving from our old servers (Windows 2008) to our new servers (Windows 2003) would be pretty simple, seeing as our code is so old-school. But oh now, Microsoft don&#8217;t ship the database drivers for 64bit Windows by default. Joy.</p>
<p>So here&#8217;s what you have to do to get MySQL 5.1 working with classic ASP under Windows Server 2003 64bit:</p>
<ul>
<li>Install the 64bit version of <a href="http://dev.mysql.com/downloads/mysql/5.1.html#downloads">mySQL Server (Windows x64)</a></li>
<li>Install the 64bit version of <a href="http://dev.mysql.com/downloads/connector/odbc/5.1.html">mySQL Connector 5.1 (Windows x64)</a></li>
<li>Now the funky bit. Go download:<a title="MSDASQL" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=000364db-5e8b-44a8-b9be-ca44d18b059b&amp;displaylang=en" target="_blank"> 64-Bit OLEDB Provider for ODBC (MSDASQL)</a></li>
<li>Install the Provider</li>
<li>Reboot the server</li>
<li>Set-up your ODBC datasource as per usual</li>
<li>Modify your ASP connection string to explicitly use the new driver:</li>
</ul>
<p>e.g.:</p>
<blockquote><p>PROVIDER=MSDASQL; DRIVER={MySQL ODBC 5.1 Driver}; SERVER=myserver; DATABASE=mydatabase; USER=mydbuser; PASSWORD=mydbpass; OPTION=3;</p></blockquote>
<p>You should now be good to go. If you googled and saw posts about getting IIS to run in 32bit mode as a solution&#8230; <em>don&#8217;t</em>. It&#8217;s a world of pain, and when we tried it made our server really unstable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shellbryson.com/index.php/2009/10/07/64bit-windows-2003-mysql-pain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
