<?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>CoffeeBear.net &#187; Software</title>
	<atom:link href="http://coffeebear.net/category/computers/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffeebear.net</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 02:58:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>State of the Word</title>
		<link>http://coffeebear.net/2011/08/19/state-of-the-word/</link>
		<comments>http://coffeebear.net/2011/08/19/state-of-the-word/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 04:50:37 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=1997</guid>
		<description><![CDATA[At WordCamp San Francisco 2011, Matt Mullenweg gave the a presentation entitled State of the Word. During the presentation, he talked about the 2011 WordPress User/Developer survey they did. Then today they released an anonymized copy of the data as a compressed CSV file. I took a quick look at the CSV and whipped up [...]]]></description>
			<content:encoded><![CDATA[<p>At WordCamp San Francisco 2011, Matt Mullenweg gave the a presentation entitled <a title="Matt Mullenweg: State of the Word 2011 « WordPress.tv" href="http://wordpress.tv/2011/08/14/matt-mullenweg-state-of-the-word-2011/">State of the Word</a>. During the presentation, he talked about the 2011 WordPress User/Developer survey they did.</p>
<p>Then today they <a title="WordPress « State of the Word" href="http://wordpress.org/news/2011/08/state-of-the-word/">released</a> an anonymized copy of the data as a compressed CSV file. I took a quick look at the CSV and whipped up the following MySQL script to load the data.</p>
<pre class="brush: sql; title: ; notranslate">
CREATE TABLE `survey` (
 `id` int(11)  NOT NULL AUTO_INCREMENT,
 `year_submitted` year,
 `how_use` varchar(255) DEFAULT NULL,
 `job_type` varchar(255) DEFAULT NULL,
 `c_do` text,
 `c_cms_blog` varchar(255) DEFAULT NULL,
 `c_customize` varchar(255) DEFAULT NULL,
 `c_number` varchar(255) DEFAULT NULL,
 `c_percent` varchar(255) DEFAULT NULL,
 `c_done_with_wp` varchar(255) DEFAULT NULL,
 `c_living` varchar(255) DEFAULT NULL,
 `d_do` text,
 `d_cms_blog` varchar(255) DEFAULT NULL,
 `d_customize` varchar(255) DEFAULT NULL,
 `d_number` varchar(255) DEFAULT NULL,
 `d_percent` varchar(255) DEFAULT NULL,
 `d_done_with_wp` varchar(255) DEFAULT NULL,
 `d_cost` varchar(255) DEFAULT NULL,
 `d_living` varchar(255) DEFAULT NULL,
 `u_do` text,
 `u_installed` varchar(255) DEFAULT NULL,
 `u_installed_other` varchar(255) DEFAULT NULL,
 `u_customize` varchar(255) DEFAULT NULL,
 `u_living` varchar(255) DEFAULT NULL,
 `x_living` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE = MyISAM COMMENT = 'WordPress 2011 Survey Results';

LOAD DATA INFILE '/var/lib/mysql/anon-data.csv'
 INTO TABLE `survey`
 FIELDS ENCLOSED BY '&quot;' TERMINATED BY ','
 LINES TERMINATED BY '\r'
 IGNORE 1 LINES
 (`how_use`, `job_type`, `c_do`, `c_cms_blog`, `c_customize`,
`c_number`, `c_percent`, `c_done_with_wp`, `c_living`, `d_do`, `d_cms_blog`,
`d_customize`, `d_number`, `d_percent`, `d_done_with_wp`, `d_cost`, `d_living`,
`u_do`, `u_installed`, `u_installed_other`, `u_customize`, `u_living`,
`x_living`);

UPDATE `survey` SET `year_submitted` = YEAR(NOW());
</pre>
<p>This has only been tested on MySQL 5.1.54-1ubuntu4. It should work on any recent copy of MySQL, but <abbr title="Your Mileage May Vary">YMMV</abbr>. Also, I added 2 additional fields to the table. One is a simple ID field to make it easier to reference individual responses while the other is ‘year_submitted‘. I added the latter field; so if they reuse this survey next year, I can simply add that year’s responses to the same table and track the differences. If I find the time, I may try digging into the data to see if I can find anything interesting in it (but don’t hold your breath on me finding the time to do so).</p>
<p><small><a href="http://coffeebear.net/2011/08/19/state-of-the-word/">State of the Word</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2011/08/19/state-of-the-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Now-Reading’s Admin Menu</title>
		<link>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/</link>
		<comments>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:49:29 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Now-Reading]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=939</guid>
		<description><![CDATA[I like using Now-Reading to track what books I’m currently reading, have read and want to read on my website. Unfortunately the plugin’s author has been too busy of late to update the plugin and one of the recent updates to WordPress caused Now-Reading’s admin menu to break (when using the single menu option). PHP [...]]]></description>
			<content:encoded><![CDATA[<p>I like using <a href="http://robm.me.uk/projects/plugins/wordpress/now-reading/" title="Now-Reading plugin for WordPress">Now-Reading</a> to track what books I’m currently reading, have read and want to read on my website. Unfortunately the plugin’s author has been too busy of late to update the plugin and one of the recent updates to WordPress caused Now-Reading’s admin menu to break (when using the single menu option). PHP is not a programming language that I’m really familiar with but I did some poking around in Now-Reading’s code and found if I changed this snip of code:</p>
<pre name="code" class="php">
	if ( $options['menuLayout'] == NR_MENU_SINGLE ) {

		add_menu_page('Now Reading', 'Now Reading', 9, 'admin.php?page=add_book', 'now_reading_add');

		add_submenu_page('admin.php?page=add_book', 'Add a Book', 'Add a Book',$nr_level , 'add_book', 'now_reading_add');

		add_submenu_page('admin.php?page=add_book', 'Manage Books', 'Manage Books', $nr_level, 'manage_books', 'nr_manage');

		add_submenu_page('admin.php?page=add_book', 'Options', 'Options', 9, 'nr_options', 'nr_options');
</pre>
<p>To read like this:</p>
<pre name="code" class="php">
	if ( $options['menuLayout'] == NR_MENU_SINGLE ) {

		add_menu_page('Now Reading', 'Now Reading', 9, 'add_book', 'now_reading_add');

		add_submenu_page('add_book', 'Add a Book', 'Add a Book',$nr_level , 'add_book', 'now_reading_add');
		add_submenu_page('add_book', 'Manage Books', 'Manage Books', $nr_level, 'manage_books', 'nr_manage');
		add_submenu_page('add_book', 'Options', 'Options', 9, 'nr_options', 'nr_options');
</pre>
<p>Then Now-Reading’s single admin menu worked properly again.</p>
<p><small><a href="http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/">Fixing Now-Reading’s Admin Menu</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/08/08/fixing-now-readings-admin-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>py2avi released!</title>
		<link>http://coffeebear.net/2009/07/31/py2avi-released/</link>
		<comments>http://coffeebear.net/2009/07/31/py2avi-released/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 20:08:48 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[transcode]]></category>
		<category><![CDATA[xbmc]]></category>
		<category><![CDATA[xbox]]></category>
		<category><![CDATA[xvid]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=933</guid>
		<description><![CDATA[py2avi is a python script I wrote to make it easier for me to transcode video files from MKV to AVI while not forgetting to extract the subtitles from the MKV file. On the off chance that somebody out there in Internet-land has a similar need, I’m releasing the script under the GPL 2.0. So [...]]]></description>
			<content:encoded><![CDATA[<p><a title="py2avi | Code | CoffeeBear.net" href="http://coffeebear.net/code/py2avi/">py2avi</a> is a python script I wrote to make it easier for me to transcode video files from MKV to AVI while not forgetting to extract the subtitles from the MKV file. On the off chance that somebody out there in Internet-land has a similar need, I’m releasing the script under the GPL 2.0. So if you want/need it, take it and have fun with it!</p>
<p><small><a href="http://coffeebear.net/2009/07/31/py2avi-released/">py2avi released!</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/07/31/py2avi-released/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Jaunty Upgrade After Effects</title>
		<link>http://coffeebear.net/2009/05/07/jaunty-upgrade-after-effects/</link>
		<comments>http://coffeebear.net/2009/05/07/jaunty-upgrade-after-effects/#comments</comments>
		<pubDate>Thu, 07 May 2009 16:20:55 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=887</guid>
		<description><![CDATA[Being something of a linux/technology geek and with the recent-ish release of Ubuntu 9.04, I decided to upgrade my home desktop PC from Ubuntu 8.10.  Like the last time I ran through the upgrade, I was surprised at how smooth the upgrade process went.  Unfortunately 2 new problems appeared after the upgrade was complete, with [...]]]></description>
			<content:encoded><![CDATA[<p>Being something of a linux/technology geek and with the <em>recent-ish</em> release of <a title="Canonical Announces Availability of Ubuntu 9.04 Desktop Edition  | Ubuntu" href="http://www.ubuntu.com/news/ubuntu-9.04-desktop">Ubuntu 9.04</a>, I decided to upgrade my home desktop PC from Ubuntu 8.10.  Like the <a title="Lucky Day | CoffeeBear.net" href="http://coffeebear.net/2009/03/13/lucky-day/">last time</a> I ran through the upgrade, I was surprised at how smooth the upgrade process went.  Unfortunately 2 new problems appeared after the upgrade was complete, with once again one problem being rather minor and the other one being much bigger.</p>
<p>First up the minor problem, after rebooting into the new hotness of Ubuntu 9.04, I was greeted with a pop-up windo telling me “There was an error while performing indexing : Index corrupted.” The pop-up gave 3 options: “Ok”, “Cancel” or “Reindex all contents”. I tried all 3 but the pop-up kept coming back even after multiple reboots. The only thing I could initiall figure out to do was to kill the tracker<br />
<code>ps -ef | grep tracker<br />
kill -9 XXXX XXXX XXXX</code></p>
<p>Yes, I know that’s probably a horrible idea but I rarely use the tracker’s search on my home PC so pbbbhhhhttt! A quick Google search later, I found a bug report on <a title="Bug #361560 in tracker (Ubuntu): &quot;Corrupted tracker index causes persistent applet error popup&quot;" href="https://bugs.launchpad.net/ubuntu/+source/tracker/+bug/361560">LaunchPad</a> about it under which I found these instructions:<br />
<code>sudo aptitude install tracker-utils<br />
tracker-processes -r</code></p>
<p>I apparently already had the tracker-utils  installed, so the first didn’t do anything for me. The second command above however shutdown the tracker and removed the indexes, so the tracker was able to recreate them cleanly. Since running those commands, the pop-up hasn’t come back.</p>
<p>Now on to the fun with the major problem. This was a case of network failure, specifically wireless network failure. While this is a desktop PC, I live in an old house without network cabling and my PC sits too far away from the ideal location for the router to run a cable. So I have a D-Link PCI wireless NIC in my desktop.  The NIC is based on the Atheros AR5413 chipset, Network performance has never been as good as a wired connection but it had been acceptable until this upgrade to 9.04 when the wireless stopped working.</p>
<p>I had been using ndiswrapper to load the windows driver for the card but that suddenly stopped working. I could see all the wireless networks in my neighborhood, but couldn’t connect to any of them (either networks secured with WPA or wide open ones). I started doing some research into the problem using other computers with working internet connections. I found that my router was getting blacklisted while my desktop was trying to connect and then it would timeout without ever making a network connection.</p>
<p>Also while researching the problem, I found out that there was now a new, open source driver which should be working with my wireless NIC (ath5k).  So I removed ndiswrapper, and tried out this new driver. Alas it wans’t particularly stable, dropping connection ever couple of minutes. However since my wireless NIC uses an Atheros based chipset, I had another option. I installed the madwifi driver via jockey-gtk (Ubuntu’s tool for installing restricted modules/drivers).  For whatever reason, activating the driver via jockey-gtk didn’t actually get it up and running. To test it, I used:</p>
<p><code>sudo modprobe ath_pci</code></p>
<p>To actually get the driver to load on every boot, I edited my /etc/modules file to include ath_pci.</p>
<p>The madwifi driver doesn’t appear to make as strong a connection as the ath5k did; the gnome network manager applet shows the connection under madwifi usually has ~45–55% signal strength (under ath5k &amp; ndiswrapper I could get as high as 70%). However I’ve yet to lose a connection to my network while using the madwifi wrapper whereas ath5k would drop connection every couple of minutes and ndiswrapper would usually drop the connection at least once an hour (back on Ubuntu 8.10 where it actually worked for me). Also the madwifi driver allows me to connect to my network on boot-up; unlike ndiswrapper which always took some time to connect after I was booted up and signed in. So overall, I’m pleased with my new networking setup but would have been more pleased if the changes I made could have been done automagically by the upgrade process or if the upgrade process at least warned me that it might break my networking setup.</p>
<p><small><a href="http://coffeebear.net/2009/05/07/jaunty-upgrade-after-effects/">Jaunty Upgrade After Effects</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/05/07/jaunty-upgrade-after-effects/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XBMC-Hulu Update</title>
		<link>http://coffeebear.net/2009/02/04/xbmc-hulu-update/</link>
		<comments>http://coffeebear.net/2009/02/04/xbmc-hulu-update/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 18:45:08 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[xbmc]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=800</guid>
		<description><![CDATA[I’ve been using the Hulu plugin now for a few days and it’s great but I do run into the occasional problem.  So I’ve been following the thread over at XBMC Forums about it as the plugin is under active development.  In a recent post to that thread, one of the developers said: Please use [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been using the Hulu plugin now for a few days and it’s great but I do run into the occasional problem.  So I’ve been following the thread over at <a title="Hulu Plugin for XBMC (Hulu Plugin Release Thread) | XBMC Community Forum" href="http://xbmc.org/forum/showthread.php?t=42041">XBMC Forums</a> about it as the plugin is under active development.  In a recent post to that thread, one of the developers said:</p>
<blockquote cite="http://xbmc.org/forum/showpost.php?p=278034&amp;postcount=418"><p>Please use the google addons.<br />
Right now google addons is more in sync.</p>
<p>Sometimes I use my personal googlecode just to back stuff up, or sync it between my home computer and the one at work. Anytime I’m ready for you guys to try something out I’ll just stick it in the google addons svn &amp; if it’s broken I’ll just revert it.</p></blockquote>
<p>Which is a good tip as the thread has links to a wide variety of versions of the plugin scattered throughout its 45 pages.  Unfortunately the tip does not really clear things up in my particular case.  As I stated <a title="XBMC + Hulu = GOLD! &amp;laquo; CoffeeBear.net" href="http://coffeebear.net/archives/2009/01/26/xbmc-hulu-gold/">previously</a> I’m using a copy of the plugin from <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a>. The developer who made the above comment is recommending people use the version of the plugin from <a title="xbmc-addons | Google Code" href="http://code.google.com/p/xbmc-addons/">xbmc-addons</a> instead of his personal version at <a title="rwparris2 xbmc plugins | Google Code" href="http://code.google.com/p/rwparris2-xbmc-plugins/">rwparris2-xbmc-plugins</a> but makes no mention of the version at <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a> which shows that developer’s username as one of the project owners.</p>
<p>Bah.</p>
<p>I suppose I’ll just have to download the <a title="xbmc-addons | Google Code" href="http://code.google.com/p/xbmc-addons/">xbmc-addons</a> version of the hulu plugin, try it out and compare it to the <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a> version.  As soon as I’ve had a moment to do so, I’ll post my results.</p>
<p><strong>UPDATE:</strong> I’m not seeing any difference between the <a title="xbmc-addons | Google Code" href="http://code.google.com/p/xbmc-addons/">xbmc-addons</a> &amp; <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a> versions so far.  However after reading the thread on <a title="Hulu Plugin for XBMC (Hulu Plugin Release Thread) | XBMC Community Forum" href="http://xbmc.org/forum/showthread.php?t=42041">XBMC Forums</a>, I did go through the trouble of configuring the plugin (under the XBox version -&gt; Videos -&gt; Plugins -&gt; Hulu -&gt; press the white button on your controller).  Setting a default video quality makes using the plugin much nicer (cuts out 2–3 button presses when trying to watch a specific video).  You can enter your Hulu account username/password but there doesn’t appear to be a benefit to doing so yet.</p>
<p><strong>UPDATE2:</strong>Per the <a title="XBMC Community Forum - View Single Post -  Hulu Plugin for XBMC (Hulu Plugin Release Thread)" href="http://xbmc.org/forum/showpost.php?p=279569&amp;postcount=444">XBMC Forums</a>, <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a> has been removed in favor the version available via XBMC SVN Repo Installer and the SVN Repo Installer pulls from <a title="xbmc-addons | Google Code" href="http://code.google.com/p/xbmc-addons/">xbmc-addons</a>.</p>
<p><strong>UPDATE:</strong> Per the <a href="http://xbmc.org/forum/showthread.php?p=287677">XBMC-Hulu plugin release thread</a>, there is no currently working version of the plugin.</p>
<p><small><a href="http://coffeebear.net/2009/02/04/xbmc-hulu-update/">XBMC-Hulu Update</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/02/04/xbmc-hulu-update/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>XBMC + Hulu = GOLD!</title>
		<link>http://coffeebear.net/2009/01/26/xbmc-hulu-gold/</link>
		<comments>http://coffeebear.net/2009/01/26/xbmc-hulu-gold/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 01:56:28 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[Sick]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[xbmc]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=758</guid>
		<description><![CDATA[I’ve been home sick today and when not sleeping I’ve been working to upgrade the version of XBMC I have installed on my softmodded XBox.  I had been running the last stable release, but running into the occasional problem.  First off I’ll note that Nautilus 2.22.5.1 under Ubuntu 8.04.1, does a crappy job of working [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been home sick today and when not sleeping I’ve been working to upgrade the version of <a title="XBox Media Center" href="http://xbmc.org/">XBMC</a> I have installed on my <a title="XBox Softmods | Wikipedia.org" href="http://en.wikipedia.org/wiki/Xbox_softmods">softmodded</a> <a title="Xbox Core Console USM | Amazon.com" href="http://www.amazon.com/gp/product/B0001B15RA?ie=UTF8&amp;tag=musings07-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0001B15RA">XBox</a>.  I had been running the last stable release, but running into the occasional problem.  First off I’ll note that Nautilus 2.22.5.1 under Ubuntu 8.04.1, does a crappy job of working as an FTP client.  That held me up for a while, but after switching over to using gFTP things went much smoother.</p>
<p>The side effect of Nautilus working so poorly was I had time to do a little googling.  I’ve heard good things about the Hulu website for watching TV shows I’ve missed.  Thing i I hate sitting at my computer for long periods of time when I’ve got a comfy couch<sup>1</sup> and a much larger TV than computer monitor.  So as I said, I started googling and looking for a XBMC/Hulu plugin and I did find one in the <a title="Hulu Plugin for XBMC (Hulu Plugin Release Thread) | XBMC Community Forum" href="http://xbmc.org/forum/showthread.php?t=42041">XBMC Forums</a>.</p>
<p>Unfortunately the 0.2 release mentioned in the first post of that thread didn’t work so well for me and there were 38 pages in the thread.  I did some more searching and found an <a title="Simple Plug-in Brings Hulu to Your XBMC | LifeHacker.com" href="http://lifehacker.com/5134070/simple-plug+in-brings-hulu-to-your-xbmc">article over at LifeHacker</a>.  The article seems to be talking about the same plugin but links to a newer release of it.  I kept looking to see if there were anything else out there and found what appears to be the main site for the plugin, <a title="xbmc-hulu | Google Code" href="http://code.google.com/p/xbmc-hulu/">xbmc-hulu</a>.  That last site doesn’t provide a simple download, but you can use subversion to checkout the lastest copy of their plugin.</p>
<p>And that latest version is pure gold, which is to say I’ve not run into a single problem watching any videos via the plugin.  Now I can sit back on the couch and watch Colbert Report, The Daily Show and all sorts of other good stuff that I don’t get with my cable TV package.  If my sinuses clear up and this cold goes away, I could be really happy.</p>
<p><strong>UPDATE:</strong> I appear to be getting quite a bit of traffic (for me anyway) on this post, so thanks for stopping by! Also I’ve finally read through the entire 40 pages (at the time of this writing) in the <a title="Hulu Plugin for XBMC (Hulu Plugin Release Thread) | XBMC Community Forum" href="http://xbmc.org/forum/showthread.php?t=42041">XBMC Forums</a> thread about this plugin.  From reading that thread, there appears to be a lot of confusion on where/how to get the plugin to work.  So for the record, I’m running xbmc-hulu 1.0 (SVN copied checked out on 26 January 2009) on top of T3CH’s 2009-01-25 build of XBMC (rev17349) on an original XBox (softmodded using <a href="http://www.amazon.com/gp/product/B00006LELH?ie=UTF8&amp;tag=musings07-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00006LELH">Mech Assault</a> via ProductWiki’s <a title="How to Go from Xbox to Xbox Media Center in 30 minutes | ProductWiki" href="http://www.productwiki.com/microsoft-xbox/article/how-to-go-from-xbox-to-xbox-media-center-in-30-minutes.html">instructions</a>).</p>
<p><strong>UPDATE:</strong> Per the <a href="http://xbmc.org/forum/showthread.php?p=287677">XBMC-Hulu plugin release thread</a>, there is no currently working version of the plugin.</p>
<p><sup>1</sup> Someday I will have a <a title="Monty Python - Spanish Inquisition Torture Scene | YouTube.com" href="http://www.youtube.com/watch?v=CSe38dzJYkY">comfy chair</a>!</p>
<p><small><a href="http://coffeebear.net/2009/01/26/xbmc-hulu-gold/">XBMC + Hulu = GOLD!</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2009/01/26/xbmc-hulu-gold/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Kubuntu 8.04 to 8.10</title>
		<link>http://coffeebear.net/2008/11/16/kubuntu-804-to-810/</link>
		<comments>http://coffeebear.net/2008/11/16/kubuntu-804-to-810/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 01:11:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://coffeebear.net/archives/2008/11/16/kubuntu-804-to-810/</guid>
		<description><![CDATA[Last night I upgraded my home PC from Kubuntu 8.04 to 8.10.  On the one hand, the upgrade went better than any other upgrade ever has.  On the other, I ran into some major problems. Good The actual upgrade process completed without errors. The computer was successfully upgraded from 8.04 to 8.10 without any manual [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I upgraded my home PC from Kubuntu 8.04 to 8.10.  On the one hand, the upgrade went better than any other upgrade ever has.  On the other, I ran into some major problems.</p>
<h3>Good</h3>
<ul>
<li>The actual upgrade process completed without errors.</li>
<li>The computer was successfully upgraded from 8.04 to 8.10 without any manual intervention on my part.</li>
<li>Desktop effects (aka compiz) are very fun.  I’d tried them in the past with less than stellar results (too buggy) but they seem much more stable now.</li>
<li>The extra buttons on my trackball finally work righ with Firefox under Ubuntu (back/forward).</li>
</ul>
<h3>Bad</h3>
<ul>
<li> The upgrader removed and did not reinstall the restricted kernel modules.
<ul>
<li>For my less technical readers, basically the upgrade broke both my wireless connection and 3D acceleration.  I could live without the 3D, but this computer relies on wireless to connect to my home network.  Fixing that took a couple of hours of digging around in the log files and using another computer to get the files I needed.  Major headache.</li>
<li>I understand why the modules were removed and not installed after the upgrade, but I wish the upgrader had been smart enough to realize I needed them and would have at least downloaded them to be available after I rebooted to complete the install.</li>
</ul>
</li>
<li>KDE 4.x is the new default desktop environment for Kubuntu.  KDE 4.x does not play nicely with Nvidia graphics cards.  Like the one in my computer.  Meaning the lag between clicking on a the K menu and the menu popping up was about 2 minutes.  *ugh*  I could disable the Nvidia drivers to get <em>normal</em> performance back but then I’d lose my 3D acceleration.  *sigh*  So I’ve switched over to using Gnome, which will probably make at least <a title="Aizuchi" href="http://aizuchi.livejournal.com/">one person</a> I know very smug.</li>
<li>The network shared drives I had setup to be automatically mounted on every boot are no longer mounting.  Gnome has an easy way to connect to those shares, but I really don’t want to have to mount them manually every time.</li>
</ul>
<p><strong>Update:</strong> For those of you stopping by looking for instructions on how to do this upgrade, you can fine the complete instructions (with screenshots!) over at Ubuntu’s Community Documentation page for <a title="IntrepidUpgrades/Kubuntu - Community Ubuntu Documentation" href="https://help.ubuntu.com/community/IntrepidUpgrades/Kubuntu">IntrepidUpgrades/Kubuntu</a>.</p>
<p><small><a href="http://coffeebear.net/2008/11/16/kubuntu-804-to-810/">Kubuntu 8.04 to 8.10</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/11/16/kubuntu-804-to-810/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Now-Reading Tweaks v2</title>
		<link>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/</link>
		<comments>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 22:48:58 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Now-Reading]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=636</guid>
		<description><![CDATA[Some time back, I tried to make Rob Miller’s Now-Reading plugin display who’s reading each book on the individual pages. But the PHP code I posted at that time didn’t work like I thought it did, my interests changed and I moved onto other things. Today I had a visitor stop by asking about my [...]]]></description>
			<content:encoded><![CDATA[<p>Some <a href="http://coffeebear.net/archives/2008/04/25/now-reading-tweaks/" title="Now-Reading Tweaks | CoffeeBear.net">time back</a>, I tried to make Rob Miller’s <a title="Now-Reading plugin for WordPress" href="http://robm.me.uk/projects/plugins/wordpress/now-reading/">Now-Reading plugin</a> display who’s reading each book on the individual pages.  But the PHP code I posted at that time didn’t work like I thought it did, my interests changed and I moved onto other things.  Today I had a <a href="http://coffeebear.net/archives/2008/04/25/now-reading-tweaks/#comment-24422" title="Comment by elle | Now-Reading Tweaks| CoffeeBear.net">visitor</a> stop by asking about my broken tweak.  So I took another look at the code and I believe I’ve got something that works this time.</p>
<pre name="code" class="php">// Now-Reading Plugin: Get the display name of the book's reader
function mlm_book_reader( $echo=true ) {
	global $book;

	$user_info = get_userdata($book->reader);

	if ( $echo )
		echo $user_info->display_name;
	return $user_info->display_name;

}</pre>
<p>This grabs “Display name publicly as” from the user’s profile and displays it on the page.  I put the function in the functions.php file of the theme I’m using (so any automatic upgrades of the plugin won’t erase it).  Then I put &lt; ?php mlm_book_reader() ?&gt; into my custom single.php template and viola!</p>
<p>Note: this has only been tested on WordPress 2.6.2 with Now-Reading 4.4.3.</p>
<p><small><a href="http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/">Now-Reading Tweaks v2</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/09/12/now-reading-tweaks-v2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick Note</title>
		<link>http://coffeebear.net/2008/07/15/quick-note/</link>
		<comments>http://coffeebear.net/2008/07/15/quick-note/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 18:29:17 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[thanks]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coffeebear.net/archives/2008/07/15/quick-note/</guid>
		<description><![CDATA[Just upgraded CoffeeBear.net to WordPress 2.6. So this post is partly to make sure all my plugins are working correctly with it. I’d also like to take a momemt to thank AWelkin &#38; Bryon for the gifts they brought back from Japan for me. I’ve now decorated my cubicle with 3 Tachikoma gashapon. *yeah!* Also [...]]]></description>
			<content:encoded><![CDATA[<p>Just upgraded CoffeeBear.net to <a title="Wordpress 2.6 aka Tyner | WordPress.org" href="http://wordpress.org/development/2008/07/wordpress-26-tyner/">WordPress 2.6</a>.  So this post is partly to make sure all my plugins are working correctly with it.</p>
<p>I’d also like to take a momemt to thank AWelkin &amp; Bryon for the gifts they brought back from Japan for me.  I’ve now decorated my cubicle with 3 <a title="Tachikoma | Wikipedia.org" href="http://en.wikipedia.org/wiki/Tachikoma">Tachikoma</a> <a title="Gashapon | Wikipedia.org" href="http://en.wikipedia.org/wiki/Gashapon">gashapon</a>.  *yeah!*  Also a quick thanks should go out to my buddy/ex-coworker Eric, he mentioned more than once I just needed the right motivation to get into programming<sup>1</sup>.  Well I recently had some slow time at work and wanted a way to parse some badly formatted data; so I wrote a Python script and while doing so certain things that have never clicked in my head about programming started falling into place.  I’ve since started working on another Python script for a different project at the office, so perhaps there’s some hope for my coding-fu yet.</p>
<p><sup>1</sup> I do a lot of computer stuff, but have never been much of a programmer.  Usually I just learn enough to hack somebody else’s stuff together to do what I want in rather ugly hacks.</p>
<p><small><a href="http://coffeebear.net/2008/07/15/quick-note/">Quick Note</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/07/15/quick-note/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Complete</title>
		<link>http://coffeebear.net/2008/04/09/upgrade-complete/</link>
		<comments>http://coffeebear.net/2008/04/09/upgrade-complete/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 04:30:56 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[Gutsty]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://coffeebear.net/archives/2008/04/09/upgrade-complete/</guid>
		<description><![CDATA[I finished up all the upgrades to my home PC putting me on Kubuntu 7.10 (Gutsy Gibbon). Unfortunately none of the auto-magical upgrade tools provided by Canonical worked for me, so all my upgrades were done via cli, using aptitude. Mostly this means I had to repeatedly run “sudo aptitude dist-upgrade”, interspersed with removing/installing specific [...]]]></description>
			<content:encoded><![CDATA[<p>I finished up all the upgrades to my home PC putting me on Kubuntu 7.10 (Gutsy Gibbon).  Unfortunately none of the auto-magical upgrade tools provided by Canonical worked for me, so all my upgrades were done via <abbr title="Command Line Interface">cli</abbr>, using aptitude.  Mostly this means I had to repeatedly run “sudo aptitude dist-upgrade”, interspersed with removing/installing specific packages based on errors thrown up by apititude, with a couple “sudo aptitude –f install”  and “sudo dpkg –configure –a” thrown in for good measure.</p>
<p>I’ve been running Gutsy for a day now and the apps I normally use<sup>1</sup> seems to be working fine.  A couple of tweaks I made almost immediately after upgrading to Gusty:</p>
<ul>
<li>Removed <a href="http://strigi.sourceforge.net/" title="Strigi | The fastest and smallest desktop searching program">Strigi</a>.  From what I understand Strigi is supposed to be some sort of indexer to allow for quick searching of your computer.  Only I found it had a horribly impact performance.  Everything became extremely sluggish.</li>
<li>Switch the default file manager to Konqueror from Dolphin.  Dolphin looks like it might be useful and it did feel faster. But I’m used to Konqueror and don’t feel like making the switch right now.</li>
<li>Installed <a href="http://compiz.org/">Compiz</a>.  I found it interesting but different enough from my normal preferences that I’ve disabled it for now.  Though I do plan to look at it more another day.</li>
</ul>
<p><sup>1</sup> Kontact, Firefox, Konsole, KMyMoney, Kaffeine, Digikam, and Amarok</p>
<p><small><a href="http://coffeebear.net/2008/04/09/upgrade-complete/">Upgrade Complete</a> © <a href="http://coffeebear.net" rel="cc:attributionURL">Mark McKibben</a>, <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States</a>.</small></p>]]></content:encoded>
			<wfw:commentRss>http://coffeebear.net/2008/04/09/upgrade-complete/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: basic
Page Caching using disk: enhanced
Database Caching 1/51 queries in 0.036 seconds using disk: basic
Object Caching 1290/1418 objects using disk: basic

Served from: coffeebear.net @ 2012-05-25 07:06:30 -->
