<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>AJH-1138</title>
	<atom:link href="http://ajh1138.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajh1138.wordpress.com</link>
	<description>MMOs, Music, Technology and Politics.  And other stuff.</description>
	<lastBuildDate>Sat, 03 Oct 2009 23:55:51 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ajh1138.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/c44209fbcba786db31007a8e0ef1450e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>AJH-1138</title>
		<link>http://ajh1138.wordpress.com</link>
	</image>
			<item>
		<title>Cocoa/Objective C development tips for .Net Folks: Part I</title>
		<link>http://ajh1138.wordpress.com/2009/10/01/cocoaobjective-c-development-tips-for-net-folks-part-i/</link>
		<comments>http://ajh1138.wordpress.com/2009/10/01/cocoaobjective-c-development-tips-for-net-folks-part-i/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 03:41:07 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=218</guid>
		<description><![CDATA[No, this isn&#8217;t about using .Net to make iPhone apps!  It&#8217;s just a set of observations that might make it easier for people like me who currently use .Net (specifically, ASP.Net) at work, but want to start fiddling around with some Objective C, Cocoa, etc.
Keep in mind that this is from the perspective of someone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=218&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>No, this isn&#8217;t about using .Net to make iPhone apps!  It&#8217;s just a set of observations that might make it easier for people like me who currently use .Net (specifically, ASP.Net) at work, but want to start fiddling around with some Objective C, Cocoa, etc.</p>
<p>Keep in mind that this is from the perspective of someone who got into web development without traveling down the formal education route (when some of my buddies were learning C, COBOL and PASCAL in CompSci 101, I was sucking sand through a gasmask, patrolling some godforsaken ammo dump or airfield in the middle of nowhere).  I have no pure C language knowledge or insight, so all of this stuff is new to me.  I know many web developers in the same situation, so maybe this will help some people make the connections between Obj C and the types of languages they&#8217;re used to.</p>
<p>- &#8220;Actions&#8221; are event handlers.<br />
- &#8220;Outlets&#8221; are properties that can be bound to your user interface widgets.  They are objects of the same type as the given widget. So if you have a RoundedButton on your UI, you&#8217;ll probably have a RoundedButton in your .h/.m code if you want it to actually do something.</p>
<p>From what I can tell, you don&#8217;t need to name the specific buttons in the UI part&#8230;you associate the button with its corresponding outlet via a drag-and-drop in the UI editor (&#8220;Interface Builder&#8221;).  I&#8217;m pretty sure you can do it manually/dynamically via code, too.  In the .Net world, you&#8217;d set the name of the button in the UI editor or in your HTML code, and Visual Studio would automatically make the corresponding code additions.  I haven&#8217;t seen that ability in XCode/Interface Builder, but I&#8217;m totally new to this so don&#8217;t take it to mean that it doesn&#8217;t happen.</p>
<p>You can think of the .xib file (known as a &#8220;nib&#8221; file by Cocoa vets to honor the former file extension) as needing a code-behind page.  The nib is your UI, and the .h and .m files need to be told &#8220;Hey, I have these do-dads on the UI.&#8221;  After all, if you dig through the code that ASP.Net automatically generates, you&#8217;ll find the same kind of definitions for each UI item in the code-behinds.  Same-same.  Don&#8217;t let the EXTREMELY WEIRD BRACKET-HEAVY SYNTAX scare you.</p>
<p>Speaking of which, here&#8217;s a brief bit of learnin&#8217; about the syntax.  Let&#8217;s take apart this function&#8230;</p>
<p>-(IBAction) openThing: (id) sender<br />
{<br />
// code that does stuff<br />
}</p>
<p>The hyphen is there on purpose.  (Don&#8217;t ask me why.)  <strong>(IBAction)</strong> is the return type, <strong>openThing</strong> is the name of the function.  <strong>(id)</strong> is the type of the argument and <strong>sender</strong> is the argument itself.  To call a function, use brackets like this:<br />
[myObject doSomething:5];<br />
<strong>myObject</strong> being the object, <strong>doSomething</strong> is the function being called, and <strong>5</strong> is the argument.</p>
<p>By the way, the &#8220;id&#8221; type in Obj C corresponds to Object in our world.  It could be anything.  You&#8217;ll need to cast it to whatever type actually sent the event if you want to use it.</p>
<p>If you ask me, the brackets clutter up things, and dot notation isn&#8217;t supported enough in Objective C.  They added it to 2.0, but I think it could be used more than it is.  You still need to use brackets for functions if I&#8217;m not mistaken.  Of course, you can&#8217;t just change the entire syntax of a language without peeving your developer base!</p>
<p>On a side note, I&#8217;ve found XCode to be a sweet IDE to work in.  At first I found it a little annoying to have to switch between two completely separate programs to do coding vs. UI work, but then I realized some benefits to it.  Unlike Visual Studio, you can open up just the stuff you want to work on.  VS gets more bloated and resource-hoggy with every iteration, and it would be nice if you could completely rip out the Design mode when you&#8217;re working on ASP stuff.  You know it&#8217;s lurking in memory somewhere, ready to reformat your clean, hand-written tags the moment that you accidentally summon it.</p>
<p>Another advantage to having two separate programs is that it reinforces the separation of concerns between code and UI.  This premise lies at the very heart of how iPhone programming works &#8211; it uses the Model-View-Controller pattern!  I have used this pattern extensively, and although I&#8217;m not a design patterns guy, I have to say that it makes for fairly clean distinctions between the various pieces in an app.  If you haven&#8217;t used it yet and you&#8217;re an ASP.Net developer, you&#8217;re in luck.  ASP.Net has <a href="http://www.asp.net/mvc/">an official MVC implementation</a>!  Grab it, build some stuff with it.  <em>Understand it. </em> It&#8217;ll help you see how things work in the iPhone (&#8220;Cocoa Touch&#8221;) world.</p>
<p>The books I&#8217;m reading on the subject are <a href="http://www.amazon.com/Beginning-iPhone-Development-Exploring-SDK/dp/1430224592/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1254368199&amp;sr=8-1">Beginning iPhone 3 Development</a> by Dave Mark and Jeff LaMarche, and <a href="http://www.amazon.com/Programming-Objective-C-2-0-Stephen-Kochan/dp/0321566157/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1254368242&amp;sr=1-1">Programming in Objective C 2.0</a> (2nd Ed.) by Stephen G. Kochan.  I&#8217;ve found both of them to be very, very good books.  I will say that getting about halfway through the Objective C book <em>first</em> will make your life a lot easier.  I&#8217;m currently switching back and forth between them.</p>
<p>I&#8217;ll be posting more stuff as I wrap my head around this.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=218&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/10/01/cocoaobjective-c-development-tips-for-net-folks-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>Shoot _with_ your family, not at them.</title>
		<link>http://ajh1138.wordpress.com/2009/09/29/shoot-_with_-your-family-not-at-them/</link>
		<comments>http://ajh1138.wordpress.com/2009/09/29/shoot-_with_-your-family-not-at-them/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 03:47:21 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Airsoft]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=213</guid>
		<description><![CDATA[I&#8217;ve been itching to teach my sons about my favorite sport &#8211; shooting &#8211; since before they were born.  (And if I had any daughters, you can be darn sure they&#8217;d be trained in the ways of firearms as well.)  They&#8217;re 8 and 10 years old now, and I&#8217;m not quite comfortable with the idea [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=213&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been itching to teach my sons about my favorite sport &#8211; shooting &#8211; since before they were born.  (And if I had any daughters, you can be darn sure they&#8217;d be trained in the ways of firearms as well.)  They&#8217;re 8 and 10 years old now, and I&#8217;m not quite comfortable with the idea of taking them to a real shooting range to fire real guns just yet.</p>
<p>My dad bought me a .22 bolt-action rifle when I was 7 (a Sears-branded Savage if I remember correctly), and he took me to a small range outside of Medicine Lodge, KS to teach me which end the bullet came out of.  From what I remember, we didn&#8217;t cover sight picture, breath control, maintenance, or any other aspects of shooting besides basic bolt-action operation, how to load the 6-shot magazine, and most important of all: SAFETY.</p>
<p>I was naturally inclined to be cautious around, and interested in, guns.  So my dad was able to take me to the range at an early age.  My boys, however, are going to need a bit more muzzle discipline and training in range safety, etiquette and protocol before they&#8217;re ready for real shooting.</p>
<p>I am a huge gun safety freak.  My dad is a hunter safety instructor, and has always reinforced the proper ways of handling firearms.  I hope my boys will have that same sense of reverence about guns &#8211; so that even if they don&#8217;t take a shine to the sport they still know how to handle a gun safely and effectively if they have to.  To that end, we bought four airsoft guns a few weeks ago, one for each member of the family.</p>
<p>My wife and the boys got <a href="http://www.pyramydair.com/p/crosman-stinger-p9-airsoft-gun.shtml">Crosman p9 pistols</a>, which are worthy copies of the Walther P99.   They&#8217;re very accurate, which is important for instilling confidence in new shooters and teaching proper sight picture.  I told the boys that the front fight is like a mouse pointer that you put right under the target, and just make sure it&#8217;s between the rear sights.  It seems that my advice worked.  They&#8217;re becoming very good shots.  My wife is a natural dead shot, and while she doesn&#8217;t spend as much time in our makeshift range she definitely tears it up when she&#8217;s there.</p>
<p>The P9 comes with a really nice holster, too.  Bonus!</p>
<p>I got a <a href="http://www.pyramydair.com/p/crosman-stinger-r34-airsoft-gun.shtml">Crosman R34</a>, which is an eerily accurate copy of the short, collapsible-stock version of the venerable M-16 assault rifle.  I cannot say enough good things about the R34.  It&#8217;s just like the guns I carried in the Air Force when I was a Security Specialist.  I carried the standard, regular size old-school M-16A just about every day for the duration of my 4 years in the service, and when I hold that short version I find myself absently fiddling with the foregrip retaining ring or tugging on the magazine to make sure it&#8217;s seated, just like the old days.  In the Air Force this shorty M-16 is known as a GAU (also referred to as a &#8220;Commando&#8221; or XM-177).</p>
<p>The R34 is a single-shot, spring operated airsoft rifle that cocks uses the charging handle, just like the real thing.  The safety has 3 positions and is a tad flimsy, but for $39 USD I cannot complain, especially considering how great the rest of the gun is.  That retaining ring I mentioned actually pulls back to release the foregrips.  The spring tension and feel of the magazine ejector button is spot-on.  When you cock it, the spring makes a tonnnnngggg sound that reminds me of a real M-16 when it fires.  The foregrips have Picatinny rails, which makes for easy mounting of a variety of accessories, and it even comes with an adjustable combat-style sight that you can mount on the top rail.</p>
<p>OK, enough gushing about the R34.  It shoots high and to the right, and I&#8217;m still trying to fiddle with the sights.</p>
<p>I set up a makeshift range in our garage that puts the targets at about 5 or 6 meters.  We bought a Crosman electronic target and it provides good feedback for adjusting fire.  I don&#8217;t want to seem like a Crosman shill here&#8230;that&#8217;s pretty much all they sold at the sporting goods store we went to, and frankly I&#8217;ve always been impressed with the quality of their stuff.</p>
<p>I also set up some fun targets to shoot.  A small metal canister (I think it was used for developing film) provides a pleasant TING! when you shoot it.  I hung up some old, scratched up data CDs on the target stand with some duct tape.  They&#8217;re great to blast apart.  If you spraypaint them black, they also provide good feedback kinda like metal silhouette targets.</p>
<p>While it&#8217;s a fun hobby, the boys know that it&#8217;s not playtime.  The first day we were shooting, my 10 year old shot me in the thumb as I was adjusting the electronic target.  There&#8217;s a reason Crosman calls their guns &#8220;Stingers&#8221; &#8211; that sumbitch hurt!  After the requisite cursing (not directed *at* him, mind you), I asked him &#8220;What if we were at a real range, and that was a real gun?&#8221;  He was already mortified, and that question really got to him.  I&#8217;m glad it happened.  It was well worth getting a (large) welt on my thumb for a couple of days.</p>
<p>You see, I had already breifed the boys on range safety, what you&#8217;re supposed to do when somebody goes downrange, etc.  But that incident drove the point home.  It&#8217;ll stick.  I think within a couple of years, my older boy will be ready to fire on a real range and the younger boy soon after.</p>
<p>This new hobby has been a real treat.  The guns are cheap (well&#8230;you can actually sink a LOT of money into the mid-to-high-end models), the ammo&#8217;s cheap, I get to hang out with my kids, and I get to go shooting whenever I want!  And they&#8217;re learning safe habits and vital knowledge that will help them when they&#8217;re older.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=213&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/09/29/shoot-_with_-your-family-not-at-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup your iPhone data.  Right now.</title>
		<link>http://ajh1138.wordpress.com/2009/09/27/backup-your-iphone-data-right-now/</link>
		<comments>http://ajh1138.wordpress.com/2009/09/27/backup-your-iphone-data-right-now/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 19:44:40 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=211</guid>
		<description><![CDATA[Fortunately I didn&#8217;t have much on my iPhone.  What I did have was completely lost today.  It started with a  failed iPhone update (3.0 to 3.1).  My phone got bricked, and I frantically scoured the net for solutions to the problem.
It seems a lot of users on both Mac and Windows get this &#8220;1604&#8243; error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=211&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Fortunately I didn&#8217;t have much on my iPhone.  What I did have was completely lost today.  It started with a  failed iPhone update (3.0 to 3.1).  My phone got bricked, and I frantically scoured the net for solutions to the problem.</p>
<p>It seems a lot of users on both Mac and Windows get this &#8220;1604&#8243; error when trying to perform an update on their iPhone/iPod Touch.  Honestly, I expect Apple stuff to work a lot more smoothly.  My wife and I *always* have trouble whenever there&#8217;s an OS update to our phones.  That&#8217;s why I had waited so long before finally grabbing 3.1.</p>
<p>I uninstalled and reinstalled iTunes about 5 times I think, as was suggested by several sites on teh intartubes, and even Apple&#8217;s support site.  Eventually, I had to boot my PC into Mac mode to get it to work.  (Yes, it&#8217;s a freakin&#8217; Hackintosh.  I have it just for situations like this, and for testing web sites.)</p>
<p>I had a mistaken assumption that when iTunes synchronizes the phone will use the data on the computer instead of clobbering the computer&#8217;s data with whatever&#8217;s on the iPhone.  It turns out that you can restore your iPhone from an earlier backup just by right-clicking on it in iTunes&#8230;but you need to have data to restore from.  Over the course of several re-installs, I found out where my backup data was (on XP it&#8217;s in c:\documents and settings\yourusername\application data\apple computer\MobileSync\Backup\{big long string of characters}) and I moved my most recent data onto my desktop for safekeeping.  So when iTunes started up again, it saw that there was no recent folder in there and created a new one.  Later on I was trying to figure out how to restore my old data, and I move my folder back into the Backups folder and restared iTunes.  Then I synced data with the phone&#8230;then I cried.  Well, I didn&#8217;t actually cry, but I was kicking myself for moving the actual folder in there instead of a copy.  It got clobbered with blankness.</p>
<p>SO&#8230;go backup your iPhone data right now before you do any updates, etc.  Go to the path I mentioned above and make a COPY of your backup folders and put them somewhere safe (backup your backups).  Learn how to restore your iPhone data from backup.  Then, write Apple a letter telling them to make updates a little smoother.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=211&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/09/27/backup-your-iphone-data-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>Hauler v.005, and the Glory of callLater()</title>
		<link>http://ajh1138.wordpress.com/2009/08/17/hauler-v-005-and-the-glory-of-calllater/</link>
		<comments>http://ajh1138.wordpress.com/2009/08/17/hauler-v-005-and-the-glory-of-calllater/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 04:42:28 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=199</guid>
		<description><![CDATA[Here&#8217;s the latest iteration of Hauler. I worked on it all frickin&#8217; weekend.
New Stuff

Overhauled combat system.  Still needs lots of work, but it&#8217;s a lot more fun than it was.
Models for several ships (including two that you won&#8217;t see yet!)
Explosions!
Character avatars for the pirates.  Nothing for the player to choose yet, however.
One-letter-at-a-time text with nifty [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=199&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><a href="http://sarcasmic.net/ajh1138/Hauler_005.swf" target="_blank">Here&#8217;s the latest iteration of Hauler.</a></strong> I worked on it all frickin&#8217; weekend.</p>
<p><strong>New Stuff</strong></p>
<ul>
<li>Overhauled combat system.  Still needs lots of work, but it&#8217;s a lot more fun than it was.</li>
<li>Models for several ships (including two that you won&#8217;t see yet!)</li>
<li>Explosions!</li>
<li>Character avatars for the pirates.  Nothing for the player to choose yet, however.</li>
<li>One-letter-at-a-time text with nifty sound.</li>
</ul>
<p>The combat screen now has two modes &#8211; an &#8220;action&#8221; mode where you see the ships, lasers, explosions, etc. and then &#8220;dialog&#8221; mode, where it shows the pirate&#8217;s avatar a bit larger and they say stuff.  I got the ships and some temporary explosions, but no lasers yet.  I&#8217;m looking at some open-source Flash building tools to do the animations for lasers and explosions.</p>
<p>I used Second Life to build the ship models and character avatars.  As I&#8217;ve said before, I can&#8217;t draw, but I can bodge up models in SL pretty quick.  I just took some snapshots of the models/avatars and applied a Mosaic filter to get them all pixely.  Turned out pretty nice if I do say so myself.</p>
<p><strong>Ship Models</strong></p>
<div id="attachment_200" class="wp-caption aligncenter" style="width: 138px"><a href="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_1281.png"><img class="size-full wp-image-200" title="FauxFalcon_Attacking_128" src="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_1281.png?w=128&#038;h=120" alt="Faux Millenium Falcon" width="128" height="120" /></a><p class="wp-caption-text">Faux Millenium Falcon</p></div>
<div id="attachment_201" class="wp-caption aligncenter" style="width: 138px"><a href="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_1281.png"><img class="size-full wp-image-201" title="FauxTrek_Attacking_128" src="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_1281.png?w=128&#038;h=128" alt="Inspired by various Star Trek ships" width="128" height="128" /></a><p class="wp-caption-text">Inspired by various Star Trek ships</p></div>
<div id="attachment_202" class="wp-caption aligncenter" style="width: 138px"><a href="http://ajh1138.files.wordpress.com/2009/08/noobshuttle_attacking.png"><img class="size-full wp-image-202" title="NoobShuttle_Attacking" src="http://ajh1138.files.wordpress.com/2009/08/noobshuttle_attacking.png?w=128&#038;h=95" alt="NOO-B Class starter shuttle" width="128" height="95" /></a><p class="wp-caption-text">NOO-B Class starter shuttle</p></div>
<div id="attachment_203" class="wp-caption aligncenter" style="width: 206px"><a href="http://ajh1138.files.wordpress.com/2009/08/juggernaut_attacking_196.png"><img class="size-full wp-image-203" title="Juggernaut_Attacking_196" src="http://ajh1138.files.wordpress.com/2009/08/juggernaut_attacking_196.png?w=196&#038;h=133" alt="Juggernaut - huge and bristling with guns!" width="196" height="133" /></a><p class="wp-caption-text">Juggernaut - huge and bristling with guns!</p></div>
<div id="attachment_204" class="wp-caption aligncenter" style="width: 310px"><a href="http://ajh1138.files.wordpress.com/2009/08/cargoship_defending.png"><img class="size-medium wp-image-204" title="CargoShip_Defending" src="http://ajh1138.files.wordpress.com/2009/08/cargoship_defending.png?w=300&#038;h=228" alt="A large, sturdy cargo ship" width="300" height="228" /></a><p class="wp-caption-text">A large, sturdy cargo ship</p></div>
<p>The large cargo ship and Juggernaut are not yet seen in the game.  One of my next steps is to add the ability for the player to purchase new ships.  I also need to develop a system that pits you against pirate ships of similar firepower/size.</p>
<p><strong>Technical Notes</strong></p>
<p>I was having a dickens of a time trying to debug a sequence wherein the player loses a battle.  At the end of the fight, the pirate talks some smack, then it shows the player (eventually I hope to have a dejected-looking expression on the avatars)  and explains the consequences of their defeat.  During that change from pirate dialog to player dialog, it kept locking up.</p>
<p>I have a new rule when developing in Flex, and it serves me well:  Whenever you spend more than 10 minutes trying to debug a weird problem in Flex, it&#8217;s probably a creation timing issue.  Turns out that&#8217;s exactly what it was.  I was wiping out the character component&#8217;s text box before printing new dialog, and since the component wasn&#8217;t finished building itself on the screen yet it freaked out.  I solved it by wrapping the function call with a callLater( ) and bam&#8230;works great.</p>
<p>In case you&#8217;re wondering, <a href="http://livedocs.adobe.com/flex/3/langref/mx/core/UIComponent.html#callLater()" target="_blank">callLater(function_name, [array of arguments])</a> is a great little function that makes Flash wait until all of the declared components have been placed on the stage, then it calls the function you put in as an argument.  It&#8217;s like telling Flash &#8220;Hey, do what you need to do to get yourself ready.  When you&#8217;re done, do this thing.&#8221;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=199&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/08/17/hauler-v-005-and-the-glory-of-calllater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_1281.png" medium="image">
			<media:title type="html">FauxFalcon_Attacking_128</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_1281.png" medium="image">
			<media:title type="html">FauxTrek_Attacking_128</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/noobshuttle_attacking.png" medium="image">
			<media:title type="html">NoobShuttle_Attacking</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/juggernaut_attacking_196.png" medium="image">
			<media:title type="html">Juggernaut_Attacking_196</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/cargoship_defending.png?w=300" medium="image">
			<media:title type="html">CargoShip_Defending</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex Quirks I Learned About Today</title>
		<link>http://ajh1138.wordpress.com/2009/08/15/flex-quirks-i-learned-about-today/</link>
		<comments>http://ajh1138.wordpress.com/2009/08/15/flex-quirks-i-learned-about-today/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 23:20:02 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Hauler]]></category>
		<category><![CDATA[why oh why]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/2009/08/15/flex-quirks-i-learned-about-today/</guid>
		<description><![CDATA[1) Class names in Flex &#8220;css&#8221; cannot have underscores.
2) backgroundSize is percentage-based, and is based on the size of the container, not the image.  Handy!  Inconsistent and weird, but handy.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=198&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1) Class names in Flex &#8220;css&#8221; cannot have underscores.<br />
2) backgroundSize is percentage-based, and is based on the size of the container, not the image.  Handy!  Inconsistent and weird, but handy.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=198&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/08/15/flex-quirks-i-learned-about-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>May you be blessed by the deity of your choosing, Mr. Dah.</title>
		<link>http://ajh1138.wordpress.com/2009/08/15/may-you-be-blessed-by-the-deity-of-your-choosing-mr-dah/</link>
		<comments>http://ajh1138.wordpress.com/2009/08/15/may-you-be-blessed-by-the-deity-of-your-choosing-mr-dah/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 07:11:07 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[development environment]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[Hauler]]></category>
		<category><![CDATA[must sleep now]]></category>
		<category><![CDATA[PITA]]></category>
		<category><![CDATA[tired]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/2009/08/15/may-you-be-blessed-by-the-deity-of-your-choosing-mr-dah/</guid>
		<description><![CDATA[Tonight was going to be the big night for Hauler.  I got a lot of visual content built and photographed in Second Life, and opened up Flex builder to finish up the game.  Unfortunately, I ended up spending more than two and a half hours trying to overcome this error dialog:
&#8220;Flex Builder cannot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=193&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Tonight was going to be the big night for Hauler.  I got a lot of visual content built and photographed in Second Life, and opened up Flex builder to finish up the game.  Unfortunately, I ended up spending more than two and a half hours trying to overcome this error dialog:</p>
<p>&#8220;Flex Builder cannot locate the required version of Flash Player. You might need to install Flash Player 9 or reinstall Flex Builder.&#8221;</p>
<p>I noticed that this happened after I installed IE 8 (I still had IE 6 since I never use IE at home).  So I guess Flex Builder lost the path to my debug version plugin when the old version of IE went away.</p>
<p>I tried uninstalling/reinstalling Flash a few times, and fiddled with the paths in Window&#8211;&gt;Preferences&#8211;&gt;Flex&#8211;&gt;Profiler&#8211;&gt;Player/Browser but this is NOT the place to do that!!!  The correct place to fix this problem was in Window&#8211;&gt;Preferences&#8211;&gt;Web Browser.  I found this tip in the <a href="http://bugs.adobe.com/jira/browse/FB-13474" target="_blank">Flex JIRA bug tracker</a> posted by &#8220;bahiminin dah&#8221; about a year ago.  Ya sure got me out of a hole, Mr. Dah.  I just checked off Internet Explorer as the browser to open, and the problem went away.  (I usually leave Firefox for browsing and IE solely for debugging my Flex junk.)</p>
<p>Here&#8217;s a little preview of the new content I&#8217;ll be tossing into Hauler this weekend:</p>
<p><a href="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_128.png"><img class="aligncenter size-full wp-image-192" title="FauxTrek_Attacking_128" src="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_128.png?w=128&#038;h=128" alt="FauxTrek_Attacking_128" width="128" height="128" /></a><a href="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_128.png"><img class="aligncenter size-full wp-image-194" title="FauxFalcon_Attacking_128" src="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_128.png?w=128&#038;h=120" alt="FauxFalcon_Attacking_128" width="128" height="120" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=193&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/08/15/may-you-be-blessed-by-the-deity-of-your-choosing-mr-dah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/fauxtrek_attacking_128.png" medium="image">
			<media:title type="html">FauxTrek_Attacking_128</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/fauxfalcon_attacking_128.png" medium="image">
			<media:title type="html">FauxFalcon_Attacking_128</media:title>
		</media:content>
	</item>
		<item>
		<title>Hauler v.004a &#8211; Combat system and swanky logo added</title>
		<link>http://ajh1138.wordpress.com/2009/08/05/hauler-v-004a-combat-system-and-swanky-logo-added/</link>
		<comments>http://ajh1138.wordpress.com/2009/08/05/hauler-v-004a-combat-system-and-swanky-logo-added/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:47:15 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Game Dev]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=182</guid>
		<description><![CDATA[Hauler v.004a is available for immediate play.  That&#8217;s right, it&#8217;s a fully playable game now!
I&#8217;ve added the combat system, which was a lot of fun to design.  There are two pirates that can attack your ship, and you choose to fight, flee or surrender during each turn.  The player is punished/rewarded with varying severity based [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=182&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sarcasmic.net/ajh1138/Hauler_004.html" target="_blank">Hauler v.004a</a> is available for immediate play.  That&#8217;s right, it&#8217;s a fully playable game now!</p>
<p>I&#8217;ve added the combat system, which was a lot of fun to design.  There are two pirates that can attack your ship, and you choose to fight, flee or surrender during each turn.  The player is punished/rewarded with varying severity based on their actions.  For example, if you surrender the pirate only takes 1/4 of your cash and a random cargo item.  If you attempt to flee, you could lose up to half of your credits and all of your cargo &#8211; or you could escape with no penalty.  If you fight and lose, you lose all of your cash and cargo, then your dad sends you 1000 credits to start over again.  If you win a fight, you get a good chunk of cash and your available cargo space is filled with a random trade item.</p>
<p><strong>With this version you&#8217;re attacked EVERY TIME you jump to another location.</strong> This is so that people can test out the combat system.  It&#8217;s not balanced yet, so both the player and pirate tend to miss shots a lot.  I also need to have a visual display that shows the player their remaining shield strength, firepower, etc.</p>
<p><img class="aligncenter size-medium wp-image-185" title="Hauler004_combat" src="http://ajh1138.files.wordpress.com/2009/08/hauler004_combat.png?w=300&#038;h=295" alt="Hauler004_combat" width="300" height="295" /></p>
<p>The big purple square is where the pirate&#8217;s image will go.  I&#8217;d like to have the pirate&#8217;s dialog look (and sound) like the dialog from 8-bit games (a&#8217;la MegaMan, Legend of Zelda, etc.) where the text comes out one character at a time and makes a little noise.</p>
<p>I need to spend a day going over the visual aspects of the game and do up the buttons, etc. all 8-bit style.</p>
<p>The game&#8217;s settings are entirely XML-based, including the pirates&#8217; scripted dialog during the combat parts.  I refactored the combat script/interaction method a couple of times while I was working on it, and actually wrote the XML before I started coding.  I usually try to get at least a basic data structure figured out before I build the application layer.</p>
<p>I have also bodged-up a swanky logo for the game.  It&#8217;s based on the classic <a href="http://en.wikipedia.org/wiki/Mudflap_girl" target="_blank">Mudflap Girl</a>, but with a sci-fi twist.  The chrome needs some help, but I&#8217;ve had this logo idea banging around in my head for a couple of weeks and just had to see it for realz.</p>
<p><img class="aligncenter size-full wp-image-183" title="HaulerLogo1" src="http://ajh1138.files.wordpress.com/2009/08/haulerlogo1.png?w=450&#038;h=400" alt="HaulerLogo1" width="450" height="400" /></p>
<p>The feel I&#8217;d like to get is a gritty, long-haul trucker culture and environment.  I&#8217;m no graphic designer, but I&#8217;ll do the best I can.  For this project I&#8217;m stretching my visual talents and it&#8217;s important that I do it myself.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=182&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/08/05/hauler-v-004a-combat-system-and-swanky-logo-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/hauler004_combat.png?w=300" medium="image">
			<media:title type="html">Hauler004_combat</media:title>
		</media:content>

		<media:content url="http://ajh1138.files.wordpress.com/2009/08/haulerlogo1.png" medium="image">
			<media:title type="html">HaulerLogo1</media:title>
		</media:content>
	</item>
		<item>
		<title>Samurai</title>
		<link>http://ajh1138.wordpress.com/2009/08/01/samurai/</link>
		<comments>http://ajh1138.wordpress.com/2009/08/01/samurai/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 05:35:38 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/?p=180</guid>
		<description><![CDATA[Hoo, boy.
Samurai by German pop band Dschinghis Khan.
It&#8217;s amazing what you can do with a potentially ethnically-offensive stereotypical &#8220;Japanese&#8221; black-keys-only riff  and a galloping octave synth  bassline.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=180&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hoo, boy.</p>
<p><a href="http://listen.grooveshark.com/#/song/Samurai/22812295">Samurai</a> by German pop band <a href="http://en.wikipedia.org/wiki/Dschinghis_Khan">Dschinghis Khan</a>.</p>
<p>It&#8217;s amazing what you can do with a potentially ethnically-offensive stereotypical &#8220;Japanese&#8221; black-keys-only riff  and a galloping octave synth  bassline.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=180&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/08/01/samurai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>Battlefield Heroes: The Uninstall</title>
		<link>http://ajh1138.wordpress.com/2009/07/29/battlefield-heroes-the-uninstall/</link>
		<comments>http://ajh1138.wordpress.com/2009/07/29/battlefield-heroes-the-uninstall/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 03:12:28 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aimbots]]></category>
		<category><![CDATA[battlefield]]></category>
		<category><![CDATA[fps]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/2009/07/29/battlefield-heroes-the-uninstall/</guid>
		<description><![CDATA[Sadly, I had to face the facts and uninstall BF Heroes the other night.  Call me old-fashioned, but I just can&#8217;t hang with the aimbot crowd.
I knew there had to be a reason why I was getting pwned so bad in virtually every FPS I tried!  I&#8217;m not the most coordinated guy in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=176&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sadly, I had to face the facts and uninstall BF Heroes the other night.  Call me old-fashioned, but I just can&#8217;t hang with the <a href="http://www.bfheroeshacksdownloads.com/index.php/tag/bfh-aimbot/">aimbot</a> crowd.</p>
<p>I knew there had to be a reason why I was getting pwned so bad in virtually every FPS I tried!  I&#8217;m not the most coordinated guy in the world, but it was pretty ridiculous how quick those guys were putting me out of commission.  I&#8217;d heard about aimbots, but I thought programs like PunkBuster had stopped that kind of stuff back in the CounterStrike days.  Guess I was wrong about that.</p>
<p>I have tons of other beefs with BFH, and I mentioned a few in my initial review.  Just a couple:<br />
- To get to the Options menu you have to exit the game.  So if you want to tweak your mouse sensitivity or keybindings, etc., you&#8217;re in for quite a wait while it restarts the game and finds a server for you.<br />
- No changing class mid-game.  This is a pain.</p>
<p>So that&#8217;s fine&#8230;let &#8216;em aimbot all they want.  Pretty soon we&#8217;ll have aimbots in real life anyway.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=176&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/07/29/battlefield-heroes-the-uninstall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
		<item>
		<title>Hauler .003</title>
		<link>http://ajh1138.wordpress.com/2009/07/28/hauler-004/</link>
		<comments>http://ajh1138.wordpress.com/2009/07/28/hauler-004/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 06:58:30 +0000</pubDate>
		<dc:creator>ajh1138</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Hauler]]></category>

		<guid isPermaLink="false">http://ajh1138.wordpress.com/2009/07/28/hauler-004/</guid>
		<description><![CDATA[Another alpha release, this time with a functioning fuel consumption/purchasing system.  Fuel capacity is now shown, and can be increased by purchasing external fuel tanks.  I have also implemented turns, which are decremented (from 100) every time you jump to another location.  I do not yet, however, stop the game when the turns reach zero.
One [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=173&subd=ajh1138&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sarcasmic.net/ajh1138/Hauler_003.html">Another alpha release</a>, this time with a functioning fuel consumption/purchasing system.  Fuel capacity is now shown, and can be increased by purchasing external fuel tanks.  I have also implemented turns, which are decremented (from 100) every time you jump to another location.  I do not yet, however, stop the game when the turns reach zero.</p>
<p>One major bug I have is that I&#8217;m recalculating prices for all of the items in the Trade and Shipyard views each time you switch to them.  I need to have those calculated only once per visit to a location.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajh1138.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajh1138.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajh1138.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajh1138.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajh1138.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajh1138.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajh1138.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajh1138.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajh1138.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajh1138.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajh1138.wordpress.com&blog=3796961&post=173&subd=ajh1138&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajh1138.wordpress.com/2009/07/28/hauler-004/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93879128cd25be9171b3243613bf5549?s=96&#38;d=wavatar&#38;r=R" medium="image">
			<media:title type="html">ajh1138</media:title>
		</media:content>
	</item>
	</channel>
</rss>