<?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>Ranadok</title>
	<atom:link href="http://ranadok.com/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://ranadok.com/wp</link>
	<description>...doesn&#039;t have much better to do</description>
	<lastBuildDate>Tue, 28 Feb 2012 05:36:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>A Tale of Two Stigs</title>
		<link>http://ranadok.com/wp/2012/a-tale-of-two-stigs/</link>
		<comments>http://ranadok.com/wp/2012/a-tale-of-two-stigs/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 05:36:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CrossStitch]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=400</guid>
		<description><![CDATA[Just really quick. My mom found a small Stig (Top Gear's tame racing driver, if you aren't familiar) pattern in a cross stitch magazine at work and brought it home. I whipped up a couple for two of my siblings for their respective birthdays. First on white for my sister: Then on black background (same [...]]]></description>
			<content:encoded><![CDATA[<p>Just really quick. My mom found a small Stig (Top Gear's tame racing driver, if you aren't familiar) pattern in a cross stitch magazine at work and brought it home. I whipped up a couple for two of my siblings for their respective birthdays. First on white for my sister:</p>
<p style="text-align: center;"><a href="http://ranadok.com/wp/wp-content/uploads/2012/02/WhiteStig.jpg"><img class="aligncenter size-full wp-image-402" title="WhiteStig" src="http://ranadok.com/wp/wp-content/uploads/2012/02/WhiteStig.jpg" alt="" width="300" height="337" /></a></p>
<p style="text-align: center;"><span id="more-400"></span></p>
<p style="text-align: left;">Then on black background (same floss colours - this is the white Stig, not the early black Stig) for my brother:</p>
<p style="text-align: center;"><a href="http://ranadok.com/wp/wp-content/uploads/2012/02/BlackStig.jpg"><img class="aligncenter size-full wp-image-403" title="BlackStig" src="http://ranadok.com/wp/wp-content/uploads/2012/02/BlackStig.jpg" alt="" width="300" height="375" /></a></p>
<p>And when you put them together:</p>
<p><a href="http://ranadok.com/wp/wp-content/uploads/2012/02/FramedStigs.jpg"><img class="aligncenter size-full wp-image-401" title="FramedStigs" src="http://ranadok.com/wp/wp-content/uploads/2012/02/FramedStigs.jpg" alt="" width="637" height="431" /></a></p>
<p>Just so classy. So darn classy it <em>hurts.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2012/a-tale-of-two-stigs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DHCP Cop &#8211; A Linux Script for DHCP lease email notification</title>
		<link>http://ranadok.com/wp/2011/dhcp-cop-a-linux-script-for-dhcp-lease-email-notification/</link>
		<comments>http://ranadok.com/wp/2011/dhcp-cop-a-linux-script-for-dhcp-lease-email-notification/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 19:58:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=381</guid>
		<description><![CDATA[In my job, sometimes I write little scripts (usually either Bash scripts if it's for Linux or VBS if it's for Windows) to make my life and the lives of my colleagues easier. Usually, they are quite specific to our environment, so there isn't much use in sharing them with the world at large. However, [...]]]></description>
			<content:encoded><![CDATA[<p>In my job, sometimes I write little scripts (usually either Bash scripts if it's for Linux or VBS if it's for Windows) to make my life and the lives of my colleagues easier. Usually, they are quite specific to our environment, so there isn't much use in sharing them with the world at large. However, in this case, I think this is general enough that someone else may find a use for it. I'm not claiming to be the best scripter in the world or that this is the best way to do this, just that it works for me and I didn't find too many other things along the same lines when I looked originally. I did find one site that had something similar that put me on the right track, but I can't find it now to give proper credit (and it used a different method than I did, though it was one that got me thinking).</p>
<p>What this basic script does is monitor the active dynamic pool DHCP leases on the server (assuming CentOS, can't speak for other Linux variants) and email a given address with the lease information. My assumption when writing this (based on where I planned to use it) is that the server uses static DHCP leases for all permanent equipment, so you want to be notified by email when something gets a temporary lease, and that anything given a temporary lease is either going to be disconnected (if unauthorized) or given a static lease (if authorized), so the temporary lease pool should usually be empty. Perhaps, based on this, I should have called it 'DHCP Snitch', but it's too late to change it now.  The script should be scheduled to run via cron at the desired interval (I use fifteen minutes, which is frequent enough for me), and it will only email once when it detects a new lease. As a downside, if a second lease is given out before the first is cleared, it will not send a second email. I do have vague plans to modify it to notify on each new lease, but that's for 'later'.  </p>
<p>The logic is dead simple, it pretty much just greps the dhcpd.leases file for the 'active' string, then mails the specified email address with the lines above and below it in the file (for context), so long as the sent email file doesn't exist in the /tmp/ folder. If there are no leases active, and the sent email file exists, it deletes it. That's it:</p>
<p><pre><code>
#!/bin/sh
#DHCP Cop - alerts via email when new temporary DHCP address is leased
#Set to run at desired interval via cron. 
#Emails one time when there is a new active lease
#Will not email again until after there are no active leases for at least one check

if grep -q &quot;binding state active&quot; /var/lib/dhcp/dhcpd.leases; then
&nbsp;&nbsp;if [ -e /tmp/dhcpemail.txt ]; then
&nbsp;&nbsp;&nbsp;&nbsp;exit
&nbsp;&nbsp;else
&nbsp;&nbsp;&nbsp;&nbsp;SUBJECT=&quot;New DHCP Lease on $HOSTNAME&quot;
&nbsp;&nbsp;&nbsp;&nbsp;ADDRESS=&quot;user@example.com&quot;
&nbsp;&nbsp;&nbsp;&nbsp;BODY=&quot;/tmp/dhcpemail.txt&quot;
&nbsp;&nbsp;&nbsp;&nbsp;grep -A 8 -B 3 &quot;binding state active;&quot; /var/lib/dhcp/dhcpd.leases &gt; $BODY
&nbsp;&nbsp;&nbsp;&nbsp;/bin/mail -s &quot;$SUBJECT&quot; &quot;$ADDRESS&quot; &lt; $BODY
&nbsp;&nbsp;fi

else
&nbsp;&nbsp;if [ -e /tmp/dhcpemail.txt ]; then
&nbsp;&nbsp;&nbsp;&nbsp;rm -f /tmp/dhcpemail.txt
&nbsp;&nbsp;else
&nbsp;&nbsp;&nbsp;&nbsp;exit
&nbsp;&nbsp;fi
fi
</code></pre></p>
<p>I feel that I should have some sort of disclaimer here: This script is offered without any guarantees of functionality. It's just something I threw together that seems to be working for me so far in my environment, and I figured I would share at the world at large in the hopes that someone else would find it useful. Use at your own risk.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2011/dhcp-cop-a-linux-script-for-dhcp-lease-email-notification/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Android Updates &#8211; Froyo edition</title>
		<link>http://ranadok.com/wp/2010/android-updates-froyo-edition/</link>
		<comments>http://ranadok.com/wp/2010/android-updates-froyo-edition/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 04:12:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=372</guid>
		<description><![CDATA[The last time I visited my Android good and bad lists was nearly a year ago, back in October. The platform has come a long way since then, adding a slew of new features and fixing a lot of old problems. Here's what I have changed from my lists: The Android Bads Software Can't stop [...]]]></description>
			<content:encoded><![CDATA[<p>The last time I visited my Android good and bad lists was nearly a year ago, back in October. The platform has come a long way since then, adding a slew of new features and fixing a lot of old problems. Here's what I have changed from my lists:</p>
<p><a href="http://ranadok.com/wp/2009/the-android-bads/"><strong>The Android Bads</strong></a></p>
<p>Software</p>
<ul>
<li><span style="text-decoration: line-through;"><strong>Can't stop individual programs from loading on startup</strong>.  Notable offenders on this are ShopSavvy and Note Everything, though  Meridian likes to pop up now and then. These programs load automatically  shortly after the system starts, and I can't seem to find a setting  anywhere in the programs themselves or in Android to prevent it. I only  use ShopSavvy once every several weeks and NoteEverything only every  couple of days or so, I certainly don't need them running all the time  just in case (presumably to save time when the program is eventually  started?). I don't know if it slows everything else down or not, but it  is annoying. </span>This is still a minor problem, but it seems that the Android OS seems to be  pretty smart about getting killing unused processes when it needs the  memory. It still bugs me that they load at all, but it doesn't seem to  have any negative effects.</li>
<li><strong>The calendar application is terrible. </strong>Terrible enough that I am  going to write another entry on that alone. For now, I'll just say that  my first PDA (Palm III) did the calendar better a decade ago, and it  seems like whoever designed the Android calendar app never used it or  anything since then. (Update Sept5/10) Updates to the calendar app with  Froyo have improved the situation somewhat, though a lot of other issues  remain. I may actually get around to writing the complete list one of  these days, but the list is shorter now, at least.</li>
<li><span style="text-decoration: line-through;">On a related note, <strong>updating applications is way too clunky</strong>.  When there is a new update to apply, it takes four presses to start it  (select item from list, select "Update", hit OK, hit OK again). This  seems to me like about two too many. It gets even worse when there are a  dozen or so applications to update. Ideally what I would like to see  would be a 'keep installed programs up to date' option that popped up a  notification when there is a new update for a program with two options:  update now (<em>single</em> click to update) or delay update (which would  then require you to go through the normal Market method). Then I'd be  happy with it. </span>(Update Sept 5/10) Automatic updating with Froyo. About time.</li>
<li><span style="text-decoration: line-through;"><strong>Not enough options. </strong>I don't know exactly what I would  add, but I was quite disappointed when I first dove into the Android  settings. I like to be able to change all sorts of things, even when I  don't end up doing so. A lot of that sort of thing can be done through  programs from the Market (I guess that's the Android way...)</span> (Update Sept 5/10) The combo of CyanogenMod 6 and LauncherPro is packed with options. Almost too many.</li>
<li><span style="text-decoration: line-through;"><strong>Interface is not always consistent.</strong> And I'm not just  talking about third party vs first party here. Even between the  different Google apps, they don't seem to be doing things the same way. A  long press on a list item in, say, your bookmarks brings up a list of  options (open, delete, etc), a long press on a calendar in Calendar  does... nothing. In order to get to settings for a calendar, you have to  select the calendar with the trackball (literally the ONLY TIME you  ever do this on the whole phone), then pull up the menu with the menu  button, and select 'Settings' (which is the only option there). This  specific problem speaks more to the failings of the Calendar app (which I  will get in to at a later date), but the concept holds throughout the  system. Programs seem free to ignore conventions when they please, and  it makes it frustrating when you have to re-learn things for a different  program.</span> (Update Sept 5/10) Seems to be getting a lot better as time goes on. Even the calendar issue above is fixed.</li>
<li><strong> <span style="text-decoration: line-through;">The games suck. </span></strong><span style="text-decoration: line-through;">See what I wrote up  there about third party programs? Same thing for games. Most flash games  are better made.  The one exception is Bonsai Blast. That one is really  really well done. Too bad I don't really like the game.</span> (Sept  5/10) The quality in the market has gone up immensely. My phone doesn't  have enough juice to run them all, but the quality games are finally  arriving.</li>
<li><span style="text-decoration: line-through;"><strong>Strange delay between vibrate and sound. </strong>Sometimes the  sound and the vibration happen at the same time, other times there can  be up to a minute delay between the buzz and the sound. I can't seem to  find any rhyme or reason to this, and it annoys me.</span> (Sept 5/10) Fixed in newer revisions (I'm not sure if it's CM or general Froyo that did it, but it's good now)</li>
</ul>
<p>Hardware</p>
<ul>
<li><strong>(added Sept 5/10)Underpowered.</strong> This is a first-generation  device, and it certainly shows. I can still do most things I want to  without problem, but there is frequent lag, programs getting unloaded in  the background due to lack of ram, and times when it simply doesn't  respond. I still like the phone, and Froyo has helped quite a bit, but  it's slowly becoming frustrating to use on a day to day basis due to  this.</li>
</ul>
<p><a href="http://ranadok.com/wp/2009/the-android-goods/"><strong>The Android Goods</strong></a></p>
<p>Software</p>
<ul>
<li>(added Sept 5/10) <strong>Voice commands. </strong>Pretty much the same as the  voice search above, but pretty much system-wide. I can dictate wherever  I can type, and use commands for things like sending texts and  navigation with a single keypress. So very cool.</li>
<li>(added Sept 5/10) <strong>Navigation. </strong>Navigation on par with (or  better than) my dad's dedicated Garmin. For free. Integrated with  Google's usual quality of search. There are a few places where the maps  are a little out of date, but hopefully that'll improve with time</li>
<li>(added Sept 5/10) <strong>Launcher Pro.</strong> I don't know if it's fair to give Android credit for a third-party home screen, but  this is incredible, and has really made it feel like a new phone at  times. The parts that stand out are the scrollable dock, the resizable  widgets, and the piles and piles of customization options. It's the  first (and so far only) Android app that I've felt the need to pay for,  and that's even with the free app being full-featured.</li>
</ul>
<p>Hardware</p>
<ul>
<li>(added Sept 5/10) <strong>The hardware buttons.</strong> It's not like this has changed since I wrote the original list, but the recent slew of handsets with the <a href="../2009/touch-sensitive-buttons-please-no/">terrible touch-sensitive buttons</a> (which, in fairness, I have not actually tried for myself) have made me appreciate the physical, clicky ones that I have now.</li>
</ul>
<p>So, six bads items removed, one bad added, and four goods added. A net gain of nine; it's been a good year for Android.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/android-updates-froyo-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Books come in Electronic now?</title>
		<link>http://ranadok.com/wp/2010/books-come-in-electronic-now/</link>
		<comments>http://ranadok.com/wp/2010/books-come-in-electronic-now/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 04:47:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=355</guid>
		<description><![CDATA[I've always thought that ebook readers were a little goofy. E-ink was an interesting technology, but the readers seemed to be there just to give the screens a reason to exist, not to actually solve a problem that anybody actually had. Why would anybody want to read on an electronic device, when they could just [...]]]></description>
			<content:encoded><![CDATA[<p>I've always thought that ebook readers were a little goofy. E-ink was an interesting technology, but the readers seemed to be there just to give the screens a reason to exist, not to actually solve a problem that anybody actually had. Why would anybody want to read on an electronic device, when they could just read the actual book, which would no doubt be a better experience?  I had read a couple of books on my computer or my PDA over the years, and never really found it to be as satisfying an experience as reading the actual paper copies.</p>
<p>Obviously, my opinions have changed. I had a chance to play around with both a Kindle and an older-model Sony Reader (PRS-505) over a weekend back in March, and was quite surprised. I had heard that e-ink screens were nice to read on, but these were just incredible. I was expecting something like my old grey scale Palm screen; readable even in bad light, but nothing to write home about. However, the e-ink screens on those two devices were really quite impressive. I read quite a bit on the two devices (mainly on the Sony Reader, I liked the device a lot more than the Kindle) over the course of that weekend, and decided to buy one for myself.</p>
<p>After I did the research, I ruled out everything except for Sony's offerings.  In short, the Kindle was too expensive and non-open... and all the other options don't exist, so far as Canada is concerned. Easy decision, I guess. The only hard part was choosing between the Sony Reader Touch or the Sony Reader Pocket. I tried both out at LD, and ended up going with the Pocket. It was $100 less, though it sacrificed the touch screen (obviously), card reader, music playback, and a couple other things that I don't remember and can't be bothered to look up (in-line dictionary and photos, I think). Basically, everything but book reading. The thing is, pretty much every other device I have already plays music and has a touch screen. All I really wanted was an ebook reader. And between the two, the Pocket Edition was by far the better for reading, at least to my eyes. The Touch touch layer added a nasty glare that the Pocket didn't have, and I really didn't want to deal with that. So the Pocket Edition it was. Of course, there have been price drops and new products and all sorts of other things going on in the ebook market that makes my carefully-researched decision woefully out of date, but I still think I made the right choice, and I still have a darned good ebook reader.<a href="http://ranadok.com/wp/wp-content/uploads/2010/07/SonyPRS-300.jpg"></a></p>
<div id="attachment_356" class="wp-caption aligncenter" style="width: 278px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/07/SonyPRS-300.jpg"><img class="size-full wp-image-356" title="SonyPRS-300" src="http://ranadok.com/wp/wp-content/uploads/2010/07/SonyPRS-300.jpg" alt="" width="268" height="375" /></a><p class="wp-caption-text">This is either blue or black, depending on who and when you ask. Right now, I say it&#39;s blue.</p></div>
<p><span id="more-355"></span></p>
<p>The Sony Reader Pocket Edition has an aluminum body and feels very solid in the hand, if a little heavy. The menus are pretty simple, consisting of a list of your books sorted in a couple of different ways (title, author, etc). There aren't many options once you are in a book beyond reading, bookmarking, and changing the font (three size options - I rarely take it off of small).  There isn't really too much to talk about here. The buttons are nice and solid, the screen is incredible, it's fast enough to get around, but by no means a powerhouse (you have to be a little patient navigating the menus). In short, it's simple, unobtrusive, and a pleasure to read on. On the PC side, the official Sony software is pretty forgettable, but it works quite well with the open source ebook management software Calibre, and takes all the main ebook formats without any fuss. It is a little sluggish with PDFs, but that isn't an ideal ebook format, so I try to avoid it or pre-convert it on my PC where possible.</p>
<p>The Sony Reader also shares the usual strengths that come along with any ebook reader. The screen is, as I mentioned before, very easy to read. It's not backlit, so it depends entirely on external lighting. This means it has the same visual limitations and strengths as printed material: you need a book lamp or some other source of light to read in the dark, but it is very natural in pretty much any other lighting condition, even direct sunlight. The power-sipping screen is also the major factor in the long battery life.  The battery life of ereaders is commonly claimed in the specs to be measured in weeks, and surprisingly, that isn't an exaggeration. I read practically every day but only charge my reader every two weeks or so, and it rarely reaches below the half-way point. In fact, most of the time I charge it not because it needs the power, but because I'm plugging it into my computer anyway to move over more books.</p>
<p>The biggest draw, of course, is that you can carry hundreds of books in a package roughly the size and half the thickness of a large paperback. My Sony reader has 512MB of memory, and most novels that I have seen so far check in between .3 and 1 MB, so I can easily fit hundreds of full length books on without much of a fuss. Text is tiny, memory is cheap, and the combination of the two means that you never really have to worry about space. It's great.</p>
<div id="attachment_367" class="wp-caption aligncenter" style="width: 310px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/07/books.jpg"><img class="size-full wp-image-367" title="books" src="http://ranadok.com/wp/wp-content/uploads/2010/07/books.jpg" alt="" width="300" height="363" /></a><p class="wp-caption-text">This, but in my pocket.</p></div>
<p>Do e-readers have problems? Of course.</p>
<p>First, there's the speed; e-ink isn't the quickest screen technology around. It takes a half-second or so for the page to change each time you hit the button. It's not terrible, and I quickly get into the rhythm of hitting the button a line or two before I finish the page, but it's not easy to flip through a dozen pages or more quickly (as you sometimes want to do in a book to, say, reread a passage from a few pages back). The page change (on every model of ereader that I am aware of at the moment) is also accompanied by a quick flash from white to black to white again. Supposedly this prevents a burn-in type effect and drastically increases the lifespan of the screen (I've heard as much as six times). It's also something that you very quickly filter out, but it's a little distracting at first, and it's certainly the first thing you notice when you get your hands on an e-ink screen for the first time.</p>
<p>Of course, like any media consumption device, you also have the headache of formats to deal with, as ebooks have yet to settle on a single standard. For example, with music there was MP3, WAV, WMA, AAC, and so forth.  Ebooks have EPUB, LIT, BBeB, TXT, DOC, PDF, and <a href="http://en.wikipedia.org/wiki/Comparison_of_e-book_formats">one or two others</a>. The Sony reader supports the big ones (ePub, PDF, Sony's proprietary BBeB, and some others that I don't really care about), and it's easy enough to convert from one to another if needs be (DRM aside - which is a whole different discussion). It's still another thing to fight with and worry about when managing your library. In the real world, a book is a book.</p>
<div id="attachment_357" class="wp-caption aligncenter" style="width: 372px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/07/SonyPRS-300-case.jpg"><img class="size-full wp-image-357" title="SonyPRS-300-case" src="http://ranadok.com/wp/wp-content/uploads/2010/07/SonyPRS-300-case.jpg" alt="" width="362" height="251" /></a><p class="wp-caption-text">But do they have leather covers? I think not (except for the ones that do)!</p></div>
<p style="text-align: center;">
<p>So, if you haven't guessed by now, I am quite fond of ereaders in general and mine in particular. I used to read quite a bit, but I had been reading less and less as time went on. Not for any specific reason, I just found that I wasn't finding the same time or the motivation to sit down with a book that I used to have. However, I will say that in the few months since I got my ereader, I probably have read more than in the whole year previous. Part of it is undoubtedly the novelty of it; technology is fun, and new technology even more so. However, I find myself bringing my reader along when I would not have considered bringing a book due to size, or turning it on knowing I can easily flip to a new book if the one I'm currently reading isn't interesting me a the moment. I'm finding more time to read, more excuses to read, and more things to read. I just find an ereader to be a better, more enjoyable, and more versatile way to read.</p>
<p>And the people who will never give up their physical paper books out of some romantic ideal of books being the only 'real' way to read? Good for them. They can enjoy their books, the future will still be here when they want to join us.</p>
<p>And it is awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/books-come-in-electronic-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Okami</title>
		<link>http://ranadok.com/wp/2010/okami/</link>
		<comments>http://ranadok.com/wp/2010/okami/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 05:24:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Media]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=175</guid>
		<description><![CDATA[Okami is one of those many games that sit in the "Awesome games you have never played but should" category. Over the last little while I have been trying to get through some of those games, playing Beyond Good and Evil (Varied gameplay and a lot of fun) and Psychonauts (Not quite my cup of [...]]]></description>
			<content:encoded><![CDATA[<p>Okami is one of those many games that sit in the "Awesome games you have never played but should" category. Over the last little while I have been trying to get through some of those games, playing Beyond Good and Evil (Varied gameplay and a lot of fun) and Psychonauts (Not quite my cup of tea, but still quite good). I didn't expect to get stuck for so long on a single game, though. Okami is a weird case in that it's a wonderful game that I really really want to love, but I can't actually bring myself to play.</p>
<p>In a nutshell, Okami is beautiful, charming, and innovative. However, it is also long, frustrating, and derivative.</p>
<p>Note: If you are seeing this line, it has been nine months since I started writing this post and it has been put up in its unfinished state. It seems, like the game itself, I just can't find the energy or motivation to finish it. Perhaps I'll get back to it one day...</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/okami/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rogers Tech Support and Android: The Saga Continues</title>
		<link>http://ranadok.com/wp/2010/rogers-tech-support-and-android-the-saga-continues/</link>
		<comments>http://ranadok.com/wp/2010/rogers-tech-support-and-android-the-saga-continues/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 05:21:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=347</guid>
		<description><![CDATA[It has been almost two months since I made the post about the trouble with my Android phone on Rogers (or any post, for that matter; things have been busy...). This is the inevitable follow up to that. About a week after I made that post, I finally got fed up with the official Rogers [...]]]></description>
			<content:encoded><![CDATA[<p>It has been almost two months since I made the post about the trouble with my <a href="http://ranadok.com/wp/2010/a-tale-of-two-tech-supports/">Android phone on Rogers</a> (or any post, for that matter; things have been busy...). This is the inevitable follow up to that. About a week after I made that post, I finally got fed up with the official Rogers ROM (slow, crashing, non-standard UI, everything I mentioned in the last post), and decided to install a more up to date custom ROM. Rogers had just released an online waiver that would allow people running custom ROMs to keep their data service, so it was an easy decision.  The rest of this post outlines the headaches that resulted from that. In a nutshell, I talked to Rogers six times and was without data for about three weeks.</p>
<p><span id="more-347"></span>These are the notes that I took while dealing with Rogers, with minor edits for clarification.</p>
<blockquote><p>Feb 20 (Sat)- Update ROM to Cyanogen. Tried to sign waiver (with phone number and IMEI), but it did not accept my phone.</p>
<p>Feb 21 (Sun)- Data working properly until late evening/early 22nd</p>
<p>*Feb 22 (Mon)- ~6:30pm No data in the morning, Call #1 to Rogers. Told they will add the IMEI to the waiver, should work in 24-48 hrs</p>
<p>*Feb 24 (Wed) - ~7:00 Call #2, told it was escalated, told to wait an additional 24-48 hrs</p>
<p>*Feb 27 (Sat) - Call #3 (Afternoon, do not recall exact time), told that IMEI was added on the 25th (3 days after original call, day after second call), should work by 9PM that day. Rep suggested talking to customer care after to get compensated somehow. Waiver still did not work that day at 10PM.</p>
<p>Feb 28 (Sun) - No data, form still doesn't work. Didn't call in.</p>
<p>**March 2 (Tuesday) - ~10 AM Get call telling me waiver should work<br />
- ~11 AM Try waiver, doesn't work<br />
- ~7 PM Try wavier, doesn't work. Call #4, tech gets info and re-escalates ticket. Told to wait for someone to call me.</p>
<p>*March 4 (Thursday) - Try waiver, no go. Call #5. Told there was an ongoing issue with about 84 affected users attached to the 'master ticket'. No solution or ETA, just wait. Transferred to customer care, discussed compensation. Rep agreed that it was unacceptable, offered 2mos unlimited data (I turned down, would not use) or some sort of monetary credit. The rep suggested I wait until situation was resolved to make sure I was fairly compensated, I agreed. Also discussed the previously promised 1 mo data credit from the issue in Jan. He mentioned there was no record of it that he could see and made a note on the history, told me to wait for the next bill to see if it shows up.</p>
<p>March 5-11 Checked waiver every day, no dice.</p>
<p>March 12 (Friday) - Missed call on my phone. Assumed it was Rogers, checked waiver again, it worked!</p>
<p>March 13 (Saturday) - Data! up and working all day. Got a call mid-day (after getting data back) from Rogers telling me that the waiver should now work.</p>
<p>*March 15 (Monday) - Called customer support (#6), get month of data credit ($25). Told no on the 911 fee thing (unrelated issue), but decide not to fight that fight.</p></blockquote>
<p>So now I have my data, my own ROM, and a little over a month's bill waived (between the two credits). I'm not <em>totally</em> pleased with the way it turned out, but at least it's over. I think that may have been Rogers' plan all along, to just wear me down until I gave up.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/rogers-tech-support-and-android-the-saga-continues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tale of two tech supports</title>
		<link>http://ranadok.com/wp/2010/a-tale-of-two-tech-supports/</link>
		<comments>http://ranadok.com/wp/2010/a-tale-of-two-tech-supports/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 04:22:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Ranadok]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=331</guid>
		<description><![CDATA[I recently had to deal with tech support for two totally different companies on two totally different issues. They were two totally different experiences. I offer them both up as a contrast.  Plus, I want to complain about Rogers. First Issue: Dead Roomba, iRobot My poor robo-buddy just up and died some time around the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to deal with tech support for two totally different companies on two totally different issues. They were two totally different experiences. I offer them both up as a contrast.  Plus, I want to complain about Rogers.</p>
<p><strong>First Issue: Dead Roomba, iRobot</strong></p>
<p>My poor <a href="http://ranadok.com/wp/2009/my-other-little-robo-buddy/">robo-buddy</a> just up and died some time around the New Year. It stopped charging, giving no response whatsoever to being plugged in or to any of the buttons. No rhyme or reason, jut got up one day and decided to not work. I was not impressed, I had only had it since October.  I did some testing using the charger and battery from somebody else's Roomba, and determined that it was the robot itself. Great. To make matters worse, I dropped my Roomba while I was working on it, snapping the front wheel assembly clean off.</p>
<div id="attachment_335" class="wp-caption aligncenter" style="width: 233px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/01/sadroomba.jpg"><img class="size-full wp-image-335" title="sadroomba" src="http://ranadok.com/wp/wp-content/uploads/2010/01/sadroomba.jpg" alt="" width="223" height="230" /></a><p class="wp-caption-text">This is not good.</p></div>
<p style="text-align: center;">
<p>I contacted iRobot support via their web page and explained the situation, my accident and all.  After a couple diagnostic questions, they decided to replace my robot, charger, and battery. Outright. With a better model, with more features, with no cost to me. They even gave me an upgraded  'fast' charger and let me keep the old robot/battery/charger to use as spares (well, they suggested recycling it, like that's going to happen).</p>
<p style="text-align: center;">
<div id="attachment_334" class="wp-caption aligncenter" style="width: 358px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/01/NewRoomba.jpg"><img class="size-full wp-image-334 " title="NewRoomba" src="http://ranadok.com/wp/wp-content/uploads/2010/01/NewRoomba.jpg" alt="" width="348" height="260" /></a><p class="wp-caption-text">I think that went well.</p></div>
<p>So to iRobot customer service, I say good job. Excellent job, in fact. At best I was expecting them to have me ship it in for repair or perhaps ship me a bare-bones replacement and have me ship the dead one back minus the accessories. Shipping me an upgraded unit is certainly going above and beyond. I just hope the new robot lasts longer than the first one.</p>
<p>And dirt detection is an awesome feature. I don't know how it works or how reliable it really is, but I love it.</p>
<p><strong>Second Issue: Mandatory Android Update, Rogers</strong></p>
<p>Now this is a totally different beast; It requires some back story. A bug was discovered in Android 1.5 back in September that prevented 911 calls under certain circumstances. Google fixed it, T-Mobile issued an OTA patch with the fix in October and they moved on. Rogers, with the exact same phones running pretty much the exact same software, ignored the problem until last week. When they finally realized the problem existed on their phones, they issued a quick software update for the Magic that both fixed the problem and included the promised Sense UI update. OK, fine. A little late perhaps, but at least they got an update out and including a promised major software update at the same time. The problem came in when they decided to make the update mandatory... and cut off the data for everyone that didn't upgrade. Because that makes sense.</p>
<p>Now the problem is that I don't want to run their upgrade. I'm perfectly happy with <a href="http://ranadok.com/wp/2009/android-update/">the software I have on my phone</a>. In fact, their upgrade would actually downgrade my phone from 1.6 to 1.5, losing all sorts of neat features that I like (new market, faster camera, new map/nav, Google Goggles, and so on and so on). In return I would get... a non-standard replacement for the default UI (which I happen to like). That would be like Shaw cutting off your cable internet because they wanted you to apply an update to Windows XP after you moved on to Windows 7, and they refuse to reconnect you until you can prove you've done it.Time to talk to Rogers.</p>
<p>So call number one. I give them a ring, sit on hold for about fifteen minutes, talk to some fellow named Henry or George or Alfie or something like that, and explain the situation. I've already upgraded to 3rd party software, the 911 problem is already fixed on my phone, I don't want to run their update, and so on and so forth. Hank hems and haws, checks with 'level 2' and finally tells me that I'll be fine, as I am running a newer version than the one that has the problem. No guarantees, but my data should not be cut off when the deadline rolls around. That is exactly what I wanted to hear, so I thank him and go about my business.</p>
<div id="attachment_341" class="wp-caption alignright" style="width: 171px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/01/HTC-Magic-Sense-UI.jpg"><img class="size-full wp-image-341 " title="HTC-Magic-Sense-UI" src="http://ranadok.com/wp/wp-content/uploads/2010/01/HTC-Magic-Sense-UI.jpg" alt="" width="161" height="304" /></a><p class="wp-caption-text">Kind of pretty, but so very much not worth it.</p></div>
<p>Then Sunday rolls around and I have no data. Fun times. I did read in several places that they may be cutting off data to everybody - even those that did the official update - for a minimum of 24 hours. Fine, I'll let it wait. Two days later, no data. Of course, data is 90% of what I use my phone for, the actual 'phone' functionality is secondary to the ability to search the internet and check my email. Time for call #2. This time I'm on hold for well over an hour. When I finally get through (to Craig or Brian or Morty or something), the conversation pretty much consisted of me saying I don't want to run their downgrade for something that doesn't effect me and him saying that there was nothing he could do about it, so just install the update and deal with it. He tried to make it sound like he was breaking some giant rule by suggesting I could re-root my phone after the data was updated, but it was clearly just an attempt to get me to go away.</p>
<p>So... I 'updated' my phone. I took the long route in order to make sure it didn't give the perfected SPL (much harder to root later), and installed Rogers's terrible ROM. Long story short... it is terrible. Slow, buggy, non-standard. Cool features from 1.6 don't work and nothing it adds are worth it. HTC's Sense UI is alright, though very dark (and slow, laggy, and so forth). I may tough it out until the 2.1 update hits just to give it a chance (and to make sure Rogers doesn't cut me off again), but I definitely prefer the stock UI.</p>
<p>So all in all from Rogers? A terrible experience with idiotic customer service practices combined with incredibly unhelpful phone support. The end result is me having a slower phone with less features than I had a month ago, all to 'fix' a problem I didn't have.</p>
<p>They should have just sent me a robot.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/a-tale-of-two-tech-supports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doki Doki Cross Stitch</title>
		<link>http://ranadok.com/wp/2010/doki-doki-cross-stitch/</link>
		<comments>http://ranadok.com/wp/2010/doki-doki-cross-stitch/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 04:21:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CrossStitch]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=304</guid>
		<description><![CDATA[December was crazy, but January is slowly getting better. I finally found some time to finish this post, which has been sitting half-completed for well over a month, so LUCKY YOU. Once I finished my first Zelda stitch, I went back to the series that I started with, Super Mario Brothers. The logical next game [...]]]></description>
			<content:encoded><![CDATA[<p>December was crazy, but January is slowly getting better. I finally found some time to finish this post, which has been sitting half-completed for well over a month, so LUCKY YOU.</p>
<p>Once I finished my <a href="http://ranadok.com/wp/2009/the-legend-of-cross-stitch/">first Zelda stitch</a>, I went back to the series that I started with, Super Mario Brothers. The logical next game to do was Super Mario Brothers 2, the bizarre non-Mario Mario game that was actually a modification of the Japanese Doki Doki Panic created when it was decided by Nintendo that the 'real' SMB2 was too hard for western gamers. Interestingly, SMB2 (the North American version) was the first one I ever played, and one of the few games on the NES that I actually played to completion. It's still a little weird, though.</p>
<div class="wp-caption aligncenter" style="width: 400px"><a href="http://ranadok.com/gallery/?level=picture&amp;id=46"><img class="     " title="Super Mario Brothers 2" src="http://www.ranadok.com/gallery/thumbs/lrg-46-100_1245.JPG" alt="" width="390" height="293" /></a><p class="wp-caption-text">Turnips? Seriously?</p></div>
<p><span id="more-304"></span></p>
<p>I really like the colors in this one, particularly the greens and reds (which yes, do make up 85% of the piece). Mario looks a little washed out, but he does in the actual game as well.</p>
<div id="attachment_322" class="wp-caption aligncenter" style="width: 180px"><a href="http://ranadok.com/wp/wp-content/uploads/2010/01/Mario2.bmp"><img class="size-full wp-image-322" title="Mario2" src="http://ranadok.com/wp/wp-content/uploads/2010/01/Mario2.bmp" alt="" width="170" height="127" /></a><p class="wp-caption-text">Yup, a turnip.</p></div>
<p>This was a fair bit easier to stitch than both the first Mario and the first Zelda, partially due to the size. It's also the first one that I did where all the elements are connected, so no counting of blank spaces was required, which removed a lot of the difficulty. It was a fast project, but I really like the results. It's possibly one of my favorites of all my video game projects. Plus, the lowest level of the ground reminds me of Dad's brand chocolate chip cookies, so it has that going for it. Here's <a href="http://ranadok.com/gallery/?level=album&amp;id=8">the gallery</a>, plus some highlights in all-new Can't-Be-Bothered-To-Line-Them-Up Vision!</p>
<div class="wp-caption alignnone" style="width: 250px"><a href="http://ranadok.com/gallery/?level=picture&amp;id=45"><img class="   " title="Door time!" src="http://www.ranadok.com/gallery/thumbs/lrg-45-100_1254.JPG" alt="" width="240" height="180" /></a><p class="wp-caption-text">So very red... but not a turnip. Radish, perhaps?</p></div>
<div class="wp-caption alignnone" style="width: 190px"><a href="http://ranadok.com/gallery/?level=picture&amp;id=26"><img class="   " title="Turnip Action Man" src="http://www.ranadok.com/gallery/thumbs/lrg-26-100_1259.JPG" alt="" width="180" height="240" /></a><p class="wp-caption-text">Turnip Action Man Strikes!</p></div>
<div class="wp-caption alignnone" style="width: 250px"><a href="http://ranadok.com/gallery/?level=picture&amp;id=60"><img class="   " title="Doomed" src="http://www.ranadok.com/gallery/thumbs/lrg-60-100_1251.JPG" alt="" width="240" height="180" /></a><p class="wp-caption-text">He is so doomed. Referring, of course, to that poor turnip.</p></div>
<div class="wp-caption alignnone" style="width: 250px"><a href="http://ranadok.com/gallery/?level=picture&amp;id=54"><img class="   " title="Innocent looking plant" src="http://www.ranadok.com/gallery/thumbs/lrg-54-100_1255.JPG" alt="" width="240" height="180" /></a><p class="wp-caption-text">There could be anything under there! Anything! It&#39;s probably just another turnip, but it could be ANYTHING!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2010/doki-doki-cross-stitch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My other little robo-buddy</title>
		<link>http://ranadok.com/wp/2009/my-other-little-robo-buddy/</link>
		<comments>http://ranadok.com/wp/2009/my-other-little-robo-buddy/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 05:43:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=261</guid>
		<description><![CDATA[I bought myself a Roomba the other day (well, in late October). A 405, which as far as I can tell is just the general (and bottom-of-the-line) 400 available from iRobot, but with an included remote. I'm still not totally sure why I bought it. It was on sale in my store for a decent [...]]]></description>
			<content:encoded><![CDATA[<p>I bought myself a Roomba the other day (well, in late October). A 405, which as far as I can tell is just the general (and bottom-of-the-line) 400 available from iRobot, but with an included remote.</p>
<div id="attachment_318" class="wp-caption aligncenter" style="width: 233px"><img class="size-full wp-image-318" title="roomba" src="http://ranadok.com/wp/wp-content/uploads/2009/12/roomba.jpg" alt="roomba" width="223" height="230" /><p class="wp-caption-text">Rise, my loyal robot minion! Rise, and vacuum your foes!</p></div>
<p style="text-align: left;">I'm still not totally sure why I bought it. It was on sale in my store for a decent price (just over $100), though it was still way more than I usually spend on a whim. Heck, I don't even buy $60 video games until they go on sale. Still, somebody brought one into the department to ask a few questions when I was working and it got stuck in my head. I did a bit of research on my phone on my lunch break, and decided after work to buy one for myself. It was a little odd, I have to admit. Definitely one of the largest impulse buys in a very long time.</p>
<p style="text-align: left;">So, how well does it work? Actually, I was quite surprised. It took me about fifteen minutes to 'Roomba-proof' my room by tucking away all the loose cables and making sure it couldn't get under things it shouldn't be under, but once I did that, it was pretty much flawless. I hit the button (the only button) and it scampers off, sucking up all sorts of crazy stuff. The pattern isn't quite random and it certainly ends up in some places more than others (especially in my very oddly-shaped room), but it gets everywhere eventually in it's cycle (about an hour or so, though I usually let it run when I'm at work so I'm not sure). It never gets stuck in a weird corner or under a desk, and it moves from linoleum to carpet like nobody's business. When it finishes, the floor looks great, and all I have to do is empty the little bin and plug it back in. Eventually I may get the charging dock so it can do that last part itself, but that may just be the first step towards the inevitable robot rebellion. Best to keep them dependent on us humans for the time being.</p>
<p style="text-align: left;">So far I have really been pleased with the purchase. The floor is looking a lot better and is certainly vacuumed more often now that I don't have to pull the crazy old upright out and fight with its crimped hose every time. I run the Roomba every two or three days, depending on how bad the floor looks, and it does a fairly good job. I keep the floor neater in general (no large items left around, no loose cables, etc) so that I can be sure that the Roomba will run on its own, so my room is neater even before it is vacuumed. The only consumable to worry about is the battery (which should hopefully last a long time before needing replacement) and the filters (which are a every couple of month thing, according to their recommendations), so the long term costs should be pretty good. It may not work as well as a dedicated vacuum (bigger stuff is occasionally missed and it certainly takes longer), but I am vacuuming more often than I was before (it's so easy...), so the floor is better. Plus, I have a ROBOT THAT CLEANS MY HOUSE. This is the future, people.</p>
<p style="text-align: left;">
<p>Oh, and my first little robo-buddy? My Android, duh.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2009/my-other-little-robo-buddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Braid is Merely Okay</title>
		<link>http://ranadok.com/wp/2009/braid-is-merely-okay/</link>
		<comments>http://ranadok.com/wp/2009/braid-is-merely-okay/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 02:20:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://ranadok.com/wp/?p=309</guid>
		<description><![CDATA[Braid is one of those games that seems to be talked about in online gaming circles with near unanimous approval, often approaching a reverence. Even after it has been out for a while, and the usual launch hysteria has cooled, everyone seems to love it; there are few people that think it merely okay, and [...]]]></description>
			<content:encoded><![CDATA[<p>Braid is one of those games that seems to be talked about in online gaming circles with near unanimous approval, often approaching a reverence. Even after it has been out for a while, and the usual launch hysteria has cooled, everyone seems to love it; there are few people that think it merely okay, and even fewer that think it bad. There are not many games that get this sort of reaction these days. Bioshock is one, as are Portal and Mario Galaxy. However, it seems like whenever I play one of these games, I can't help but find it merely alright. I can see what everybody loved, but it just doesn't click for me. I loved Bioshock's atmosphere, but the controls and weapons felt oddly detached from my actual movement. Mario Galaxy had some great levels and was a lot of fun, but the overall design was too limiting, and the low default health discouraged the exploration and experimentation that I loved in the N64 iteration. Portal was just incredible and anyone that says otherwise has no soul.</p>
<p>So why is it that I keep finding these universally acclaimed games to be such a disappointment? Is it because I usually play them after the hype has been bubbling away for a while in my mind and the real thing can't come close to what I expect, as with Bioshock? Is it perhaps because I can't help but compare and find them wanting next to other games from my youth that have the advantage of being looked back at through rose colored glasses, as with Mario Galaxy? Or is it because the game just isn't my cup of tea?</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-311" title="braid_title" src="http://ranadok.com/wp/wp-content/uploads/2009/11/braid_title-1024x576.jpg" alt="braid_title" width="491" height="277" /></p>
<p>For Braid, I think it was a bit of all three. I'd been hearing for quite some time how great it is, how deep it is, and how earthshatteringly original and mind-bending it is, and while it was good, I don't think it was significantly better than the dozens of other games that I have played and enjoyed over the years. Braid is also quite weak on the platforming side of things, especially compared to the gold standard Mario games. The jumps aren't high enough, the timing doesn't feel right, and the whole thing seems a bit like a flash game in the way it controls, not nearly as solid as a platformer needs. The puzzles (which are much more important to Braid than the platforming) were, for the most part, fairly inventive and used the time twisting gameplay variants quite well. Some of the solutions were a little too obscure, but it never really felt cheap once you figured them out. The rewinding aspect seemed ripped straight from The Sands of Time, but the other level gimmicks were new and fun to play around with.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-310" title="braid1" src="http://ranadok.com/wp/wp-content/uploads/2009/11/braid1-1024x576.jpg" alt="braid1" width="491" height="277" /></p>
<p>By far, the biggest problem that I had with Braid, and the reason I think I didn't enjoy it as much as I expected, was the story and narration. The story, like the gameplay itself, played around with time, putting the beginning at the end and letting you figure out how it started once you finished. This could have been a neat concept if executed correctly, but I found that Braid overplayed it, like it was the game's giant gift to originality. The written narration sprinkled throughout also drip with this sense of trying to be 'deep and adult' like a poorly written film noir detective narration;  Max Payne without the wink and the nudge that makes it bearable.  It gets particularly bad during the epilogue, where the text seems to hint at and refer to things that have little significance to the game itself, but seemed bolted on after the fact to make the game 'mature'. The fact that there is almost no connection between the dark and somber themes of the story and the bright and colorful tone of the actual game may have been intentional, but I think it was a mistake.</p>
<p>Now, I don't feel that Braid is a bad game by any stretch.  I had fun playing it and don't at all think it a waste of the time or money I put into it. I also absolutely loved the music and the visual style. It just doesn't seem to have that extra something that makes it a great game, even though it certainly thinks it does.</p>
]]></content:encoded>
			<wfw:commentRss>http://ranadok.com/wp/2009/braid-is-merely-okay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

