<?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>Everyone has an opinion &#187; General</title>
	<atom:link href="http://www.derekjhunt.org/blog/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.derekjhunt.org/blog</link>
	<description>Thoughts and rants about UNIX, music, film and politics.</description>
	<lastBuildDate>Sun, 18 Jul 2010 17:21:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Change the IR frequency for a Dish Network Remote</title>
		<link>http://www.derekjhunt.org/blog/2009/09/30/change-the-ir-frequency-for-a-dish-network-remote/</link>
		<comments>http://www.derekjhunt.org/blog/2009/09/30/change-the-ir-frequency-for-a-dish-network-remote/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 16:24:29 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HDTV]]></category>
		<category><![CDATA[Home Theater]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[32/PFL6704D]]></category>
		<category><![CDATA[Dish Network]]></category>
		<category><![CDATA[IR]]></category>
		<category><![CDATA[philips lcd]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/blog/?p=65</guid>
		<description><![CDATA[I have a Philips 32&#8243; LCD&#160; - Model 32/PFL6704D - as my bedroom television. It bathes the entire room with IR. This is a massive pain (My Roku refuses to work with this TV doing this). Here is a quick fix for getting a Dish Network receiver to transmit on a different frequency: 1. Display [...]]]></description>
			<content:encoded><![CDATA[<p>I have a Philips 32&#8243; LCD&nbsp; <strong>- Model 32/PFL6704D </strong>- as my bedroom television.<strong><br />
</strong></p>
<p>It bathes the entire room with IR. This is a massive pain (My Roku refuses to work with this TV doing this).  Here is a quick fix for getting a Dish Network receiver to transmit on a different frequency:<br />
1.  Display the System Information screen</p>
<p>2.  Note the Remote Address</p>
<p>3.  Hold the Sat button until all the mode buttons light up</p>
<p>4.  Enter a number between 1 and 15 that is not the number noted in step 2</p>
<p>5.  Press the # key (Sat button should blink three times upon release of the # key)</p>
<p>6.  Press the Record key</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2009/09/30/change-the-ir-frequency-for-a-dish-network-remote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing WordPress Upgrade Errors [Table &#039;wp_terms&#039; doesn&#039;t exist]</title>
		<link>http://www.derekjhunt.org/blog/2009/07/08/fixing-wordpress-upgrade-errors-table-wp_terms-doesnt-exist/</link>
		<comments>http://www.derekjhunt.org/blog/2009/07/08/fixing-wordpress-upgrade-errors-table-wp_terms-doesnt-exist/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 20:41:03 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp_terms]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/blog/?p=55</guid>
		<description><![CDATA[If you have ever seen one of these exceptionally annoying errors populating your apache logs after upgrading wordpress: WordPress database error Table 'database.wp_terms' doesn't exist for query SELECT t.*, tt.* FROM wp_ terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt. taxonomy IN ('category') AND ( t.term_id 1 ) ORDER [...]]]></description>
			<content:encoded><![CDATA[<p>If you have ever seen one of these exceptionally annoying errors populating your apache logs after upgrading wordpress: <code><br />
WordPress database error Table 'database.wp_terms' doesn't exist for query SELECT t.*, tt.* FROM wp_<br />
terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.<br />
taxonomy IN ('category')  AND ( t.term_id <> 1 ) ORDER BY t.name ASC  made by require, require_once, include, get_sidebar, locate_template, load_template, require_once, wp_list_cats, wp_list_categories, get_categories, get_terms<br />
</code><br />
There is a relatively easy fix, however, finding it was not so easy.</p>
<p>I found a pointer here:</p>
<p>http://osterman.com/wordpress/2007/10/15/wordpress-database-error-table-wp_terms-doesnt-exist</p>
<p>However, this didn&#8217;t work for me. The page always mentioned the database was already upgraded.  Digging around on the WordPress Codex, revealed <a href="http://codex.wordpress.org/FAQ_Installation#How_do_you_force_a_database_upgrade.3F" target="_blank">this handy link</a> about forcing a database upgrade.</p>
<p>Here is what I did to fix the problem</p>
<p>Open mysql and select the db: <code><br />
[root@host ~]# mysql -u dbuser -p<br />
Enter password:<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 15762<br />
Server version: 5.0.45 Source distribution</p>
<p>Type 'help;' or '\h' for help. Type '\c' to clear the buffer.</p>
<p>mysql> use wordpress;</p>
<p>Database changed<br />
</code><br />
Next change the value of the DB to a previous version or wordpress (check <a href="http://http://codex.wordpress.org/FAQ_Installation#How_do_you_force_a_database_upgrade.3F" target="_blank">here</a> for a list of values). <code><br />
mysql> update wp_options set option_value='6124' where option_name="db_version";</p>
<p>Query OK, 1 row affected (0.00 sec)<br />
Rows matched: 1  Changed: 1  Warnings: 0</p>
<p>mysql><br />
</code><br />
Next, run the upgrade script:</p>
<p>http://domain/wordpress/wp-admin/upgrade.php</p>
<p>If you receive errors, change the db_version to a different value and try again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2009/07/08/fixing-wordpress-upgrade-errors-table-wp_terms-doesnt-exist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Horray for decent upgrades.</title>
		<link>http://www.derekjhunt.org/blog/2009/03/16/horray-for-decent-upgrades/</link>
		<comments>http://www.derekjhunt.org/blog/2009/03/16/horray-for-decent-upgrades/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 05:48:02 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/blog/?p=51</guid>
		<description><![CDATA[Upgraded to the latest wordpress. Nice to a simple, and working upgrade for once.]]></description>
			<content:encoded><![CDATA[<p>Upgraded to the latest wordpress. Nice to a simple, and working upgrade for once.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2009/03/16/horray-for-decent-upgrades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php-mssql</title>
		<link>http://www.derekjhunt.org/blog/2006/07/26/php-mssql/</link>
		<comments>http://www.derekjhunt.org/blog/2006/07/26/php-mssql/#comments</comments>
		<pubDate>Thu, 27 Jul 2006 03:54:58 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/49</guid>
		<description><![CDATA[Nice php site for rpms (under rhel or centos): http://phprpms.sourceforge.net/mssql Duing the server migration, I needed to get php-mssql working. Once again, cake under CentOS. Grab this rpm: php-mssql-4.3.9-3.9.1.x86_64.rpm Install freetds from yum, and you are ready to go.]]></description>
			<content:encoded><![CDATA[<p>Nice php site for rpms (under rhel or centos):</p>
<p>http://phprpms.sourceforge.net/mssql</p>
<p>Duing the server migration, I needed to get php-mssql working. Once again, cake under CentOS.</p>
<p>Grab this rpm:</p>
<div><a onclick="javascript:urchinTracker ('/downloads/php-mssql-4.3.9-3.9.1.x86_64.rpm'); " href="http://prdownloads.sourceforge.net/phprpms/php-mssql-4.3.9-3.9.1.x86_64.rpm?download">php-mssql-4.3.9-3.9.1.x86_64.rpm</a></div>
<p>Install freetds from yum, and you are ready to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/07/26/php-mssql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crossgrade from Redhat Enterprise Linux 4 (RHEL4) to Centos 4</title>
		<link>http://www.derekjhunt.org/blog/2006/07/26/crossgrade-from-redhat-enterprise-linux-4-rhel4-to-centos-4/</link>
		<comments>http://www.derekjhunt.org/blog/2006/07/26/crossgrade-from-redhat-enterprise-linux-4-rhel4-to-centos-4/#comments</comments>
		<pubDate>Thu, 27 Jul 2006 01:54:20 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/48</guid>
		<description><![CDATA[Redhat Enterprise Linux 4 sucks. At least the x86_64 version. php gives gd and mysql errors. up2date is as miserable as getting kicked in the groin for an hour straight. Grab these: [root@wintermute upgrade]# ls -l total 824 -r--r--r-- 1 root root 20091 Jul 26 20:33 centos-release-4-3.2.x86_64.rpm -r--r--r-- 1 root root 3592 Jul 26 20:33 [...]]]></description>
			<content:encoded><![CDATA[<p>Redhat Enterprise Linux 4 sucks.  At least the x86_64 version. php gives gd and mysql errors.  up2date is as miserable as getting kicked in the groin for an hour straight.</p>
<p>Grab these:<br />
<pre>
[root@wintermute upgrade]# ls -l
total 824
-r--r--r--  1 root root  20091 Jul 26 20:33 centos-release-4-3.2.x86_64.rpm
-r--r--r--  1 root root   3592 Jul 26 20:33 centos-yumconf-4-4.5.noarch.rpm
-r--r--r--  1 root root  81569 Jul 26 20:33 python-elementtree-1.2.6-4.x86_64.rpm
-r--r--r--  1 root root  38989 Jul 26 20:34 python-sqlite-1.1.6-1.x86_64.rpm
-r--r--r--  1 root root  93760 Jul 26 20:34 python-urlgrabber-2.9.6-2.noarch.rpm
-r--r--r--  1 root root 189951 Jul 26 20:34 sqlite-3.2.2-1.x86_64.rpm
-r--r--r--  1 root root 392645 Jul 26 20:34 yum-2.4.2-2.centos4.noarch.rpm
[root@wintermute upgrade]#</pre><br />
Run these:</p>
<p>rpm –import RPM-GPG-KEY-centos4<br />
rpm -e -–nodeps redhat-release<br />
rpm -Uvh *.rpm</p>
<p>then</p>
<p>yum upgrade</p>
<p>Works beautifully.  yum is the far superior tool.  Courtesy to <a href="http://fixlinux.com/2006/04/11/migrate-rhel-to-centos/">Fixlinux</a> for the instructions</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/07/26/crossgrade-from-redhat-enterprise-linux-4-rhel4-to-centos-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firewall woes.</title>
		<link>http://www.derekjhunt.org/blog/2006/07/24/firewall-woes/</link>
		<comments>http://www.derekjhunt.org/blog/2006/07/24/firewall-woes/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 00:15:53 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/47</guid>
		<description><![CDATA[The heat in Connecticut is nearly unbearable; so much so, that whatever the blistering temp was outside, my basement (and server room), was 20 degrees hotter.  This is roughly the surface temp of the sun. Which was too much for my firewall.   I gave my Dual PIII 550 to Ben (to cut down on power [...]]]></description>
			<content:encoded><![CDATA[<p>The heat in Connecticut is nearly unbearable; so much so, that whatever the blistering temp was outside, my basement (and server room), was 20 degrees hotter.  This is roughly the surface temp of the sun.</p>
<p>Which was too much for my firewall.   I gave my Dual PIII 550 to Ben (to cut down on power usage), and did the server shuffle.</p>
<p>I moved the Athlon 2200 (previously a workstation), and migrate that machine to the fileserver.  The Athlon 1800 was migrated over to the firewall. and The P4 was migrated to the secondary workstation.</p>
<p>This worked great  for about 3 days.  Then both athlons melted.  The 2200&#8242;s power supply took a crap, and the athlon 1700 just stopped working altogether.   For the first time in almost 8 years, I had to use linux as a firewall.  My file server has around a terrabyte of data on it, so a quick reload with openbsd was not not an option.  I had to use iptables (for the love of God, please port PF over).  I spent the next two hours stumbling over the arcane, and deliberately confusing syntax to get my network back up and running.  At two in the morning, it is as if Rusty is trying to drive you mad.<br />
As a linux user since the early 90&#8242;s, I have a great deal of love and respect for the software, but, <strong>IP TABLES SUCKS. </strong>There are no two ways around this.  It feels kludgey, configs like something on an AS/400, and at the end of your painful relationship, it actualy punches you in the head.</p>
<p>PF lays it down, and works it over like Scott Peterson in prison.  PF has a great single config file with decent syntax, variables, and easily to remember rules.<br />
Thankfully the poor experience I had with IP Tables, helped motivate me to fix my Netra X1, and upgrade it to OpenBSD 3.9 (Sparc64).  I really wish PF ran on everything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/07/24/firewall-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sniffy</title>
		<link>http://www.derekjhunt.org/blog/2006/07/10/sniffy/</link>
		<comments>http://www.derekjhunt.org/blog/2006/07/10/sniffy/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 15:54:11 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/46</guid>
		<description><![CDATA[So we are thinking of getting a pup. We have the yard, and I really believe that all kids should have animals (Dogs and Cats). The cat aspect is covered (with Xander and Angel), we just needed a dog. I started digging around petfinder, and found most rescues wanted a ridiculous amount of money ($300 [...]]]></description>
			<content:encoded><![CDATA[<p>So we are thinking of getting a pup.  We have the yard, and I really believe that all kids should have animals (Dogs and Cats).  The cat aspect is covered (with Xander and Angel), we just needed a dog.</p>
<p>I started digging around petfinder, and found most rescues wanted a ridiculous amount of money ($300 and up) to adopt a pet.  I am of the opinion that if you are trying to get rid of of animal, a decent home is all that is needed.  I read these horror stories about people adopting dogs and them selling them for medical research.   That&#8217;s sorta like the razor blade in the apple thing.  It probably happened once, or twice, and it has graduated to an urban legend.</p>
<p>Anyway, I found an ad for a wonderful little beagle.  Sniffy. Sniffy is a two year old beagle. He&#8217;s trained, neutered, AKC (although that matters little now that he is snipped), and is need of a good home.   We are going to go take a look at him sometime this week.</p>
<p>Hopefully by the end of this week, we will have family dog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/07/10/sniffy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rise and fall of the Sci-fi programming lineup.</title>
		<link>http://www.derekjhunt.org/blog/2006/06/20/rise-and-fall-of-the-sci-fi-programming-lineup/</link>
		<comments>http://www.derekjhunt.org/blog/2006/06/20/rise-and-fall-of-the-sci-fi-programming-lineup/#comments</comments>
		<pubDate>Tue, 20 Jun 2006 19:42:08 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/45</guid>
		<description><![CDATA[Science-Fiction. The great Robert A. Heinlein wrote &#8220;A handy short definition of almost all science fiction might read: realistic speculation about possible future events, based solidly on adequate knowledge of the real world, past and present, and on a thorough understanding of the nature and significance of the scientific method.&#8221; He immediately adds that if [...]]]></description>
			<content:encoded><![CDATA[<p>Science-Fiction.<br />
The great Robert A. Heinlein wrote &#8220;A handy short definition of almost all science fiction might read: realistic speculation about possible future events, based solidly on adequate knowledge of the real world, past and present, and on a thorough understanding of the nature and significance of the scientific method.&#8221; He immediately adds that if you &#8220;strike out the word &#8216;future&#8217; it can apply to all and not just almost all SF.&#8221;<br />
No where in Heinlein&#8217;s description of Science-Fiction does that include the ridiculous antics of your parent company, NBC-Universal; unless we are to assume that your silly head of programming has been assimilated by some sort of mutant, brain eating entity.<br />
We are now subjected to the absolute lunatic compulsions, and, I might add, a complete lack of integrity, from your staff.</p>
<p>Wrestling?  Is this an episode of the Twilight Zone? Probably not, you buried  that to 1:00am on some odd day of the week ensuring that your stock viewership will indeed miss it.</p>
<p>Perhaps our plebeian palate is not attuned to your fine sense of taste.  Perhaps we, and yes, I am speaking for your viewership as a whole, is so beaten down by your recent programming choices, that we are unable to recognize what sci-fi is.</p>
<p>Not very likely.<br />
The loyal viewers have managed to stick with the channel even through the most ridiculous decisions were made.  We have braved insulting infomercial after infomercial, watched you kill Dark Shadows, even watched you turn the last Dungeon&#8217;s and Dragon&#8217;s movie into a three hour blitz of advertisements (the actual movie is 105 minutes long).<br />
Wrestling, however, is unforgivable.<br />
Spike plays wrestling, but at least they play Star Trek.  Check your schedules, I am willing to bet the are close to have the same amount of &#8220;sci-fi&#8221; content your channel has.  Think about that for a moment.<br />
Wait? Did you hear that? Asimov is weeping from beyond. He would have never participated on the board if he knew this is what it would become.<br />
His weeping is echoed by your viewership.<br />
What a cheap, and  hopefully, devastating move this turns out to be.  Perhaps when the accountants, soulless as they may be, crawl up from their conglomerate crypt, they will take mercy on your foolishly ignorant staff.<br />
Zombies would be considerably more kind to you than the evil with whom you are in league with finds out the ratings of prime-time &#8220;Wrestling&#8221;.<br />
Don&#8217;t even  get me started on Law and Order.  What a joke.  Hopefully the person that made that decision has been put to pasture, or at least took the honorable path, and killed himself in front of his webcam.  What&#8217;s next? Regurgitating Dateline for Fridays? Is Chris Matthews going to complain his way into the Sunday lineup?<br />
<em>RIP Sci-Fi channel 1992-2006.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/06/20/rise-and-fall-of-the-sci-fi-programming-lineup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>National Day Of Slayer!!!!!!</title>
		<link>http://www.derekjhunt.org/blog/2006/06/06/national-day-of-slayer/</link>
		<comments>http://www.derekjhunt.org/blog/2006/06/06/national-day-of-slayer/#comments</comments>
		<pubDate>Tue, 06 Jun 2006 14:52:27 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.derekjhunt.org/archives/43</guid>
		<description><![CDATA[You had better be listening to SLAYER today. It&#8217;s the national day of slayer. It Rules.]]></description>
			<content:encoded><![CDATA[<p>You had better be listening to <a target="_SLAYER" href="http://www.slayer.net">SLAYER</a> today.  It&#8217;s the <a target="_SLAYER" href="http://www.nationaldayofslayer.org/">national day of slayer.</a></p>
<p>It Rules.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/06/06/national-day-of-slayer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migration to WordPress</title>
		<link>http://www.derekjhunt.org/blog/2006/03/26/migration-to-wordpress/</link>
		<comments>http://www.derekjhunt.org/blog/2006/03/26/migration-to-wordpress/#comments</comments>
		<pubDate>Sun, 26 Mar 2006 20:58:00 +0000</pubDate>
		<dc:creator>derek</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://derek.uberh4x0r.org/archives/41</guid>
		<description><![CDATA[Welp, goodbye Movable type&#8230; Hello wordpress. A couple interesting issues with imports to note, the stock mt-import works like crap, however, the rss import saved it somewhat. I&#8217;m going to start the migration of the old content over shortly. So if you were looking for the old content, sit tight, or email me if you [...]]]></description>
			<content:encoded><![CDATA[<p>Welp, goodbye Movable type&#8230; Hello wordpress.  A couple interesting issues with imports to note, the stock mt-import works like crap, however, the rss import saved it somewhat.  I&#8217;m going to start the migration of the old content over shortly. So if you were looking for the old content, sit tight, or email me if you need something soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekjhunt.org/blog/2006/03/26/migration-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: www.derekjhunt.org @ 2012-02-05 05:30:01 -->
