<?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>Blindsignals</title>
	<atom:link href="http://blindsignals.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blindsignals.com</link>
	<description>Web Development, Wine, Gaming, and Life</description>
	<lastBuildDate>Sun, 14 Feb 2010 20:03:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Attaching a footer to the bottom of the page</title>
		<link>http://blindsignals.com/index.php/2010/02/attaching-a-footer-to-the-bottom-of-the-page/</link>
		<comments>http://blindsignals.com/index.php/2010/02/attaching-a-footer-to-the-bottom-of-the-page/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:01:14 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=453</guid>
		<description><![CDATA[I've been messing around with positioning a footer at the bottom of a page for a few hours now and finally after trial and error have a workable solution that seems to be cross browser compliant.
My first thoughts were to absolutely position the footer element at the bottom of the page, but I knew that [...]]]></description>
			<content:encoded><![CDATA[<p>I've been messing around with positioning a footer at the bottom of a page for a few hours now and finally after trial and error have a workable solution that seems to be cross browser compliant.</p>
<p>My first thoughts were to absolutely position the footer element at the bottom of the page, but I knew that it would overlap content if the viewport was too small.  I messed around with it for awhile playing with margins, heights, and padding with little success.  The final result ended up being a combination of previous attempts minus the absolute positioning, and we found a winner!</p>
<p>The basic run down goes a little something like this</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">&lt;style type<span class="sy0">=</span><span class="st0">&quot;text/css&quot;</span><span class="sy0">&gt;</span><br />
html<span class="sy0">,</span> body <span class="br0">&#123;</span> <span class="kw1">height</span><span class="sy0">:</span> <span class="re3"><span class="nu0">100</span>%</span><span class="sy0">;</span> <span class="br0">&#125;</span><br />
<span class="re0">#wrapper</span> <span class="br0">&#123;</span> <span class="kw1">min-height</span><span class="sy0">:</span> <span class="re3"><span class="nu0">100</span>%</span><span class="sy0">;</span> <span class="kw1">height</span><span class="sy0">:</span> <span class="kw2">auto</span> !important<span class="sy0">;</span> <span class="kw1">height</span><span class="sy0">:</span> <span class="re3"><span class="nu0">100</span>%</span><span class="sy0">;</span> <span class="kw1">margin</span><span class="sy0">:</span> 0 0 <span class="re3">-100px</span> <span class="nu0">0</span><span class="sy0">;</span> <span class="br0">&#125;</span><br />
<span class="re0">#spacer</span> <span class="br0">&#123;</span> <span class="kw1">height</span><span class="sy0">:</span> <span class="re3">100px</span><span class="sy0">;</span> <span class="br0">&#125;</span><br />
<span class="re0">#footer</span> <span class="br0">&#123;</span> <span class="kw1">height</span><span class="sy0">:</span> <span class="re3">100px</span><span class="sy0">;</span> <span class="br0">&#125;</span><br />
&lt;/style<span class="sy0">&gt;</span></div>
</div>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;wrapper&quot;</span>&gt;</span><br />
&nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span>Here is some great content<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span><br />
&nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;spacer&quot;</span>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;footer&quot;</span>&gt;</span>footer<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span></div>
</div>
<p>The cool part is that this works in IE6-8, Safari, and Firefox.  The key components to cross browser compliance are the height attributes.  The height 100% attributes of html and body are inherited by IE and mimic ( by bug? ) the min-height attribute stretching the wrapper element the entire length of the viewport.</p>
<p>The spacer element along side the negative margin attribute ( make sure that both numbers match ) help to offset the footer and keep it snuggled at the bottom of the page.</p>
<!-- Easy AdSense V2.57 -->
<!-- Post[count: 2] -->
<div class="ezAdsense adsense adsense-leadout" style="text-align:center;margin:12px;"><script type="text/javascript"><!--
google_ad_client = "pub-1159197076616218";
/* 468x60, blindsignals */
google_ad_slot = "3243777525";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2010/02/attaching-a-footer-to-the-bottom-of-the-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mark&#8217;s Status Update</title>
		<link>http://blindsignals.com/index.php/2010/01/marks-status-update/</link>
		<comments>http://blindsignals.com/index.php/2010/01/marks-status-update/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 13:56:32 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=428</guid>
		<description><![CDATA[Why does it seem like some of the worst things happen to the absolutely most undeserving people?  How many times have we seen a child with brain cancer, a single mother of three with terminal breast cancer doing all that she can to keep fighting for her family, or your own father diagnosed with [...]]]></description>
			<content:encoded><![CDATA[<p>Why does it seem like some of the worst things happen to the absolutely most undeserving people?  How many times have we seen a child with brain cancer, a single mother of three with terminal breast cancer doing all that she can to keep fighting for her family, or your own father diagnosed with stage four colon cancer.  Unfortunately for us the later is the story for Mark, an amazing man, one of those undeserving individuals that should never spend a second of their life suffering for anything.</p>
<p>On Friday January 15, 2010 our father Mark was diagnosed with colon cancer while visiting the hospital for kidney stone pains; to push that knife a little deeper into our hearts we were also told that it has spread to his stomach and liver which are both inoperable.</p>
<p>The doctors sent him off for emergency surgery that occurred a couple days later where nine inches of colon was removed along with bits and pieces that were attached to his stomach.  His recovery from the surgery was amazingly quick ( he passed three kidney stones while on the pain medication so he was ecstatic about that also ), and ten days later he was up and about like nothing had happened.</p>
<p>We need to meet with the oncologist to find out the details for the next phase of treatment, but we do know that it will include six months of chemotherapy where he will receive two day-long doses of the drugs pumped into his body through a port they installed in his chest.</p>
<p>We have reached out to everyone we know, and they have reached even further.  Before <a href="http://www.prayersformark.com">www.prayersformark.com</a> was built we had been tracking the prayers on a printed map and received at least one prayer from every state in the united states and more than twenty countries from around the world.  Knowing so many strangers ( at the time ) were thinking about him, and took the time to say a little prayer, even for someone they didn't know is an amazing feeling that has made each day so much more enjoyable and easier.</p>
<p>Our spirits have been greatly lifted by all the support we have received and it is physically possible to see how much it has helped our father; to try and keep the high rolling, prayersformark.com was created for him to stop by and see how many people really do love and support him.</p>
<p>Thank you all for your support, love, and prayers, they have not gone unheard and have changed the lives of an entire family. If you would like to show your support stop by <a href="http://www.prayersformark.com">www.prayersformark.com</a> and leave a little remark for him or our family, we would all greatly appreciate it. God bless you all, and may you and your family stay strong and healthy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2010/01/marks-status-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista &#8211; Windows installer service could not be accessed</title>
		<link>http://blindsignals.com/index.php/2009/12/vista-windows-installer-service-could-not-be-accessed/</link>
		<comments>http://blindsignals.com/index.php/2009/12/vista-windows-installer-service-could-not-be-accessed/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 05:01:48 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows Fixes]]></category>
		<category><![CDATA[regserver]]></category>
		<category><![CDATA[vista 64]]></category>
		<category><![CDATA[windows installer]]></category>
		<category><![CDATA[wow64]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=396</guid>
		<description><![CDATA[*facepalm*
What a mini nightmare this turned out to be, but after an hour of unsuccessful googled fixes we have a winner!  Here is a brief list of what I tried and then the one that worked and made the most sense; sorry I don't have post-backs to where the information came from, and I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>*facepalm*</strong></p>
<p>What a mini nightmare this turned out to be, but after an hour of unsuccessful googled fixes we have a winner!  Here is a brief list of what I tried and then the one that worked and made the most sense; sorry I don't have post-backs to where the information came from, and I do not take credit for any of these fixes.</p>
<div style="height: 30px;"></div>
<p>Attempt 1</p>
<blockquote>
<ul>
<li>Boot into safemode ( f8 when restarting the computer )</li>
<li>Click Start, then click run ( or hit windows key + r ), then type cmd and click ok</li>
<li>
Type in the following:</p>
<div style="padding: 10px 0 0 10px;">
<ul>
<li>%windir%/system32/msiexec.exe /unregister</li>
<li>%windir%/syswow64/msiexec.exe /unregister</li>
<li>%windir%/system32/msiexec /regserver</li>
<li>%windir%/system32/msiexec /regserver</li>
</ul>
</div>
</li>
<li>Reboot and try your install again</li>
</ul>
</blockquote>
<div style="height: 40px;"></div>
<p>Attempt 2 - Little more advanced, please don't screw up your system</p>
<blockquote>
<ul>
<li>Click Start, then click run ( or hit windows key + r ), then type regedit and click ok</li>
<li>Navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer\Enum]</li>
<li>
The view pane should look like this:</p>
<div style="padding: 10px 0 0 10px;">"0"="Root\\LEGACY_MSISERVER\\0000"<br />
"Count"=dword:00000001<br />
"NextInstance"=dword:00000001</div>
</li>
<li>If it looks similar right click Enum entry in the left pane tree and select delete</li>
<li>Reboot and try your install again</li>
</ul>
</blockquote>
<div style="height: 40px;"></div>
<p>Attempt 3 - Little bit more advanced, be careful!</p>
<blockquote>
<ul>
<li>Click Start, then click run ( or hit windows key + r ), then type regedit and click ok</li>
<li>Navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer]</li>
<li>Look for the key name DisplayName and make sure that the value is set as C:\WINDOWS\SysWOW64\msiexec.exe /V</li>
<li>If you change it reboot</li>
</ul>
</blockquote>
<div style="height: 40px;"></div>
<p>Attempt 4 - <strong>this worked for me</strong></p>
<blockquote><p>
- Click Start, then click run ( or hit windows key + r ), then type regedit and click ok<br />
- Navigate to [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer]<br />
- Look for the key name WOW64, double click it and change the "Value data" to 0<br />
- Reboot</p></blockquote>
<div style="height: 50px;"></div>
<p>In attempt 4, the WOW64 key value of 1 tells the installer to only deal with 32-bit installers and error on the rest, by changing this to 0 the system is now open to install 64-bit apps ( hopefully ) with less headaches.</p>
<p>Hope this helps someone!</p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/12/vista-windows-installer-service-could-not-be-accessed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Arrows / Pointer Tutorial</title>
		<link>http://blindsignals.com/index.php/2009/12/css-arrows-pointer-tutorial/</link>
		<comments>http://blindsignals.com/index.php/2009/12/css-arrows-pointer-tutorial/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 22:10:08 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[css arrow]]></category>
		<category><![CDATA[css pointer]]></category>
		<category><![CDATA[css triangle]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=337</guid>
		<description><![CDATA[Arrows, pointers, triangles, whatever you wish to call this technique you will end up making a pure CSS arrow; graphics are forbidden!
The process is actually extremely simple, the basic idea is that you you set a nice fat border then remove the side you wish the arrow to point to.
Example Code

.right-arrow &#123;
border: 8px solid white;
border-width: [...]]]></description>
			<content:encoded><![CDATA[<p>Arrows, pointers, triangles, whatever you wish to call this technique you will end up making a pure CSS arrow; graphics are forbidden!</p>
<p>The process is actually extremely simple, the basic idea is that you you set a nice fat border then remove the side you wish the arrow to point to.</p>
<p><strong>Example Code</strong></p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;"><span class="re1">.right-arrow</span> <span class="br0">&#123;</span></p>
<p><span class="kw1">border</span><span class="sy0">:</span> <span class="re3">8px</span> <span class="kw2">solid</span> <span class="kw2">white</span><span class="sy0">;</span><br />
<span class="kw1">border-width</span><span class="sy0">:</span> <span class="re3">8px</span> 0 <span class="re3">8px</span> <span class="re3">8px</span><span class="sy0">;</span><br />
<span class="kw1">border-color</span><span class="sy0">:</span> <span class="kw2">white</span> <span class="kw2">red</span><span class="sy0">;</span><br />
<span class="kw1">font-size</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span> <span class="coMULTI">/* needed for IE browsers, if this isn't set to 0 you will end up with a trapezoid */</span><br />
<span class="kw1">line-height</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span></p>
<p><span class="br0">&#125;</span></div>
</div>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">class</span><span class="sy0">=</span><span class="st0">&quot;right-arrow&quot;</span>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span></div>
</div>
<p><strong>Output</strong> </p>
<div style="border: 8px solid white; border-width: 8px 0 8px 8px; border-color: white red; font-size: 0; line-height: 0;"></div>
<div style="height: 25px;"></div>
<p>So that works fairly nice, but we want to actually do something useful with the arrow like pointing to a link; using a div just complicates the job as we now have to deal with floating.  If we change the first example's tag from div to span and remove the font-size property, or set a width to it you will notice we get a trapezoid shape.  Let's try and get this fix0red!</p>
<p><strong>Example Code</strong></p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;"><span class="re1">.right-arrow</span> <span class="br0">&#123;</span></p>
<p><span class="kw1">border</span><span class="sy0">:</span> <span class="re3">8px</span> <span class="kw2">solid</span> <span class="kw2">white</span><span class="sy0">;</span><br />
<span class="kw1">border-width</span><span class="sy0">:</span> <span class="re3">8px</span> 0 <span class="re3">8px</span> <span class="re3">8px</span><span class="sy0">;</span><br />
<span class="kw1">border-color</span><span class="sy0">:</span> <span class="kw2">white</span> <span class="kw2">red</span><span class="sy0">;</span><br />
<span class="kw1">font-size</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span> <span class="coMULTI">/* needed for IE browsers, if this isn't set to 0 you will end up with a trapezoid */</span><br />
<span class="kw1">line-height</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span><br />
<span class="kw1">display</span><span class="sy0">:</span> inline-<span class="kw2">block</span><span class="sy0">;</span></p>
<p><span class="br0">&#125;</span></div>
</div>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/span.html"><span class="kw2">span</span></a> <span class="kw3">class</span><span class="sy0">=</span><span class="st0">&quot;right-arrow&quot;</span>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/span.html"><span class="kw2">span</span></a>&gt;</span> <span class="sc2">&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;http://twitter.com/blindsignals&quot;</span>&gt;</span>follow me on twitter<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;</span>!</div>
</div>
<p><strong>Output</strong> </p>
<p><span style="border: 8px solid white; border-width: 8px 0 8px 8px; border-color: white red; font-size: 0; display: inline-block; line-height: 0;"></span> <a href="http://twitter.com/blindsignals">follow me on twitter</a>!</p>
<p>The possibilities are fairly large with this technique and it almost certainly shuts out any previous requirement of an image to get the same functionality.  With positioning properties we can move our arrow anywhere within a block element to make beautiful pointers on menu items, we can make pointing list items, link pointers, and even faux element wrapping!</p>
<p>Go and make peace with your GIFs and PNGs, they are going to hate you after this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/12/css-arrows-pointer-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MS SQL date / time conversion</title>
		<link>http://blindsignals.com/index.php/2009/09/ms-sql-date-time-conversion/</link>
		<comments>http://blindsignals.com/index.php/2009/09/ms-sql-date-time-conversion/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 16:34:19 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[date time]]></category>
		<category><![CDATA[datetime]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=322</guid>
		<description><![CDATA[I often find myself turning to MSDN to get the possible conversion options on MS SQL's date data type, so I finally became un-lazy and created a little script to use in the future to quickly list all possibilities with nice example data and name references.

SELECT
CONVERT&#40; varchar, GetDate&#40;&#41;, 100 &#41; AS '100 Default',
CONVERT&#40; varchar, GetDate&#40;&#41;, [...]]]></description>
			<content:encoded><![CDATA[<p>I often find myself turning to MSDN to get the possible conversion options on MS SQL's date data type, so I finally became un-lazy and created a little script to use in the future to quickly list all possibilities with nice example data and name references.</p>
<div class="codesnip-container" >
<div class="sql codesnip" style="font-family:monospace;"><span class="kw1">SELECT</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 100 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'100 Default'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 101 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'101 USA'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 102 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'102 ANSI'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 103 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'103 British/French'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 104 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'104 German'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 105 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'105 Italian'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 106 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'106'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 107 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'107'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 108 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'108'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 109 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'109 Default + milliseconds'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 110 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'110 USA'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 111 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'111 JAPAN'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 112 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'112 ISO'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 113 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'113 Europe default + milliseconds'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 114 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'114'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 120 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'120 ODBC canonical'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 121 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'121 ODBC canonical (with milliseconds)'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 126 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'126 ISO8601'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 130 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'130 Hijri'</span><span class="sy0">,</span><br />
CONVERT<span class="br0">&#40;</span> varchar<span class="sy0">,</span> GetDate<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> 131 <span class="br0">&#41;</span> <span class="kw1">AS</span> <span class="st0">'131 Hijri'</span></div>
</div>
<p>Pretty dang simple if you ask me; once you find the format you want take a look at the column name and reference it back to the code.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/09/ms-sql-date-time-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP Search Stemmer Class</title>
		<link>http://blindsignals.com/index.php/2009/08/asp-search-stemmer-class/</link>
		<comments>http://blindsignals.com/index.php/2009/08/asp-search-stemmer-class/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 14:46:12 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[searching]]></category>
		<category><![CDATA[stemmer]]></category>
		<category><![CDATA[stemming]]></category>
		<category><![CDATA[word bases]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=312</guid>
		<description><![CDATA[The original stemmer class was developed by Martin Porter to bring words back to their word stems.  For example "abilities" would stem to "able", "smelling" to "smell", "I'm awesome" to "damn straight", etc.
I couldn't find a Classic ASP version of this so I ported a port ( I'm not even sure if that's legal! [...]]]></description>
			<content:encoded><![CDATA[<p>The original stemmer class was developed by Martin Porter to bring words back to their word stems.  For example "abilities" would stem to "able", "smelling" to "smell", "I'm awesome" to "damn straight", etc.</p>
<p>I couldn't find a Classic ASP version of this so I ported a port ( I'm not even sure if that's legal! ).</p>
<p>example usage</p>
<pre>
<div class="codesnip-container" >
<div class="vb codesnip" style="font-family:monospace;"><span class="kw1">set</span> Search = <span class="kw1">new</span> Stemmer
&nbsp; &nbsp; &nbsp;tmp_string = Search.Stem( <span class="st0">&quot;abilities&quot;</span> )

&nbsp; &nbsp; &nbsp;response.write tmp_string
<span class="kw1">set</span> Search = <span class="kw1">nothing</span></div>
</div>
</pre>
<p>This should produce an echo of "able".  Below is a dictionary list of words you can test the class out with, let me know if you find any bugs or issues.</p>
<p>Download <a href="http://blindsignals.com/downloads/code/stemmer/class_Stemmer.asp">ASP Stemmer 1.0.0</a><br />
Download <a href="http://blindsignals.com/downloads/code/stemmer/voc.txt">Dictionary File</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/08/asp-search-stemmer-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check for legit credit card numbers</title>
		<link>http://blindsignals.com/index.php/2009/07/how-to-check-for-legit-credit-card-numbers/</link>
		<comments>http://blindsignals.com/index.php/2009/07/how-to-check-for-legit-credit-card-numbers/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 00:23:08 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[credit cards]]></category>
		<category><![CDATA[luhn]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=294</guid>
		<description><![CDATA[I think the title says it all; I've seen many implementations for checking credit card numbers and in my opinion there is really only one that you need and actually works.
Sadly, still in use today by many code examples that I've run across is the good old


if ( first_digit = 4 ) then &#34;visa&#34;
elseif ( [...]]]></description>
			<content:encoded><![CDATA[<p>I think the title says it all; I've seen many implementations for checking credit card numbers and in my opinion there is really only one that you need and actually works.</p>
<p>Sadly, still in use today by many code examples that I've run across is the good old</p>
<pre>
<div class="codesnip-container" >
<div class="vb codesnip" style="font-family:monospace;"><span class="kw1">if</span> ( first_digit = 4 ) <span class="kw1">then</span> <span class="st0">&quot;visa&quot;</span>
<span class="kw1">elseif</span> ( first_digit = 5 ) <span class="kw1">then</span> <span class="st0">&quot;mastercard&quot;</span>
<span class="kw1">elseif</span> ( first_digit = 3 ) <span class="kw1">then</span> <span class="st0">&quot;amex&quot;</span>
<span class="kw1">elseif</span> ( first_digit = 6 ) <span class="kw1">then</span> <span class="st0">&quot;discover&quot;</span>
<span class="kw1">else</span>
<span class="st0">&quot;invalid card&quot;</span>
<span class="kw1">end</span> <span class="kw1">if</span></div>
</div>
</pre>
<p>/facepalm</p>
<p>This isn't entirely bad ( yes it is, I'm just trying to be nice ), most likely those first digits will always be associated with the cards mentioned above, the problem is the numbers that follow.  </p>
<p>"But I found one that checks and second and third numbers!"</p>
<p>Awesome, one tiny step closer to almost not really getting anywhere!</p>
<p>Obviously I'm leading up to the one and only Luhn algorithm which is basically a simple checksum formula used to validate a few different sequences of numbers, for example credit card account numbers.</p>
<p>Straight from <a href="http://en.wikipedia.org/wiki/Luhn_algorithm">Wikipedia</a> here is what is going on with the algorithm</p>
<blockquote><p>
The formula verifies a number against its included check digit, which is usually appended to a partial account number to generate the full account number. This account number must pass the following test:</p>
<p>   1. Counting from the check digit, which is the rightmost, and moving left, double the value of every second digit.<br />
   2. Sum the digits of the products together with the undoubled digits from the original number.<br />
   3. If the total ends in 0 (put another way, if the total modulo 10 is congruent to 0), then the number is valid according to the Luhn formula; else it is not valid.</p>
<p>As an illustration, if the account number is 49927398716, it will be validated as follows:</p>
<p>   1. Double every second digit, from the rightmost: (1×2) = 2, (8×2) = 16, (3×2) = 6, (2×2) = 4, (9×2) = 18<br />
   2. Sum all the individual digits (digits in parentheses are the products from Step 1): 6 + (2) + 7 + (1+6) + 9 + (6) + 7 + (4) + 9 + (1+8) + 4 = 70<br />
   3. Take the sum modulo 10: 70 mod 10 = 0; the account number is valid.
</p></blockquote>
<p>Below is an ASP version I've ported, enjoy.</p>
<pre>
<div class="codesnip-container" >
<div class="vb codesnip" style="font-family:monospace;">ACCOUNT = <span class="st0">&quot;4500000000000001&quot;</span>
alt = <span class="kw1">false</span>
sum = 0

&nbsp; &nbsp; <span class="kw1">for</span> i = len( ACCOUNT ) <span class="kw1">to</span> 1 <span class="kw1">step</span> - 1
&nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp; digit = mid( ACCOUNT, i, 1 )
&nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> ( alt = <span class="kw1">true</span> ) <span class="kw1">then</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; digit = digit * 2

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> ( digit &gt; 9 ) <span class="kw1">then</span> digit = digit - 9 <span class="kw1">end</span> <span class="kw1">if</span>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">end</span> <span class="kw1">if</span>

&nbsp; &nbsp; &nbsp; &nbsp; sum = ( sum + digit ) <span class="kw1">mod</span> 10 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span> ( alt = <span class="kw1">true</span> ) <span class="kw1">then</span> alt = <span class="kw1">false</span> <span class="kw1">else</span> alt = <span class="kw1">true</span>
&nbsp; &nbsp; <span class="kw1">next</span>


<span class="kw1">if</span> ( sum = 0 ) <span class="kw1">then</span>
&nbsp; <span class="co1">'legit
</span><span class="kw1">else</span>
&nbsp; <span class="co1">'did not pass the test
</span><span class="kw1">end</span> <span class="kw1">if</span></div>
</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/07/how-to-check-for-legit-credit-card-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Sprites or How to make your pages load faster</title>
		<link>http://blindsignals.com/index.php/2009/07/css-sprites-or-how-to-make-your-pages-load-faster/</link>
		<comments>http://blindsignals.com/index.php/2009/07/css-sprites-or-how-to-make-your-pages-load-faster/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 03:27:18 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS sprite]]></category>
		<category><![CDATA[development techniques]]></category>
		<category><![CDATA[HTTP-requests]]></category>
		<category><![CDATA[overhead]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=166</guid>
		<description><![CDATA[Regurgitating old web techniques seems to be somewhat of a trend I've fallen into recently, but as I see questions and non-existent usage of these important and basic techniques I feel obligated to help spread the word once again.
Here are a couple of great articles explaining what CSS sprites are, their purpose, makeup, and why [...]]]></description>
			<content:encoded><![CDATA[<p>Regurgitating old web techniques seems to be somewhat of a trend I've fallen into recently, but as I see questions and non-existent usage of these important and basic techniques I feel obligated to help spread the word once again.</p>
<p>Here are a couple of great articles explaining what CSS sprites are, their purpose, makeup, and why no site has a reason to NOT be using this technique aside from laziness ( which is why my blog doesn't use them, <3 Wordpress ).</p>
<p>- <a href="http://www.alistapart.com/articles/sprites">http://www.alistapart.com/articles/sprites</a><br />
- <a href="http://css-tricks.com/css-sprites/">http://css-tricks.com/css-sprites/</a></p>
<p>Save the Pandas, take the bus, stick to w3 standards!  Ah, who am I kidding.</p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/07/css-sprites-or-how-to-make-your-pages-load-faster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evony.com or why I&#8217;m quitting</title>
		<link>http://blindsignals.com/index.php/2009/07/evony-com-or-why-im-quitting/</link>
		<comments>http://blindsignals.com/index.php/2009/07/evony-com-or-why-im-quitting/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 15:22:08 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[evony online]]></category>
		<category><![CDATA[gold farmers]]></category>
		<category><![CDATA[world of warcraft]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=253</guid>
		<description><![CDATA[I was passed this article and have finally made my decision to quit playing, wee.
The game is Evony, I've been playing for a couple weeks and feel I've come to the end; the game is decent, but starting to get boring now that accomplishing anything really takes an entire day or more of waiting ( [...]]]></description>
			<content:encoded><![CDATA[<p>I was passed <a href="http://www.guardian.co.uk/technology/gamesblog/2009/jul/15/games-evony-spam-internet">this</a> article and have finally made my decision to quit playing, wee.</p>
<p>The game is <a href="http://24.evony.com">Evony</a>, I've been playing for a couple weeks and feel I've come to the end; the game is decent, but starting to get boring now that accomplishing anything really takes an entire day or more of waiting ( and it just gets longer, way longer ), and lots of time searching for various objects that seem to be non-existent aside from the online shop that only accepts cash.  The player vs player, or player vs computer is also very redundant; you 'spy' on the target, decide how many of your troops are needed and click attack; nothing more to it, repeat perpetually.</p>
<p>I've been doing my best to ignore the extreme push to spend real US dollars to purchase objects that enhance game play.  The objects generally speed the game up for the player, but the part that really irks me is the objects called 'medals' that are required to advance in rank.  At the start of the game these medals are given out like candy, and as you advance further they can only be obtained by winning computer generated battles at a rate of what seems to be less than 1%.  If you don't wish to spend weeks of countless battles looking for these non-existent objects you could spend a few seconds buying them in the online shop for real US dollars, giving you a clear advantage in a game that is advertised as 'Free Forever'.</p>
<p>The real reason that pushed me to quit playing is the game's affiliation with a famous World of Warcraft gold farming company.  For those who are unfamiliar with this, the companies basically hire Chinese workers for almost no pay to collect in-game currency and resell it for real world cash.  The business model alone isn't what gets people in a tizzy, it's the conditions that the workers are put in and how they are treated.  I know my word isn't worth much, but trust me anyone associated with these types of companies are complete scum and I will not be associated with them in any way.</p>
<p>Let's sum up what I don't like and why I'm quitting before I start on a real rant.</p>
<ol>
<li>Affiliation with a disgustingly inhuman company.</li>
<li>Pushed to spend USD</li>
<li>Boob advertising or overall 'sex sells' mentality that appears in the majority of all Evony ads; here are a few of the many ads that appear on family friendly sites:
<div style="text-align: center;">
<div><img src="http://blindsignals.com/downloads/evony_4.jpg" alt="" /></div>
<div style="padding-top: 15px;"><img src="http://blindsignals.com/downloads/evony_3.jpg" alt="" /></div>
<div style="padding-top: 15px;"><img src="http://blindsignals.com/downloads/evony_2.jpg" alt="" /></div>
<div style="padding-top: 15px;"><img src="http://blindsignals.com/downloads/evony_1.jpg" alt="" /></div>
</div>
</li>
</ol>
<p>Good luck to everyone, and Go Vikings ( server 24 <img src='http://blindsignals.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  )!</p>
<p>Edit: <strong>And awesome, now I get to play tag with Google's Adsense to try and block Evony and WoW gold farming ads.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/07/evony-com-or-why-im-quitting/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Evony 100,000 Prestige Noob</title>
		<link>http://blindsignals.com/index.php/2009/07/evony-100000-prestige-noob/</link>
		<comments>http://blindsignals.com/index.php/2009/07/evony-100000-prestige-noob/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 03:56:44 +0000</pubDate>
		<dc:creator>chelfers</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[evony]]></category>
		<category><![CDATA[prestige]]></category>
		<category><![CDATA[protection]]></category>
		<category><![CDATA[rockage]]></category>

		<guid isPermaLink="false">http://blindsignals.com/?p=202</guid>
		<description><![CDATA[Let's set things straight right off; I do not think prestige is important for judging someone's abilities in game, it has its uses but for the most part it means nothing.  This guide is to explain how prestige works and how easily it can be gained.
By the end of this guide hopefully I will have [...]]]></description>
			<content:encoded><![CDATA[<p>Let's set things straight right off; I do not think prestige is important for judging someone's abilities in game, it has its uses but for the most part it means nothing.  <strong>This guide is to explain how prestige works and how easily it can be gained.</strong><span id="more-202"></span></p>
<p>By the end of this guide hopefully I will have explained well enough for someone to follow the same steps and reach over 100,000 prestige before beginner protection wears off without spending a single dollar.</p>
<p>Let's get the screen shot out of the way, everyone want's to see the goods first so here is one of three; they can all be found in neat-n-tidy little links at the bottom of the article.</p>
<p><img src="http://blindsignals.com/downloads/evony_noob_1.gif" alt="im a noob" /></p>
<p>There are three basic and very important rules for pulling this off:</p>
<ul>
<li> Do NOT upgrade your town hall past level two</li>
<li> Do NOT go past the rank AND title of Civilian, ever.</li>
<li> Make sure you can monitor the account and keep your build queues full</li>
</ul>
<p>The first two rules deal with game mechanics, it is a fact that with each upgrade of the Town Hall and with each Rank/Title increase you receive less prestige for performing the same actions as a lower ranking individual with a crappy Town Hall.  I guess this is their way of trying tie it back to a real world sort of understanding; for example if the President builds a school we say great he's doing his job.  If Joe Blow collects money, coordinates volunteer help, and erects a school he is a hero; same sort of concept in evony, except there are way more swords in our little world.</p>
<p>The third rule comes down to time management really, obviously the more you build the more prestige you get, and after the first three days or so you will start to pull ahead of the other llamas gaining prestige faster and in larger quantities as d-day approaches.</p>
<p>Enough with the babbling, this is for the most part what I did to achieve my 100k+ before protection wore off.</p>
<ul>
<li> Upgraded to Town Hall lvl2 at the last possible moment</li>
<li> Never accepted the promotion quests</li>
<li> Built 15 cottages to populate my workforce</li>
<li> Built 4 of every resource type ( see photo for levels ), and maxed out as much as I could with the population I have</li>
<li> Built 1 of every other building type ( except warehouse of course )</li>
<li> Researched non-stop, first focusing on the resource enhancements.</li>
<li> Bought low / sold high on the market to help when times got tough</li>
</ul>
<p>Here are my research and wall stats to hopefully show I do come out of noob mode with fists in the air.</p>
<ul> Academy</p>
<li> Agriculture 6</li>
<li> Lumbering 6</li>
<li> Masonry 6</li>
<li> Mining 6</li>
<li> Metal Casting 4</li>
<li> Informatics 6</li>
<li> Military Science 5</li>
<li> Military Tradition 5</li>
<li> Iron Working 4</li>
<li> Logistics 3</li>
<li> Compass 5 ( don't hate, it's my next project )</li>
<li> Horseback Riding 1</li>
<li> Archery 6</li>
<li> Medicine 3</li>
<li> Construction 3</li>
<li> Engineering 2</li>
</ul>
<ul> Wall lvl7</p>
<li> Trade 300</li>
<li> Abatis 300</li>
<li> Archery Tower 3300</li>
</ul>
<p>This would be way more successful if you have a feeder account on the same server, or in other words someone to keep feeding you resources to make up for our smaller plots.</p>
<p>Damn, that was extremely simple.  I'm running on empty here ( 112+ hour work week for the last two weeks ), I apologize for any grammatical issues I will clean it up when I clear my head in a week or so.</p>
<p><a href="http://blindsignals.com/downloads/evony_noob_1.gif">Photo: 100,000+ Prestige still under protection</a><br />
<a href="http://blindsignals.com/downloads/evony_noob_2.gif">Photo: Town view, my layout and building levels so far</a><br />
<a href="http://blindsignals.com/downloads/evony_noob_3.gif">Photo: City view, resource layout and levels</a><br />
<a href="http://blindsignals.com/downloads/evony_noob_5.gif">Photo: Wall</a></p>
<p><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://blindsignals.com/index.php/2009/07/evony-100000-prestige-noob/feed/</wfw:commentRss>
		<slash:comments>91</slash:comments>
		</item>
	</channel>
</rss>
