<?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>Robert Hurst &#187; web</title>
	<atom:link href="http://robert.hurst-ri.us/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.hurst-ri.us</link>
	<description>The life &#38; times of an information systems engineer</description>
	<lastBuildDate>Mon, 16 Jan 2012 19:34:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux Hack &amp; Slash client</title>
		<link>http://robert.hurst-ri.us/2011/10/29/linux-hack-slash-client/</link>
		<comments>http://robert.hurst-ri.us/2011/10/29/linux-hack-slash-client/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 17:45:25 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Pastime]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=1173</guid>
		<description><![CDATA[In the last millennium, I developed a custom Hack &#38; Slash gaming client for Windows &#8217;98, because I wanted to embed both music and sound effects to enhance online play.  The result was a big hit among its players.  But as a Linux user, I could not get that cool feature&#8230; that is, until today. [...]]]></description>
			<content:encoded><![CDATA[<p>In the last millennium, I developed a custom <a title="Role-playing game daemon" href="http://robert.hurst-ri.us/games/rpgd" target="_blank">Hack &amp; Slash</a> gaming client for Windows &#8217;98, because I wanted to embed both music and sound effects to enhance online play.  The result was a big hit among its players.  But as a Linux user, I could not get that cool feature&#8230; that is, until today.</p>
<p>The result is this Tcl/Expect script (listed below).  First, you will need to make certain you have these dependent packages installed:</p>
<pre>yum install expect fluid-soundfont-lite-patches timidity++</pre>
<p>Next, you will need to fetch the multimedia files into your home directory:</p>
<pre>svn co https://robert.hurst-ri.us/svn/rpgd/trunk/snd Music/hack</pre>
<p>Then, setup your telnet session attributes in <strong>.telnetrc</strong> to automatically load when you connect:</p>
<pre>robert.hurst-ri.us
    mode character
    set crlf off
    unset escape</pre>
<p>And last, simply copy/paste the script below into an executable text file of your choice and run it.</p>
<pre>#!/usr/bin/expect -f

# play a MIDI file
proc midi s {
  set mid [string range $s 3 end-3]
  set bool [string range $s end-1 end-1]
  set cmd "killall playmus 2&gt; /dev/null; playmus -v 25 Music/hack/$mid.mid &amp;&gt; /dev/null &amp;"
  system $cmd
}

# play a WAVE file
proc wave s {
  set wav [string range $s 3 end-3]
  set bool [string range $s end-1 end-1]
  set cmd "play Music/hack/$wav.wav &amp;&gt; /dev/null"
  if {$bool == 0} { set cmd "$cmd &amp;" }
  system $cmd
}

# connect to the game server ...
log_user 0
spawn telnet robert.hurst-ri.us 7000
wave "...dungeon;0."

expect_background {
  -re "\033\\\[\\\{.*\\\}" { midi $expect_out(0,string); return }
  -re "\033\\\[\\\[.*\\\]" { wave $expect_out(0,string); return }
  -re "(.*)" { send_user -- $expect_out(0,string); }
}

interact</pre>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2011/10/29/linux-hack-slash-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 14 Animated GIF fix</title>
		<link>http://robert.hurst-ri.us/2010/11/30/fedora-14-animated-gif-fix/</link>
		<comments>http://robert.hurst-ri.us/2010/11/30/fedora-14-animated-gif-fix/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 01:54:10 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=921</guid>
		<description><![CDATA[Oh dear, it seems that F14&#8242;s cairo package is not properly implemented by GNOME and Firefox web browser &#8212; if your Gnome is giving you fits with its pull-down menus not entirely rendering and if animated GIFs are only showing their 1st frame and the rest transparent equating to an annoying &#8220;blink&#8221; effect, then this [...]]]></description>
			<content:encoded><![CDATA[<p>Oh dear, it seems that F14&#8242;s cairo package is not properly implemented by GNOME and Firefox web browser &#8212; if your Gnome is giving you fits with its pull-down menus not entirely rendering and if animated GIFs are only showing their 1st frame and the rest transparent equating to an annoying &#8220;blink&#8221; effect, then this fix is for you:</p>
<p>$ <strong>vi /etc/yum.repos.d/fedora-13.repo</strong></p>
<p>[fedora13]<br />
name=Fedora 13 &#8211; $basearch<br />
failovermethod=priority<br />
baseurl=http://download.fedoraproject.org/pub/fedora/linux/releases/13/Everything/$basearch/os/<br />
enabled=1<br />
metadata_expire=7d<br />
gpgcheck=1<br />
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch</p>
<p>$ <strong>yum &#8211;nogpgcheck &#8211;noplugins &#8211;disablerepo=* &#8211;enablerepo=fedora13 downgrade cairo cairomm cairo-devel cairomm-devel</strong></p>
<p>Essentially, you are going from cairo-1.10 back to cairo-1.8.  Re-start Firefox and voila, no more annoying GIF issues!</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2010/11/30/fedora-14-animated-gif-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CommodoreServer</title>
		<link>http://robert.hurst-ri.us/2010/10/02/commodoreserver/</link>
		<comments>http://robert.hurst-ri.us/2010/10/02/commodoreserver/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 15:57:31 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C64]]></category>
		<category><![CDATA[VIC20]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=859</guid>
		<description><![CDATA[Talk about retro-cool technology. This web site features a new internet modem for all Commodore 8-bit computers, for easy &#8220;Load &#38; Go&#8221; access into their online software library. And I was able to contribute to that library my very own VIC 20 collection as a floppy disk. How neat is that? This demo is fascinating [...]]]></description>
			<content:encoded><![CDATA[<p>Talk about retro-cool technology.  This web site features a new internet modem for all Commodore 8-bit computers, for easy &#8220;Load &amp; Go&#8221; access into their online software library.  And I was able to contribute to that library my very own VIC 20 collection as a floppy disk.  How neat is that?</p>
<p>This demo is fascinating to watch a C64 using their online software library in action:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="576" height="480" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/jzxWLnHvp44" /><embed type="application/x-shockwave-flash" width="576" height="480" src="http://www.youtube.com/v/jzxWLnHvp44"></embed></object></p>
<p><a href="http://www.youtube.com/watch?v=jzxWLnHvp44">C64 on Internet using the Comet64 Modem</a></p>
<p>I also purchased one of these 1541 Ultimate 2 drives, although I might not even see it this calendar year as these units are severely back-ordered:</p>
<p><a href="http://www.youtube.com/watch?v=N_HEvR6AgY0">The 1541 Ultimate 2 cartridge for the Commodore 64</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2010/10/02/commodoreserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Privacy Matters 1-2-3</title>
		<link>http://robert.hurst-ri.us/2010/04/01/privacy-matters-1-2-3/</link>
		<comments>http://robert.hurst-ri.us/2010/04/01/privacy-matters-1-2-3/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 19:19:46 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=642</guid>
		<description><![CDATA[Web user beware! This &#8220;outfit&#8221; has their advertisements on a lot of social networking web sites.  If their &#8220;pop-up&#8221; appears on your screen, I would advise that you immediately power-off your computer. I consider myself fairly web-savvy and have done countless, secure, safe transactions on the Internet for the past 15-years.  But this event totally [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Web user beware!</strong> This &#8220;outfit&#8221; has their advertisements on a lot of social networking web sites.  If their &#8220;pop-up&#8221; appears on your screen, I would advise that you <span style="text-decoration: underline;">immediately power-off</span> your computer.</p>
<p>I consider myself fairly web-savvy and have done countless, secure, safe transactions on the Internet for the past 15-years.  But this event totally <strong>disregarded my choice to decline </strong>their purported service &#8212; clicking &#8220;No thanks&#8221; resulted in a monthly recurring charge from my credit card.  And I can only blame myself for not catching it earlier, but this wreaks of a criminal act.</p>
<p>Well, calling their customer service was no treat either, when you are greeted by &#8220;Enter the credit card number that is being billed&#8221;.  Yeah, right, like I want to disclose that information to you, when you ripped it off dove-tailing another separate online service to begin with.  I purportedly received a claim number and the last charge will get reversed within the next two business days.  Stay tuned, I have this suspicious feeling this episode ain&#8217;t quite over.  Let&#8217;s hope my intuition on this matter is wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2010/04/01/privacy-matters-1-2-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving to DynDNS</title>
		<link>http://robert.hurst-ri.us/2010/03/20/moving-to-dyndns/</link>
		<comments>http://robert.hurst-ri.us/2010/03/20/moving-to-dyndns/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 01:11:14 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=595</guid>
		<description><![CDATA[After switching to FiOS, it was time to move my domain, hurst-ri.us, from a solid provider in dotEarth to a new location with DynDNS. The reason for the move is because I would no longer be able to co-locate with my brother&#8217;s store, rah-cocos.com, as he prepares to close his store/warehouse &#8212; along with the [...]]]></description>
			<content:encoded><![CDATA[<p>After switching to <a title="January 2010" href="http://robert.hurst-ri.us/2010/01/16/fios/" target="_blank">FiOS</a>, it was time to move my domain, <strong>hurst-ri.us</strong>, from a solid provider in dotEarth to a new location with DynDNS.  The reason for the move is because I would no longer be able to co-locate with my brother&#8217;s store, <strong>rah-cocos.com</strong>, as he prepares to close his store/warehouse &#8212; along with the FiOS for business line and the Internet static IP address.  But not to worry, because the FiOS router allows you to DMZ an internal device and includes a native client to send along any dynamic IP address update to a dynamic DNS provider, such as DynDNS.</p>
<p>I started by testing the router&#8217;s capabilities by procuring a free host on one of DynDNS&#8217;s 88 domains: <strong>hurst.homelinux.net</strong>.  And, it&#8217;s always nice to have an extra hostname, for separation of virtual services from each other, such as email and web addresses.  That worked out very quickly and easily.</p>
<p>Next, I tested remote access to services I wanted to provide: email, ftp, ssh, imaps, web, and webdav.  I created a new virtual guest running Fedora 12 on my workstation and rewrote the iptable rules to forward the DMZ ports to it.  Again, no issues, because there is no  ISP port-blocking enforced.  Sending outbound mail had gotten a little tricky, because a lot of competing ISPs will block email from residential email servers &#8212; even if they have legitimate domains like myself &#8212; because it is sent unauthenticated (and probably unsolicited) by Verizon&#8217;s network and not their servers.</p>
<p>I discovered I can easily remedy that situation with one-line added in sendmail&#8217;s access file:</p>
<pre>AuthInfo:outgoing.verizon.net "U:<em>myaccount</em>" "I:<em>myaccount</em>" "P:<em>mypassword</em>" "M:LOGIN PLAIN"</pre>
<p>After some testing, this solution turned out to be very painless to implement.</p>
<p>The DNS transfer is very slow, but that is a result of registrar compliance.  It generally takes 5-7 days, with my experience with that being no different.  During the transition, I ran my own Internet DNS service for both of our domains, so I had to keep mine active until it switched over to DynDNS servers.  Once it did, I could safely remove my DNS service from answering queries to hurst-ri.us.  The only restriction imposed by this process is that I cannot do another domain transfer for another 60-days, which should not present any problem for my vanity use of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2010/03/20/moving-to-dyndns/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FiOS</title>
		<link>http://robert.hurst-ri.us/2010/01/16/fios/</link>
		<comments>http://robert.hurst-ri.us/2010/01/16/fios/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:13:31 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=395</guid>
		<description><![CDATA[My Internet-TV-Phone are now all switched over from a mix of analog/digital copper to fiber optics.  What can I say about it that has not already been said before by oh so many others?  Wow. The switchover of our analog phone line to digital was totally seamless, including testing our home alarm system.  The only [...]]]></description>
			<content:encoded><![CDATA[<p>My Internet-TV-Phone are now all switched over from a mix of analog/digital copper to fiber optics.  What can I say about it that has not already been said before by oh so many others?  Wow.</p>
<p>The switchover of our analog phone line to digital was totally seamless, including testing our home alarm system.  The only thing missing was the static on the phones.</p>
<p>Having <span id="_ctl0_ContentPlaceHolder1_MainContent2"><span id="_ctl0_ContentPlaceHolder1_MainContent2_PresentationModeControlsContainer_Label_PresentationMainContent2">download speeds of up to 25 Mbps and uploads of up to 15 Mbps &#8212; yes, it is true, it is fast.  It&#8217;s not about a single download, it&#8217;s the fact that I can download a large file and still have a few more usable Internet sessions working without incurring noticeable latencies.  Executing one of those Internet speed tests gauged my connection at nearly 29mbs download / 21mbs upload with only 16ms ping over a 50 mile distance to a Boston-based server.  And I was also downloading a 157mb file at the same time.  Impressive.</span></span></p>
<p>The included wireless router is first class.  3 WAN ports: coax and ethernet, 6 LAN ports: ethernet, coax, and USB, and wireless.  Excellent signal strength, I can roam anywhere inside and outside of my property.  Up the street and into a neighbor&#8217;s garage &#8212; 4 bars of signal strength and the mbs dropped from 56 to 11.</p>
<p>I have one HDTV along with three standard definition TVs, and all are now hooked up with set top boxes.  The picture quality is what you expect, except I have not experience any picture jitters yet.  What improved most noticeably was the numerous functions, responsiveness, and overall friendliness.  Each set top box provides their Guide and Internet Widgets (Facebook, Traffic, Weather, etc.)  Using the DVR remotely from my Blackberry or from any web browser is pretty cool too.  The number of channels in our package (no premium) is impressive, too, although I really don&#8217;t want to disclose to my father that I have the Horse Racing channel &#8212; he may never leave.</p>
<p>This experience reminds me of how it felt when I got my first cable modem.  And when our local cable company repeatedly promised a next generation of improved technologies and friendliness was coming (this campaign started over 5-years ago), all I got was a small incremental boost in speed &#8212; after I paid to upgrade my modem &#8212; and shuffling AND reduction of usable cable channels.  Well, cable truly dominated homes these past 25+ years with the last 12+ years including Internet.</p>
<p>I wonder where those carriers and services will be in the next 5 years?</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2010/01/16/fios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8216;Low End&#8217; Computers (1985)</title>
		<link>http://robert.hurst-ri.us/2009/12/13/low-end-computers-1985/</link>
		<comments>http://robert.hurst-ri.us/2009/12/13/low-end-computers-1985/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 14:23:18 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C64]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=362</guid>
		<description><![CDATA[Ran across this info program from that day chronicling what the home computer giants, Atari and Commodore, were doing and envisioning.  Of course, Atari got Jack Tramiel, former CEO and founder of Commodore, or even they would not be in this picture.  It was cool seeing a glimpse of the (new) Commodore 128 and hearing [...]]]></description>
			<content:encoded><![CDATA[<p>Ran across this info program from that day chronicling what the home computer giants, Atari and Commodore, were doing and envisioning.  Of course, Atari got Jack Tramiel, former CEO and founder of Commodore, or even they would not be in this picture.  It was cool seeing a glimpse of the (new) Commodore 128 and hearing about the future with Amiga.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="loop" value="false" /><param name="quality" value="high" /><param name="scale" value="noborder" /><param name="src" value="http://www.youtube.com/v/9boeHRUeMPA" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/9boeHRUeMPA" scale="noborder" quality="high" loop="false"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2009/12/13/low-end-computers-1985/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fred Fish</title>
		<link>http://robert.hurst-ri.us/2009/10/17/fred-fish/</link>
		<comments>http://robert.hurst-ri.us/2009/10/17/fred-fish/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 15:29:52 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Pastime]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=310</guid>
		<description><![CDATA[Every once in a while, I stumble upon a web site that hits home to me.  Today, I was &#8220;fishing&#8221; for an update on the latest Amiga emulation developments in the WinUAE project.  But their updated web site brought me across a familiar name: Fred Fish.  What intrigued me about the link there was not [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while, I stumble upon a web site that hits home to me.  Today, I was &#8220;fishing&#8221; for an update on the latest Amiga emulation developments in the WinUAE project.  But their updated web site brought me across a familiar name: <a title="Wikipedia" href="http://en.wikipedia.org/wiki/Fred_Fish" target="_blank">Fred Fish</a>.  What intrigued me about the link there was  not about his accomplishments nor biography &#8212; it was <a title="DiveAdx" href="http://diveadx.back2roots.org/" target="_blank">an archive of his personal web site</a>.</p>
<p>I found the photos and stories there to be quite interesting, but his wife Michelle puts it another way: &#8220;I hope this cures your insomnia.&#8221;  While I love modesty, it was her opening statement that made me laugh loudly to set the proper mood:</p>
<p style="padding-left: 30px;"><span style="color: #000080;"><em>I once mentioned to Fred that I thought it would be fun to take a cruise.  Fred took this to mean &#8220;let&#8217;s buy a boat and go cruising&#8221;.  So, lesson learned. I must be VERY specific when discussing vacation plans with Fred.</em></span></p>
<p>Heh, now I know why Fred was so loved.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2009/10/17/fred-fish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t copy that &#8230;</title>
		<link>http://robert.hurst-ri.us/2009/10/11/copyright/</link>
		<comments>http://robert.hurst-ri.us/2009/10/11/copyright/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 11:51:48 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=306</guid>
		<description><![CDATA[A well-delivered message reminding us that creativity turned into product requires payment:]]></description>
			<content:encoded><![CDATA[<p>A well-delivered message reminding us that creativity turned into product requires payment:</p>
<p><a href="http://www.youtube.com/watch?v=hUCyvw4w_yk"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/hUCyvw4w_yk" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/hUCyvw4w_yk"></embed></object></a></p>
<p><a href="http://www.youtube.com/watch?v=hUCyvw4w_yk"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2009/10/11/copyright/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Site</title>
		<link>http://robert.hurst-ri.us/2009/07/07/cool-site/</link>
		<comments>http://robert.hurst-ri.us/2009/07/07/cool-site/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 10:42:48 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Pastime]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robert.hurst-ri.us/?p=258</guid>
		<description><![CDATA[For those retro gamers out there, I posed this question here and got a link back to this uniquely themed blog.]]></description>
			<content:encoded><![CDATA[<p>For those retro gamers out there, I posed this question <a href="http://www.bannister.org/forums/ubbthreads.php?ubb=showflat&amp;Number=51431#Post51431" target="_blank" title="Mr. Do! SPECIAL odds?" class="broken_link">here</a> and got a link back to this uniquely themed <a href="http://www.donhodges.com/" target="_blank" title="FRESH IDEAS REACHING INTO THE 3RD MILLENIUM ... AND BEYOND">blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.hurst-ri.us/2009/07/07/cool-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

