<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Umbral Echoes Blog &#187; Computing</title>
	<atom:link href="http://blog.umbralechoes.com/category/computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.umbralechoes.com</link>
	<description>Ghostly Echoes in the Void</description>
	<lastBuildDate>Tue, 29 Jun 2010 20:58:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>Copyright &#xA9; 2010 Umbral Echoes Blog </copyright>
	<managingEditor>UmbralEchoes@gmail.com</managingEditor>
	<webMaster>UmbralEchoes@gmail.com</webMaster>
	<category>posts</category>
	<ttl>1440</ttl>
	<image>
		<url>http://blog.umbralechoes.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Umbral Echoes Blog &#187; Computing</title>
		<link>http://blog.umbralechoes.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Ghostly Echoes in the Void</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &amp; Culture" />
	<itunes:author></itunes:author>
	<itunes:owner>
		<itunes:name></itunes:name>
		<itunes:email>UmbralEchoes@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://blog.umbralechoes.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>MySQL Training</title>
		<link>http://blog.umbralechoes.com/2010/06/29/mysql-training/</link>
		<comments>http://blog.umbralechoes.com/2010/06/29/mysql-training/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 20:58:45 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=501</guid>
		<description><![CDATA[A few weeks ago, I went to a MySQL training seminar focused on developing and tuning high-availability applications with MySQL, hosted by Percona and paid for by my work. It was an extremely informative seminar. We&#8217;ve hired the people at Percona before as our database ninjas, as I like to call them. They are not [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I went to a MySQL training seminar focused on developing and tuning high-availability applications with MySQL, hosted by <a href="http://www.percona.com/">Percona</a> and paid for by my work. It was an extremely informative seminar. We&#8217;ve hired the people at Percona before as our database ninjas, as I like to call them. They are not at all cheap to hire for consulting, but they are absolutely worth every penny. These guys live and breathe MySQL.</p>
<p>Anyway, I took away some good tidbits from the session, but more than that I gleaned some good general philosophies. For example, when diagnosing a problem first make sure it&#8217;s really a problem. If only a few users are experiencing it intermittently, then maybe it&#8217;s not worth 40 man-hours to investigate and fix. Another tips is: have good instrumentation. Don&#8217;t take educated guesses as to what might be slow &#8212; build in some metrics so that you can see exactly where a problem is.</p>
<p>A lot of this stuff is still sinking in, but I&#8217;ve already started putting some of it to use immediately. Good company investment, and a good personal investment too.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2010/06/29/mysql-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL &#8220;Can&#8217;t create table&#8221; error fix for WAMP</title>
		<link>http://blog.umbralechoes.com/2010/03/24/mysql-cant-create-table-error-fix-for-wamp/</link>
		<comments>http://blog.umbralechoes.com/2010/03/24/mysql-cant-create-table-error-fix-for-wamp/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 02:43:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=491</guid>
		<description><![CDATA[This is a post for the MySQL geeks out there, and also for anyone who had a similar problem and might be searching for a solution. I was trying to copy our testing server&#8217;s database to my local machine, so I can do some local development (I&#8217;ve set up a web server and database on [...]]]></description>
			<content:encoded><![CDATA[<p>This is a post for the MySQL geeks out there, and also for anyone who had a similar problem and might be searching for a solution.</p>
<p>I was trying to copy our testing server&#8217;s database to my local machine, so I can do some local development (I&#8217;ve set up a web server and database on my personal computer, so that I can test things out before moving them to the development server).  I&#8217;m using <a href="http://www.wampserver.com/en/" target="_blank">WAMP</a> for that, which is a very simple way to set up a local webserver on Windows.</p>
<p>Well, when I tried to import the database I got the following error:</p>
<blockquote>
<pre>Error Code: 1005 - Can't create table 'whatever' (errno: 121)</pre>
</blockquote>
<p>So I edited my.ini, and increased max_allowed_packet, like so:</p>
<blockquote>
<pre>[mysqld]
max_allowed_packet=32M</pre>
</blockquote>
<p>I&#8217;ve heard that some other people have also had to increase wait_timeout to something like 45 seconds to fix this error.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2010/03/24/mysql-cant-create-table-error-fix-for-wamp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Flops?</title>
		<link>http://blog.umbralechoes.com/2010/03/04/google-flops/</link>
		<comments>http://blog.umbralechoes.com/2010/03/04/google-flops/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 14:23:54 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[buzz]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=466</guid>
		<description><![CDATA[Google Buzz, and before it Google Wave, seemed to have great potential. I played with both when they came out. Â But my interest quickly waned, and from what I can tell I&#8217;m very much not alone in that. Part of the reason is that I think Google jumped the gun. In marketing, you have to [...]]]></description>
			<content:encoded><![CDATA[<p>Google Buzz, and before it Google Wave, seemed to have great potential. I played with both when they came out. Â But my interest quickly waned, and from what I can tell I&#8217;m very much not alone in that.</p>
<p>Part of the reason is that I think Google jumped the gun. In marketing, you have to be careful about when you create a buzz (pun intended). And especially with products like these, they&#8217;re only useful if everyone is using them. In both of these cases, I think Google was directing the general tech populace to use products that were incomplete.</p>
<p><img src="http://blog.distimo.com/wp-content/uploads/2009/10/google_wave_logo.jpg" alt="" width="100" align="left" />With Wave, they should have had permissions from the get-go, so that you could invite people to see, but not edit, a Wave. They have that now, which is nice, but it&#8217;s a bit late in the game &#8212; comparatively few people regularly use Wave any more. There are a lot of other things they did wrong with Wave, too: it was much buggier than I&#8217;d expect from a Google beta, slow as molasses, and too broad in scope. That last one is really what killed it, I think. People generally want a clear path for using a product; they want a sexy sports car, not a bunch of parts that they have to figure out how to best put together to build a sports car that suits their needs.</p>
<p>With Buzz, they went the other way. It&#8217;s too damn simple. I have lots of friends. Some I&#8217;m closer to than others. Some I want to pay more attention to than others. So maybe I&#8217;d like to be able to easily see a Buzz stream from only certain groups, instead of everybody. Maybe once I start or participate in a discussion, I&#8217;d like to select whether I get emails specifically for that discussion. (And while I&#8217;m at it, hey Facebook! How about being able to turn off receiving emails just because I thumbed-up a post that 50,000 other people feel the need to comment on?) Maybe I would like to have my Twitter posts show up in some decent timeframe, instead of the next day if I&#8217;m lucky.</p>
<p>Overall, I love the things Google does. Chrome is amazing, and broke the web browser mold when it came out. Gmail has been my email client of choice for years now. Their search engine revolutionized the web.</p>
<p>Then again, not every hit can be a home run. I like that they&#8217;re trying new things! I just think that a lot of these things have great potential, but were executed poorly. And that makes me sad.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2010/03/04/google-flops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Building Fun</title>
		<link>http://blog.umbralechoes.com/2010/03/02/computer-building-fun/</link>
		<comments>http://blog.umbralechoes.com/2010/03/02/computer-building-fun/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 00:37:02 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[logitech]]></category>
		<category><![CDATA[performance mx]]></category>
		<category><![CDATA[ssd]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=472</guid>
		<description><![CDATA[Two tools I really didn&#8217;t think I&#8217;d need for building a system: needle-nosed pliers, and a file. Where the hard drive went in, there was a retaining bracket that was preventing a hard drive screw from passing, so I had to bend it. And when I replaced the case fans with better and quieter ones, [...]]]></description>
			<content:encoded><![CDATA[<p>Two tools I really didn&#8217;t think I&#8217;d need for building a system: needle-nosed pliers, and a file.  Where the hard drive went in, there was a retaining bracket that was preventing a hard drive screw from passing, so I had to bend it. And when I replaced the case fans with better and quieter ones, the size on the front one was off by a fraction of a millimeter, which required filing off the plastic around where it went in.</p>
<p>However, this time no blood was spilled. I think that might be a first. So, I consider it a success!</p>
<p><img class="alignright" style="margin-left: 5px; margin-right: 5px;" src="http://img129.yfrog.com/img129/7350/jt5o.jpg" alt="" width="288" height="384" />I also remembered how annoying it can be to build a system. I got a power source that can handle 2 video cards (&#8220;Crossfire capable&#8221; they call it, for ATI cards), but the kind I got took both of the power connectors. So I can&#8217;t actually use 2 without upgrading my power source. Talking to NewEgg about that, but so far no luck asking for an exchange.</p>
<p>Also, I remembered a little hack for installing Windows clean, using an upgrade disc. You can use an upgrade version as the full version in one of <a href="http://www.winsupersite.com/win7/clean_install_upgrade_media.asp" target="_blank">two ways</a> when installing it fresh (i.e. wiping whatever is already on there, if anything:Â install it fresh and then install it over itself, or (the quicker, easier way) do a simple registry edit.</p>
<p>Something else I realized: I have a Logitech Performance MX wireless mouse (no, I did not just realize this, shut up). It is pretty awesome, but my only complaint has been that it will randomly stick, and for 30 seconds or so it stutters and jumps around the screen when I try to move it. Today I tried something that seems obvious: I moved the damn wireless receiver to a USB port closer to the mouse. Guess what? No issues since then. I know, I&#8217;m a frackin&#8217; genius.</p>
<p>Okay, so <strong>how does the shiny new system work</strong>, you ask?</p>
<p>It&#8217;s fast. Very fast. I attribute almost all of that to the <a href="http://en.wikipedia.org/wiki/Solid-state_drive" target="_blank">SSD</a>. That&#8217;s a solid-state drive; a hard drive with no moving parts. They are expensive, for much less space than you will get with a normal hard drive, but they are about twice as fast, 1/4 the size overall, use far less power, make no noise, and emit almost no heat. For laptops, they are about the most awesome thing you can have. For desktops, still quite awesome.</p>
<p>One not-fast bit is logging into Windows. It gets to the login screen, I enter the password, then&#8230; it sits there for 20 seconds before continuing. I&#8217;m not sure why this is, and I don&#8217;t think it initially did it. But it doesn&#8217;t happen when I&#8217;m waking the computer from sleep or hibernate, and I almost never have cause to do a full power-off or reset, so that&#8217;s not really a big deal.</p>
<p>The only other pet peeve I have is that, even though there is a connector for it, the case has no hard drive activity indicator light. And since the SSD is even more silent than a ball-gagged ninja, there&#8217;s no way for me to know when lots of hard drive access is going on. I mainly look at this when the system seems to be randomly crunching/slow though, and since that hasn&#8217;t yet happened&#8230; I can live with it for now.</p>
<p>My work-oriented stuff is very fast as well. We use <a href="http://subversion.apache.org/" target="_blank">Subversion</a>, a system that lets multiple people work on the same code at the same time without stepping on each other&#8217;s toes, and it also retains a complete history of every change ever made to the code, so that you can roll back if you screw something up. Performing updates and commits with this is very notably faster than it was on my old system (also a quad-core system, with 5 GB of RAM).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2010/03/02/computer-building-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New System</title>
		<link>http://blog.umbralechoes.com/2010/02/19/my-new-system/</link>
		<comments>http://blog.umbralechoes.com/2010/02/19/my-new-system/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:01:52 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[amd]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[ssd]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=463</guid>
		<description><![CDATA[For those interested, here are the components of the system I&#8217;m about to build. It&#8217;s not top-of-the-line, but I&#8217;m pretty happy with the price/performance balance. Â :) Â Parts should all be here by early next week. Motherboard: Gigabyte GA-790XTA-UD4 (AMD, SATA 6Gb/s,USB 3, supports dual video cards) There were cheaper options, and I&#8217;m only getting 1 [...]]]></description>
			<content:encoded><![CDATA[<p>For those interested, here are the components of the system I&#8217;m about to build. It&#8217;s not top-of-the-line, but I&#8217;m pretty happy with the price/performance balance. Â :) Â Parts should all be here by early next week.</p>
<p><strong>Motherboard</strong>: <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813128416">Gigabyte GA-790XTA-UD4</a> (AMD, SATA 6Gb/s,USB 3, supports dual video cards)<br />
<a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813128416"><img title="GIGABYTE Motherboard" src="http://images17.newegg.com/is/image/newegg/13-128-416-TS?$S180W$" alt="GIGABYTE Motherboard" width="108" height="81" align="left" /></a>There were cheaper options, and I&#8217;m only getting 1 video card and not 2, but I wanted SATA 6, USB 3, and the possibility for 2 cards, for future upgrades.<br style="clear: both;" /></p>
<p><strong>Processor</strong>: <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819103656">AMD Phenom II X4 925 Deneb 2.8GHz Quad-Core<br />
</a>Nothing too fancy here. Â It&#8217;s reasonably fast, but I didn&#8217;t want to go crazy. Â Processor speed is actually less important to overall system speed than most people think.</p>
<p><strong>Video Card</strong>: <a href="http://www.xfxforce.com/en-us/products/graphiccards/HD%205000series/5850.aspx">XFX Radeon 5850 1 GB</a><br />
<a href="http://www.xfxforce.com/en-us/products/graphiccards/HD%205000series/5850.aspx"><img title="XFX Radeon HD 5850" src="http://www.xfxforce.com/ecms.ashx/796d2c67-22ae-4198-a53f-036490cd087a/RelatedGraphicCardSeries_RelatedGraphicCardModels1/HD5850Mock1354x312.jpg" alt="XFX Radeon HD 5850" width="100" align="left" /></a>Here I splurged a bit. Â DirectX 11 card, again looking to the future. Â I could have gotten two lesser cards for slightly cheaper, and just as good of performance, but that would be noisier, take more power, and not leave room for future upgrades without replacing both cards. This way if I want more power, I add another 8580 (which by that time will have gone down in price significantly).<br style="clear: both;" /></p>
<p><strong>RAM</strong>: <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820231277">G.SKILL Ripjaws Series 4GB</a> (2 x 2GB) 240-Pin DDR3 SDRAM DDR3 1600<br />
This is fast RAM. Â Not as fast as the motherboard is capable of, but any faster starts quickly driving the price vs. performance into exponential (i.e. bad) territory. The computer I&#8217;m on now actually has 5 GB of RAM, so&#8230; well, in a few months it&#8217;s possible I&#8217;ll double this to 8, since I will be using this system as a work computer as well, and that means having lots of memory-intensive applications open.</p>
<p><strong>Hard Drive (system)</strong>: <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820227461&amp;cm_re=ocz_agaility-_-20-227-461-_-Product">OCZ Agility 60 GB SSD</a><br />
<a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820227461&amp;cm_re=ocz_agaility-_-20-227-461-_-Product"><img title="OCZ Agility 60 GB SSD" src="http://images17.newegg.com/is/image/newegg/20-227-461-Z01?$S180W$" alt="" width="108" height="81" align="left" /></a></p>
<p>This baby is probably the biggest factor in this build affecting normal system performance. Â It has a small amount of storage space (as most SSDs do), but solid state disks offer amazing performance. <a href="http://blogs.msdn.com/e7/archive/2009/05/05/support-and-q-a-for-solid-state-drives-and.aspx">Here</a> is an article from Microsoft about Windows 7&#8242;s performance on SSDs, and some of the benefits of SSDs in general. My housemate Cary has one in his Alienware system, and he says he definitely notices the difference. Coworker Sparr had a netbook that ran from an SSD and he also said it performed notably better than a standard hard drive &#8212; faster boot-up and overall operation, lower power consumption, no noise. Having your operating system run from one of these will nearly halve your boot-up time. Putting WoW on it will cut your load times similarly.<br style="clear: both;" /></p>
<p><strong>Hard Drive (storage)</strong>: <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822136283">Western Digital Caviar Black 750GB 7200 RPM SATA 3.0Gb/s</a><br />
This is where media and programs (that don&#8217;t need to load up really fast) will go. Nothing too special, though it is the higher-end Western Digital line, with a 32 MB cache. And they say once you go (Western Digital) Black&#8230;</p>
<p><strong>Case</strong>: Â <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16811156062&amp;nm_mc=TEMC-RMA-Approvel&amp;cm_mmc=TEMC-RMA-Approvel-_-Content-_-text-_-">Raidmax Smilodon ATX-612WBP<br />
</a><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16811156062&amp;nm_mc=TEMC-RMA-Approvel&amp;cm_mmc=TEMC-RMA-Approvel-_-Content-_-text-_-"><img title="RAIDMAX Smilodon" src="http://images17.newegg.com/is/image/newegg/11-156-062-S14?$S180W$" alt="RAIDMAX Smilodon" width="144" height="108" align="left" /></a>Honestly I don&#8217;t love this case &#8212; don&#8217;t have it, I just don&#8217;t love it. Â However, it was on special, and the case is going to sit out of my sight for 99% of the time I&#8217;m using the computer anyway, so I mostly just needed something that will hold the rest of the stuff. And it&#8217;s not particularly ugly, just not particularly pretty (in my opinion) either. Â If I was buying today instead of a few days ago, I&#8217;d probably get <a href="http://thermaltakestore.com/vj40040012.html">this case</a>, which they&#8217;re running a special on for $50 and free shipping (coupon code TTCPN-N0012USU-FEB10).<br style="clear: both;" /></p>
<p>There are also some odds and ends, like <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16835185058">Scythe Slipstream</a> case fans (better fans, and quieter), aÂ <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817339036&amp;nm_mc=OTC-Froogle&amp;cm_mmc=OTC-Froogle-_-Power+Supplies-_-Compucase-_-17339036">780W power supply</a>, etc. Â This build was mostly based on <a href="http://www.hardware-revolution.com/700-gaming-pc/">this article</a>, with upgrades where I felt would be good, and some components switched out where I could find a better deal, or a better product for the same or lesser price. Ironically, since that build was written, some prices have actually gone up (I assume due to the weakening of the dollar, and the fact that most components are made overseas).</p>
<p>I did forget to order a 2.5&#8243; to 3.5&#8243; adapter for the SSD, but that&#8217;s livable &#8212; I can get one of those for less than $10 somewhere local.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2010/02/19/my-new-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roleplaying Via Google Wave</title>
		<link>http://blog.umbralechoes.com/2009/12/08/roleplaying-via-google-wave/</link>
		<comments>http://blog.umbralechoes.com/2009/12/08/roleplaying-via-google-wave/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:50:03 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[d&d]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[rpg]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=422</guid>
		<description><![CDATA[First off, let me say that I&#8217;ve only been in one Google Wave gaming session so far, and have seen a few other sessions. Â So I haven&#8217;t done very in-depth or broad testing of this stuff. Â Also, Google Wave itself is evolving &#8212; it&#8217;s still in beta, so I&#8217;m not going to talk about bugs, [...]]]></description>
			<content:encoded><![CDATA[<p>First off, let me say that I&#8217;ve only been in one <a title="I have invites if anyone needs them" href="http://wave.google.com">Google Wave</a> gaming session so far, and have seen a few other sessions. Â So I haven&#8217;t done very in-depth or broad testing of this stuff. Â Also, Google Wave itself is evolving &#8212; it&#8217;s still in beta, so I&#8217;m not going to talk about bugs, or technical issues that I&#8217;m sure will be hammered out.</p>
<p>My friend and former coworker <a href="http://www.justinachilli.com/" target="_blank">Justin Achilli</a> is <a href="http://www.justinachilli.com/blog/2009/12/7/not-drowning-waving.html" target="_blank">running a 3.5 D&amp;D game</a> via Google Wave, as an experiment in its viability for online roleplay. Â He&#8217;s shared his own thoughts, and I&#8217;d like to share a few of mine from a player&#8217;s perspective.</p>
<p>So, from my perspective, so far I&#8217;m getting exactly what I expected. Â  It&#8217;s somewhat of a mix of playing via live chat (of which I have several years experience on White Wolf&#8217;s now-defunct moderated chats) and play-by-post, with most of the advantages and disadvantages therein. Â  I&#8217;ll list some below, and again, I&#8217;m going to refrain from putting any disadvantages down that I expect to be addressed (e.g. it&#8217;s still fairly slow and has the occasional glitch).</p>
<p><strong><span style="text-decoration: underline;">Advantages</span></strong> (compared to tabletop)</p>
<ul>
<li>It&#8217;s easier to schedule. Â No transit time to/from; just log in and <em>bam</em>, you&#8217;re in game.</li>
<li>When a player misses a session, the playback feature makes it easy for them to get caught up.</li>
<li>It&#8217;s possible to narrate aspects of your character&#8217;s actions in more stylish detail.</li>
<li>It&#8217;s easier to have secret side-conversations where necessary (no passing of notes or leaning over and whispering).</li>
<li>There&#8217;s a complete record of each session, which game masters or payers can look back on (or search) if they&#8217;ve forgotten something.</li>
<li>It&#8217;s possible for several people to type simultaneously without the &#8220;talking over one another&#8221; effect you get in real life.</li>
<li>It allows you to multitask without being distracting to others.</li>
</ul>
<p><strong><span style="text-decoration: underline;">Disadvantages</span></strong></p>
<ul>
<li>Hell of a lot slower-going than tabletop for character interaction.</li>
<li>Even slower than that for combat &#8212; and the more crunchy the combat, the slower it is.</li>
<li>More impersonal.</li>
<li>Can&#8217;t use things like mood music/lighting to set the mood (though it would be easy to use a third-party app to stream a playlist).</li>
</ul>
<p>Overall I prefer tabletop, but I do like online mediums (including Wave) as an option if tabletop isn&#8217;t. Â  I think Wave offers some advantages over both chat-based and PbM/PbP play as well &#8212; it&#8217;s the best of both worlds when talking about those two options. Â I also think Wave is better for more story-centric games/systems than crunchy games, but I&#8217;m sure that there will be a number of plugins (or &#8220;robots&#8221; as Wave calls them) for that sort of thing. Â There are already some robots for things like dice rolling, maps, and other such things. Â I&#8217;m excited to see what can and will be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2009/12/08/roleplaying-via-google-wave/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Champions Online &#8211; Initial Impressions</title>
		<link>http://blog.umbralechoes.com/2009/08/30/champions-online-initial-impressions/</link>
		<comments>http://blog.umbralechoes.com/2009/08/30/champions-online-initial-impressions/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 18:53:14 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=407</guid>
		<description><![CDATA[For my initial impressions, I am going to leave out issues that are obviously bugs &#8212; the game doesn&#8217;t even officially launch for 2 days, and there really aren&#8217;t that many bugs to speak of. Â Far fewer than I&#8217;ve seen in most products at release these days, in fact. Â In any case, this review will [...]]]></description>
			<content:encoded><![CDATA[<p>For my initial impressions, I am going to leave out issues that are obviously bugs &#8212; the game doesn&#8217;t even officially launch for 2 days, and there really aren&#8217;t that many bugs to speak of. Â Far fewer than I&#8217;ve seen in most products at release these days, in fact. Â In any case, this review will be pretty scattershot &#8212; a lot of 90 degree turns. Â So strap yourself in.</p>
<p><strong>Character Creation</strong></p>
<p>First things first: the character creator. Â It&#8217;s even better than the one in City of Heroes, which itself was lightyears ahead of everything else I&#8217;ve seen. Â However, I say &#8220;better&#8221; with a few caveats. Â The Champions Online character creator is lacking some costume basics &#8212; for example, there is only one option for an emblem on your back, no option for a trench coat, and other small things of that nature. Â It&#8217;s also tough to find some of the options; they seem grouped somewhat unintuitively to me (for example, the &#8220;Shirts w/Integrated Shoulders&#8221; section has no items that have integrated shoulderpieces). Â But from my experience with City of Heroes, I know that this will be fixed in time. Â I think one of the things they were trying to do was avoid copying City of Heroes costume pieces. Â In fact, I&#8217;d bet they went to great lengths to do so, for legal reasons. Â And with the huge library of things available in City of Heroes, it will be difficult to come up with new pieces that are notably different in Champions Online.</p>
<p><strong>Depth of Play</strong></p>
<p>The game definitely has more depth than CoH. Â Around level 5, you start working with the crafting system, in fact. Â This is a little too soon for my tastes &#8212; I like to just run around and get the basics down for the first hour or two of play, myself. Â Were I not already familiar with the CoH crafting system, I would probably be confused by this. Â Actually, I am familiar with the CoH crafting system, and I am still a little confused by this. Â The main way to build things seems to be by deconstructing items that you get (akin to disenchanting in World of Warcraft), and then using those base components to build something. Â You also gain skill much faster by deconstructing things than by building things.</p>
<p>Speaking of level 5, you get a fast-travel power at level 5. Â I have not the words for how awesome this is.</p>
<p><strong>Annoyances</strong></p>
<p>This brings me to my first annoyance. Â Latency. Â This is a huge one. Â I&#8217;m not talking about real &#8220;lag,&#8221; but rather when you press W to go forward, it takes about 0.5 seconds to start going. Â Same when you let off to stop. Â Which isn&#8217;t even noticeable when you&#8217;re running around normally, but once you get that travel power, it can make you overshoot your target by about 30 feet.</p>
<p>Another annoyance is the aggro range of mobs, which is ginormous. Â Actually, I like this in theory, because it seems more realistic. Â Seems pretty silly that if you&#8217;re thumping some dude&#8217;s friend 30 feet away, he&#8217;s not going to come over. Â However, the problem is that in most of the zones (that I&#8217;ve been in so far, anyway), there are mobs strewn about every 30-40 feet. Â When you fight one small group, at least one adjacent group generally joins the fray. Â This gets really annoying when you&#8217;re trying to fight a mini-boss, and/or when you&#8217;re about to die and attempting to run to a safe place. Â It&#8217;s also bad because you can&#8217;t pull the camera out very far. Â I like for my camera to be out to where I can see around 3-4x the aggro range around me, at least. Â Can&#8217;t do that here.</p>
<p><strong>Combat and Missions</strong></p>
<p>This is also made more of an issue by the game&#8217;s AI, which I must say is fairly good. Â If you&#8217;re using a bunch of close-range attacks, and your opponent has a ranged attack, then they will generally try to distance themselves. Â Villains and sometimes even normal mobs will go out to get reinforcements. Â This makes the game feel a lot more realistic than other MMOs I&#8217;ve played, and also adds a bit of challenge</p>
<p>The combat system is pretty straightforward, aside from one thing: blocking. Â You can press the Shift key to block attacks. Â This is very important in a lot of villain fights &#8212; there will be a visual indicator (starburst usually) over the villain indicating that some big attack is coming. Â If you don&#8217;t block, you get walloped for a big chunk. Â If you do block, then it&#8217;s not so bad. Â It makes combat feel more active. Â They still need to work on the targeting though; often you find yourself in the middle of a pretty big group, and tabbing through to get to that villain isn&#8217;t always feasible.</p>
<p>I really like the mission system overall. Â It shows you on the map and minimap exactly where your objectives are, circled in the case of objectives that are in a general area. Â When you mouse over it, the mission name comes up you can click on it to open a description of the mission details. Â Very nice for keeping track of what you&#8217;re doing. Â There are also impromptu group missions, that you don&#8217;t actually have to group up for. Â For example, aliens are invading and when you come near the city defense system, you can jump in and start helping to defend it. Â There are several phases to this, with different objectives (defend the cannon, get parts for it, etc.). Â When you&#8217;re through, it opens up another quest for you, and it also shows you a ranking of who helped the most. Â Then the mission resets.</p>
<p>I think this open mission system is really great, because a lot of MMO players frankly aren&#8217;t very social. Â It can be tedious and annoying to get a group together. Â But if you can just jump in and coordinate your efforts, then you skip all of the awkward and sometimes tediousÂ rigmaroleÂ of forming Â a group. Â Plus, it&#8217;s very superhero-like to see a situation, then just jump in.</p>
<p><strong>Overall Impression</strong></p>
<p>Overall, the game feels much more superhero-like than City of Heroes. Â You can take out the mooks and minions like chaff (unless you do something dumb and really overload yourself), which is thematic. Â The game has extremely customizable character aesthetics, even more so than its progenitor. Â It&#8217;s a lot deeper than City of Heroes, which I hope translates to a more sustainable end-game.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2009/08/30/champions-online-initial-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Champions Online</title>
		<link>http://blog.umbralechoes.com/2009/08/27/champions-online/</link>
		<comments>http://blog.umbralechoes.com/2009/08/27/champions-online/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 21:56:49 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[geekery]]></category>
		<category><![CDATA[mmo]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=401</guid>
		<description><![CDATA[This is a post for MMO gamers (and possibly comic fans). The rest of you should probably feel free to skip it, lest your eyes glaze over. At GenCon this year, I spent a fair amount of time at the Champions Online booth. This is a superhero MMO made by Cryptic. Yes, the same Cryptic [...]]]></description>
			<content:encoded><![CDATA[<p>This is a post for MMO gamers (and possibly comic fans).  The rest of you should probably feel free to skip it, lest your eyes glaze over.</p>
<p><img class="alignright" title="Champions Online" src="http://champions-online.com/dyncontent/fightclub/uploads/mind_slayer1.jpg" alt="" width="250" /><a href="http://blog.umbralechoes.com/2009/08/25/gencon/">At GenCon this year</a>, I spent a fair amount of time at the Champions Online booth.  This is a superhero MMO made by Cryptic.  Yes, the same Cryptic that produced City of Heroes.  This is, essentially, City of Heroes+++.  It was both sad, but informative, that almost every question and comment I overheard was comparing CO to CoH.</p>
<p>There are cosmetic improvements.  The game looks a lot more comic-book-like, with the thicker black outlines and cell shading.  You can customize how your powers look.  Do you want that power beam to come from a jewel in your forehead instead of your fists, or maybe from your chest?  You can make it so. Â There are even more character appearance customization options than in CoH (an almost overwhelming amount, in fact). Â There are some cool gameplay improvements &#8212; you can mix and match powersets as you please, so there are no set archetypes, for example.  You get 14 total powers at max level (if I recall), and you can mix and match them from different power sets as you please.</p>
<p>But what I really want to talk about are the more groundbreaking aspects of this game.<br />
<br style="clear:both" /><br />
Perhaps the biggest is player-created arch-villains.  At level 20, you start getting clues that someone is watching you.  For example, you might find some pictures of yourself during the last mission.  These develop into a storyline, and then at level 25, you actually design your own arch-villain.  You choose their power set (though not specific powers), design their look, determine what sort of a villain they are (mastermind, mad genius, thuggish brute, etc.), and you even design the look of their minions.  You proceed along a storyline that culminates in an epic battle, and your arch-nemesis being jailed.</p>
<p><img class="alignleft" title="Villain" src="http://champions-online.com/dyncontent/fightclub/uploads/destroyer1_0.jpg" alt="" width="250" />And then, you get to make another one.  Think Batman here, putting people away in Arkham Asylum.  And just like that, sometimes your villains will escape and come after you.  Sometimes several of them will escape.  And if you group up with people, sometimes your arch-villains will also team up against you.</p>
<p>I haven&#8217;t seen this in action yet, but if the implementation is as cool as the idea, this could really go light-years forward in making an MMO feel more personalized.  I&#8217;m very much looking forward to it.</p>
<p>On a technological level, everyone is on one server (just with different instances of zones).  That&#8217;s right, no more, &#8220;Oh you play too?  Awesome, what server are you on? &#8230; Oh, well I guess I could maybe make a toon on that server.&#8221;  All MMOs should do this, and I think in the future, I think most will.</p>
<p>But this brings up another issue: it is (or, can be) sometimes difficult to find an unused name in an MMO when everyone is split between servers, much less with everyone on the same server.  Well, you can use whatever name you want, even if someone else has used it.  You&#8217;re uniquely identified by your account name + character name.  So there can be fifteen Shadowbats, or Tits McGees.  I&#8217;m not quite sure how I feel about this, but I think I will like it.</p>
<p>There are <a href="http://pc.ign.com/articles/996/996490p1.html" target="_blank">Open Missions</a>, which I think have promise. Â As you&#8217;re flying by somewhere, there is a bank robbery in process. Â You, and other heroes, can intervene. Â No creating a group necessary, you just jump in and do it, and get a mission reward at the end of it corresponding to how much you helped. Â This I will have to see in action, but I love the idea. Â Helps a lot in making the game more&#8230; well, open.</p>
<p>On the marketing side, they&#8217;re offering a lifetime subscription option for $200, but I believe this is only good until the release date of September 1st.  It&#8217;s ingenious from a marketing perspective (City of Heroes was also very good when it came to marketing ploys).  From a consumer perspective, I feel like I&#8217;m taking a $200 gamble though.  Sure, in about 14 months it&#8217;s paid for itself.  But what if, once the game goes live, I don&#8217;t like it after 6 months of play?  I suppose I could always sell my lifetime membership to someone else, but I&#8217;m relatively sure that would be against the terms of use. Â I will note that I&#8217;ve gone ahead and ordered a lifetime subscription, and am feeling a little unsure of it even though I think this game has a lot of promise.</p>
<p>Overall I&#8217;m pretty excited. Â There are other cool features to this game that I haven&#8217;t even touched on, and it seems like CO is doing a better job of appealing to both casual players (like me) and hardcore gamers, though still with more of a focus on the casual player. Â My preorder copy is on its way, and once I get that I&#8217;ll be able to delve deeper into this game.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2009/08/27/champions-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Digital Life</title>
		<link>http://blog.umbralechoes.com/2008/05/11/my-digital-life/</link>
		<comments>http://blog.umbralechoes.com/2008/05/11/my-digital-life/#comments</comments>
		<pubDate>Sun, 11 May 2008 17:15:48 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/?p=232</guid>
		<description><![CDATA[I bought a digital camera for my mother for Mother&#8217;s Day &#8212; got her a Kodak EasyShare based on the advice of friends (thanks guys!).Â  I love technology, and I love finding just the right tool for the job.Â  So this is a post for all the geeks* out there.Â  Below is a list of [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a digital camera for my mother for Mother&#8217;s Day &#8212; got her a <a href="http://www.buy.com/prod/kodak-easyshare-c713-7-megapixel-3x-optical-zoom-2-4-lcd-digital-image/q/loc/101/206867254.html" target="_blank">Kodak EasyShare</a> based on the advice of friends (thanks guys!).Â  I love technology, and I love finding just the right tool for the job.Â  So this is a post for all the geeks* out there.Â   Below is a list of programs, services, and mashups (like Twitter + Jott/Facebook, or WordPress + Livejournal/MySpace) that I use on a daily basis.  You probably know about a lot of these things, but maybe not all.Â  I love to try out new things.Â  I love to tinker, so every blue moon** I make a post like this.Â  If any of you out there have anything to add, then by all means leave a comment and tell me what your technological must-haves are.</p>
<p>Being a tech reviewer would be my dream job &#8212; I absolutely love testing out gadgets and programs.Â  I could write a few pages on each of these things, but I tried to keep it as short as possible.Â  Information below the cut.</p>
<p>* I use the term &#8220;geek&#8221; in a positive way.Â  I have never used, nor taken, any such word in a derogatory fashion, even if it was meant that way.Â  To me, &#8220;geek&#8221; means &#8220;someone who is considerably more intelligent than the average person, so much so that they are constantly using their brain.&#8221;</p>
<p>** I had a discussion recently wherein I was told that a lot of people don&#8217;t know what a &#8220;blue moon&#8221; is.Â  I find this notion staggering.</p>
<p><span id="more-232"></span></p>
<p><span style="text-decoration: underline;">Internet</span></p>
<ul>
<li><strong>Browser</strong>: <a href="http://www.firefox.com" target="_blank">Firefox</a> w/<a href="http://www.google.com/tools/firefox/browsersync/" target="_blank">Google BrowserSync</a> &#8212; Everyone knows about Firefox, but the Google BrowserSync plugin synchronizes your Firefox stuff across computers.  Not only bookmarks, but also passwords, which I&#8217;ve found to be quite handy when going between work and home.  Unfortunately, it doesn&#8217;t support Firefox 3 beta yet.
<ul>
<li>Alternatively, if you have a USB thumb drive, you could just use <a href="http://portableapps.com/apps/internet/firefox_portable" target="_blank">Firefox portable</a>.  (I don&#8217;t because for some reason my work computer freezes up when I plug in my thumb drive.)</li>
<li>If you don&#8217;t have a thumb drive, I highly recommend the <a href="http://www.corsair.com/products/voyager.aspx" target="_blank">Corsair Flash Voyager</a> &#8212; I&#8217;ve owned several, and this is the only one that was rugged enough to not snap off of my keychain or otherwise break.Â  It also comes pre-loaded with TrueCrypt, which (optionally) automatically encrypts all data you copy to the drive, with the minor yet necessary annoyance that when you initially plug in the drive, it asks for a password to access the encrypted portions.Â  Only downside to it is that the write speed is a little slow for a USB 2.0 device.</li>
</ul>
</li>
<li><strong>Chat</strong>: <a href="http://www.trillian.cc" target="_blank">Trillian Astra</a> &#8212; Trillian was one of the first popular programs to allow you to connect to multiple IM services simultaneously.  It got a bit bloated, but the upcoming version (Astra, which is in Beta) is a lot leaner.
<ul>
<li>As an alternative, there is also  <a href="http://www.pidgin.im/" target="_blank">Pidgin</a> (which also comes in a <a href="http://portableapps.com/apps/internet/pidgin_portable" target="_blank">portable flavor</a> for USB thumb drives)</li>
<li>There is also <a href="http://www.digsby.com" target="_blank">Digsby</a>, which is new on the scene but definitely worth checking out since it integrates into email and social networks.  Even allows you to do things like respond to an email right from the client, without having to open up the website.  The one major feature it&#8217;s lacking right now is the ability to set different accounts to different statuses &#8212; once it has that, I may very well switch.</li>
<li>For those that prefer not installing anything, there is <a href="http://www.meebo.com" target="_blank">meebo</a>, an incredibly slick (and free) web service that lets you chat through all major IM services.</li>
</ul>
</li>
<li><strong>Blogging</strong>: On my personal website I use <a href="http://www.wordpress.org" target="_blank">WordPress</a> with the <a href="http://code.google.com/p/ljxp/" target="_blank">ljxp plugin</a> to auto-post to Livejournal when I make a post on my WordPress-driven blog.  There is also a plugin that <a href="http://noumenon.roderickrussell.com/myspace-crossposter-v2-released" target="_blank">auto-posts to MySpace</a>, though it&#8217;s a really roughly written plugin.Â  I could probably do a whole post about WordPress and the various plugins I&#8217;ve found invaluable for it.</li>
<li><strong>Other</strong>: <a href="http://twitter.com/UmbralEchoes" target="_blank">Twitter</a>, which is like a micro-blogging thing.  Sometimes I use this through <a href="http://jott.com" target="_blank">Jott</a>, which lets you call a number and does voice-to-text transcription, and can then do things like push out a Twitter message, add an appointment to your Google Calendar, etc.  I also have my <a href="http://www.facebook.com/profile.php?id=508138925" target="_blank">Facebook profile</a> status update automatically to match my last status update on Twitter.Â  So basically, I call Jott, it asks, &#8220;Who do you want to Jott?&#8221;Â  I say, &#8220;Twitter,&#8221; then say, &#8220;I am the very model of a modern major general.&#8221;Â  It will transcribe this, it will be posted to Twitter, and then my Facebook status will update to that.</li>
</ul>
<p><span style="text-decoration: underline;">Phone</span></p>
<ul>
<li>My phone is currently a <a href="http://www.samsung.com/us/consumer/detail/detail.do?group=mobilephones&amp;type=mobilephones&amp;subtype=att&amp;model_cd=SGH-A707DAACIN" target="_blank">Samsung Sync</a>; nothing special, though I plan on getting the <a href="http://www.engadget.com/2008/04/25/the-second-gen-iphone-3g-gps-only-slightly-thicker/" target="_blank">2nd gen iPhone</a> which <a href="http://www.engadget.com/2008/04/29/3g-iphone-to-be-discounted-to-199-by-atandt/" target="_blank">might be as cheap as $199</a> and most likely will be <a href="http://www.engadget.com/2008/05/06/leaked-atandt-memo-points-to-3g-iphone-release-in-late-june/">released in late June</a>.Â  I used to be of the opinion that I want my phone to be a phone, and nothing else.Â  But in the past year, I can&#8217;t count the number of times I&#8217;ve been sitting somewhere and thought, &#8220;Damn, it would be handy to have web access right now.&#8221;Â  I might end up going with a Blackberry, but I do really like the iPhone interface, and you can&#8217;t beat that price if the discount is more than just rumor.</li>
<li>I have the <a href="http://www.blueantz9.com/" target="_blank">BlueAnt Z-9</a> bluetooth headset.  This thing has <em>amazing</em> noise canceling technology &#8212; in the same league as the <a href="http://www.jawbone.com/" target="_blank">Aliph Jawbone</a>, but less expensive (and I personally like the form factor better, too).  The firmware is also upgradeable, which is a plus.  The noise canceling technology on this is nearly magic.  I activated it when about to walk past someone cutting wood with a circular saw, and the person on the other end didn&#8217;t hear a bit of background noise.  Another time I was in a noisy airport, my friend couldn&#8217;t hear me well, so I engaged the voice isolation.  She seemed quite amazed that all background noise ceased instantaneously.  This is some military-grade stuff.Â  Also, I&#8217;ve worn it for over 4 hours at a time, and it remains comfortable (though sometimes you have to adjust it a bit to get it just right).</li>
<li><a href="http://www.grandcentral.com" target="_blank">GrandCentral</a> &#8212; This is a very coo service that Google bought up, that gives you one phone number which can ring you at other numbers, but it has a ton of <a href="http://grandcentral.com/home/features" target="_blank">other neat features</a> (like the ability to screen calls, record conversations to MP3, etc.).Â  Unfortunately, they seem to have removed the ability to invite friends; otherwise I&#8217;d offer a few invites to the beta.</li>
</ul>
<p><span style="text-decoration: underline;">Email</span></p>
<ul>
<li><a href="http://www.gmail.com" target="_blank">Gmail</a> &#8212; The standard for geeks these days, I&#8217;m sure you already have an account.Â  It offers POP based email so you can check it through a standard mail client if you want, a simple web interface, and really good spam detection.Â  What I especially like is the ability to <a title="One mailbox to rule them all" href="http://www.googletutor.com/2006/06/20/using-gmail-as-your-universal-email-account/" target="_blank">check your <em>other </em>email accounts through GMail</a>.Â  So you can just have one &#8220;master&#8221; GMail account, that checks all of your other accounts.<a href="http://www.gmail.com" target="_blank"><br />
</a></li>
<li><a href="http://www.mozilla.com/en-US/thunderbird/" target="_blank">Thunderbird</a> &#8212; This is an open-source email client from the same foundation that brought us Firefox.  I use this primarily at work, in conjunction with the <a href="http://enigmail.mozdev.org" target="_blank">EnigMail</a> plugin for encryption.  Remember, whenever you send email, it goes across the Internet in plain text.  So never use email to send things like passwords and such.Â  EnigMail is actually pretty easy to set up and use.Â  When I walked one of my minions through it, and one of my bosses, they were like, &#8220;Oh&#8230; that&#8217;s all there is to it?&#8221;</li>
</ul>
<p><span style="text-decoration: underline;">Misc. Programs/Utilities</span></p>
<ul>
<li><a href="http://www.getpaint.net/" target="_blank">Paint.net</a> &#8212; Free image editing program that is quite slick and has some nice features that users of Photoshop might recognize, like layers.  And also, an auto-updater, so when there&#8217;s a new version you click one button and be done.</li>
<li><a href="http://www.launchy.net/" target="_blank">Launchy</a> &#8212; Damn is this thing simple, but absurdly handy.  You press Alt+Space, and it brings up a little widget.  Start typing and as you type it shows a list of programs (or files or links, but with a preference for programs) with the most likely candidate selected.  So when I want to start Skype, I don&#8217;t have to go Start -&gt; Programs -&gt; Skype -&gt; Skype.  Instead: Alt+Enter, type &#8220;sk&#8221;, press Enter.</li>
</ul>
<p>That&#8217;s about all I can think of now.Â  What about you?Â  Is there any &#8220;must-have&#8221; utility/service that you use, that&#8217;s not on this list?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2008/05/11/my-digital-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading WordPress</title>
		<link>http://blog.umbralechoes.com/2008/04/08/upgrading-wordpress/</link>
		<comments>http://blog.umbralechoes.com/2008/04/08/upgrading-wordpress/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 22:53:38 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.umbralechoes.com/2008/04/08/upgrading-wordpress/</guid>
		<description><![CDATA[I run my personal site&#8217;s blog using WordPress. It automatically posts everything I write there to LiveJournal. Well, WordPress has recently come out with a major upgrade, so up shall I grade.Â  Hopefully nothing bad will come of this. EDIT: Looks like everything went swimmingly.Â  For those of you who have a similar setup, there [...]]]></description>
			<content:encoded><![CDATA[<p>I run my personal site&#8217;s blog using <a href="http://www.wordpress.org">WordPress</a>.  It automatically posts everything I write there to <a href="http://www.livejournal.com">LiveJournal</a>.  Well, WordPress has recently come out with a major upgrade, so up shall I grade.Â   Hopefully nothing bad will come of this.</p>
<p>EDIT: Looks like everything went swimmingly.Â  For those of you who have a similar setup, there was one small change that needed to be made to the <a href="http://code.google.com/p/ljxp/">LiveJournal crossposter plugin</a>, and that change can be found <a href="http://code.google.com/p/ljxp/issues/detail?id=40">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.umbralechoes.com/2008/04/08/upgrading-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
