<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Evan Anger</title>
	<atom:link href="http://mightyanger.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mightyanger.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 04 Apr 2011 11:10:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mightyanger.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Evan Anger</title>
		<link>http://mightyanger.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mightyanger.wordpress.com/osd.xml" title="Evan Anger" />
	<atom:link rel='hub' href='http://mightyanger.wordpress.com/?pushpress=hub'/>
		<item>
		<title>WCF, Self-Hosted through IIS, RESTFul</title>
		<link>http://mightyanger.wordpress.com/2011/04/04/wcf-self-hosted-through-iis-restful/</link>
		<comments>http://mightyanger.wordpress.com/2011/04/04/wcf-self-hosted-through-iis-restful/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 01:54:42 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/?p=49</guid>
		<description><![CDATA[Looking into WCF for a couple projects I&#8217;ve involved with and so far its great. If you are one of those dev teams who need to configure your service for consummation across myriad of technologies. WCF is an extremely powerful technology. Being involved in a primarily microsoft shop though sometimes causes you to pick products [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=49&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Looking into WCF for a couple projects I&#8217;ve involved with and so far its great.  If you are one of those dev teams who need to configure your service for consummation across myriad of technologies.  WCF is an extremely powerful technology.  Being involved in a primarily microsoft shop though sometimes causes you to pick products through convenience oppose to them being the right tools.  I&#8217;m in that boat as of right now.  Do I need a way to deploy service oriented technologies? Yes.  Do I need to configure the same service in terms of its binding/address or can I pretty much just get by with using a HttpWebRequest and hosting through IIS.  Yes.  With that an aspect of what makes WCF so great is kind of out the door.  Additionally with its host of configurable facilities, its difficult to sift through all the tech to find out exactly what you need.</p>
<p>What I need is something hosted through IIS and is RESTFul for simplicity.</p>
<p>Three things you need.</p>
<ul>
<li>1. Any web application.</li>
<li>2. WebGetAttribute found in System.ServiceModel.Web.</li>
<ul>
<li>Used as follows<br />
<code>        [OperationContract]<br />
        [WebGet(UriTemplate="*")]<br />
        string CheckStatus();</code>
</li>
<li>So basically in the case where you simply access http://&#8230;/Service.svc, it would access CheckStatus()</li>
<li>Using the WebInvoke method you can access post requests as well.</li>
<li>UriTemplate is also very important as that allows you do define more descriptive routes or requests.</li>
<ul>
<li>Consider the following piece code.<code>[WebGet(UriTemplate="/User/{userName}")]<br />
        string GetUserInfo(string userName)</code></li>
<li>Now accessing the following resource http://&#8230;/Service.svc/User/Evan will route to GetUserInfo passing in &#8220;Evan&#8221; as userName</li>
</ul>
</ul>
<li>Now so assuming that you can just have httpWebBinding and its hosted through IIS you can skip the web.config changes access the markup in Service.svc and add the attribute Factory=&#8221;System.ServiceModel.Activation.WebServiceHostFactory&#8221; into node in there.  (Note .NET 3.5 intellisense doesn&#8217;t appear to acknowledge this attribute) </li>
<li>One other note is if you are adding this service into an MVC web application, you&#8217;ll might want to tell your app to ignore routes which access your service.svc.<code>        public static void RegisterRoutes(RouteCollection routes)<br />
        {<br />
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");<br />
            routes.IgnoreRoute("{resource}.svc/{*pathInfo}");<br />
</code> </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=49&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2011/04/04/wcf-self-hosted-through-iis-restful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>Voice Recognition Software Part 1</title>
		<link>http://mightyanger.wordpress.com/2010/05/26/voice-recognition-software-part-1/</link>
		<comments>http://mightyanger.wordpress.com/2010/05/26/voice-recognition-software-part-1/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:09:05 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Grammar]]></category>
		<category><![CDATA[SAPI5]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[Voice Recognition]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/?p=37</guid>
		<description><![CDATA[Over the weekend I started looking into voice recognition software and how it was currently implemented by Microsoft. Most of this inspiration was based on avoiding my current depthbuffer Avatar issue with my developing xna game (trying to prevent burnout). The rest of this inspiration is based on Jarvis in the new Iron Man movie. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=37&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I started looking into voice recognition software and how it was currently implemented by Microsoft.  Most of this inspiration was based on avoiding my current depthbuffer Avatar issue with my developing xna game (trying to prevent burnout).  The rest of this inspiration is based on Jarvis in the new Iron Man movie.  Curious to see how feasible it would be setup a system for recognizing and dispatching commands.  I also thought it would be a good way to get caught up with the WCF capabilities.</p>
<p>I started buying a $20 USB Logictech Microphone.  This would be in future useful for Skype purposes anyways.  Downloaded the recent Microsoft Speech SAPI5.  I sat on moving forward and learning whats in these assemblies and perusing code examples.  This was kind of a mistake.  I instead started from the service side in WCF, my idea was to expose the WCF as a web service thus allowing xml requests from several sources/clients.  I can have one particular client make a voice to xml request whereas another client can have a web interface to send an xml request to this service  This was a good idea in point however until I discovered the voice recognition and how the functionality worked I had to modify the request and make subtle design changes as well.</p>
<p>My idea for the WCF service was to be able to inspect an incoming request and verify it again against every single rule involved.  The rule most likely to be called would be returned and then subsequently invoked its execute command. The rules are very simple and basically just verify a certain type of phrase or semantics in the request and then dispatch the rule which would actually call a library to do something.  The libraries are the part which will be invoked by the rule and would the major groundwork.  Reason for this is, I intend these rules to do a whole lot of different things so I need the library to be simple to ensure scalability with ease.  I also need a central point of intelligence to control this verification of the rules.  So I went with a singleton object.</p>
<p>This how WCF is correctly listening&#8230;<br />
<code><br />
    [ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]<br />
    public class CommunicateAIVE : ICommunicateAIVE<br />
    {<br />
        public string GetData(string value)<br />
        {<br />
            ICommandEngine engine = CommandEngine.Instance;<br />
            CommandEngineRuleReturn result = engine.FindRequestType(value);<br />
            return result.Response;<br />
        }<br />
...<br />
</code></p>
<p>This is how I&#8217;m currently handling the Command Engine&#8230; I&#8217;ll probably should make it thread safe.<br />
<code><br />
    public class CommandEngine : ICommandEngine<br />
    {<br />
        static List ruleSet = new List();<br />
        static CommandEngine()<br />
        {</p>
<p>        }</p>
<p>        private static CommandEngine _instance;<br />
        public static ICommandEngine Instance<br />
        {<br />
            get<br />
            {<br />
                if (_instance == null)<br />
                {<br />
                    _instance = new CommandEngine();<br />
                    InitializeRuleSet();<br />
                    _instance.InitializeStateInformation();<br />
                    _instance.InitializeGrammar();<br />
                }</p>
<p>                return _instance;<br />
            }<br />
        }<br />
</code></p>
<p>InitializeRuleSet is where I actually load in all the rule based on loading a dll and invoking all the ctor&#8217;s via reflection.  With this approach I thought it would be cool to branch off and have these rules/library in their own solution and use them as a support library.</p>
<p><code><br />
  private static void InitializeRuleSet()<br />
        {</p>
<p>            Assembly assembly = Assembly.LoadFile(@"C:\dev\Service\ProjectAIVE\SupportLibraries\CommandEngineRulesLibrary.dll");<br />
            Type[] types = assembly.GetInterfacedTypes("ICommandEngineRule");</p>
<p>            object[] constructorParameters = { CommandEngine.Instance };<br />
            foreach (Type toConstructType in types)<br />
            {<br />
                //avoid abstract classes<br />
                if (!toConstructType.IsAbstract)<br />
                {<br />
                    ConstructorInfo[] ci = toConstructType.GetConstructors();<br />
                    //find default constructor<br />
                    foreach (ConstructorInfo c in ci)<br />
                    {<br />
                        if (c.GetParameters().Length == 1)<br />
                        {<br />
                            ruleSet.Add((ICommandEngineRule)c.Invoke(constructorParameters));<br />
                            break;<br />
                        }<br />
                    }<br />
                }<br />
            }<br />
        }</p>
<p></code></p>
<p>Also here&#8217;s a sample command rule which doesn&#8217;t use a library since the functionality just returns something in the response.</p>
<p><code><br />
    public class SayHelloRule : BaseCommandRule<br />
    {<br />
        public SayHelloRule(ICommandEngine commandEngine) : base(commandEngine) { }</p>
<p>        public override CommandEngineRuleReturn PerformActualResponseQuery(string request)<br />
        {<br />
            if (request.ToUpper().IndexOf("HELLO") != -1)<br />
            {<br />
                this.CommandEngineRuleReturn.Heuristic = 100;<br />
                this.CommandEngineRuleReturn.CommandEngineRuleReturnType = CommandEngineRuleReturnType.RequestSufficient;<br />
                this.CommandEngineRuleReturn.Response = string.Format("Hello {0}", this.CommandEngine.StateInfo["CommanderChief"]);<br />
            }<br />
            return base.PerformActualResponseQuery(request);<br />
        }<br />
        public override void ExecuteCommand(string request)<br />
        {<br />
            base.ExecuteCommand(request);<br />
        }<br />
    }<br />
</code></p>
<p>Based on every request these rules will be traversed and executed based on the following code.</p>
<p><code><br />
        public CommandEngineRuleReturn FindRequestType(string request)<br />
        {<br />
            foreach (ICommandEngineRule rule in ruleSet)<br />
            {<br />
                rule.GetResponseInfo(request);<br />
            }</p>
<p>            ruleSet.Sort();</p>
<p>            ICommandEngineRule bestRule = ruleSet.GetFirstElement();<br />
            ExecuteBestRuleCommand(bestRule, request);</p>
<p>            switch (bestRule.CommandEngineRuleReturn.CommandEngineRuleReturnType)<br />
            {<br />
                case CommandEngineRuleReturnType.RequestCausedError:<br />
                    break;<br />
                case CommandEngineRuleReturnType.RequestInsufficient:<br />
                    this.IncompleteRequest = string.Format("{0}!{1}", this.IncompleteRequest, request);<br />
                    break;<br />
                case CommandEngineRuleReturnType.RequestSufficient:<br />
                    CommandEngineMemoryStruct newMemory = new CommandEngineMemoryStruct();<br />
                    newMemory.Request = request;<br />
                    newMemory.Response = bestRule.CommandEngineRuleReturn.Response;<br />
                    this.Memory.Add(newMemory);<br />
                    break;<br />
            }<br />
</code></p>
<p>I realize now I haven&#8217;t yet talked about anything for voice recognition however the post is getting long.  But there is one other thing I thought I should mention, so I&#8217;m making these a multiple part series.  I&#8217;ll to the VR in the next part.  </p>
<p>So anyways, I&#8217;m working on these unit tests when I&#8217;m coming up with extension methods and creating new classes and it occurs to me that I might have a better way to verify these request/response from big picture or from the user point of view.  Say for instance you execute a dozen voice commands correctly, the application is working like a dream.  You then get the idea to add more functionality you do so and it works, all of a sudden certain commands are no longer dispatching correctly?  What happened? After scrambling clearly one of your command rules you added recently are picking up the request instead of the old one you intended.  Most of your unit tests are written to catch coverage within the class and not based on integration.  Also why not based the tests are real &#8220;production&#8221; data.  So I thought to myself, create a Feedback and a FeedbackRegression.  Feedback rule would check to see if the user politely said Thanks or Thank you to the WCF Voice Recognition (need a better name).  This would take the last request and the response which is now assume to be correct.  We would then log this into a data source.  The FeedbackRegression would said the logged request/response from the data source and run it through the Command Engine as if it came in from the client and validate that the response is correct.</p>
<p>Thought that was a cool automated integration test, additionally kept the scope I was currently at with regular unit tests.</p>
<p>Next Part creating Voice Client using Speech SAPI5&#8230;<br />
For info on WCF there are tons of information on it at Channel9.msdn.com.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=37&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2010/05/26/voice-recognition-software-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>Tecmo Bowl Throwback Review</title>
		<link>http://mightyanger.wordpress.com/2010/05/09/tecmo-bowl-throwback-review/</link>
		<comments>http://mightyanger.wordpress.com/2010/05/09/tecmo-bowl-throwback-review/#comments</comments>
		<pubDate>Sun, 09 May 2010 15:01:10 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/?p=31</guid>
		<description><![CDATA[Not as impressed as I thought I&#8217;d be with the latest to say the least. Two things which sum up my thoughts on the game. You will like this game if you haven&#8217;t played the original for a long time and want to feel nostalgic and be able to play a wider audience of players. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=31&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Not as impressed as I thought I&#8217;d be with the latest to say the least.</div>
<p></p>
<div id="_mcePaste">Two things which sum up my thoughts on the game.</div>
<p></p>
<div id="_mcePaste">You will like this game if you haven&#8217;t played the original for a long time and want to feel nostalgic and be able to play a wider audience of players.  (NES,SNES)</div>
<p></p>
<div id="_mcePaste">You will not fall in love with this game if you were looking/expecting for more than just a refresh in graphics.  I&#8217;m in this category as after hearing about multiplayer and such I thought I was to be expecting more.  Aside from that I thought it was still worth the 800pts to get.</div>
<p></p>
<div id="_mcePaste">The game is pretty true to the original aside from the updated graphics.  It was refreshing to see updated cut scenes as well.  Though this additional polish doesn&#8217;t avoid the same pitfalls of the original game to which the purist-minded might  appeal.  Based on this I&#8217;m going to just focus on what I was expecting to be fixed/added from the originals.  So don&#8217;t think I&#8217;m won of those &#8220;haters&#8221; saying the game is terrible as it clearly is not though I agree with some of the IGN ratings point wise.  The following pitfalls include the following bugs/lack of features.</div>
<p></p>
<div id="_mcePaste">1.  User controlled players are forced to make uncalculated dives to break up catches they have no chance of making. (original ported bug)</div>
<div id="_mcePaste">- I&#8217;m not sure how the game was designed/developed but if this was done as a purely ported process ie (this is how it was coded in this platform so this is how we&#8217;d have to code it exactly in this next platform, then solve the inaccuracies/differences), then I guess there is a defense.  However, if they went by trying to port based on actual behaviors in the game (most likely not the case) then I think this is inexcusable to port such a defect.  I was a hard-core player of this game as were my friends and I remember specifically part of the strategy of breaking up plays was to move away from the intended receiver during a pass in some cases.  You didn&#8217;t want to be put in a situation where your DB was forced to dive and come up short causing you to have to re-accelerate off the ground (unless you had Darrell Green, LT, etc&#8230; didn&#8217;t matter then).  Meanwhile the receiver has caught the ball in mid-stride.</div>
<p></p>
<div id="_mcePaste">2. Faster lineman can easily end non-shotgun pass plays and up-the-middle run plays.</div>
<div id="_mcePaste">- This one to me is just unavoidable, while playing the computer in the running season mode I was able to dominate in this way 10 plays in a row with what looks in comparison to other teams, an above average nose tackle.  This is done by pushing down-right (or toward the ball) on the control pad while pressing the dive button.  This can only be prevented in a user-to-user game by changing the playbook to have mostly shotgun plays.  If you&#8217;re playing with a crappy playbook and a user opponent is aware of this flaw, I can understand why players might be dropping off early.</div>
<p></p>
<div id="_mcePaste">Features which could have made improved albeit modified the experience</div>
<p></p>
<div id="_mcePaste">1.  Mid-play player changes.</div>
<div id="_mcePaste">- Many times while playing another user, you find yourself on the otherside of the field from action.  This takes time to catch up while your fellow AI teammates are being fooled running up and down diagonally trying to catch your seasoned opponent.  I would have implemented the feature to change to the player closest to the ball carrier, however not really changing the control to user-input until the user has initiated control.  This would get around the problem sometimes experienced in older maddens where its like &#8220;Darn it, I was still moving my previous player!&#8221;</div>
<p></p>
<div id="_mcePaste">2.  Intended receivers should be have more control</div>
<div id="_mcePaste">- I haven&#8217;t quite figured out when intended receivers will jump, though I know the ball must be somewhat in their line of the route.  Plus a factor between their receiving ability/agility.  Either way, there should always be some inaccuracy from poorer QBs which I think is a great feature, however most NFL receivers should be able to jump/move/adjust accordingly for the ball, allowing the user to do so by  initiating some control plus motion sounds like a relatively simple feature to implement.  I&#8217;ve observed  receivers continually do stupid things in this game.  This includes waiting for a ball out-of-bounds territory and also waiting for a ball in triple team coverage.  Clearly, this is just non-implemented AI, which for the most part works however, adding in the ability to control these players after the throw would make these plays more interesting.</div>
<p></p>
<div id="_mcePaste">3.  Defensive backs should have more control</div>
<div id="_mcePaste">- To make it fair to the defense and to not disturb the incredible balance created from the game, DBs would have to have the ability to jump as well.  I think this would make it more difficult for Marino/Elway QBs to establish short passing games since these throw so low to the ground so some modifications might have to be made to the QBs passing game or throw in more factors/weights to avoid pass blocks/interceptions.</div>
<p></p>
<div id="_mcePaste">Aside from these games my only other complaint is that some of the collision detection doesn&#8217;t seem to work as crisp as other tecmo bowl games.  I&#8217;m not sure based on the new rigged models they have running around, but I felt with playing for an hour the first day that I&#8217;ve avoided some tackles and missed some tackles.  This also could just be subtle difference you&#8217;ll get with 2D vs 3D.  Important plays on defense, I felt myself switching back to 2D to avoid this subtlety.  This might be something I just need to get used as it seems at least balanced on both offense/defense (neither side has an advantage).</div>
<p></p>
<div id="_mcePaste">Maybe my version of tecmo bowl I was working on has a life after all.   The door is open a little at least.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=31&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2010/05/09/tecmo-bowl-throwback-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>For focusing&#8230;.</title>
		<link>http://mightyanger.wordpress.com/2010/04/28/for-focusing/</link>
		<comments>http://mightyanger.wordpress.com/2010/04/28/for-focusing/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 15:02:20 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/?p=26</guid>
		<description><![CDATA[If you&#8217;re anything like me and have difficulties staying focused on tasks at hand.  I&#8217;ve been using this site to bleed out any white noise with well white noise. http://www.simplynoise.com/ I&#8217;ve only been sidetracked at this time to writing this post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=26&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re anything like me and have difficulties staying focused on tasks at hand.  I&#8217;ve been using this site to bleed out any white noise with well white noise.</p>
<p><a href="http://www.simplynoise.com/">http://www.simplynoise.com/</a></p>
<p>I&#8217;ve only been sidetracked at this time to writing this post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=26&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2010/04/28/for-focusing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>NUnit macros for VS2005</title>
		<link>http://mightyanger.wordpress.com/2008/06/23/nunit-macros-for-vs2005/</link>
		<comments>http://mightyanger.wordpress.com/2008/06/23/nunit-macros-for-vs2005/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 05:27:47 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Macros]]></category>
		<category><![CDATA[NUnit]]></category>
		<category><![CDATA[VS2005]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/2008/06/23/nunit-macros-for-vs2005/</guid>
		<description><![CDATA[I&#8217;ve been told the most current direction is to use the Unit Test framework, however I see no reason to convert or change my own methodologies since from what I&#8217;ve seen so far this new feature seemed a little buggy.&#160; I&#8217;ve noticed some minor glitches in the way it works with source control bindings and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=25&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been told the most current direction is to use the <a href="http://msdn.microsoft.com/en-us/library/ms243147(VS.80).aspx">Unit Test framework</a>, however I see no reason to convert or change my own methodologies since from what I&#8217;ve seen so far this new feature seemed a little buggy.&nbsp; I&#8217;ve noticed some minor glitches in the way it works with source control bindings and just in general the NUnit just seems a little more simpler to get running.&nbsp; I&#8217;ve sure Unit Test will get better and probably become the standard for TDD in time to come with VS.</p>
<p>In the meantime, I wrote a couple macros for VS2005 to help my testing workflow.&nbsp; I like TestDriven.Net as an add-in to the VS IDE, I just don&#8217;t like constant checks to check on what needs to be rebuilt.&nbsp; Generally, I know the dependencies myself and would like to go right into debugging oppose to these checks.&nbsp; So I created a macro to automatically attach and debug to a current &#8220;nunit.exe&#8221; process.</p>
<p>Here&#8217;s the code below, I think a nice little enhancement would be a listbox asking which one to debug (assuming you have multiple projects currently with NUnit guis up).</p>
<p>Afterwards export the file to where you put all your macros and then you can add them to your IDE.</p>
<div class="csharpcode">
<pre><span class="lnum">   1:  </span>Imports System</pre>
<pre><span class="lnum">   2:  </span>Imports EnvDTE</pre>
<pre><span class="lnum">   3:  </span>Imports EnvDTE80</pre>
<pre><span class="lnum">   4:  </span>Imports System.Diagnostics</pre>
<pre><span class="lnum">   5:  </span>&nbsp;</pre>
<pre><span class="lnum">   6:  </span>Public Module AttachToNUnitGui</pre>
<pre><span class="lnum">   7:  </span>    Sub AttachToNUnitGui()</pre>
<pre><span class="lnum">   8:  </span>        Dim ps As EnvDTE.Processes = DTE.Debugger.LocalProcesses()</pre>
<pre><span class="lnum">   9:  </span>        Dim process As EnvDTE.Process</pre>
<pre><span class="lnum">  10:  </span>        Dim p As EnvDTE.Process</pre>
<pre><span class="lnum">  11:  </span>        Dim found As Boolean = False</pre>
<pre><span class="lnum">  12:  </span>&nbsp;</pre>
<pre><span class="lnum">  13:  </span>        For Each p In ps</pre>
<pre><span class="lnum">  14:  </span>            If p.Name.EndsWith(<span class="str">"nunit.exe"</span>) = True Then</pre>
<pre><span class="lnum">  15:  </span>                found = True</pre>
<pre><span class="lnum">  16:  </span>                process = p</pre>
<pre><span class="lnum">  17:  </span>            End If</pre>
<pre><span class="lnum">  18:  </span>        Next</pre>
<pre><span class="lnum">  19:  </span>&nbsp;</pre>
<pre><span class="lnum">  20:  </span>&nbsp;</pre>
<pre><span class="lnum">  21:  </span>        If (found) Then</pre>
<pre><span class="lnum">  22:  </span>            p.Attach()</pre>
<pre><span class="lnum">  23:  </span>        Else</pre>
<pre><span class="lnum">  24:  </span>            MsgBox(<span class="str">"No nunit consoles running"</span>)</pre>
<pre><span class="lnum">  25:  </span>        End If</pre>
<pre><span class="lnum">  26:  </span>    End Sub</pre>
<pre><span class="lnum">  27:  </span>End Module</pre>
<pre>&nbsp;</pre>
<pre>&nbsp;</pre>
<pre>Currently listening to Tapes N' Tapes - Insistor</pre>
<pre>&nbsp;</pre>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:129fb51f-b0cd-4111-a8fd-5f7af4936478" style="display:inline;margin:0;padding:0;">
<div><span style="text-align:center; display: block;"><a href="http://mightyanger.wordpress.com/2008/06/23/nunit-macros-for-vs2005/"><img src="http://img.youtube.com/vi/N5g2eUh7TWE/2.jpg" alt="" /></a></span></div>
</div>
</div>
<p>.csharpcode, .csharpcode pre<br />
{<br />
	font-size: small;<br />
	color: black;<br />
	font-family: consolas, &#8220;Courier New&#8221;, courier, monospace;<br />
	background-color: #ffffff;<br />
	/*white-space: pre;*/<br />
}<br />
.csharpcode pre { margin: 0em; }<br />
.csharpcode .rem { color: #008000; }<br />
.csharpcode .kwrd { color: #0000ff; }<br />
.csharpcode .str { color: #006080; }<br />
.csharpcode .op { color: #0000c0; }<br />
.csharpcode .preproc { color: #cc6633; }<br />
.csharpcode .asp { background-color: #ffff00; }<br />
.csharpcode .html { color: #800000; }<br />
.csharpcode .attr { color: #ff0000; }<br />
.csharpcode .alt<br />
{<br />
	background-color: #f4f4f4;<br />
	width: 100%;<br />
	margin: 0em;<br />
}<br />
.csharpcode .lnum { color: #606060; }</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mightyanger.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mightyanger.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=25&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2008/06/23/nunit-macros-for-vs2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>Jack Johnson at Blossom Music Center</title>
		<link>http://mightyanger.wordpress.com/2008/06/18/jack-johnson-at-blossom-music-center/</link>
		<comments>http://mightyanger.wordpress.com/2008/06/18/jack-johnson-at-blossom-music-center/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 13:50:38 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/?p=24</guid>
		<description><![CDATA[I can officially say that I will never ever see a large act at blossom music center again. You&#8217;re probably saying you should have known better to see someone like Jack Johnson with such a large following at Blossom, you&#8217;re probably right I should have. I was hoping it would be different. The last time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=24&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I can officially say that I will never ever see a large act at blossom music center again.  You&#8217;re probably saying you should have known better to see someone like Jack Johnson with such a large following at Blossom, you&#8217;re probably right I should have.  I was hoping it would be different.</p>
<p>The last time Jack made it near Cleveland was 2004 when he traveled with G love and Donovan at the Amphitheater. This wasn&#8217;t bad as Jack&#8217;s following didn&#8217;t hit its peak yet.  This time around I was pretty much miserable the first hour.  Reason because, Blossom sells too many tickets.  Yesterday there were just too many people there who figured Jack was just trendy for the week.  Alot of annoying uncontrollable underage alcohol-consuming kids having no idea who Jack was.  Just kind of annoying.  I&#8217;m happy for all the successs he has had, definitely well-deserved, however, I miss the grassroots feel to his music.  Yesterday, everything around him just felt too commercialized.  Also we were so high up the hill, the music wasn&#8217;t loud enough to drown out the sound of underage kids scheming on how to get alcohol. (Which I know was probably be 6 years ago)</p>
<p>Maybe I&#8217;ll have to travel elsewhere to really enjoy him live again, in the meantime I&#8217;ll continue to scour <a href="http://www.archive.org/search.php?query=jack%20johnson">here</a> for his live tapings.</p>
<p>Plus the cold rain sucked, sorry I&#8217;m bitter its only been a day.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mightyanger.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mightyanger.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=24&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2008/06/18/jack-johnson-at-blossom-music-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>Zip Studio 2005</title>
		<link>http://mightyanger.wordpress.com/2008/06/14/zip-studio-2005/</link>
		<comments>http://mightyanger.wordpress.com/2008/06/14/zip-studio-2005/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 15:00:58 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Game Development]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/2008/06/14/zip-studio-2005/</guid>
		<description><![CDATA[Now I&#8217;m not one of those hardcore version control guys who needs source safe setup up on another box on his personal network with binding attached to all his VS projects.&#160; I think this admin causes more issues and extra work without following through with all the benefits.&#160; Especially, considering source control main advantage is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=23&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now I&#8217;m not one of those hardcore version control guys who needs source safe setup up on another box on his personal network with binding attached to all his VS projects.&nbsp; I think this admin causes more issues and extra work without following through with all the benefits.&nbsp; Especially, considering source control main advantage is being able to work with concurrent projects.</p>
<p>Though even for personal usage I think source control can be a total advantage in other areas.&nbsp; Namely prototyping ideas.&nbsp; It reduces the risk and time to attempt some different design or attempted refactor on the current solution.&nbsp; Without some type of source management, you run the risk to have a sort &#8220;safe&#8221; working solution with an opportunity to attempt a &#8220;ground-breaking, change the world&#8221; design.&nbsp; Attempting this change is the risk paid in time and chance that you fubar your solution to where you can&#8217;t get it back to the glory it once was.</p>
<p>I had the idea of writing a plugin which wouldn&#8217;t be as full-blown as a real version control system, all I need is a little snapshot I can get back to.&nbsp; I wanted to be able to take a specific solution as argument and parse through the projects and zip them with directory to a location, sounds useful?&nbsp; Too useful that it has already been done? correct again&#8230; <a href="http://www.codeproject.com/KB/macros/zipstudio.aspx">This</a> plugin saves me weekly.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mightyanger.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mightyanger.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=23&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2008/06/14/zip-studio-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
		<item>
		<title>Tecmo Bowl Update&#8230;</title>
		<link>http://mightyanger.wordpress.com/2007/02/04/tecmo-bowl-update/</link>
		<comments>http://mightyanger.wordpress.com/2007/02/04/tecmo-bowl-update/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 07:48:03 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/2007/02/04/tecmo-bowl-update/</guid>
		<description><![CDATA[In lieu of the upcoming super bowl, I figured I&#8217;d put out some screenshots of an extremely early beta of one of my side projects which is relevant to the super bowl. This really had nothing to do with the super bowl, but more to do with my thumb killing me the last week so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=17&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In lieu of the upcoming super bowl, I figured I&#8217;d put out some screenshots of an extremely early beta of one of my side projects which is relevant to the super bowl.  </p>
<p>This really had nothing to do with the super bowl, but more to do with my thumb killing me the last week so I chose not to play in a vball tournament this week.  Team Haeg-ah still won.  But because of this I&#8217;ve been shelling out code to this project like crazy.  Good code or bad code?&#8230; still in the air on that one.</p>
<p>Anyways, this screen shot is technically not &#8220;in-game&#8221; but more of a performance test of 24-26 guys on the field at once running in place and also swapping in and out sprites assembled into a particular sequence.  Looking promising so far, I hit a performance issue when adding the actual field.  Field texture was too large and added a large difference in fps.  Put in a tiling engine which I found on <a href="http://www.xnaresources.com/pages.asp?pageid=8">here</a> by Kurt Jaegers, pretty quality &#8211; straightforward.  Anyways I&#8217;m working on refactoring this into the TecmoBowl solution and looking at the performance differences then, we&#8217;ll see this week..</p>
<p><a href='http://mightyanger.files.wordpress.com/2007/02/tecmo_perf_test.png' title='Tecmo Super Bowl Performance Test'><img src='http://mightyanger.files.wordpress.com/2007/02/tecmo_perf_test.thumbnail.png?w=450' alt='Tecmo Super Bowl Performance Test' /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mightyanger.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mightyanger.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=17&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2007/02/04/tecmo-bowl-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>

		<media:content url="http://mightyanger.files.wordpress.com/2007/02/tecmo_perf_test.thumbnail.png" medium="image">
			<media:title type="html">Tecmo Super Bowl Performance Test</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Express NUnit</title>
		<link>http://mightyanger.wordpress.com/2007/01/22/c-express-nunit/</link>
		<comments>http://mightyanger.wordpress.com/2007/01/22/c-express-nunit/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 04:41:33 +0000</pubDate>
		<dc:creator>mightyanger</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://mightyanger.wordpress.com/2007/01/22/c-express-nunit/</guid>
		<description><![CDATA[C# Express does not give you the ability to run through your nunits in debug. To mitigate your test-driven developments hassles, I came across this little workaround gem&#8230;. http://nunit.com/blogs/?p=28 . You&#8217;ll have to mess around with the arguments after that but you get the point. Anyways continuing to focus some of the common library functionality [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=4&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>C# Express does not give you the ability to run through your nunits in debug.  To mitigate your test-driven developments hassles, I came across this little workaround gem&#8230;.  <a href="http://nunit.com/blogs/?p=28">http://nunit.com/blogs/?p=28</a> .  You&#8217;ll have to mess around with the arguments after that but you get the point.</p>
<p>Anyways continuing to focus some of the common library functionality for this XNA toy project, getting closer by the day.  The design process has been a little backwards at this point (tons of <strike>refactoring</strike> err&#8230; rewriting).  Lot of proof of concept projects, testing some ideas, trying to be creative, borrowing others code to see what I can leverage.  Can kind of be expected with the concurrent refactoring done with the XNA framework as well.  They changed things on their side which have all made great sense, causing me to refactor on my side because of the new way of thinking.  I think I&#8217;ve ironed out most of the kinks at this point, and have a pretty good understanding for what I&#8217;ll be able to work with on the next level up.  More to come soon.</p>
<p>Came across <a href="http://www.gameinformer.com/News/Story/200701/N07.0109.1737.15034.htm?Page=1">this</a> from Carmack on Slashdot interesting read on the differences between the PS3 and 360 SDKs.</p>
<p>I think thats enough random <a href="http://en.wikipedia.org/wiki/Stream_of_consciousness">stream of consciousness</a> for one night.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mightyanger.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mightyanger.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mightyanger.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mightyanger.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mightyanger.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mightyanger.wordpress.com&amp;blog=702083&amp;post=4&amp;subd=mightyanger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mightyanger.wordpress.com/2007/01/22/c-express-nunit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/592d5d03355dd018c3b6440badd47d0d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mightyanger</media:title>
		</media:content>
	</item>
	</channel>
</rss>
