<?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>rishel.org &#187; Geek Stuff</title>
	<atom:link href="http://rishel.org/category/geek-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://rishel.org</link>
	<description>My inane ramblings.  Or acerbic wit.  Take your pick.</description>
	<lastBuildDate>Thu, 19 Jan 2012 19:15:21 +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>Xvfb As A Service</title>
		<link>http://rishel.org/2012/01/xvfb-as-a-service/</link>
		<comments>http://rishel.org/2012/01/xvfb-as-a-service/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 19:06:47 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=547</guid>
		<description><![CDATA[sometimes it&#8217;s useful to run a a X app without a display to batch process something, but the app won&#8217;t run without an X server to connect to. That&#8217;s where X Virtual Frame Buffer Xvfb comes in. It&#8217;s everything an X server should be except actually displaying anything. It&#8217;s just missing one nicety, by default [...]]]></description>
			<content:encoded><![CDATA[<p>sometimes it&#8217;s useful to run a a X app without a display to batch process something, but the app won&#8217;t run without an X server to connect to. That&#8217;s where X Virtual Frame Buffer <a href="http://www.xfree86.org/4.0.1/Xvfb.1.html">Xvfb</a> comes in. It&#8217;s everything an X server should be except actually displaying anything. It&#8217;s just missing one nicety, by default it doesn&#8217;t run as a service, so you&#8217;d have to bring it up and tear it back down for every instance that needs the X display.  that seems a bit silly, so I wrote a RHEL (and CentOS) chkconfig compatible script to start it up and bring it down gracefully.</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash
#### linux chkconfig settings
# chkconfig: 345 01 99
# description: runs Xvfb on screen :2 at 1024x768x24
case $1 in
'start')
     echo -n &quot;Starting Xvfb...&quot;
     /usr/bin/Xvfb :2 -screen 0 1024x768x24 &gt; /dev/null 2&gt;&amp;1 &amp;
     echo $! &gt; /var/lock/subsys/Xvfb
     RETVAL=$?
     echo
     [ $RETVAL = 0 ]
    ;
'stop')
     echo -n &quot;Stopping Xvfb...&quot;
     kill `cat /var/lock/subsys/Xvfb`
     rm -f /var/lock/subsys/Xvfb
     RETVAL=$?
     echo
     [ $RETVAL = 0 ]
    ;;
*)
    echo &quot;usage: $0 {start|stop}&quot;
    ;;
esac
</pre>
<p>update: I just found this <a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">wordpress plugin</a> to make the script have proper tabs, and get syntax highlighting as a plus. Pretty slick.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2012/01/xvfb-as-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Motion Video on Linux</title>
		<link>http://rishel.org/2011/06/stop-motion-video-on-linux/</link>
		<comments>http://rishel.org/2011/06/stop-motion-video-on-linux/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 16:22:14 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[vparadox]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[stopmotion]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=512</guid>
		<description><![CDATA[I needed to make a cutesy video to give a quick overview of the products the startup I&#8217;m working with wants to make. Here is how I accomplished this on Ubuntu: sudo apt-get install luciole luciole is an interesting project written for a french animation festival (you&#8217;ll want to run those links through google translate, [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to make a cutesy video to give a quick overview of the products the startup I&#8217;m working with wants to make.  Here is how I accomplished this on Ubuntu:</p>
<p><code>sudo apt-get install luciole</code></p>
<p><a href="http://festival.inattendu.org/Luciole-Linux">luciole</a> is an interesting project written for a <a href="http://festival.inattendu.org/-Le-festival-">french animation festival</a> (you&#8217;ll want to run those links through google translate, or be fluent in French. whatevs).  If you&#8217;ve got a webcam that works with <a href="http://en.wikipedia.org/wiki/Video4Linux">V4L2</a>, and most should, you&#8217;re ready to go. Luckily I was using a <a href="http://www.huehd.com/">hueHD</a> with a flexible neck, so it was easy to point the camera at my animation surface.</p>
<p>After I had the basic story board of what I wanted to present figured out, and that was the hardest part, it was a matter of arts and craft. My media used were doodles from <a href="http://www.vparadox.net/our-company">Eva</a> and multicolored pipe cleaners.</p>
<p>I laid out the basic shots, then recorded a narration with <a href="http://audacity.sourceforge.net/">audacity</a>.  then I went back to luciole and added frames until the animation lasted as long as the narration. Exported the luciole track as an mpeg2 and stuck them together with <a href="http://www.pitivi.org/">PiTiVi</a>, and re-exported the final video.</p>
<p><object width="640" height="510"><param name="movie" value="http://www.youtube-nocookie.com/v/JTjNVmR8VHg?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/JTjNVmR8VHg?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="640" height="510" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2011/06/stop-motion-video-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing 32-bit Citrix Reciever on 64-bit Ubuntu</title>
		<link>http://rishel.org/2010/10/installing-32-bit-citrix-reciever-on-64-bit-ubuntu/</link>
		<comments>http://rishel.org/2010/10/installing-32-bit-citrix-reciever-on-64-bit-ubuntu/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:45:58 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://rishel.org/?p=499</guid>
		<description><![CDATA[I recently picked up an HP Mini 210-1041nr laptop and painlessly installed Ubuntu 10.10 from USB. I needed one more thing to make it usable for work: Citrix. Citrix kindly makes Debian packages available, but only 32-bit. I googled around and found some directions, but they seemed a bit overly complicated. Here is what I [...]]]></description>
			<content:encoded><![CDATA[<p>I recently picked up an <a href="http://www.amazon.com/HP-210-1040NR-10-1-Inch-Black-Netbook/dp/B00318CGF0/ref=sr_1_fkmr0_3?ie=UTF8&#038;qid=1288013248&#038;sr=1-3-fkmr0&#038;tag=rishelorg-20">HP Mini 210-1041nr</a> laptop and painlessly installed <a href="http://www.ubuntu.com/desktop/get-ubuntu/download">Ubuntu 10.10 from USB</a>.  I needed one more thing to make it usable for work: Citrix.  Citrix kindly makes Debian packages available, but <a href="http://citrix.com/English/SS/downloads/details.asp?downloadID=3323&#038;productID=-1">only 32-bit</a>. I googled around and <a href="https://help.ubuntu.com/community/CitrixICAClientHowTo">found some directions</a>, but they seemed a bit overly complicated.
<ol>
 Here is what I did and it seems to work:</p>
<li>
Install the motif and 32bit libraries:<br />
<code>sudo apt-get install libmotif3 ia32-libs</code></li>
<li>Download the <a href="http://citrix.com/English/SS/downloads/details.asp?downloadID=3323&#038;productID=-1">32-bit deb package</a> from Citrix.</li>
<li>Force it to install despite the architecture mismatch:<br />
<code>sudo dpkgs -i --force-architecture icaclient_11.100.i386.patched.deb</code></li>
<li>Log into my employer&#8217;s Citrix site and click on a .ica file, telling the browser to open these files with <code>/usr/lib/ICAClient/wfcmgr</code></li>
</ol>
<p>this seemed to be a quite a bit easier than the very detailed directions I found on the ubuntu forum, so I thought I&#8217;d get these out here on the old blog for so I can google it myself because I can no longer remember anything outside of my <a href="http://en.wikipedia.org/wiki/Exocortex">exocortex</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2010/10/installing-32-bit-citrix-reciever-on-64-bit-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five uses for a soon to expire RSA Token</title>
		<link>http://rishel.org/2008/11/five-uses-for-a-soon-to-expire-rsa-token/</link>
		<comments>http://rishel.org/2008/11/five-uses-for-a-soon-to-expire-rsa-token/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:46:30 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://rishel.org/2008/11/20/five-uses-for-a-soon-to-expire-rsa-token/</guid>
		<description><![CDATA[Lottery ticket number generator Toddler toy Hammer testing device Wobbly table leg shim Blog post fodder]]></description>
			<content:encoded><![CDATA[<ol>
<li>Lottery ticket number generator</li>
<li>Toddler toy</li>
<li>Hammer testing device</li>
<li>Wobbly table leg shim</li>
<li>Blog post fodder</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2008/11/five-uses-for-a-soon-to-expire-rsa-token/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>48 hours with the G1</title>
		<link>http://rishel.org/2008/11/48-hours-with-the-g1/</link>
		<comments>http://rishel.org/2008/11/48-hours-with-the-g1/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 20:24:53 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://rishel.org/2008/11/01/48-hours-with-the-g1/</guid>
		<description><![CDATA[In order to silence Ben&#8217;s nagging, here are my thoughts on the G1 after about 2 days. Pros: Browser works well. No multitouch, but the interface is quite usable. No flash, but embedded youtube videos can be opened in the youtube app from the browser. I wrote this blog post in the browser. Hardware. Feels [...]]]></description>
			<content:encoded><![CDATA[<p>In order to silence Ben&#8217;s nagging, here are my thoughts on the G1 after about 2 days.</p>
<ul>Pros:</p>
<li>Browser works well.  No multitouch, but the interface is quite usable.  No flash, but embedded youtube videos can be opened in the youtube app from the browser.  I wrote this blog post in the browser.</li>
<li>Hardware.  Feels solid, but not a brick.  The keyboard slides out with a satisfying thunk.</li>
<li>Copy/Paste.  Doesn&#8217;t work everywhere, like on random text in the browser, but the browser will copy phone numbers and urls.</li>
<li>Android Market.  Blows away the app experience on Windows Mobile 5, and I guess very similar to the iPhone experience, but definitely feels more.. wild west.  There are some really odd apps out there.  More on these in another post later.</li>
<li>Notification pulldown.  This is the biggest UI innovation of Android.  Background apps let you know they have something to show you, yet don&#8217;t get in the way of what your doing.</li>
</ul>
<ul>Cons:</p>
<li>Bluetooth.  It has it, but I can&#8217;t seem to pair with the handsfree in my car.  None of the apps can interact with it either.  I hope this is near the top of the android dev teams list</li>
<li>Occasional Slowdown. Sometimes the system hangs momentarily when you change between a lot of apps in a short period of time.  This is most likely some apps saving state and shutting down.  Very minor issue.</li>
<li>Battery Life.  Could be better, but I&#8217;ve had much worse.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2008/11/48-hours-with-the-g1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Ponies</title>
		<link>http://rishel.org/2008/09/android-ponies/</link>
		<comments>http://rishel.org/2008/09/android-ponies/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 12:50:43 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://rishel.org/2008/09/16/android-ponies/</guid>
		<description><![CDATA[I&#8217;m really liking what I&#8217;ve seen of Android, and I&#8217;m pretty sure I&#8217;m going to have one by November. Everyone seems to have a list of the announced apps they want to use but I&#8217;d like to find replacements for the following apps I&#8217;m pretty happy with in the Windows Mobile world. SSH client. right [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really liking what I&#8217;ve seen of Android, and I&#8217;m pretty sure I&#8217;m going to have one by November. Everyone seems to have a list of the announced apps they <a href="http://www.readwriteweb.com/archives/10_android_apps_we_will_actual.php">want to use</a> but I&#8217;d like to find replacements for the following apps I&#8217;m pretty happy with in the Windows Mobile world.</p>
<ol>
<li>SSH client.  right now I use <a href="http://pocketputty.net/">PocketPutty</a>, but development seems to have staled, so I doubt there will be any quick port to Android.  <a href="http://code.google.com/p/connectbot/">ConnectBot</a> looks promising.</li>
<li>Flickr uploader w/ geotagging.  <a href="http://www.shozu.com/portal/index.do">Shozu</a> is pretty awesome on Windows Mobile and Symbian, and they recently came out with an <a href="http://www.shozu.com/portal/tour.do?refid=iphone">iPhone app</a>.  The Android devs have a sample app called <a href="http://androidcommunity.com/android-photostream-app-20080904/">Photostream</a> to view Flickr photostreams, but it doesn&#8217;t appear to have upload capabilities.</li>
<li>a podcatcher.  I currently use <a href="http://www.garishkernels.net/egress.shtml">Egress</a> for Windows Mobile, which used to be my feed reader of choice as well, but I think google reader has taken over there and I just don&#8217;t bother with most feeds on my phone anymore. Google reader + google gears on android will be pretty killer. but I&#8217;d still want way to grab all my podcasts.</li>
<li>Twitter client.  <a href="http://tinytwitter.com/">TinyTwitter</a> is doing a bang-up job on windows mobile and java phones. <a href="http://fredbrunel.com/journal/2007/11/introducing-twitterdroid/">Twitterdroid</a> looks promising and was <a href="http://fredbrunel.com/journal/2008/04/twitterdroid-is-free/">recently open sourced</a>.
</li>
</ol>
<p>So, since the majority of the geeks reading this already have iPhones, what useful apps are guys using that I should hope to find ports for an Android version? (that last sentence is horrible, but you get the gist.)</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2008/09/android-ponies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proliant Blade running RHEL5, you&#8217;ll need a cma.log rotation script</title>
		<link>http://rishel.org/2008/08/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/</link>
		<comments>http://rishel.org/2008/08/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:02:17 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2008/08/28/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/</guid>
		<description><![CDATA[No one seems to have written a log rotation script for the Proliant Support Pack logs that are stored in /var/spool/compaq/cma.log, so I thought I&#8217;d throw mine up here in case someone else needs one. put this in a file called &#8220;cma&#8221; in /etc/logrotate.d/ /var/spool/compaq/cma.log { compress missingok size=100M postrotate /sbin/service hpasm restart 2> /dev/null [...]]]></description>
			<content:encoded><![CDATA[<p>No one seems to have written a log rotation script for the Proliant Support Pack logs that are stored in /var/spool/compaq/cma.log, so I thought I&#8217;d throw mine up here in case someone else needs one.  put this in a file called &#8220;cma&#8221; in /etc/logrotate.d/<br />
<code><br />
/var/spool/compaq/cma.log {<br />
    compress<br />
    missingok<br />
    size=100M<br />
    postrotate<br />
        /sbin/service hpasm restart 2> /dev/null > /dev/null || true<br />
    endscript<br />
}<br />
</code><br />
That&#8217;s it.  this will be picked up by the daily cronjobs and keep things from getting messy.  if you want to test your config without doing any changes, run <code>logrotate -d /etc/logrotate.conf</code> which will output the work it plans on doing. If your big log hasn&#8217;t rotated in that example, run <code>logrotate -f /etc/logrotate.conf</code> which force the job to run.  those 6 gigs of logs are now a tidy 39 megs.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2008/08/proliant-blade-running-rhel5-youll-need-a-cmalog-rotation-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysqld failing to load after changing default locations</title>
		<link>http://rishel.org/2007/08/mysqld-failing-to-load-after-changing-default-locations/</link>
		<comments>http://rishel.org/2007/08/mysqld-failing-to-load-after-changing-default-locations/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 18:00:25 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/08/07/mysqld-failing-to-load-after-changing-default-locations/</guid>
		<description><![CDATA[I just solved a problem at work that google was no help with. I&#8217;m posting this in hopes some other poor soul who has the same problem finds this post. After an OS re-install (Red Hat Enterprise Linux AS 4) we were changing the default location of data used for application into a different filesystem [...]]]></description>
			<content:encoded><![CDATA[<p>I just solved a problem at work that google was no help with.  I&#8217;m posting this in hopes some other poor soul who has the same problem finds this post.  After an OS re-install (Red Hat Enterprise Linux AS 4) we were changing the default location of data used for application into a different filesystem mounted to /obscure/location/work/uses/ in that directory, each application has it&#8217;s own folder, and then automounts to /apps/appname.   We setup /apps/mysql and edited /etc/my.cnf to point everything but /var/run/mysqld/mysqld.pid to this new location.  Makes sense, right?  But now, mysql won&#8217;t start.  statur reports:<br />
<code>#service mysqld status<br />
mysqld dead but subsys locked</code></p>
<p>in course of investigation, I check /var/log/messages and see something like:<br />
<code><br />
Jan 6 01:23:27 localhost kernel: audit(1105003407.183:0): avc: denied { append } for pid=12380 exe=/usr/sbin/mysqld path=/var/lib/mysql/localhost.localdomain.err dev=sda1 ino=3450322 scontext=root:system_r:mysqld_t tcontext=root:object_r:var_lib_t tclass=file</code></p>
<p>this error message will lead you down a trail of dispair.  If you&#8217;re having the same problem I did, <strong>ignore</strong> this error message.</p>
<p>The reason the startup scripts are failing is that something is hardcoded to look for the mysql files in /var/lib/mysql.  A symlink to /apps/mysql:<br />
<code><br />
ln -s /apps/mysql/ /var/lib/</code></p>
<p>and mysql starts up without problem.</p>
<p>Now, if someone could explain why mysql client or startup scripts fails to read /etc/my.cnf correctly, I&#8217;d love to hear it.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/08/mysqld-failing-to-load-after-changing-default-locations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu from Dell &#8220;Day 2&#8243; impressions</title>
		<link>http://rishel.org/2007/07/ubuntu-from-dell-day-2-impressions/</link>
		<comments>http://rishel.org/2007/07/ubuntu-from-dell-day-2-impressions/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 18:33:41 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/07/17/ubuntu-from-dell-day-2-impressions/</guid>
		<description><![CDATA[As mentioned earlier, Meg&#8217;s new computer is a Dell with Ubuntu Linux pre-installed. Overall, we&#8217;re still happy with the system, but I wanted to mention a few &#8220;gotchas&#8221; i&#8217;ve found since being able to poke around the system a bit more. First, Meg&#8217;s system came with a widescreen monitor. X windows was only configured with [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://rishel.org/2007/06/08/ubuntu-from-dell-first-impressions/">mentioned earlier</a>, Meg&#8217;s new computer is a <a href="http://direct2dell.com/one2one/archive/category/1021.aspx">Dell with Ubuntu Linux pre-installed</a>.   Overall, we&#8217;re still happy with the system, but I wanted to mention a few &#8220;gotchas&#8221; i&#8217;ve found since being able to poke around the system a bit more.   </p>
<p>First, Meg&#8217;s system came with a widescreen monitor.   X windows was only configured with one 16:9 resolution choice, so if Meg want&#8217;s to reduce the resolution, everything is stretched out.   I know if this is a fairly simple xorg.conf fix, and Meg&#8217;s gotten used to the 1680&#215;1050 resolution, so it hasn&#8217;t been a big deal.</p>
<p>Secondly, in an effort to conserve power, I enabled power management so the system would suspend after after an hour of activity.   Most of the time, this works.  Every few times, it doesn&#8217;t recover correctly and needs to be shutdown before coming back up.   Other times, the network connection is unable to get a DHCP lease.  I&#8217;ve turned this off to stop irritating Meg until I can get it to work more consistently. </p>
<p>Meg is busy taking grad classes and her only complaint about OpenOffice.org is the lack &#8220;WordArt&#8221; as seen in Microsoft Word.   I&#8217;ll have to see if the Format > FontWork option does the trick for her.</p>
<p>Overall, I&#8217;m still very impressed.   The screen resolution is a minor nit-pick, and I&#8217;m not even sure if that level of polish exists on the windows side of the world.  Suspend or hibernate don&#8217;t work correctly on my own (older) system, so that fact that it works most of the time is still a good sign.  </p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/07/ubuntu-from-dell-day-2-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>region free DVD player hack</title>
		<link>http://rishel.org/2007/06/region-free-dvd-player-hack/</link>
		<comments>http://rishel.org/2007/06/region-free-dvd-player-hack/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 22:30:48 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://rishel.org/2007/06/15/region-free-dvd-player-hack/</guid>
		<description><![CDATA[The portable DVD player we&#8217;ve been using on the upstairs TV hasn&#8217;t been dealing with the heat lately, it kept locking up and it has been having trouble reading discs with my other player reads without problems. We decided to replace it with some of our remaining Target gift cards. I found a small (but [...]]]></description>
			<content:encoded><![CDATA[<p>The portable DVD player we&#8217;ve been using on the upstairs TV hasn&#8217;t been dealing with the heat lately, it kept locking up and it has been having trouble reading discs with my other player reads without problems.  We decided to replace it with some of our remaining Target gift cards.  I found a small (but not portable, next time I want a portable DVD player, I&#8217;m getting a new laptop.) cheap (right around $30) player at Target from Trutech.  Model number T-600D  ( I can&#8217;t find a link on target.com&#8230;)  One neat little &#8220;feature&#8221; was a hack to <a href="http://www.dvd.reviewer.co.uk/forums/thread.asp?Forum=176&#038;Thread=599776">make the player region free</a>.  There are a number of possible hacks for this model on that page, but the one that works for me was this: <code><br />
1. Press SETUP<br />
2. Press 8, 8, 8, 8<br />
3. Press NEXT CHAPTER (4 times)<br />
4. Current RC should be displayed , upper right<br />
5. Select RC with LEFT/RIGHT (255= codefree)<br />
6. Press SETUP<br />
7. Turn the player off<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://rishel.org/2007/06/region-free-dvd-player-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

