<?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>Beckism.com &#187; Adversaria</title>
	<atom:link href="http://beckism.com/archive/adversaria/feed/" rel="self" type="application/rss+xml" />
	<link>http://beckism.com</link>
	<description>Fiction, opinions, and more</description>
	<lastBuildDate>Fri, 17 Feb 2012 16:12:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Updated site theme</title>
		<link>http://beckism.com/2012/02/updated-theme/</link>
		<comments>http://beckism.com/2012/02/updated-theme/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 19:04:42 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=563</guid>
		<description><![CDATA[Another year has passed, and once again I&#8217;ve been feeling the itch to redesign Beckism.com. So without further ado, I present to you its latest look! I was actually pretty happy with the previous design, so I stuck with the same main layout and color scheme. The main problem I had it was that the [...]]]></description>
			<content:encoded><![CDATA[<p>Another year has passed, and once again I&#8217;ve been feeling the itch to redesign Beckism.com. So without further ado, I present to you its latest look!</p>
<p>I was actually pretty happy with the previous design, so I stuck with the same main layout and color scheme. The main problem I had it was that the one pixel borders and arrows were simply not breaking things up enough well enough; it was really difficult to distinguish between posts on the homepage, and viewing the site on a mobile device was an effort in frustration (since the borders were virtually invisible and the headings were longer than the text, which made zooming in difficult).</p>
<p>Both of these issues should now be fixed, and I also introduced some fun little features here and there like threaded comments, a search button in the header to jump straight to the footer, and so forth. Additionally, the site should look beautiful on the iPhone 4 (I haven&#8217;t had a chance to test it on other mobile devices yet).</p>
<p>I&#8217;ve tested things on the major non-IE browsers, but please let me know if you run into any problems! I always love getting feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2012/02/updated-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say &#8220;hello&#8221; in Linkinus</title>
		<link>http://beckism.com/2011/03/hello-linkinus-script/</link>
		<comments>http://beckism.com/2011/03/hello-linkinus-script/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 15:35:52 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[custom solution]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=455</guid>
		<description><![CDATA[I&#8217;ve been using the Linkinus IRC client for Mac OS X a lot recently, and one of the things I dislike is needing to think up a different greeting every time I join a chat room (I hate using the same old greeting every time). Thankfully, Linkinus is easily scriptable, so without further ado, I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using the <a href="http://conceitedsoftware.com/linkinus/">Linkinus</a> IRC client for Mac OS X a lot recently, and one of the things I dislike is needing to think up a different greeting every time I join a chat room (I hate using the same old greeting every time). Thankfully, Linkinus is easily scriptable, so without further ado, I give you the &#8220;/hello&#8221; command:</p>
<pre><code>-- Script Name: hello
-- Version: 1.0
-- Description: Say "hello" in various interesting ways
-- Author: Ian Beck &lt;http://beckism.com&gt;

-- Usage: /hello folks!
-- Output: [Greeting] folks!
-- (can also use alone for just the greeting)

on linkinuscmd(name)
	-- Get a random item from the list of greetings
	set response to some item of {"Aloha", "Bonjour", "Ciào", "G'day", "Guten tag", "Hallo", "Hello", "Hey", "Hola", "Salaam", "Shalom"}

	-- Add the name, if we are using one
	if name is not equal to "" then
		set response to response &#038; " " &#038; name
	end if

	return response
end linkinuscmd

-- Changelog:
-- 1.0:
-- - Initial release</code></pre>
<p>To install the command, pop open your favorite Applescript editor (like the free AppleScript Editor that comes with your computer, or <a href="http://latenightsw.com/sd4/">Script Debugger</a> if you&#8217;re all fancy-shmancy), paste in the code above, and save it as <code>hello.scpt</code> at this path:</p>
<pre><code>~/Library/Application Support/Linkinus 2/Scripts/hello.scpt</code></pre>
<p>The next time you launch Linkinus, you will be able to enter <code>/hello</code> with an optional name or similar, and it will output a random greeting followed by whatever you typed. So for instance, you type <code>/hello folks!</code> and what shows up in the chat room is &#8220;Aloha folks!&#8221; Or maybe &#8220;Hola folks!&#8221; Or possibly &#8220;Guten tag folks!&#8221; Or any number of other greetings.</p>
<p>If you want to use a different selection of greetings, you can modify the list on line 12 of the script.</p>
<p>Granted, figuring out a random greeting in Linkinus is probably not a problem most people have (&#8220;IRC? What on earth is that?&#8221;), but for those of you who are also annoyed by this repetitive task, enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2011/03/hello-linkinus-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spammers want to protect me from spam</title>
		<link>http://beckism.com/2011/02/spammers-protect-from-spam/</link>
		<comments>http://beckism.com/2011/02/spammers-protect-from-spam/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 03:46:06 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=435</guid>
		<description><![CDATA[I recently told a follower on Twitter to send me an email, and helpfully included the email in the tweet. I thought little of it; this is an email address that is published in plain text online because I want people to be able to find it easily. I am well aware that it will [...]]]></description>
			<content:encoded><![CDATA[<p>I recently told a follower on Twitter to send me an email, and helpfully included the email in the tweet. I thought little of it; this is an email address that is published in plain text online because I want people to be able to find it easily. I am well aware that it will eventually get harvested by spammers, and as a result have multiple levels of spam detection software running on the address.</p>
<p>Moments later, I receive an email:</p>
<blockquote><p>
Dear ianbeck</p>
<p>We have found that your email is shared in tweets. We advise you to hide your email from spammers by sharing email address as an image or hide it behind a url.</p>
<p>Visit us at : [REDACTED] to find how you can do this.</p>
<p>Happy Twitting !!!<br />
&#8220;2 million  emails are sent every second. About  70% to 72% of them might be spam and viruses.&#8221;
</p></blockquote>
<p>(I&#8217;m a little sad that the web doesn&#8217;t let you see all the lovely extra spaces in the message, too. It is truly a work of negative-space-leveraging art.)</p>
<p>I was curious how you would classify this email, and <a href="http://en.wikipedia.org/wiki/Spam_(e-mail)">Wikipedia</a> provided a concise definition:</p>
<blockquote><p>E-mail spam, also known as junk e-mail or unsolicited bulk e-mail (UBE), is a subset of spam that involves nearly identical messages sent to numerous recipients by e-mail</p></blockquote>
<p>This message is unsolicited email. Based on the format of the email, it is apparent that they are sending this nearly identical message to numerous recipients.</p>
<p>So why would I trust a spammer to protect me from spammers?</p>
<p>Oh, right, I wouldn&#8217;t. Blocked and reported for spam.</p>
<p>The ways that people find to abuse Twitter never cease to amaze me.</p>
<p>Incidentally, I have just finished <a href="http://dictionary.reference.com/browse/twitting">twitting</a> the fools who sent this email. Had I posted to Twitter instead, I would be &#8220;tweeting&#8221;. Words matter, people. Even if you&#8217;re a sleazy spammer.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2011/02/spammers-protect-from-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splitting a string into lines in Javascript</title>
		<link>http://beckism.com/2010/09/splitting-lines-javascript/</link>
		<comments>http://beckism.com/2010/09/splitting-lines-javascript/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 17:28:26 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=392</guid>
		<description><![CDATA[I recently ran into the question of how to split a string into its component lines using Javascript without knowing beforehand what type of linebreaks were being used. After experimenting with the problem for a while, I finally arrived at the following solution (please note that I haven&#8217;t tested this cross-browser, but it works great [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into the question of how to split a string into its component lines using Javascript without knowing beforehand what type of linebreaks were being used.  After experimenting with the problem for a while, I finally arrived at the following solution (please note that I haven&#8217;t tested this cross-browser, but it works great in Safari/WebKit):</p>
<pre><code>var lines = text.match(/^.*([\n\r]+|$)/gm);</code></pre>
<p>Or the alternate version if you want to ensure that each line ends with a single linebreak rather than potentially have lines with multiple line breaks at their end (for my purposes this didn&#8217;t matter, but it might for yours):</p>
<pre><code>var lines = text.match(/^.*((\r\n|\n|\r)|$)/gm);</code></pre>
<p>The code assumes that <code>text</code> is a multiline string, and it utilizes the built-in Javascript String.match() method, which when performed with a regex with the global flag enabled will return an array of matches.  The multiline flag makes sure that the regex matches at the beginning of every line, and the alternatives at the end of the regex match one or more linebreaks or the end of the line (if we are on the last line).  The ultimate result of which is you split the string into a Javascript array with one line per index with the linebreaks preserved.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2010/09/splitting-lines-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MobileMe email settings for Palm Pre</title>
		<link>http://beckism.com/2010/04/mobileme_palm_pre/</link>
		<comments>http://beckism.com/2010/04/mobileme_palm_pre/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 23:32:26 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[webos]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=350</guid>
		<description><![CDATA[For the record, I finally bit the bullet and ditched my iPhone for a Palm Pre last week, and I&#8217;m extremely happy with the switch. I&#8217;ll post in more detail about why the Pre (and particularly WebOS) is freaking fantastic soon, but for now here&#8217;s a quick tip for other Palm Pre owners who want [...]]]></description>
			<content:encoded><![CDATA[<p>For the record, I finally bit the bullet and ditched my iPhone for a Palm Pre last week, and I&#8217;m extremely happy with the switch. I&#8217;ll post in more detail about why the Pre (and particularly WebOS) is freaking fantastic soon, but for now here&#8217;s a quick tip for other Palm Pre owners who want to configure their Pre to use MobileMe and can&#8217;t figure out why it keeps claiming you&#8217;re doing it wrong.</p>
<p>Although some people have apparently had luck using the automatic setup (where you just enter an email address and your password), I needed to use the manual setup in order to get it to use IMAP rather than POP.  I think recent MobileMe accounts don&#8217;t even have POP activated by default, so maybe the age of my account is the problem.  In any case, if the automatic setup booted you into POP3 rather than IMAP, delete the account and recreate it.  From the screen where it asks for your username and password, open the menu and choose &#8220;Manual Setup&#8221; (why they didn&#8217;t just stick a Manual Setup button on the main screen where anybody could find it is beyond me, but I digress).</p>
<p>Here&#8217;s all the settings you&#8217;ll need to get rolling:</p>
<ul>
<li><strong>Incoming mail server:</strong> mail.me.com</li>
<li><strong>Username:</strong> [your username, without @me.com or @mac.com]</li>
<li><strong>Password:</strong> [your password]</li>
<li><strong>Encryption:</strong> SSL</li>
<li><strong>Port #:</strong> 993 <em>(this should be automatically selected when you choose SSL)</em></li>
</ul>
<ul>
<li><strong>Outgoing mail server:</strong> smtp.me.com</li>
<li><strong>User Authentication:</strong> On</li>
<li><em>(Username and password will be auto-filled)</em></li>
<li><strong>Encryption:</strong> TLS (this is what was probably screwing you up if you tried manual setup already)</li>
<li><strong>Port #:</strong> 587</li>
</ul>
<p>These settings work perfectly for me; hopefully they&#8217;ll save other Pre users with MobileMe the headache of &#8220;SMTP setup failed&#8221; errors.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2010/04/mobileme_palm_pre/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>One Crayon redesigned</title>
		<link>http://beckism.com/2009/09/onecrayon_redesign/</link>
		<comments>http://beckism.com/2009/09/onecrayon_redesign/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:21:21 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=324</guid>
		<description><![CDATA[After working on it for the past couple months, I&#8217;m very happy to announce that my freelancing site, One Crayon, has been redesigned from the ground up. One Crayon now looks several orders of magnitude better than its original design; offers information and documentation for TEA for Espresso, TEA for Coda, and my other projects [...]]]></description>
			<content:encoded><![CDATA[<p>After working on it for the past couple months, I&#8217;m very happy to announce that my freelancing site, <a href="http://onecrayon.com/">One Crayon</a>, has been redesigned from the ground up.</p>
<p>One Crayon now looks several orders of magnitude better than its original design; offers information and documentation for <a href="http://onecrayon.com/tea/">TEA for Espresso</a>, <a href="http://onecrayon.com/tea/coda/">TEA for Coda</a>, and my <a href="http://onecrayon.com/products/">other projects</a> in a single unified location; and offers numerous other improvements like a <a href="http://feeds.feedburner.com/onecrayon/">news feed</a> for keeping up to date with general One Crayon news and updates to my various software projects.</p>
<p>I&#8217;m not actively seeking freelance work thanks to a busy full time schedule, but I&#8217;ve been wanting to revitalize One Crayon for a while, not least because I wanted to start migrating some of my sites over to ExpressionEngine and One Crayon seemed like a good place to start.</p>
<p>There are still some rough edges (I&#8217;m looking at you, IE 6) and I haven&#8217;t added my website or writing portfolios, but I hope you&#8217;ll enjoy it anyway!</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2009/09/onecrayon_redesign/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Estimates</title>
		<link>http://beckism.com/2009/07/xkcd_estimates/</link>
		<comments>http://beckism.com/2009/07/xkcd_estimates/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:27:10 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=313</guid>
		<description><![CDATA[My other favorite time estimator is Stuffit, which back when I still used it would tell me that files would be completely unstuffed anywhere from -16,000 to 1,000,000,000 minutes. I never was sure how a file could have been unstuffed in negative minutes. Possibly Stuffit was trying to tell me that it had been unstuffed [...]]]></description>
			<content:encoded><![CDATA[<p class="center"><a href="http://xkcd.com/612/"><img src="http://beckism.com/wp-content/uploads/2009/07/estimation.png" alt="Estimation" title="They could say 'the connection is probably lost,' but it's more fun to do naive time-averaging to give you hope that if you wait around for 1,163 hours, it will finally finish." /></a></p>
<p>My other favorite time estimator is Stuffit, which back when I still used it would tell me that files would be completely unstuffed anywhere from -16,000 to 1,000,000,000 minutes.  I never was sure how a file could have been unstuffed in negative minutes.  Possibly Stuffit was trying to tell me that it had been unstuffed once before in the past, so why the hell was I opening it again?</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2009/07/xkcd_estimates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tibia or not tibia&#8230;</title>
		<link>http://beckism.com/2009/05/tibia/</link>
		<comments>http://beckism.com/2009/05/tibia/#comments</comments>
		<pubDate>Tue, 26 May 2009 02:09:54 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=304</guid>
		<description><![CDATA[Pete Joison&#8217;s artwork, in all its forms, makes me so very, very happy.]]></description>
			<content:encoded><![CDATA[<p class="center"><a href="http://blurburger.com/shoebox/toons/toons/tibea.png"><img src="http://beckism.com/wp-content/uploads/2009/05/tibea.jpg" alt="Tibia or not tibia..."  /></a></p>
<p>Pete Joison&#8217;s artwork, in <a href="http://www.blurburger.com/">all</a> <a href="http://tihntoun.com/">its</a> <a href="http://www.petejoison.com/">forms</a>, makes me so very, very happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2009/05/tibia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coda 1.6 released, minor TEA for Coda update</title>
		<link>http://beckism.com/2008/11/coda_16/</link>
		<comments>http://beckism.com/2008/11/coda_16/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 01:27:57 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[custom solution]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=257</guid>
		<description><![CDATA[Coda 1.6 has been released, and boy howdy is it exciting! Coda now includes a plugin architecture, including Cocoa plugins for people who need to be able to manipulate the interface and an easy-to-use plugin creator that will allow you to run plugins using command-line languages (similar to Textmate). This is a fantastic update, and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://panic.com/coda/">Coda 1.6</a> has been released, and boy howdy is it exciting!  Coda now includes a plugin architecture, including Cocoa plugins for people who need to be able to manipulate the interface and an easy-to-use plugin creator that will allow you to run plugins using command-line languages (similar to Textmate).  This is a fantastic update, and as we start to see plugins being produced I don&#8217;t doubt that Coda will become more and more appealing for Textmate users who have been holding out.  It&#8217;s certainly not as powerful and flexible (no tab stops, for instance), but the addition of user-generated plugins will certainly allow people to do great things.</p>
<p>Along with the update to Coda, I&#8217;ve updated the TEA for Coda bundle (find the most recent version on the <a href="http://beckism.com/tea_for_coda/">dedicated TEA for Coda page</a>); all of the scripts will now perform their actions in the active document even if multiple windows are open.  Additionally Indent New Line should be significantly improved performance-wise.  The scripts do now require Coda 1.6, though; if you&#8217;re running an old version of Coda expect buggy behavior.</p>
<p>I am unlikely to improve the TEA for Coda scripts anymore; my new goal will be to get the Textmate bundle items that I know and love into Coda using the plugin interface.  This will necessitate learning some Cocoa, though (since some of the key actions require user input), so it may be a little bit of time before I&#8217;m able to get a working plugin up and running.  In the interim (or until someone else does it), TEA for Coda is still the best way that I know to get Coda to behave like a full-blooded HTML editor.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/11/coda_16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TEA for Coda now Universal Binary</title>
		<link>http://beckism.com/2008/11/tea_universal_binary/</link>
		<comments>http://beckism.com/2008/11/tea_universal_binary/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 16:22:43 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[custom solution]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=250</guid>
		<description><![CDATA[I&#8217;ve posted a minor update to my TEA for Coda bundle. This update includes two changes: The HTML Tidy script is now a universal binary! At long last, our PPC friends can run it just as easily as those with newer hardware. The Format with Em and Format with Strong scripts now keep your text [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted a minor update to my <a href="http://beckism.com/tea_for_coda/">TEA for Coda</a> bundle.  This update includes two changes:</p>
<ul>
<li>The HTML Tidy script is now a universal binary!  At long last, our PPC friends can run it just as easily as those with newer hardware.</li>
<li>The Format with Em and Format with Strong scripts now keep your text highlighted rather than moving the cursor to the end.  This is not only more congruent with Textmate&#8217;s behavior, but I think it makes better sense, particularly if you ever need to wrap the text in more than one tag (or wish to add a class name, or&#8230;).</li>
</ul>
<p>You can get the update from the <a href="http://beckism.com/tea_for_coda/">dedicated TEA for Coda page</a>.  Unless you use PathFinder or have some other way of viewing invisible files, you&#8217;ll need to replace the entire HTML directory (if you&#8217;ve made changes to the scripts, you should copy them into the new directory before replacing the old one).  If you are comfortable with invisible files, then you&#8217;ll just need to replace the <code>.lib</code> directory and the <code>Format</code> directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/11/tea_universal_binary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fiction Rule of Thumb</title>
		<link>http://beckism.com/2008/10/rule_of_thumb/</link>
		<comments>http://beckism.com/2008/10/rule_of_thumb/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 15:18:21 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=241</guid>
		<description><![CDATA[XKCD presents fantasy in a nutshell:]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/483/">XKCD</a> presents fantasy in a nutshell:</p>
<p class="center"><img src="http://beckism.com/wp-content/uploads/2008/10/xkcd-rule-of-thumb.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/10/rule_of_thumb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Minor TEA for Coda update</title>
		<link>http://beckism.com/2008/09/tea_for_coda_2/</link>
		<comments>http://beckism.com/2008/09/tea_for_coda_2/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 16:38:44 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[custom solution]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=228</guid>
		<description><![CDATA[I&#8217;ve posted a minor update to my Textmate Emulation Applescripts for Coda and created an official TEA for Coda landing page since the scripts have been reasonably popular and I&#8217;d like people to be able to reach them without digging through blog archives. The most recent release (2008-09-25) adds Insert BR, a script that inserts [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted a minor update to my Textmate Emulation Applescripts for Coda and created an official <a href="http://beckism.com/tea_for_coda/">TEA for Coda landing page</a> since the scripts have been reasonably popular and I&#8217;d like people to be able to reach them without digging through blog archives.</p>
<p>The most recent release (2008-09-25) adds Insert BR, a script that inserts a <code>&lt;br /&gt;</code> element at the cursor (<em>warning</em>: will replace any selected text), fixes an annoying cursor position bug for anything that positions the cursor (cursor was previously overshooting by a character), and vastly improves on the behavior of Insert Open/Close Tag by allowing it to intelligently handle self-closing XHTML tags like <code>img</code> and <code>link</code>.</p>
<p>If you&#8217;re already using the scripts, you can update by replacing the HTML folder in your Coda scripts folder with the one in the <a href="http://onecrayon.com/downloads/TEAforCoda.zip">download</a>. Newcomers should follow the installation instructions in the Read Me.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/09/tea_for_coda_2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StuffIt updates to version 13.0</title>
		<link>http://beckism.com/2008/09/stuffit_13/</link>
		<comments>http://beckism.com/2008/09/stuffit_13/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 15:48:47 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[opinions]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=216</guid>
		<description><![CDATA[Ah, StuffIt. The most perplexing rip-off in the recent history of software. I predicted we&#8217;d see version 13.0 before 12.0.4. Turns out I was bit conservative; the last 12.0.x update was 12.0.2. For those who missed my previous hating on StuffIt, I&#8217;ll recap: do not buy it, and you probably shouldn&#8217;t update if you already [...]]]></description>
			<content:encoded><![CDATA[<p>Ah, StuffIt.  The most perplexing rip-off in the recent history of software.  I <a href="http://beckism.com/2008/03/never_buy_stuffit/">predicted</a> we&#8217;d see version 13.0 before 12.0.4.  Turns out I was bit conservative; the last 12.0.x update was 12.0.2.</p>
<p>For those who missed my previous hating on StuffIt, I&#8217;ll recap: do not buy it, and you probably shouldn&#8217;t update if you already own it.  It is redundant, outdated, buggy, and a sad excuse for professional software whose company makes money by bumping the version number for every minor update.  Back in the day, StuffIt was a must-have tool.  Now it is an example of why giving complete control over a product to a marketing team is a terrible idea.</p>
<p>If you need a file compression and archiving solution, do yourself a favor and try something like <a href="http://www.springyarchiver.com/">Springy</a> or <a href="http://macitbetter.com/">BetterZip</a> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/09/stuffit_13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kindle markdowns</title>
		<link>http://beckism.com/2008/09/kindle_markdowns/</link>
		<comments>http://beckism.com/2008/09/kindle_markdowns/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 18:52:48 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/?p=214</guid>
		<description><![CDATA[From the science fiction landing page in the Amazon Kindle store (this was right at the top): I&#8217;m always so glad when I can spend $8.00 rather than $0.75. Whoever at Amazon approved that section is an idiot. Plus at least one of those books is available from Feedbooks for free (always check for a [...]]]></description>
			<content:encoded><![CDATA[<p>From the science fiction landing page in the Amazon Kindle store (this was right at the top):</p>
<p class="center"><img src="http://beckism.com/wp-content/uploads/2008/09/officekindle-markup.jpg" alt="Science Fiction Classics on the Kindle" /></p>
<p>I&#8217;m always so glad when I can spend $8.00 rather than $0.75.</p>
<p>Whoever at Amazon approved that section is an idiot.  Plus at least one of those books is available from <a href="http://www.feedbooks.com/">Feedbooks</a> for free (always check for a free version before you buy a classic).</p>
<p>Sometimes I wonder why more publishers aren&#8217;t gunning to get their author&#8217;s books onto the Kindle.  And sometimes I don&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/09/kindle_markdowns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cuil is damned cool</title>
		<link>http://beckism.com/2008/07/cuil/</link>
		<comments>http://beckism.com/2008/07/cuil/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 01:10:36 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[opinions]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/07/cuil/</guid>
		<description><![CDATA[Cuil, a newly released search engine, is extremely interesting. I love the multiple column approach (perfect for today&#8217;s widescreen monitors), and the idea of sorting by relevance rather than popularity (even if it&#8217;s a total pipe dream) is something I can get behind. I&#8217;m happy to find that it&#8217;s a lot simpler than Google, too, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cuil.com/">Cuil</a>, a newly released search engine, is extremely interesting.  I love the multiple column approach (perfect for today&#8217;s widescreen monitors), and the idea of sorting by relevance rather than popularity (even if it&#8217;s a total pipe dream) is something I can get behind.  I&#8217;m happy to find that it&#8217;s a lot simpler than Google, too, which is great.  Google is easy, but Cuil is way easier (and more helpful when it comes to constructing queries).</p>
<p>That said, I did a vanity search for &#8220;<a href="http://www.cuil.com/search?q=beckism">beckism</a>&#8221; (though I sometimes am tempted to vanity search my name, it&#8217;s always useless thanks to another, rather more famous Ian Beck; the fame doesn&#8217;t bother me, but what really pisses me off is that he&#8217;s an author and writes fantasy, which means if and when I&#8217;m able to get published I won&#8217;t even be able to use my own name).  In any case, it turned up an interesting result:</p>
<p class="center"><img src="http://beckism.com/wp-content/uploads/2008/07/beckism-on-cuil.png" alt="Beckism on Cuil" /></p>
<p>Aside from the fact that the link (and as a result their index) is woefully out of date (I redesigned the blog back in February, which was when I changed my link structure), I&#8217;m curious how that image got associated with <a href="http://beckism.com/archives/dirtman/">Dirt Man</a>.  It&#8217;s clearly some sort of clothing accessory, but aside from the fact that it&#8217;s an image that has never been on my servers, why on earth would it be associated with my site?  I don&#8217;t sell clothing.  I don&#8217;t even like clothing.  Well.  It&#8217;s nice when it keeps off the rain, I suppose.</p>
<p>I want to love Cuil, but it definitely has some kinks to work out.</p>
<p>In other news, the last time I updated Dirt Man was February 2006.  <em>Jesus</em>.  No wonder no one ever reads it.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/07/cuil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jets&#8217;n&#039;Guns on sale</title>
		<link>http://beckism.com/2008/07/jets_n_guns_sale/</link>
		<comments>http://beckism.com/2008/07/jets_n_guns_sale/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 15:24:55 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/07/jets_n_guns_sale/</guid>
		<description><![CDATA[Jets&#8217;n'Guns is on sale at the MacUpdate Promo for 50% off today July 26, 2008, and if you&#8217;ve never played it but enjoy sidescrolling space games, I highly recommend picking up a copy. I&#8217;ve said why I love Jets&#8217;n'Guns elsewhere, so suffice it to say it&#8217;s still one of the best arcade games out there. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jng.rakeingrass.com/">Jets&#8217;n'Guns</a> is on sale at the <a href="http://www.mupromo.com/?ref=4768">MacUpdate Promo</a> for 50% off <strong>today July 26, 2008</strong>, and if you&#8217;ve never played it but enjoy sidescrolling space games, I highly recommend picking up a copy.  I&#8217;ve said <a href="http://www.insidemacgames.com/reviews/view.php?ID=695">why I love Jets&#8217;n'Guns elsewhere</a>, so suffice it to say it&#8217;s still one of the best arcade games out there.</p>
<p>MacUpdate often continues their sales past the &#8220;expiration date&#8221; of the MacUpdate Promo, so here&#8217;s a <a href="http://www.mupromo.com/deal/557/4768/jets%27n%27guns">direct link to Jets&#8217;n'Guns at MUPRomo</a> if you want to check if there&#8217;s still a deal available for it.</p>
<p>The only downside is that this appears to be the original Jets&#8217;n'Guns, and not the extended Gold copy.  If you want the Gold version, you still save $10 by buying it at MacUpdate Promo and then upgrading at <a href="http://jng.rakeingrass.com/">Rake in Grass&#8217;s website</a>.  A bit disappointing they didn&#8217;t just put the Gold version itself on sale, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/07/jets_n_guns_sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batman: Gotham Knight</title>
		<link>http://beckism.com/2008/07/batman_gotham_knight/</link>
		<comments>http://beckism.com/2008/07/batman_gotham_knight/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 15:06:19 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/07/batman_gotham_knight/</guid>
		<description><![CDATA[We rented Batman: Gotham Knight from iTunes last night, and it was decent. Not amazing or worth owning, but a fun sequence of six interrelated animated Batman shorts nonetheless. If you&#8217;re in the mood for some Japanese animated Batman action, it&#8217;s definitely worth seeing. I have to say, though, the short sequence where Batman waxes [...]]]></description>
			<content:encoded><![CDATA[<p>We rented <a href="http://www.amazon.com/dp/B001614F0S/?tag=beckism-20">Batman: Gotham Knight</a> from iTunes last night, and it was decent.  Not amazing or worth owning, but a fun sequence of six interrelated animated Batman shorts nonetheless.  If you&#8217;re in the mood for some Japanese animated Batman action, it&#8217;s definitely worth seeing.</p>
<p>I have to say, though, the short sequence where Batman waxes poetic on the appeal of guns is like hearing commentary for some gun enthusiast&#8217;s wet dream.  No, Batman.  Having a gun, no matter how sleek and well-oiled, does not make you God.  It makes you someone who can very easily kill or maim someone else.  That is all.  Go get laid.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/07/batman_gotham_knight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reese&#8217;s on ice</title>
		<link>http://beckism.com/2008/07/reeses_on_ice/</link>
		<comments>http://beckism.com/2008/07/reeses_on_ice/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 04:32:52 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/07/reeses_on_ice/</guid>
		<description><![CDATA[Take a Reese&#8217;s Peanut Butter cup (preferably the bite-sized version). Freeze it. Eat it frozen. Tastes the same (aside from being very slightly colder and harder), but without the disgusting greasiness on the wrapper and outside that otherwise mars a perfectly decent candy. Brilliant. Thanks to my girlfriend for introducing me to frozen Reese&#8217;s. Definitely [...]]]></description>
			<content:encoded><![CDATA[<p>Take a Reese&#8217;s Peanut Butter cup (preferably the bite-sized version).  Freeze it.  Eat it frozen.</p>
<p>Tastes the same (aside from being very slightly colder and harder), but without the disgusting greasiness on the wrapper and outside that otherwise mars a perfectly decent candy.  Brilliant.</p>
<p>Thanks to my girlfriend for introducing me to frozen Reese&#8217;s.  Definitely the way to go.  The only downside is that the inner wrapper is slightly more difficult to remove, but I&#8217;m willing to live with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/07/reeses_on_ice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cornerstone</title>
		<link>http://beckism.com/2008/06/cornerstone/</link>
		<comments>http://beckism.com/2008/06/cornerstone/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 03:36:10 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[opinions]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/06/cornerstone/</guid>
		<description><![CDATA[Notice note about newly released Cornerstone Subversion application at Daring Fireball. Download Cornerstone. Launch it and connect to my free Beanstalk account (a.k.a. Mr. Sandbox). Create folder. Notice typo in folder name. Select folder and hit enter in order to rename. Fail. Right-click folder and look for rename option. Fail. View Info pane. Fail. View [...]]]></description>
			<content:encoded><![CDATA[<p>Notice note about newly released <a href="http://www.zennaware.com/cornerstone/">Cornerstone</a> Subversion application at <a href="http://daringfireball.net/linked/2008/06/30/cornerstone">Daring Fireball</a>.  Download Cornerstone.  Launch it and connect to my free <a href="http://beanstalkapp.com/">Beanstalk</a> account (a.k.a. <em>Mr. Sandbox</em>).  Create folder.  Notice typo in folder name.  Select folder and hit enter in order to rename.  Fail.  Right-click folder and look for rename option.  Fail.  View Info pane.  Fail.  View Properties pane.  Fail.  Go through every menu and sub-menu for a rename option.  Fail.</p>
<p>Open up <a href="http://www.versionsapp.com/">Versions</a> beta.  Connect to Beanstalk.  Right-click folder and choose Rename option.  Rename folder quickly and easily.  Hooray!</p>
<p>Have a thought.  Switch to Cornerstone.  Click folder once, then hover cursor over it for a second or two.  Folder name becomes selected with a typing cursor.  Oh.  Right.</p>
<p>Exit out of the renaming, since the folder is no longer typo-a-rific in the repository.  Check toolbar for a way to refresh the repository.  Fail.  Right-click the main area.  Fail.  Double click the repository nickname in the sidebar.  Fail.  Right-click the repository nickname in the sidebar.  Doesn&#8217;t even have a context menu.  Open the gear menu in the sidebar (bizarrely positioned at the top).  Fail.  Go through every menu and sub-menu a second time.  Fail.  Attempt to rename the folder in the hopes that it will encourage the repository to refresh itself.  Fail.  Bizarre error message.</p>
<p>Quit Cornerstone.  Trash Cornerstone.  Hope for Versions to be a real product soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/06/cornerstone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mariner Software releases MacGourmet Deluxe</title>
		<link>http://beckism.com/2008/06/macgourmet_deluxe/</link>
		<comments>http://beckism.com/2008/06/macgourmet_deluxe/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 04:06:43 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/06/macgourmet_deluxe/</guid>
		<description><![CDATA[Mariner Software today released MacGourmet Deluxe. MacGourmet has long been my favorite recipe software (it&#8217;s interface is pretty badly cluttered and could definitely be improved on, but it&#8217;s far and away better than the competition and the fullscreen cook&#8217;s view is excellent), and now MacGourmet Deluxe offers all three of the plug-ins (cookbook, mealplan, and [...]]]></description>
			<content:encoded><![CDATA[<p>Mariner Software today released <a href="http://www.marinersoftware.com/sitepage.php?page=130">MacGourmet Deluxe</a>.  MacGourmet has long been my favorite recipe software (it&#8217;s interface is pretty badly cluttered and could definitely be improved on, but it&#8217;s far and away better than the competition and the fullscreen cook&#8217;s view is excellent), and now MacGourmet Deluxe offers all three of the plug-ins (cookbook, mealplan, and nutrition info) as integrated parts of the program.  This is a particularly good deal if you already own MacGourmet 2 but neglected to buy any of the plugins, since the upgrade fee to MacGourmet Deluxe is a meager $10.  It also has a snazzy new icon that I like a lot better than MacGroumet&#8217;s plastic spoon:</p>
<p class="center"><img src="http://beckism.com/wp-content/uploads/2008/06/macgourmet-big-icon.jpg" alt="MacGourmet Deluxe" /></p>
<p>I highly recommend anyone who is looking for a better way to manage their favorite recipes to take a look at MacGourmet Deluxe.  It&#8217;s a program that I don&#8217;t use all that often, but when I need to find that favorite recipe I can count on it being in MacGourmet and super easy to find and access.</p>
<p>MacGourmet Deluxe will also be available as boxed software, so good luck to <a href="http://www.advenio.com/">Advenio</a> and Mariner Software in spreading the word about the best recipe software on the Mac to an even larger crowd.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/06/macgourmet_deluxe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Smart</title>
		<link>http://beckism.com/2008/06/get_smart/</link>
		<comments>http://beckism.com/2008/06/get_smart/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 01:30:34 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/06/get_smart/</guid>
		<description><![CDATA[My girlfriend and I went to see Get Smart a couple days ago, and it was a lot of fun. Not the best movie I&#8217;ve seen this year, but funny, goofy, and well-acted. Some of the humor occasionally crosses into the crude or excessive-physical-pain-as-slapstick realms (neither of which are really my thing), but such moments [...]]]></description>
			<content:encoded><![CDATA[<p>My girlfriend and I went to see <a href="http://getsmartmovie.warnerbros.com/">Get Smart</a> a couple days ago, and it was a lot of fun.  Not the best movie I&#8217;ve seen this year, but funny, goofy, and well-acted.  Some of the humor occasionally crosses into the crude or excessive-physical-pain-as-slapstick realms (neither of which are really my thing), but such moments are balanced by the large number of hilarious bits throughout the movie that don&#8217;t rely on more vulgar humor (&#8220;Mom, Mom, Mom!&#8221;  &#8220;Sean, Sean, Sean!  See how annoying that is?&#8221;).</p>
<p>I highly recommend Get Smart for anyone who enjoys spy movies, comedies, or the classic TV show.  It was well worth a trip to the theater.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/06/get_smart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OfficeTime on sale today only</title>
		<link>http://beckism.com/2008/06/officetime_sale/</link>
		<comments>http://beckism.com/2008/06/officetime_sale/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 14:40:48 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/06/officetime_sale/</guid>
		<description><![CDATA[OfficeTime is, quite simply, the best time tracker and invoicing solution I&#8217;ve been able to find. Every so often I try the competition in the hopes that it will have covered more of the features that I need (OfficeTime is lacking in a couple minor areas), but the other time trackers never have OfficeTime&#8217;s simplicity [...]]]></description>
			<content:encoded><![CDATA[<p><img class="right" src="http://beckism.com/wp-content/uploads/2008/03/officetime.jpg" alt="OfficeTime" /><a href="http://officetime.net/">OfficeTime</a> is, quite simply, the best time tracker and invoicing solution I&#8217;ve been able to find.  Every so often I try the competition in the hopes that it will have covered more of the features that I need (OfficeTime is lacking in a couple minor areas), but the other time trackers never have OfficeTime&#8217;s simplicity and flexibility combined with its power.</p>
<p>Unfortunately, whenever I recommend OfficeTime recently people are put off by the price.  It started at a modest $25 (when I purchased it), but as the developer has been adding features they&#8217;ve been steadily ramping the price up (currently it&#8217;s almost twice what I paid).  Of course, the increase in price hasn&#8217;t mattered for me since they&#8217;ve never charged an update fee, but it&#8217;s a shame that such a great piece of software has become a much harder sell.  However, <strong>today June 19, 2008 only</strong> OfficeTime is on sale for $25 once more from <a href="http://www.mupromo.com/?ref=4768">MacUpdate Promo</a>.  If you are a freelancer or otherwise need to track your time during the day accurately and easily, I strongly recommend OfficeTime.  It&#8217;s ease of use and powerful reports are far superior to any of the other Mac time tracking software I&#8217;ve found.</p>
<p>Even if you miss the sale, you might be able to get OfficeTime at a discount since the MacUpdate promo usually runs decreasingly good discounts over several weeks.  Try a <a href="http://www.mupromo.com/deal/537/4768/officetime">direct link to OfficeTime on MacUpdate Promo</a> to give it a shot.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/06/officetime_sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InterWorld</title>
		<link>http://beckism.com/2008/06/interworld/</link>
		<comments>http://beckism.com/2008/06/interworld/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 23:35:36 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/06/interworld/</guid>
		<description><![CDATA[InterWorld (or the Kindle version, which is what I read) by Neil Gaiman and Michael Reeves was disappointing. It&#8217;s not bad; I&#8217;d characterize it as mediocre but harmed by my expectations for the authors. Gaiman and Reeves have imagined a very vivid world, but the pacing and characterization (particularly in the beginning) leave the whole [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/dp/0061238988/?tag=beckism-20">InterWorld</a> (or the <a href="http://www.amazon.com/dp/B000UKON0S/?tag=beckism-20">Kindle version</a>, which is what I read) by Neil Gaiman and Michael Reeves was disappointing.  It&#8217;s not bad; I&#8217;d characterize it as mediocre but harmed by my expectations for the authors.  Gaiman and Reeves have imagined a very vivid world, but the pacing and characterization (particularly in the beginning) leave the whole thing a bit flat.  The last half is actually a lot better than the first; this feels like the kind of book whose sequels (if there are any) will outshine the original because they won&#8217;t be burdened with exposition.  I think the problem is that we don&#8217;t get eased into the action at all; if it were a graphic novel the abrupt shift from mundane reality into wild science-fantasy would probably work, but as a novel I was left wondering just why I was supposed to care about some of the characters (or believe the over-the-top settings).</p>
<p>Pretty disappointing for a Neil Gaiman novel (even if he was collaborating).  I have not been impressed with much of Gaiman&#8217;s work since Anansi Boys, and even that wasn&#8217;t as good as its predecessors.  I&#8217;m beginning to wonder if he&#8217;s one of those authors who has a brilliant early career but isn&#8217;t able to sustain it.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/06/interworld/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jones Cream Soda = sugary death</title>
		<link>http://beckism.com/2008/05/jones_cream_soda/</link>
		<comments>http://beckism.com/2008/05/jones_cream_soda/#comments</comments>
		<pubDate>Sat, 10 May 2008 16:24:14 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/05/jones_cream_soda/</guid>
		<description><![CDATA[I hate the fact that A&#38;W now caffeinates their cream soda (caffeine makes me weird), so in my search for alternatives I picked up a 12-pack of Jones Cream Soda at the store the other day. Unless you are a hummingbird, do not drink this stuff. It&#8217;s like drinking syrup (sans the viscosity). My girlfriend, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="right" src="http://beckism.com/wp-content/uploads/2008/05/pathjones-cream-soda.jpg" alt="Jones Cream Soda" />I hate the fact that A&amp;W now caffeinates their cream soda (caffeine makes me weird), so in my search for alternatives I picked up a 12-pack of <a href="http://www.jonessoda.com/files/products-canned.php">Jones Cream Soda</a> at the store the other day.</p>
<p>Unless you are a hummingbird, do not drink this stuff.  It&#8217;s like drinking syrup (sans the viscosity).  My girlfriend, who normally is of the opinion that more sugar equals more fun, ended up pouring most of a can down the sink.  I drank a can with lunch, and while I made it all the way through the resulting headache argues I should have followed her example.  This stuff is ridiculously sweet.</p>
<p>Perhaps Jones Soda has always been sickeningly sweet (I don&#8217;t know if I&#8217;ve ever tried it before, and lord knows there&#8217;s a market).  If so, and you&#8217;re not already a fan (or hummingbird), consider yourself warned.  As for me, the search for a lower budget cream soda alternative continues.  I do love me the <a href="http://www.tksoda.com/our-sodas/vanilla-cream-soda">Thomas Kemper Cream Soda</a>, but it&#8217;s hard to justify the cost for day-to-day consumption (as a side note, their <a href="http://www.tksoda.com/our-sodas/ginger-ale">Ginger Ale</a> is also to die for).</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/05/jones_cream_soda/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PathFinder on sale today only</title>
		<link>http://beckism.com/2008/05/pathfinder_sale2/</link>
		<comments>http://beckism.com/2008/05/pathfinder_sale2/#comments</comments>
		<pubDate>Thu, 08 May 2008 05:09:16 +0000</pubDate>
		<dc:creator>Ian Beck</dc:creator>
				<category><![CDATA[Adversaria]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://beckism.com/2008/05/pathfinder_sale2/</guid>
		<description><![CDATA[Although it&#8217;s been a mere nine short months since the last time PathFinder was on the MacUpdate promo, it&#8217;s come back for another run. I highly recommend PathFinder; along with LaunchBar, it is one of the tools that I can&#8217;t make it through a work day without. Basically, if you haven&#8217;t experienced the PathFinder tabbed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="right" src="http://beckism.com/wp-content/uploads/2008/05/pathpathfinder.jpg" alt="PathFinder" />Although it&#8217;s been a mere nine short months since the last time <a href="http://www.cocoatech.com/">PathFinder</a> was on the <a href="http://www.mupromo.com/?ref=4768">MacUpdate promo</a>, it&#8217;s come back for another run.  I highly recommend PathFinder; along with <a href="http://obdev.at/products/launchbar/">LaunchBar</a>, it is one of the tools that I can&#8217;t make it through a work day without.  Basically, if you haven&#8217;t experienced the PathFinder tabbed interface and drop stack, you haven&#8217;t lived.  For <strong>today, May 8, 2008 only</strong> you can get PathFinder for $19.95, 43% off its normal price.</p>
<p>Even if you miss the deal, you&#8217;ll likely still be able to get PathFinder through MacUpdate for a discount a few days to weeks afterward.  Here&#8217;s a <a href="http://www.mupromo.com/deal/493/4768/path-finder">direct link to the PathFinder page</a>, so feel free to check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://beckism.com/2008/05/pathfinder_sale2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

