<?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; Code</title>
	<atom:link href="http://coffeebear.net/tag/code/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>Now-Reading Tweaks</title>
		<link>http://coffeebear.net/2008/04/25/now-reading-tweaks/</link>
		<comments>http://coffeebear.net/2008/04/25/now-reading-tweaks/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 19:14:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Now-Reading]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=617</guid>
		<description><![CDATA[I use Rob Miller’s excellent Now-Reading plugin to track all the books I’ve read and am reading here at CoffeeBear. After my recent site upgrade I decided to tweak the single book template for my library. I noticed that the latest version of Now-Reading allows you to note who read a given book on multiuser [...]]]></description>
			<content:encoded><![CDATA[<p>I use Rob Miller’s excellent <a title="Now-Reading plugin for WordPress" href="http://robm.me.uk/projects/plugins/wordpress/now-reading/">Now-Reading plugin</a> to track all the books I’ve read and am reading here at CoffeeBear. After my recent <a title="WordPress Upgrade | CoffeeBear.net" href="http://coffeebear.net/archives/2008/04/23/wordpress-upgrade/">site</a> <a title="Library Fixed and Other Changes | CoffeeBear.net" href="http://coffeebear.net/archives/2008/04/23/library-fixed-and-other-changes/">upgrade</a> I decided to tweak the single book template for my library. I noticed that the latest version of Now-Reading allows you to note who read a given book on multiuser sites. As my wife occassionally posts here I wanted my reads to be marked as mine, but the default output of the function Rob implemented only displays the user’s login name. Seriously Rob, what were you thinking? If you did not want to give end users the option to select how they want their name to print out why wouldn’t you go with display_name?</p>
<p>I looked at the code Rob used and with a little help from the <a title="Practical PHP Programming" href="http://hudzilla.org/phpwiki/">Practical PHP</a> I hacked together my own function based on Rob’s. By default print_reader2 works the exactly the same as print_reader<sup>1</sup> but by feeding it an additional parameter, you get your choice of what to use to display as reader’s name:</p>
<ul>
<li>0: Prints out the user_login aka the username you use to log into WordPress.</li>
<li>1: Prints user_nicename, appears to simply be an all lower case version of the user’s nickname<sup>2</sup>.</li>
<li>2: Prints display_name, from the “Display name publicly as” field in your WordPress profile.</li>
<li>3: Prints first_name, from the “First name” field in your WordPress profile.</li>
<li>4: Prints nickname, from the “Nickname” field in your WordPress profile.</li>
</ul>
<pre name="code" class="php">function print_reader2( $echo=true, $reader_id = 0, $display = 0 ) {
	global $userdata;

	$username='';

	switch($display) {
		case "1": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;user_nicename; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;user_nicename; }; break;
		case "2": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;display_name; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;display_name; }; break;
		case "3": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;first_name; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;first_name; }; break;
		case "4": if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;nickname; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;nickname; }; break;
		default: if (!$reader_id) { get_currentuserinfo(); $username = $userdata-&gt;user_login; } else { $user_info = get_userdata($reader_id); $username = $user_info-&gt;user_login;};
   }
	if ($echo)
		echo $username;
	return $username;
}</pre>
<p><strong>Side note:</strong> WordPress 2.5.1 got released today and it includes a security fix, be sure to update your blogs!</p>
<p><sup>1</sup> At least, I think it does. I’m not a programmer and I only know enough PHP to be dangerous to myself.<br />
<sup>2</sup> The <a title="WordPress Codex" href="http://codex.wordpress.org/">WordPress Codex</a> does not appear to define what this field is used for or why it exists, so that’s just my guess.</p>
<p><small><a href="http://coffeebear.net/2008/04/25/now-reading-tweaks/">Now-Reading Tweaks</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/25/now-reading-tweaks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Text-Link-Ads Updated</title>
		<link>http://coffeebear.net/2007/11/15/text-link-ads-updated/</link>
		<comments>http://coffeebear.net/2007/11/15/text-link-ads-updated/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 01:05:15 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[tla]]></category>

		<guid isPermaLink="false">http://coffeebear.net/archives/2007/11/15/text-link-ads-updated/</guid>
		<description><![CDATA[Text-Link-Ads is a nice service which I use to help pay the bills for running this site. They just released a new version of their WordPress plugin which I use to put their adverts on this site, so I installed it but in doing so it overwrote a couple of changes I’d made to the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tinyurl.com/2unbaa" title="Text-Link-Ads">Text-Link-Ads</a> is a nice service which I use to help pay the bills for running this site.  They just released a new version of their WordPress plugin which I use to put their adverts on this site, so I installed it but in doing so it overwrote a couple of changes I’d made to the old plugin.  I had made those changes as I like the service and I definitely like the additional income<sup>1</sup>, but I don’t like how the plugin makes the ad links less than obviously ads.  So my changes in the plugin add a specific class which I can then style via <abbr title="Cascading Style Sheets">CSS</abbr>.  Since I don’t want to have to keep redoing my customizations from scratch each time they release the plugin; I’m posting the code changes I make here.</p>
<p>Under <strong>function outputHtmlAds()</strong>, I changed the following line of code from:<br />
<code>echo "\n&lt;ul&gt;\n";&lt;/ul&gt;</code></p>
<p>to:<br />
<code>echo "\n&lt;ul class=\"tla_sponsor_link\"&gt;\n";&lt;/ul&gt;</code></p>
<p>Also under <strong>function returnPostAd($postId)</strong>, I changed:<br />
<code>return "\n\n&lt;em&gt;".$prefixes[$prefixIndex].":&lt;/em&gt; $ad->before_text &lt;a href=\"$ad->url\">$ad->text&lt;/a&gt; $ad->after_text";</code></p>
<p>to:<br />
<code>return "\n\n&lt;div class=\"tla_sponsor_link\"&gt;&lt;em>".$prefixes[$prefixIndex].":&lt;/em&gt; $ad->before_text &lt;a href=\"$ad->url\">$ad->text&lt;/a&gt; $ad->after_text&lt;/div&gt;";</code></p>
<p>Side note: <a href="http://tinyurl.com/2unbaa" title="Text-Link-Ads">TLA</a>, you guys should change the <a href="http://www.text-link-ads.com/our_blog.php">Our Blog</a> to be called something else as the link doesn’t actually take users to your <a href="http://www.linkbuildingblog.com/" title="Link Building Blog by Text-Links-Ads">blog</a>.</p>
<p><sup>1</sup> I don’t make enough from these ads to get rich mind you.  Just enough to cover the costs of running CoffeeBear.net and maybe a cup of good coffee from my local coffee shop.</p>
<p><small><a href="http://coffeebear.net/2007/11/15/text-link-ads-updated/">Text-Link-Ads Updated</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/2007/11/15/text-link-ads-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Team Fortress 2!</title>
		<link>http://coffeebear.net/2006/07/25/team-fortress-2/</link>
		<comments>http://coffeebear.net/2006/07/25/team-fortress-2/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 19:01:30 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[HAL]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[pain]]></category>
		<category><![CDATA[TF2]]></category>
		<category><![CDATA[trailer]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=452</guid>
		<description><![CDATA[I used to love playing video games and would waste entire days doing nothing else, but over the last couple of years I’ve started slipping away from that hobby. The expense of keeping my computer updated to handle the latest games combined with the pain I’d get in my wrists just kind of killed the [...]]]></description>
			<content:encoded><![CDATA[<p>I used to love playing video games and would waste entire days doing nothing else, but over the last couple of years I’ve started slipping away from that hobby.  The expense of keeping my computer updated to handle the latest games combined with the pain I’d get in my wrists just kind of killed the fun.  Particularly since I wasn’t seeing a lot of new games to keep up my interest.  Well, if the game behind this <a href="http://www.youtube.com/watch?v=NaF638MBSAE" title="Team Fortress 2">trailer</a> plays anywhere close to as good as it looks; then I’ll be back to burning the midnight oil to lay waste to the enemy.  *grin*</p>
<p>You see, one of my all-time favorite video games was the original Team Fortress mod for Half-Life.  The class choices, mayhem and fun were an unbeatable combination<sup>1</sup>.  Then as other mods were developed further; Valve announced they were going to go all out on making TF2.  This was 5 years ago and was the last we heard from Valve about it.  At least the last we heard until this month when they released the official <a href="http://www.youtube.com/watch?v=NaF638MBSAE" title="Team Fortress 2">trailer</a> for TF2.  The new character models are wicked cool and oddly enough something about the trailer reminds me of <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00005QX48%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00005QX48%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">No One Lives Forever</a> (another great video game).</p>
<p>Just wow!  I cannot think of any better description of how cool this trailer looks.  Go on, hit the <a href="http://www.youtube.com/watch?v=NaF638MBSAE" title="Team Fortress 2">link</a> and watch it yourself!</p>
<p><sup>1</sup> At least I’ve always thought so, but others have preferred that <abbr title="Piece of Shit">POS</abbr> called Counter-Strike.</p>
<p><small><a href="http://coffeebear.net/2006/07/25/team-fortress-2/">Team Fortress 2!</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/2006/07/25/team-fortress-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you a hoopy frood, like me?</title>
		<link>http://coffeebear.net/2006/05/25/are-you-a-hoopy-frood-like-me/</link>
		<comments>http://coffeebear.net/2006/05/25/are-you-a-hoopy-frood-like-me/#comments</comments>
		<pubDate>Thu, 25 May 2006 15:45:14 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[dessert]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[HAL]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[Weather]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=437</guid>
		<description><![CDATA[If so, you better have your towel with you today! As today, is Towel Day. For those not familiar, Douglas Adams was one of the funniest writers of our time. He wrote a wonderful series of radio plays which were converted in a a series of books and a TV show and later into a [...]]]></description>
			<content:encoded><![CDATA[<div class="alpha-shadow">
<div><a href="http://coffeebear.net/gallery/file/TowelDay_SelfPortrait.jpg" title="Click here to see the full size version of my Towel Day Self Portait"><img src="http://coffeebear.net/gallery/thumb/TowelDay_SelfPortrait.jpg" height="133" width="127" border="0" alt="Towel Day Self Portait" /></a></div>
</div>
<p>If so, you better have your towel with you today!  As today, is <a href="http://www.towelday.kojv.net/" title="Towel Day  ::  A tribute to Douglas Adams (1952-2001)">Towel Day</a>.</p>
<p>For those not familiar, Douglas Adams was one of the funniest writers of our time.  He wrote a wonderful series of radio plays which were converted in a a series of books and a TV show and later into a really awful movie.  This was <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=0345453743%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/0345453743%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">The Hitchhiker’s Guide to the Galaxy</a>.  In this, Mr. Adams wrote:</p>
<blockquote><p> A towel, it says, is about the most massively useful thing an interstellar hitch hiker can have. Partly it has great practical<br />
value — you can wrap it around you for warmth as you bound across the cold moons of Jaglan Beta; you can lie on it on the brilliant marble-sanded beaches of Santraginus V, inhaling the heady sea vapours; you can sleep under it beneath the stars which shine so redly on the desert world of Kakrafoon; use it to sail a mini raft down the slow heavy river Moth; wet it for use in hand-to-hand-combat; wrap it round your head to ward off noxious fumes or to avoid the gaze of the Ravenous Bugblatter Beast of Traal (a mindboggingly stupid animal, it assumes that if you can’t see it, it can’t see you — daft as a bush, but very ravenous); you can wave your towel in emergencies as a distress signal, and of course dry yourself off with it if it still seems to be clean enough.</p>
<p>More importantly, a towel has immense psychological value. For some reason, if a strag (strag: non-hitch hiker) discovers that a hitch hiker has his towel with him, he will automatically assume that he is also in possession of a toothbrush, face flannel, soap, tin of biscuits, flask, compass, map, ball of string, gnat spray, wet weather gear, space suit etc., etc. Furthermore, the strag will then happily lend the hitch hiker any of these or a dozen other items that the hitch hiker might accidentally have “lost”. What the strag will think is that any man who can hitch the length and breadth of the galaxy, rough it, slum it, struggle against terrible odds, win through, and still knows where his towel is is clearly a man to be reckoned with. </p></blockquote>
<p>After Mr. Adams’s death some lunatics decided to create Towel Day as a tribute to his genius.  I only heard about it this year (about a week ago to be more precise) and decided to join in on the fun.  And the fact that I’m telecommuting to work today had absolutely nothing to do with that decision.  *grin*</p>
<p><small><a href="http://coffeebear.net/2006/05/25/are-you-a-hoopy-frood-like-me/">Are you a hoopy frood, like me?</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/2006/05/25/are-you-a-hoopy-frood-like-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inquire Within</title>
		<link>http://coffeebear.net/2006/03/10/inquire-within/</link>
		<comments>http://coffeebear.net/2006/03/10/inquire-within/#comments</comments>
		<pubDate>Sat, 11 Mar 2006 03:31:54 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=427</guid>
		<description><![CDATA[During a recent business trip, I found out some co-workers and friends of mine had put together a comedic short film. The film tells the story of a young woman with some relationship troubles going to a professional philosopher to find the answer. I thought it was pretty funny. And as there is a copy [...]]]></description>
			<content:encoded><![CDATA[<p>During a recent business trip, I found out some co-workers and friends of mine had put together a comedic short film.  The film tells the story of a young woman with some relationship troubles going to a professional philosopher to find <em>the answer</em>.  I thought it was pretty funny.  And as there is a copy of it over at Google Video, which will autogenerate the HTML code necessary to embed the video on my own site; I figured I’d add it here.  Click the more link below to watch the video.</p>
<p><span id="more-427"></span></p>
<p><embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?videoUrl=http%3A%2F%2Fvp.video.google.com%2Fvideodownload%3Fversion%3D0%26secureurl%3DngAAAKp0SIq4nQUH28sGZzKqcsK85M0OYx3BpxbTkaquB7hGDAyIK2QdoVhDMTRd9tsvHOMPX6YwJNTUWmCtsqmQHnBkp8hm6XzuPS564RGHa6Qvqy1VMa3-A6JRmImhYnZtwyAmlF3vP7jk8g3p2BeLWFNbcal3s2FXrVhgS6c9S1PVxMs6X--LssrtDq5cNM7ycyYKOnGqXg9S_ie6b-krlnM%26sigh%3DJwbsZTMhx_HYbJ_uJEderZlYcVc%26begin%3D0%26len%3D987787%26docid%3D-2963381024909733948&#038;thumbnailUrl=http%3A%2F%2Fvideo.google.com%2FThumbnailServer%3Fcontentid%3D6c54b6ea274b24cd%26second%3D5%26itag%3Dw320%26urlcreated%3D1142032915%26sigh%3DfF_jAzXYjAop3H1pHyUMAiyIwyc&#038;playerId=-2963381024909733948" allowScriptAccess="sameDomain" quality="best" bgcolor="#ffffff" scale="noScale" wmode="window" salign="TL"  FlashVars="playerMode=embedded"> </embed></p>
<p><small><a href="http://coffeebear.net/2006/03/10/inquire-within/">Inquire Within</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/2006/03/10/inquire-within/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ain’t Dead Yet</title>
		<link>http://coffeebear.net/2005/12/17/aint-dead-yet/</link>
		<comments>http://coffeebear.net/2005/12/17/aint-dead-yet/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 04:50:43 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[annoyed]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[dinner]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[park]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[weekend]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=412</guid>
		<description><![CDATA[Today marks the completion of my third decade on this planet and I am quite pleased to be able to announce that I ain’t dead yet. :D But worry not gentle reader, I’ll not be subjecting you to some passÃ© retrospective about my life. Instead, I’ll just recap today and today alone. I was up [...]]]></description>
			<content:encoded><![CDATA[<p>Today marks the completion of my third decade on this planet and I am quite pleased to be able to announce that I ain’t dead yet. :D  But worry not gentle reader, I’ll not be subjecting you to some passÃ© retrospective about my life.  Instead, I’ll just recap today and today alone.</p>
<p>I was up playing <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00006LEM8%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00006LEM8%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Wild Arms 3</a> till about 3 am as I just couldn’t sleep.  Most likely due to an excessive amount of munching on holiday goodies while downing glass, after glass of soda<sup>1</sup>.  I found one monster to fight that took around an hour to defeat but it jumped my characters up 4–7 levels!  *grin*  Then when I eventually got to bed; I slept poorly.  Our apartment is just too dry this time of year and our little humidifier stopped working.  This causes me to keep waking up with sinus headaches and a terrible thrist.  I got out of bed about 8:30 — 9 and went back to playing the video game a bit more.  Shortly there after, Michelle got up and gave me my birthday present.</p>
<p>What’d she get me?  A case of blue <strike>balls</strike> <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B0009V8KL6%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B0009V8KL6%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Bawls</a>.  Then after lazing around most of the day; we headed out to the local mall to meet some friends.</p>
<p>I’d foolishly asked a bunch of friends to join us in watching the Narina movie with a follow-up plan to eat dinner together.  There was one point that I’d not factored in these plans.  This year, my birthday fell on a Saturday.  Just about the <em>last Saturday before Christmas</em>.  Traffic was insane and people all around were grouchy, though we did run across some nice people that helped us get around the parking lot<sup>2</sup>.  We went over to the mall a little early and bought a new humidifer and then headed down to the theater.  We got tickets, met up with our friends and went in to watch the <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00005JO1X%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00005JO1X%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">The Chronicles of Narnia: The Lion, the Witch and the Wardrobe</a>.</p>
<p>*whew*  What a movie!  While not perfect, it was probably as good as we could hope for from a Hollywood production.<br />
High points:</p>
<ul>
<li>The actress playing Lucy was spot on.  Most of the other actors cast in the movie were also quite good</li>
<li>The backgrounds were gorgeous.</li>
<li>The addition of the Nazi bombing run at the beginning of the movie really helped to give context to the time of the story.</li>
</ul>
<p>Low points:</p>
<ul>
<li>The costuming on the witch.  Her outfits were ugly and just didn’t work with the imagery I have in my head for the character. Though I do have to admit the black , soulless eyes did work for me.</li>
<li>The witch was not nearly as afraid of Aslan as she should have been.  In my memories of the book, the witch was terrified of Aslan but the movie seemed to put them on a more even footing.</li>
<li>Maugrim’s voice.  The actor doing the voice did a fine job, but being the only character without a british accent really stuck out and annoyed me.</li>
</ul>
<p>Overall, I’d say it was worth seeing in the theater and it is something I’ll be adding to our DVD collection when it becomes available.</p>
<p>After the movie was over, we headed to the restaurant.  Oh, I should mention we had called earlier in the day to try making reservations but were told they don’t do that for parties of less than 8.  And that they would have plenty of room for the 6 of us.  When we got there; we were told it would be a 2 hour wait.  We decided to switch to the <a href="http://www.oyamasushi.com/">Oyama Sushi</a> restaurant.  They seated us within minutes of our arrival (even though they were already pretty packed).  Then they plied us with drinks until our food was ready<sup>3</sup>.  We had a jolly time chatting and drinking (non-alcholic, <em>for the most part</em>) but all good things do come to an end and eventually we all headed home.  It was a very good day and while I ain’t dead yet; I am a bit tired so good night, sleep tight and don’t let the space bugs bite!</p>
<p><sup>1</sup> a.k.a. pop to you heathens.<br />
<sup>2</sup> A few people threw their cars into reverse to open up bigger areas for us to drive through and things of that nature.<br />
<sup>3</sup> It turns out this weekend contains not only my birthday and practically the last weekend before Christmas but it’s also graduation weekend for the University!  No wonder everything was so packed today!  This also explains why it took so long for our food to arrive.</p>
<p><small><a href="http://coffeebear.net/2005/12/17/aint-dead-yet/">Ain’t Dead Yet</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/2005/12/17/aint-dead-yet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HP:GoF</title>
		<link>http://coffeebear.net/2005/11/22/hpgof/</link>
		<comments>http://coffeebear.net/2005/11/22/hpgof/#comments</comments>
		<pubDate>Wed, 23 Nov 2005 04:50:22 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[weekend]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=406</guid>
		<description><![CDATA[Over the weekend, Ariesna &#38; I went with some friends to watch Harry Potter and the Goblet of Fire. I went into the movie with extremely low expectations1 but much to my surprise; I rather liked the movie. Sure huge chunks of the book were wacked out, but you have to expect that when you [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend, <a href="http://ariesna.livejournal.com/" title="Ariesna's Journal">Ariesna</a> &amp; I went with some friends to watch <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00005JMAI%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00005JMAI%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Harry Potter and the Goblet of Fire</a>.  I went into the movie with extremely low expectations<sup>1</sup> but much to my surprise; I rather liked the movie.  Sure huge chunks of the book were wacked out, but you have to expect that when you are taking 734 pages of text and converting it into a movie just over 2.5 hours long.  The special effects were upto pair with anything in the prior movies.  Also, although the actor playing Mad-Eye Moody didn’t look quite like I had pictured the character; he did a nice job of it.  Overall, I give this one a thumbs up and it will eventually be going in my DVD collection (unlike some the previous one).</p>
<p><sup>1</sup> <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00005JMAH%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00005JMAH%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Harry Potter and the Prisoner of Azkaban</a> was such a wretched film that it nearly ruined the entire series for me.</p>
<p><small><a href="http://coffeebear.net/2005/11/22/hpgof/">HP:GoF</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/2005/11/22/hpgof/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sometimes you feel like a nut.…</title>
		<link>http://coffeebear.net/2005/11/16/402/</link>
		<comments>http://coffeebear.net/2005/11/16/402/#comments</comments>
		<pubDate>Thu, 17 Nov 2005 00:48:04 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Burns]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[offer]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=402</guid>
		<description><![CDATA[To borrow “snarkism”, somebody deserves a tasty, tasty biscut for today’s bit of hilarity over at Gossamer Commons. If you do not regularly follow the strip; Malachite saved Keith from a Barghast by summoning forth Apokoryfoma. She’s a Neriad and the Viceroy of the Cul-de-Sac. She also happens to be Malachite’s ex-girlfriend. *laugh* If that [...]]]></description>
			<content:encoded><![CDATA[<div class="alpha-shadow">
<div><img src="http://coffeebear.net/wp-content/GS20051116.gif" alt="Gossamer Commons, 16 Nov 2006" /></div>
</div>
<p>To borrow “snarkism”, somebody deserves a tasty, tasty biscut for today’s bit of hilarity over at <a href="http://www.gossamercommons.com/" title="Gossamer Commons">Gossamer Commons</a>.</p>
<p>If you do not regularly follow the strip; Malachite saved Keith from a Barghast by summoning forth <strong>Apokoryfoma</strong>.  She’s a Neriad and the <em>Viceroy of the Cul-de-Sac</em>.  She also happens to be Malachite’s ex-girlfriend.  *laugh*  If that were not bad enough by her code Keith is now required to make some sort of sacrifice to her, as a token of gratitude for saving him.  Unfortunately, he’s not exactly overburned with resources at the moment and offers up a candy bar.  Today’s strip is Appie’s reaction.  <a href="http://www.seppukuonline.com/" title="Seppuku Online">Greg Holkan</a>’s art and <a href="http://www.websnark.com/" title="Websnark">Eric Burns</a>’ one line of text in this strip blend beautifully.  Malachite’s reaction in the background of the strip is particularly worth paying attention to.  :D</p>
<p><small><a href="http://coffeebear.net/2005/11/16/402/">Sometimes you feel like a nut.…</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/2005/11/16/402/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Quiz Silliness</title>
		<link>http://coffeebear.net/2005/10/12/more-quiz-silliness/</link>
		<comments>http://coffeebear.net/2005/10/12/more-quiz-silliness/#comments</comments>
		<pubDate>Wed, 12 Oct 2005 19:09:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Quizzes]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[pun]]></category>
		<category><![CDATA[Quiz]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[RPGS]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=379</guid>
		<description><![CDATA[Wizard 40% Combativeness, 26% Sneakiness, 73% Intellect, 50% Spirituality Brilliant! You are a Wizard! Wizards are spells-casters who study powerful arcane magic. While Wizards tend to be pretty fragile, some of those spells can pack quite a punch. Unlike Clerics, Wizards arenï¿½t as good at fixing people as they are at breaking them, so watch [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://monster.namedecoder.com" title="Monster Name Decoder"><img src="http://monster.namedecoder.com/webimages/beast-MANZABAR.png" width="240" height="180" alt="Malevolent Abhorrent Nun-Zapping Anthropologist-Beheading Abomination of Rage" border="0"/></a></p>
<table align="center" cellpadding="20">
<tbody>
<tr>
<td align="center">
      <font size="5"><b>Wizard</b></font><br />
      40% Combativeness, 26% Sneakiness, 73% Intellect, 50% Spirituality
     </td>
</tr>
<tr>
<td>
      Brilliant!  You are a Wizard!<br />
<br />
Wizards are spells-casters who study powerful arcane magic.  While Wizards tend to be pretty fragile, some of those spells can pack quite a punch.  Unlike Clerics, Wizards arenï¿½t as good at fixing people as they are at breaking them, so watch where you toss that fireballï¿½<br />
<br />
Your most distinctive trait is your intelligence.  You’re probably well learned and logical, if perhaps a bit fragile.</p>
</td>
</tr>
<tr>
<td align="center">
      <img src="http://is2.okcupid.com/users/152/386/15238646033989136694/mt1128069261.jpg"/>
     </td>
</tr>
</tbody>
</table>
<p></p>
<table cellpadding="20">
<tbody>
<tr>
<td>
<p>   <span id="comparisonarea">My test tracked 4 variables How you compared to other people <i>your age and gender</i>:<br />
<blockquote>
<table border="0" cellpadding="0" cellspacing="4">
<tbody>
<tr>
<td valign="middle">
<table bgcolor="black" border="0" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td bgcolor="#b2cfff" height="20" width="23"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
<td bgcolor="white" width="127"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
</tr>
</tbody>
</table>
</td>
<td valign="middle">You scored higher than <b>15%</b> on <b>Combativeness</b></td>
</tr>
<tr>
<td valign="middle">
<table bgcolor="black" border="0" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td bgcolor="#b2cfff" height="20" width="39"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
<td bgcolor="white" width="111"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
</tr>
</tbody>
</table>
</td>
<td valign="middle">You scored higher than <b>26%</b> on <b>Sneakiness</b></td>
</tr>
<tr>
<td valign="middle">
<table bgcolor="black" border="0" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td bgcolor="#b2cfff" height="20" width="83"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
<td bgcolor="white" width="67"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
</tr>
</tbody>
</table>
</td>
<td valign="middle">You scored higher than <b>55%</b> on <b>Intellect</b></td>
</tr>
<tr>
<td valign="middle">
<table bgcolor="black" border="0" cellpadding="0" cellspacing="1">
<tbody>
<tr>
<td bgcolor="#b2cfff" height="20" width="90"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
<td bgcolor="white" width="60"><a href="http://www.okcupid.com"><img src="http://is2.okcupid.com/graphics/0.gif" alt="free online dating" border="0"/></a></td>
</tr>
</tbody>
</table>
</td>
<td valign="middle">You scored higher than <b>60%</b> on <b>Spirituality</b></td>
</tr>
</tbody>
</table>
</blockquote>
<p></span></p>
</td>
</tr>
</tbody>
</table>
<table cellpadding=20>
<tr>
<td>Link: <a href='http://www.okcupid.com/tests/take?testid=1532690756472625027'>The RPG Class Test</a> written by <a href='http://www.okcupid.com/profile?tuid=15238646033989136694'>MFlowers</a> on <a href='http://www.okcupid.com'>OkCupid Free Online Dating</a>, home of the <a href='http://www.okcupid.com/oktest3'>32-Type Dating Test</a></td>
</tr>
</table>
<p><small><a href="http://coffeebear.net/2005/10/12/more-quiz-silliness/">More Quiz Silliness</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/2005/10/12/more-quiz-silliness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Read?</title>
		<link>http://coffeebear.net/2005/10/12/why-i-read/</link>
		<comments>http://coffeebear.net/2005/10/12/why-i-read/#comments</comments>
		<pubDate>Wed, 12 Oct 2005 16:45:53 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[mystery]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[sugar]]></category>
		<category><![CDATA[Wife]]></category>

		<guid isPermaLink="false">http://coffeebear.net/?p=380</guid>
		<description><![CDATA[A friend of mine recently asked if other people had similar reactions when reading a good book. Since this site has been heavier on the brainless fluff of late; I decided to answer the question here rather than in her comments. When I’ve got a really good book in my paws, — mind you this [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine recently asked if other people had similar reactions when reading a good book.  Since this site has been heavier on the brainless fluff of late; I decided to answer the question here rather than in her comments.</p>
<p>When I’ve got a really good book in my paws, — mind you this is only for a <strong><em>REALLY GOOD</em></strong> book! —  I’ll start reading and won’t notice the passage of time until either:<br />
A. My bloodsugar has dropped from not eating in 8 hours.<br />
B. It’s suddenly four in the morning and my eyes are tired so the words on the page start looking insanely small.</p>
<p>With a book that catches me like that, my head is totally in the book.  People in real life can try talking to me, but they’ll get grunts for answers (at best).  When my favorite character<sup>1</sup> is happy, I’m happy.  When they’re running through forests; I can hear leaves rustling and feel the branches drag across my face as I dash through the trees.</p>
<p>The last time I really felt this way about a book was when I first read the book that I’m currently reading, <a href="http://www.amazon.com/exec/obidos/redirect?tag=musings07-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=0553587099%2526tag=musings07-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/0553587099%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Ghosts in the Snow</a> by <a href="http://www.tamarasilerjones.com/blog/index.html" title="tamboblog">Tamara Siler Jones</a>.  A friend of ours had gotten her hands on an early (review?) copy of the book and recommended it to my wife &amp; I.  <a href="http://ariesna.livejournal.com/" title="Ariesna's Journal">Ariesna</a> sat down and read the entire book while we were at the friend’s house that night.  I think I managed to wait until we bought a copy of our own to read it, but once I did I started to get really angry.</p>
<p>I need to pause a moment here to explain about how I generally enjoy my entertainments.  If the book/movie/whatever has even a reasonably decent story; then I’ll suspend my disbelief and just enjoy it without analyzing it.  This is particularly true on my first experience with the book/movie/whatever.</p>
<p>And what exactly does that have to do with getting angry while reading Ghosts in the Snow?  Ghosts is a mystery story with a fantasical setting and I was getting attached to one of the characters.  This character happened to be a suspect in multiple murders and some of the clues in the book seemed to be pointing to him being the killer.  The thought of this being true was making me too angry to continue reading.  Eventually, I had to ask my wife if he was the killer because I was so upset about it that I wouldn’t be able to finish the book if he was.  She told me he wasn’t but not who the killer was (at my request) and I was able to finish the book.</p>
<p>It’s for moments like those that I read.</p>
<p><sup>1</sup> This will usually be a supporting character.  Why?  Because the main characters tend to get all the glory while somebody else is doing more to accomplish the goal (e.g. Sam vs. Frodo).</p>
<p><small><a href="http://coffeebear.net/2005/10/12/why-i-read/">Why I Read?</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/2005/10/12/why-i-read/feed/</wfw:commentRss>
		<slash:comments>1</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 3/21 queries in 0.030 seconds using disk: basic
Object Caching 1390/1432 objects using disk: basic

Served from: coffeebear.net @ 2012-05-25 22:55:43 -->
