<?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>Wed, 01 Feb 2012 05:26:07 +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>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 class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='450' height='284' src='http://www.youtube.com/embed/N5g2eUh7TWE?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></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>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>
