<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Buzzrick's TileEngine Game Platform</title>
    <link>http://buzzrick.true.geek.nz/DasBlog/</link>
    <description>by Soap Dragon Games</description>
    <language>en-us</language>
    <copyright>Beric Holt</copyright>
    <lastBuildDate>Tue, 16 Feb 2010 02:08:13 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>buzzrick@ihug.co.nz</managingEditor>
    <webMaster>buzzrick@ihug.co.nz</webMaster>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=822e23c5-528d-4a4c-bf4c-0e45da051e68</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,822e23c5-528d-4a4c-bf4c-0e45da051e68.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,822e23c5-528d-4a4c-bf4c-0e45da051e68.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=822e23c5-528d-4a4c-bf4c-0e45da051e68</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've recently been trying to build a console application to talk to SharePoint 2010.
It's a simple task that we've all been doing with SharePoint 2007 but I couldn't for
the life of me get it working for 2010.
</p>
        <p>
You know the drill: you grab an SPSite object, then from that get an SPWeb object
to work with, like this: 
</p>
        <pre>
          <code> using (SPSite spSite = new SPSite("http://demo2010a")) { using (SPWeb
spWeb = spSite.RootWeb) { Console.WriteLine(spWeb.Title); } } </code>
        </pre>
        <p>
A collegue of mine, <a href="http://www.chakkaradeep.com" target="_blank" title="Chakkaradeep Chandran">Chaks</a>,
has the answer to getting this working with SharePoint 2010. SharePoint is now a 64bit
platform!
</p>
        <p>
So to get it working just set your Build Target Platform to x64 in your project properties
</p>
        <p>
Chaks' original post is <a href="http://www.chakkaradeep.com/post/SharePoint-2010-Building-a-SharePoint-Console-Application.aspx#tb" target="_blank" title="SharePoint 2010: Building a SharePoint Console Application">here</a></p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=822e23c5-528d-4a4c-bf4c-0e45da051e68" />
      </body>
      <title>Getting a Console App to talk to SharePoint 2010</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,822e23c5-528d-4a4c-bf4c-0e45da051e68.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2010/02/16/Getting+A+Console+App+To+Talk+To+SharePoint+2010.aspx</link>
      <pubDate>Tue, 16 Feb 2010 02:08:13 GMT</pubDate>
      <description>&lt;p&gt;
I've recently been trying to build a console application to talk to SharePoint 2010.
It's a simple task that we've all been doing with SharePoint 2007 but I couldn't for
the life of me get it working for 2010.
&lt;/p&gt;
&lt;p&gt;
You know the drill: you grab an SPSite object, then from that get an SPWeb object
to work with, like this: 
&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt; using (SPSite spSite = new SPSite("http://demo2010a")) { using (SPWeb
spWeb = spSite.RootWeb) { Console.WriteLine(spWeb.Title); } } &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
A collegue of mine, &lt;a href="http://www.chakkaradeep.com" target="_blank" title="Chakkaradeep Chandran"&gt;Chaks&lt;/a&gt;,
has the answer to getting this working with SharePoint 2010. SharePoint is now a 64bit
platform!
&lt;/p&gt;
&lt;p&gt;
So to get it working just set your Build Target Platform to x64 in your project properties
&lt;/p&gt;
&lt;p&gt;
Chaks' original post is &lt;a href="http://www.chakkaradeep.com/post/SharePoint-2010-Building-a-SharePoint-Console-Application.aspx#tb" target="_blank" title="SharePoint 2010: Building a SharePoint Console Application"&gt;here&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=822e23c5-528d-4a4c-bf4c-0e45da051e68" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,822e23c5-528d-4a4c-bf4c-0e45da051e68.aspx</comments>
      <category>DotNet</category>
      <category>SharePoint</category>
      <category>Visual Studio</category>
      <category>Windows Server</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=0676e4f7-f5f5-4a49-9609-9f37873c04ef</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,0676e4f7-f5f5-4a49-9609-9f37873c04ef.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,0676e4f7-f5f5-4a49-9609-9f37873c04ef.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=0676e4f7-f5f5-4a49-9609-9f37873c04ef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div style="float:right">
          <a title="Azure Servers running" border="0" href="./content/binary/Azure_Servers.MPG">
            <img alt="Azure Server Container" src="content/binary/Azure_servers.png" />
          </a>
        </div>
        <p>
I'm currently working on a Windows Azure project. A collegue of mine who is oOur Technical
Lead on the project (<a href="http://jonesie.net.nz" target="_blank" title="Peter Jones">Peter
Jones</a> is currently up at PDC showing some of the stuff we've been working on.
</p>
        <p>
He got the chance to see some of the Azure Server containers running. These things
are basically like a shipping container racked out with hundreds of servers. Apparently
they can get one of these racks up in running in 4 hours of it arriving at it's deployment
location!
</p>
        <p>
Pete got a <a title="Azure Servers running" href="./content/binary/Azure_Servers.MPG">short
video clip</a> of what the server looks and sounds like. That is some heavy hardware.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=0676e4f7-f5f5-4a49-9609-9f37873c04ef" />
      </body>
      <title>An Azure Server Container</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,0676e4f7-f5f5-4a49-9609-9f37873c04ef.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2009/11/18/An+Azure+Server+Container.aspx</link>
      <pubDate>Wed, 18 Nov 2009 23:21:31 GMT</pubDate>
      <description>&lt;div style="float:right"&gt;
&lt;a title="Azure Servers running" border="0" href="./content/binary/Azure_Servers.MPG"&gt;&lt;img alt="Azure Server Container" src="content/binary/Azure_servers.png" /&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;p&gt;
I'm currently working on a Windows Azure project. A collegue of mine who is oOur Technical
Lead on the project (&lt;a href="http://jonesie.net.nz" target="_blank" title="Peter Jones"&gt;Peter
Jones&lt;/a&gt; is currently up at PDC showing some of the stuff we've been working on.
&lt;/p&gt;
&lt;p&gt;
He got the chance to see some of the Azure Server containers running. These things
are basically like a shipping container racked out with hundreds of servers. Apparently
they can get one of these racks up in running in 4 hours of it arriving at it's deployment
location!
&lt;/p&gt;
&lt;p&gt;
Pete got a &lt;a title="Azure Servers running" href="./content/binary/Azure_Servers.MPG"&gt;short
video clip&lt;/a&gt; of what the server looks and sounds like. That is some heavy hardware.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=0676e4f7-f5f5-4a49-9609-9f37873c04ef" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,0676e4f7-f5f5-4a49-9609-9f37873c04ef.aspx</comments>
      <category>DotNet</category>
      <category>Hardware</category>
      <category>Visual Studio</category>
      <category>Windows Server</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=90155425-f62d-4b96-a706-f31c52eab58e</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,90155425-f62d-4b96-a706-f31c52eab58e.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,90155425-f62d-4b96-a706-f31c52eab58e.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=90155425-f62d-4b96-a706-f31c52eab58e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div style="float:right">
          <img border="0" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/Warning Icon.gif" />
        </div>
        <p>
Sorry for the downtime everyone.
</p>
        <p>
My host computer was wiped, and I had major trouble trying to restore the backups.
I eventually found out that the backup system didn't back up the DLLs required for
the web applications that I use, so I had to restore some parts from an old offline
backup.
</p>
        <p>
Hopefully I haven't lost too much content (although I already know that I've lost
some stuff from my <a href="http://soapdragon.true.geek.nz/soapdragon/" title="SoapDragon Games">SoapDragon
Games</a> site)
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=90155425-f62d-4b96-a706-f31c52eab58e" />
      </body>
      <title>Service Back Online</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,90155425-f62d-4b96-a706-f31c52eab58e.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2009/06/09/Service+Back+Online.aspx</link>
      <pubDate>Tue, 09 Jun 2009 02:35:12 GMT</pubDate>
      <description>&lt;div style="float:right"&gt;&lt;img border="0" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/Warning Icon.gif"&gt;
&lt;/div&gt;
&lt;p&gt;
Sorry for the downtime everyone.
&lt;/p&gt;
&lt;p&gt;
My host computer was wiped, and I had major trouble trying to restore the backups.
I eventually found out that the backup system didn't back up the DLLs required for
the web applications that I use, so I had to restore some parts from an old offline
backup.
&lt;/p&gt;
&lt;p&gt;
Hopefully I haven't lost too much content (although I already know that I've lost
some stuff from my &lt;a href="http://soapdragon.true.geek.nz/soapdragon/" title="SoapDragon Games"&gt;SoapDragon
Games&lt;/a&gt; site)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=90155425-f62d-4b96-a706-f31c52eab58e" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,90155425-f62d-4b96-a706-f31c52eab58e.aspx</comments>
      <category>Personal</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=128afa7f-7396-476c-baea-1b2ab256c207</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,128afa7f-7396-476c-baea-1b2ab256c207.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,128afa7f-7396-476c-baea-1b2ab256c207.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=128afa7f-7396-476c-baea-1b2ab256c207</wfw:commentRss>
      <title>When World of Warcraft Social interaction clicked with me</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,128afa7f-7396-476c-baea-1b2ab256c207.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2009/04/09/When+World+Of+Warcraft+Social+Interaction+Clicked+With+Me.aspx</link>
      <pubDate>Thu, 09 Apr 2009 01:17:21 GMT</pubDate>
      <description>My experience with when World of Warcraft social interaction clicked with me
(AKA How I became Addicted to WoW)&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=128afa7f-7396-476c-baea-1b2ab256c207"/&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,128afa7f-7396-476c-baea-1b2ab256c207.aspx</comments>
      <category>Gaming</category>
      <category>Warcraft</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=36c203c4-01da-4877-82da-027d5e26d8fa</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,36c203c4-01da-4877-82da-027d5e26d8fa.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,36c203c4-01da-4877-82da-027d5e26d8fa.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=36c203c4-01da-4877-82da-027d5e26d8fa</wfw:commentRss>
      <title>A Pale Blue Dot</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,36c203c4-01da-4877-82da-027d5e26d8fa.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/11/17/A+Pale+Blue+Dot.aspx</link>
      <pubDate>Mon, 17 Nov 2008 20:17:24 GMT</pubDate>
      <description>&lt;p&gt;
Awesome
&lt;/p&gt;
&lt;p&gt;
&lt;object width="425" height="344"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/2pfwY2TNehw&amp;hl=en&amp;fs=1"&gt;&gt;
&lt;param name="allowFullScreen" value="true"&gt;&gt;
&lt;param name="allowscriptaccess" value="always"&gt;&gt;&lt;embed src="http://www.youtube.com/v/2pfwY2TNehw&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=36c203c4-01da-4877-82da-027d5e26d8fa" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,36c203c4-01da-4877-82da-027d5e26d8fa.aspx</comments>
      <category>Personal</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=ed0faa3f-cfcc-4722-90fb-72ae6eb50229</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,ed0faa3f-cfcc-4722-90fb-72ae6eb50229.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,ed0faa3f-cfcc-4722-90fb-72ae6eb50229.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=ed0faa3f-cfcc-4722-90fb-72ae6eb50229</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Straylight Studios (where I work) has just received 3 awards in the Deloitte Fast
50 awards, including the 33rd fastest growing company overall, the fastest growing
new entrant in Otago/Southland, and the fastest growing technology company in Otago/Southland. 
</p>
        <p>
Head over to our <a href="http://www.straylight-studios.com/articles/7-straylight-victory-at-deloitte-fast-50-awards" title="Straylight victory at Deloitte Fast 50 Awards">company
blog</a> for more details. 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=ed0faa3f-cfcc-4722-90fb-72ae6eb50229" />
      </body>
      <title>Straylight studios gets Deloitte Fast 50 Awards</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,ed0faa3f-cfcc-4722-90fb-72ae6eb50229.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/11/03/Straylight+Studios+Gets+Deloitte+Fast+50+Awards.aspx</link>
      <pubDate>Mon, 03 Nov 2008 23:54:52 GMT</pubDate>
      <description>&lt;p&gt;
Straylight Studios (where I work) has just received 3 awards in the Deloitte Fast
50 awards, including the 33rd fastest growing company overall, the fastest growing
new entrant in Otago/Southland, and the fastest growing technology company in Otago/Southland. 
&lt;/p&gt;
&lt;p&gt;
Head over to our &lt;a href="http://www.straylight-studios.com/articles/7-straylight-victory-at-deloitte-fast-50-awards" title="Straylight victory at Deloitte Fast 50 Awards"&gt;company
blog&lt;/a&gt; for more details. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=ed0faa3f-cfcc-4722-90fb-72ae6eb50229" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,ed0faa3f-cfcc-4722-90fb-72ae6eb50229.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Fallout 3 is at the top of my "Can't Wait" list.  It's due out in just over a
month.
</p>
        <p>
          <!-- SpringWidgets | Fallout 3 Countdown (#52816) | HTML | Generated on 09/04/2008 -->
          <object type="application/x-shockwave-flash" allownetworking="all" allowscriptaccess="always" allowfullscreen="true" height="170" width="300" id="springwidgets_52816" align="middle" data="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
            <param name="allowNetworking" value="all" />
            <param name="allowScriptAccess" value="always" />
            <param name="allowFullScreen" value="true" />
            <param name="movie" value="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" />
            <param name="flashvars" value="" />
            <param name="quality" value="high" />
            <param name="wmode" value="transparent" />
            <param name="bgColor" value="0x000000" />
            <embed bgcolor="0x000000" allownetworking="all" allowfullscreen="true" allowscriptaccess="always" src="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" flashvars="" quality="high" name="springwidgets_52816" wmode="transparent" width="300" height="170" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
            </embed>
          </object>
        </p>
        <p>
          <font size="1">(If you want a copy of the Fallout 3 Countdown widget on your site,
head over to </font>
          <a title="Planet Fallout (GameSpy) Fallout 3 widgets page" href="http://planetfallout.gamespy.com/articles/features/16/Fallout-3-SpringWigets" target="_blank">
            <font size="1">PlanetFallout.gamespy.com</font>
          </a>
          <font size="1"> for
the HTML)</font>
        </p>
        <p>
Also at the end of next week the Opposing Front's expansion for Company of Heroes
is due to be rereleased in New Zealand for NZD$20, so I'll be getting that too.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6" />
      </body>
      <title>Fallout 3 Countdown</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/09/16/Fallout+3+Countdown.aspx</link>
      <pubDate>Tue, 16 Sep 2008 21:55:07 GMT</pubDate>
      <description>&lt;p&gt;
Fallout 3 is at the top of my "Can't Wait" list.&amp;nbsp; It's due out in just over a
month.
&lt;/p&gt;
&lt;p&gt;
&lt;!-- SpringWidgets | Fallout 3 Countdown (#52816) | HTML | Generated on 09/04/2008 --&gt;
&lt;object type="application/x-shockwave-flash" allownetworking="all" allowscriptaccess="always" allowfullscreen="true" height="170" width="300" id="springwidgets_52816" align="middle" data="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"&gt;
&lt;param name="allowNetworking" value="all" /&gt;
&lt;param name="allowScriptAccess" value="always" /&gt;
&lt;param name="allowFullScreen" value="true" /&gt;
&lt;param name="movie" value="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" /&gt;
&lt;param name="flashvars" value="" /&gt;
&lt;param name="quality" value="high" /&gt;
&lt;param name="wmode" value="transparent" /&gt;
&lt;param name="bgColor" value="0x000000" /&gt;&lt;embed bgcolor="0x000000" allownetworking="all" allowfullscreen="true" allowscriptaccess="always" src="http://downloads.thespringbox.com/web/wrapper.php?file=52816.sbw" flashvars="" quality="high" name="springwidgets_52816" wmode="transparent" width="300" height="170" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=1&gt;(If you want a copy of the Fallout 3 Countdown widget on your site, head
over to &lt;/font&gt;&lt;a title="Planet Fallout (GameSpy) Fallout 3 widgets page" href="http://planetfallout.gamespy.com/articles/features/16/Fallout-3-SpringWigets" target=_blank&gt;&lt;font size=1&gt;PlanetFallout.gamespy.com&lt;/font&gt;&lt;/a&gt;&lt;font size=1&gt; for
the HTML)&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Also at the end of next week the Opposing Front's expansion for Company of Heroes
is due to be rereleased in New Zealand for NZD$20, so I'll be getting that too.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,f5b9ddae-4aa6-40e7-81af-2bc1d2e746a6.aspx</comments>
      <category>Gaming</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=819978f4-f269-461f-9cc9-338d5d898a8d</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,819978f4-f269-461f-9cc9-338d5d898a8d.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,819978f4-f269-461f-9cc9-338d5d898a8d.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=819978f4-f269-461f-9cc9-338d5d898a8d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The installer for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&amp;displaylang=en" target="_blank" title="Visual Studio 2008 Service Pack 1 Download">Visual
Studio 2008 SP1</a> is a tiny file, just half a megabyte.  It is a just a bootstrap
application which downloads the actual files required to perform the update. 
We have a bunch of development machines here in the office at Straylight Studios,
so we don't want to have the bootstrap installer downloading all of the content for
each and every machine.
</p>
        <p>
If you want to download the entire service pack content then you can call the installer
with a /CreateLayout commandline flag, and the folder where you want to download the
files to.  I think the full contents are over 800Mb so the download will take
some time.
</p>
        <pre>VS90sp1-KB945140-ENU.exe /createlayout <a href="file://\\server\share">\\server\share</a></pre>
        <p>
 
</p>
        <p>
UPDATE:<br />
I've also just found an <a href="http://www.microsoft.com/downloads/details.aspx?familyid=27673C47-B3B5-4C67-BD99-84E525B5CE61&amp;displaylang=en" target="_blank" title="Visual Studio 2008 Service Pack 1 ISO image download">ISO
image version</a> of the service pack.  This may be simpler for everyone<br /></p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=819978f4-f269-461f-9cc9-338d5d898a8d" />
      </body>
      <title>Getting the full download of Visual Studio 2008 SP1</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,819978f4-f269-461f-9cc9-338d5d898a8d.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/08/26/Getting+The+Full+Download+Of+Visual+Studio+2008+SP1.aspx</link>
      <pubDate>Tue, 26 Aug 2008 22:07:32 GMT</pubDate>
      <description>&lt;p&gt;
The installer for &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&amp;amp;displaylang=en" target="_blank" title="Visual Studio 2008 Service Pack 1 Download"&gt;Visual
Studio 2008 SP1&lt;/a&gt; is a tiny file, just half a megabyte.&amp;nbsp; It is a just a bootstrap
application which downloads the actual files required to perform the update.&amp;nbsp;
We have a bunch of development machines here in the office at Straylight Studios,
so we don't want to have the bootstrap installer downloading all of the content for
each and every machine.
&lt;/p&gt;
&lt;p&gt;
If you want to download the entire service pack content then you can call the installer
with a /CreateLayout commandline flag, and the folder where you want to download the
files to.&amp;nbsp; I think the full contents are over 800Mb so the download will take
some time.
&lt;/p&gt;
&lt;pre&gt;VS90sp1-KB945140-ENU.exe /createlayout &lt;a href="file://\\server\share"&gt;\\server\share&lt;/a&gt;&lt;/pre&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
UPDATE:&lt;br&gt;
I've also just found an &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=27673C47-B3B5-4C67-BD99-84E525B5CE61&amp;amp;displaylang=en" target="_blank" title="Visual Studio 2008 Service Pack 1 ISO image download"&gt;ISO
image version&lt;/a&gt; of the service pack.&amp;nbsp; This may be simpler for everyone&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=819978f4-f269-461f-9cc9-338d5d898a8d" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,819978f4-f269-461f-9cc9-338d5d898a8d.aspx</comments>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=973e3929-f36c-4b89-ad64-945c8432019e</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,973e3929-f36c-4b89-ad64-945c8432019e.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,973e3929-f36c-4b89-ad64-945c8432019e.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=973e3929-f36c-4b89-ad64-945c8432019e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Mark Russinovich (one of the old SysInternals team, now part of Microsoft) has posted
an extremely interesting article about memory usage on windows systems.  It goes
very deep into the details of how Windows allocates and accesses memory, and explains
more about how the 4GB limit works on 32 bit systems.
</p>
        <p>
          <a href="http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx" title="Pushing the Limits of Windows: Physical Memory" target="_blank">Go
and check it out here.</a>
        </p>
        <p>
I currently use 32 bit (x86) Windows Vista for my home machine, and I've been wary
of using a 64 bit OS for a while because of driver issues, and software incompatibility
problems.  However I've been using 64 bit (x64) Windows Vista for my work machine
since I started at Straylight Studios (which I must blog about soon), and I believe
that it is coming time for me to make the jump at home, certainly for my next computer
which I'm saving up for.
</p>
        <p>
The main issue with a 64 bit version of windows is driver compatibility.  Older
hardware may not have 64 bit drivers which makes them unusable, however pretty much <strong>any</strong> new
hardware which is built in the Vista era should have 64 bit drivers.
</p>
        <h4>Internet Explorer Issues
</h4>
        <p>
        </p>
        <div style="float:right; padding: 5px;">
          <a href="http://www.ie7pro.com/" title="IE7Pro The Ultimate Add-On for Internet Explorer" target="_blank" border="0">
            <img src="http://www.ie7pro.com/images/logo.jpg" alt="Ie7Pro" border="0" />
          </a>
        </div>
Also, in the past I've had the perception that there is problems with 32 bit software
compatibility on 64 bit Windows.  I say <em>perception</em> because I'm slowly
learning that there are not that many problems.  I'm quite fond of the <a href="http://www.ie7pro.com/" title="IE7Pro The Ultimate Add-On for Internet Explorer" target="_blank">IE7Pro</a> plugin
for Internet Explorer and for quite a while I had real issues installing it. 
I kept installing it but the icon didn't appear in the bottom right corner of the
browser window and none of the functionality worked.  It took me quite some time
to figure out that it <strong>had</strong> actually installed okay, but I didn't realise
that Vista x64 has two separate copies of the Program Files folder; one for 32 bit
apps, and one for 64 bit apps.  It also has two copies of Internet Explorer;
one 32 bit version and one 64 bit version.  I had installed the 64 bit version
of IE7Pro, and was defaulted to running the 32 bit version of Internet Explorer.
<p>
So the solution was to either default to the 64 bit version of Internet Explorer,
or to install the 32 bit version of IE7Pro.  I tried running the 64 bit version
of Internet Explorer but I soon gave that up because a lot of the IE plugins such
as Shockwave Flash (which is required for a large percentage of video sites on the
internet) don't like running on that version.  I then installed the 32 bit version
of IE7Pro (you can install both versions side by side, so long as you use a different
install folder for each) and now I have it working perfectly well.  There is
a minor issue with the crash recovery functionality of IE7Pro on this configuration,
but the development team are aware of it and are currently working on a fix.
</p><h4>Windows Explorer Issues
</h4><p>
The only other outstanding problem that I've been having with Vista x64 is with Windows
Explorer plugins.  More to the point, the plugins and programs work just fine,
but some installers don't seem to be able to set up the context menu items for files
and folders.  I believe (although I may be wrong) that this is purely an installer
issue.
</p><p></p><div style="float:right; padding: 5px;"><a href="http://www.mythicsoft.com/agentransack/" title="File Search Utility" target="_blank" border="0"><img src="http://www.mythicsoft.com/agentransack/images/logo2.GIF" alt="Agent Ransack" border="0" /></a></div>
For instance the <a href="http://www.mythicsoft.com/agentransack/" title="File Search Utility" target="_blank">Agent
Ransack</a> file search program that I use does not correctly set up a right click
context menu, however the application works perfectly fine.  If it becomes a
major annoyance for me then I'll just set up a context menu by hand in the registry
editor, but for now I'm happy with it.
<p></p><div style="float:left; padding: 5px;"><a href="http://www.jam-software.com/treesize/treesize_personal.shtml" title="TreeSize folder sizing application" target="_blank" border="0"><img src="http://www.jam-software.com/treesize/images/box_treesize_personal_de.jpg" alt="TreeSize folder sizing application" border="0" /></a></div>
On the other hand the <a href="http://www.jam-software.com/treesize/treesize_personal.shtml" title="TreeSize folder sizing application" target="_blank">TreeSize</a> application
(for showing you how big each folder is hierarchically) installs a right click context
menu just fine, as does the <a href="http://www.bulkrenameutility.co.uk/Main_Intro.php" title="Bulk Rename Utility file renamer" target="_blank">Bulk
Rename Utility (BRU)</a> (an application for bulk renaming large amounts of files
in a folder).
<h4>Critical mass
</h4><p>
I believe that there is also a certain amount of critical mass required for 64 bit. 
Once more and more people start using it, more and more developers will start developing
for it.  So lets start using it everyone.
</p><p>
 
</p><p>
I'd love to hear your comments on your experiences with 64 bit Windows, both good
and bad.
</p><img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=973e3929-f36c-4b89-ad64-945c8432019e" /></body>
      <title>Understanding memory usage for 32bit and 64bit windows</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,973e3929-f36c-4b89-ad64-945c8432019e.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/07/21/Understanding+Memory+Usage+For+32bit+And+64bit+Windows.aspx</link>
      <pubDate>Mon, 21 Jul 2008 23:14:54 GMT</pubDate>
      <description>&lt;p&gt;
Mark Russinovich (one of the old SysInternals team, now part of Microsoft) has posted
an extremely interesting article about memory usage on windows systems.&amp;nbsp; It goes
very deep into the details of how Windows allocates and accesses memory, and explains
more about how the 4GB limit works on 32 bit systems.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx" title="Pushing the Limits of Windows: Physical Memory" target="_blank"&gt;Go
and check it out here.&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I currently use 32 bit (x86) Windows Vista for my home machine, and I've been wary
of using a 64 bit OS for a while because of driver issues, and software incompatibility
problems.&amp;nbsp; However I've been using 64 bit (x64) Windows Vista for my work machine
since I started at Straylight Studios (which I must blog about soon), and I believe
that it is coming time for me to make the jump at home, certainly for my next computer
which I'm saving up for.
&lt;/p&gt;
&lt;p&gt;
The main issue with a 64 bit version of windows is driver compatibility.&amp;nbsp; Older
hardware may not have 64 bit drivers which makes them unusable, however pretty much &lt;strong&gt;any&lt;/strong&gt; new
hardware which is built in the Vista era should have 64 bit drivers.
&lt;/p&gt;
&lt;h4&gt;Internet Explorer Issues
&lt;/h4&gt;
&lt;p&gt;
&lt;div style="float:right; padding: 5px;"&gt;&lt;a href="http://www.ie7pro.com/" title="IE7Pro The Ultimate Add-On for Internet Explorer" target="_blank" border="0"&gt;&lt;img src="http://www.ie7pro.com/images/logo.jpg" alt="Ie7Pro" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;
Also, in the past I've had the perception that there is problems with 32 bit software
compatibility on 64 bit Windows.&amp;nbsp; I say &lt;em&gt;perception&lt;/em&gt; because I'm slowly
learning that there are not that many problems.&amp;nbsp; I'm quite fond of the &lt;a href="http://www.ie7pro.com/" title="IE7Pro The Ultimate Add-On for Internet Explorer" target="_blank"&gt;IE7Pro&lt;/a&gt; plugin
for Internet Explorer and for quite a while I had real issues installing it.&amp;nbsp;
I kept installing it but the icon didn't appear in the bottom right corner of the
browser window and none of the functionality worked.&amp;nbsp; It took me quite some time
to figure out that it &lt;strong&gt;had&lt;/strong&gt; actually installed okay, but I didn't realise
that Vista x64 has two separate copies of the Program Files folder; one for 32 bit
apps, and one for 64 bit apps.&amp;nbsp; It also has two copies of Internet Explorer;
one 32 bit version and one 64 bit version.&amp;nbsp; I had installed the 64 bit version
of IE7Pro, and was defaulted to running the 32 bit version of Internet Explorer.&gt;
&lt;p&gt;
So the solution was to either default to the 64 bit version of Internet Explorer,
or to install the 32 bit version of IE7Pro.&amp;nbsp; I tried running the 64 bit version
of Internet Explorer but I soon gave that up because a lot of the IE plugins such
as Shockwave Flash (which is required for a large percentage of video sites on the
internet) don't like running on that version.&amp;nbsp; I then installed the 32 bit version
of IE7Pro (you can install both versions side by side, so long as you use a different
install folder for each) and now I have it working perfectly well.&amp;nbsp; There is
a minor issue with the crash recovery functionality of IE7Pro on this configuration,
but the development team are aware of it and are currently working on a fix.
&lt;/p&gt;
&lt;h4&gt;Windows Explorer Issues
&lt;/h4&gt;
&lt;p&gt;
The only other outstanding problem that I've been having with Vista x64 is with Windows
Explorer plugins.&amp;nbsp; More to the point, the plugins and programs work just fine,
but some installers don't seem to be able to set up the context menu items for files
and folders.&amp;nbsp; I believe (although I may be wrong) that this is purely an installer
issue.
&lt;/p&gt;
&lt;p&gt;
&lt;div style="float:right; padding: 5px;"&gt;&lt;a href="http://www.mythicsoft.com/agentransack/" title="File Search Utility" target="_blank" border="0"&gt;&lt;img src="http://www.mythicsoft.com/agentransack/images/logo2.GIF" alt="Agent Ransack" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;
For instance the &lt;a href="http://www.mythicsoft.com/agentransack/" title="File Search Utility" target="_blank"&gt;Agent
Ransack&lt;/a&gt; file search program that I use does not correctly set up a right click
context menu, however the application works perfectly fine.&amp;nbsp; If it becomes a
major annoyance for me then I'll just set up a context menu by hand in the registry
editor, but for now I'm happy with it.&gt;
&lt;p&gt;
&lt;div style="float:left; padding: 5px;"&gt;&lt;a href="http://www.jam-software.com/treesize/treesize_personal.shtml" title="TreeSize folder sizing application" target="_blank" border="0"&gt;&lt;img src="http://www.jam-software.com/treesize/images/box_treesize_personal_de.jpg" alt="TreeSize folder sizing application" border="0" /&gt;&lt;/a&gt;
&lt;/div&gt;
On the other hand the &lt;a href="http://www.jam-software.com/treesize/treesize_personal.shtml" title="TreeSize folder sizing application" target="_blank"&gt;TreeSize&lt;/a&gt; application
(for showing you how big each folder is hierarchically) installs a right click context
menu just fine, as does the &lt;a href="http://www.bulkrenameutility.co.uk/Main_Intro.php" title="Bulk Rename Utility file renamer" target="_blank"&gt;Bulk
Rename Utility (BRU)&lt;/a&gt; (an application for bulk renaming large amounts of files
in a folder).&gt;
&lt;h4&gt;Critical mass
&lt;/h4&gt;
&lt;p&gt;
I believe that there is also a certain amount of critical mass required for 64 bit.&amp;nbsp;
Once more and more people start using it, more and more developers will start developing
for it.&amp;nbsp; So lets start using it everyone.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
I'd love to hear your comments on your experiences with 64 bit Windows, both good
and bad.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=973e3929-f36c-4b89-ad64-945c8432019e" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,973e3929-f36c-4b89-ad64-945c8432019e.aspx</comments>
      <category>Hardware</category>
      <category>Vista</category>
      <category>Windows Server</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=c00162b7-6abb-4bc2-bd50-06bd3174dd30</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,c00162b7-6abb-4bc2-bd50-06bd3174dd30.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,c00162b7-6abb-4bc2-bd50-06bd3174dd30.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=c00162b7-6abb-4bc2-bd50-06bd3174dd30</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
People have been telling me that they can't download my latest <a href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx">TileEngine
Tech Demo</a>, and I found out that it was due to the permissions model changing
when I upgraded the <a href="http://soapdragon.emedia.net.nz/soapdragon/">Soap Dragon</a> website
recently.  I have found the issue now so you should be able to download it fine.
</p>
        <p>
You will still have to register to get access to the Tech Demo downloads however.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=c00162b7-6abb-4bc2-bd50-06bd3174dd30" />
      </body>
      <title>TileEngine Downloads fixed.</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,c00162b7-6abb-4bc2-bd50-06bd3174dd30.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/03/31/TileEngine+Downloads+Fixed.aspx</link>
      <pubDate>Mon, 31 Mar 2008 00:25:30 GMT</pubDate>
      <description>&lt;p&gt;
People have been telling me that they can't download my latest &lt;a href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx"&gt;TileEngine
Tech Demo&lt;/a&gt;, and I found out that it was&amp;nbsp;due to the permissions model changing
when I upgraded the &lt;a href="http://soapdragon.emedia.net.nz/soapdragon/"&gt;Soap Dragon&lt;/a&gt; website
recently.&amp;nbsp; I have found the issue now so you should be able to download it fine.
&lt;/p&gt;
&lt;p&gt;
You will still have to register to get access to the Tech Demo downloads however.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=c00162b7-6abb-4bc2-bd50-06bd3174dd30" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,c00162b7-6abb-4bc2-bd50-06bd3174dd30.aspx</comments>
      <category>Game Development</category>
      <category>TileEngine</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=c4ea174d-14e0-4a51-ab18-9570051f7484</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,c4ea174d-14e0-4a51-ab18-9570051f7484.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,c4ea174d-14e0-4a51-ab18-9570051f7484.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=c4ea174d-14e0-4a51-ab18-9570051f7484</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've posted an updated <a title="TileEngine Dowloads" href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx">TileEngine
Technology Demo</a> to v0.6.3 for dowload on the <a title="Soap Dragon Games website" href="http://soapdragon.emedia.net.nz/soapdragon/">Soap
Dragon Games</a> website.  The new version look very similar to the old v0.2.3
one but there are a lot of changes behind the scenes, including heaps of scripting
updates, dialog box handling, dynamic buttons (which can be created in lua script),
multiple player actors and switching between them, and a bunch of other improvements.
</p>
        <p>
It also includes a (semi) working map editor, but you need to know some script commands
to make it work.
</p>
        <p>
Jump over to the site and <a title="TileEngine Dowloads" href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx">download
it</a>.  I'm keen to hear any feedback that you have about it.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=c4ea174d-14e0-4a51-ab18-9570051f7484" />
      </body>
      <title>Updated TileEngine technology demo available (v0.6.3)</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,c4ea174d-14e0-4a51-ab18-9570051f7484.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/03/19/Updated+TileEngine+Technology+Demo+Available+V063.aspx</link>
      <pubDate>Wed, 19 Mar 2008 21:07:27 GMT</pubDate>
      <description>&lt;p&gt;
I've posted an updated &lt;a title="TileEngine Dowloads" href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx"&gt;TileEngine
Technology Demo&lt;/a&gt; to v0.6.3&amp;nbsp;for dowload on the &lt;a title="Soap Dragon Games website" href="http://soapdragon.emedia.net.nz/soapdragon/"&gt;Soap
Dragon Games&lt;/a&gt; website.&amp;nbsp; The new version look very similar to the old v0.2.3
one but there are a lot of changes behind the scenes, including heaps of scripting
updates, dialog box handling, dynamic buttons (which can be created in lua script),
multiple player actors and switching between them, and a bunch of other improvements.
&lt;/p&gt;
&lt;p&gt;
It also includes a (semi) working map editor, but you need to know some script commands
to make it work.
&lt;/p&gt;
&lt;p&gt;
Jump over to the site and &lt;a title="TileEngine Dowloads" href="http://soapdragon.emedia.net.nz/soapdragon/TileEngine/TileEngineDownloads/tabid/64/Default.aspx"&gt;download
it&lt;/a&gt;.&amp;nbsp; I'm keen to hear any feedback that you have about it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=c4ea174d-14e0-4a51-ab18-9570051f7484" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,c4ea174d-14e0-4a51-ab18-9570051f7484.aspx</comments>
      <category>Game Development</category>
      <category>TileEngine</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=21902ca2-934f-4432-b3a2-a496b4059e67</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,21902ca2-934f-4432-b3a2-a496b4059e67.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,21902ca2-934f-4432-b3a2-a496b4059e67.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=21902ca2-934f-4432-b3a2-a496b4059e67</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
My head is spinning.
</p>
        <p>
Last week the guys from the game development house <a title="Straylight Studios game development house" href="http://www.straylight-studios.com/">Straylight
Studios</a> contacted me and offered me a job as a senior programmer.  I've been
talking to them for a while about the possibility of working there, but I thought
that it was a bit of a shot in the dark.
</p>
        <p>
So anyway I have accepted the job.  Hell, how could I not accept.  Game
development has been my hobby since I was about 8 years old, and it is my ultimate
career choice.  They could have asked for me to work for free and I would have
jumped at it (well, not actually, I still have a family to support).
</p>
        <p>
I'm starting on the 21st of April, which is just in time for their company reboot. 
I've been told which project I'll be working on initially, but I'm not sure how much
I'm allowed to comment on publicly just yet.  I do know that I'll be using C++,
C# and <a title="lua" href="http://www.lua.org/">Lua</a>.
</p>
        <p>
I was a bit worried about how it would go down with everyone at <a title="eMedia web solutions" href="http://www.emedia.co.nz/">eMedia</a> (where
I current work as a web developer) because it's going to make things hard for everyone
until they can find someone to fill my shoes, but everyone has been REALLY supportive.
</p>
        <p>
 
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=21902ca2-934f-4432-b3a2-a496b4059e67" />
      </body>
      <title>Moving in to the Game Development industry</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,21902ca2-934f-4432-b3a2-a496b4059e67.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/03/19/Moving+In+To+The+Game+Development+Industry.aspx</link>
      <pubDate>Wed, 19 Mar 2008 21:02:24 GMT</pubDate>
      <description>&lt;p&gt;
My head is spinning.
&lt;/p&gt;
&lt;p&gt;
Last week the guys from the game development house &lt;a title="Straylight Studios game development house" href="http://www.straylight-studios.com/"&gt;Straylight
Studios&lt;/a&gt; contacted me and offered me a job as a senior programmer.&amp;nbsp; I've been
talking to them for a while about the possibility of working there, but I thought
that it was&amp;nbsp;a bit of a shot in the dark.
&lt;/p&gt;
&lt;p&gt;
So anyway I have accepted the job.&amp;nbsp; Hell, how could I not accept.&amp;nbsp; Game
development has been my hobby since I was about 8 years old,&amp;nbsp;and it is my ultimate
career choice.&amp;nbsp; They could have asked for me to work for free and I would have
jumped at it (well, not actually, I still have a family to support).
&lt;/p&gt;
&lt;p&gt;
I'm starting on the 21st of April, which is just in time for their company reboot.&amp;nbsp;
I've been told which project I'll be working on initially, but I'm not sure how much
I'm allowed to comment on publicly just yet.&amp;nbsp; I do know that I'll be using C++,
C# and &lt;a title="lua" href="http://www.lua.org/"&gt;Lua&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
I was a bit worried about how it would go down with everyone at &lt;a title="eMedia web solutions" href="http://www.emedia.co.nz/"&gt;eMedia&lt;/a&gt; (where
I current work as a web developer) because it's going to make things hard for everyone
until they can find someone to fill my shoes, but everyone has been&amp;nbsp;REALLY supportive.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=21902ca2-934f-4432-b3a2-a496b4059e67" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,21902ca2-934f-4432-b3a2-a496b4059e67.aspx</comments>
      <category>Game Development</category>
      <category>Personal</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=69a68001-f065-4728-9311-b2d17d0520a8</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,69a68001-f065-4728-9311-b2d17d0520a8.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,69a68001-f065-4728-9311-b2d17d0520a8.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=69a68001-f065-4728-9311-b2d17d0520a8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div>
          <div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FLOAT: right; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">
            <img alt="Dungeons &amp; Dragons first edition" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/DnD_original.jpg" border="0" />
          </div>
          <div>As various sources around the web are reporting the death of <a title="Gary Gyrax on Answers.com" href="http://www.answers.com/topic/gary-gygax">Gary
Gygax</a>.  Gary was of course the co-creator of <a title="Dungeons and Dragons website" href="http://www.wizards.com/dnd/">Dungeons
and Dragons</a><p></p><p>
I've never really thought about it before but this guy was actually a major influence
in my life, from playing D&amp;D at high school, to when I started playing with computer
game development I used to base all of my code on good ol' 3d6 dice rolls rules
out of the D&amp;D rulebooks.
</p><p>
A salute to Gary.  You have left a mark on our world and we thank you for it.
</p></div>
          <img alt="Gary Gygax" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/gygax.jpg" border="0" />
          <div style="CLEAR: both">
          </div>
        </div>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=69a68001-f065-4728-9311-b2d17d0520a8" />
      </body>
      <title>Gary Gygax passes away</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,69a68001-f065-4728-9311-b2d17d0520a8.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/03/05/Gary+Gygax+Passes+Away.aspx</link>
      <pubDate>Wed, 05 Mar 2008 07:07:47 GMT</pubDate>
      <description>&lt;div&gt;
&lt;div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FLOAT: right; PADDING-BOTTOM: 5px; PADDING-TOP: 5px"&gt;&lt;img alt="Dungeons &amp;amp; Dragons first edition" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/DnD_original.jpg" border=0&gt; 
&lt;/div&gt;
&lt;div&gt;As various sources around the web are reporting the death of &lt;a title="Gary Gyrax on Answers.com" href="http://www.answers.com/topic/gary-gygax"&gt;Gary
Gygax&lt;/a&gt;.&amp;nbsp; Gary was of course the co-creator of &lt;a title="Dungeons and Dragons website" href="http://www.wizards.com/dnd/"&gt;Dungeons
and Dragons&lt;/a&gt; 
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
I've never really thought about it before but this guy was actually a major influence
in my life, from playing D&amp;amp;D at high school, to when I started playing with computer
game development I used to base all of my code on good ol'&amp;nbsp;3d6 dice rolls rules
out of the D&amp;amp;D rulebooks.
&lt;/p&gt;
&lt;p&gt;
A salute to Gary.&amp;nbsp; You have left a mark on our world and we thank you for it.
&lt;/p&gt;
&lt;/div&gt;
&lt;img alt="Gary Gygax" src="http://buzzrick.true.geek.nz/dasBlog/content/binary/gygax.jpg" border=0&gt; 
&lt;div style="CLEAR: both"&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=69a68001-f065-4728-9311-b2d17d0520a8" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,69a68001-f065-4728-9311-b2d17d0520a8.aspx</comments>
      <category>Game Development</category>
      <category>Gaming</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=2eaeca4e-1330-486f-908a-50f93e54027f</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2eaeca4e-1330-486f-908a-50f93e54027f.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2eaeca4e-1330-486f-908a-50f93e54027f.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=2eaeca4e-1330-486f-908a-50f93e54027f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've just recently installed Service Pack 1 for Windows Vista, since then I my IIS
services won't start.  It wouldn't start because it relied in the WAS service
(the Windows Process Activation Service) which also wouldn't start.  I finally
found a solution:
</p>
        <ol>
          <li>
Open an elevated command prompt window (Go to Start-&gt;All Programs-&gt;Accessories,
right click Command Prompt and select run as Administrator) 
</li>
          <li>
Type "cd %Windir%\system32\inetsrv\config" 
</li>
          <li>
Edit the applicationHost.config file (type "notepad ApplicationHost.config") 
</li>
          <li>
Find the "system.applicationHost" sectionGroup and add a configHistory section.</li>
        </ol>
        <p>
Before I had done this my system.applicationHost looked like this:
</p>
        <pre>
          <code>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
                <p>
&lt;
</p>
              </font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">sectionGroup</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">system.applicationHost</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">applicationPools</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">customMetadata</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">listenerAdapters</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">log</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">sites</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">webLimits</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br /></font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">&lt;/</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">sectionGroup</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">&gt;
</font>
            </font>
          </code>
        </pre>
        <p>
With the added line it looks like this:
</p>
        <pre>
          <code>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
                <p>
&lt;
</p>
              </font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">sectionGroup</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">system.applicationHost</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">applicationPools</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">customMetadata</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">listenerAdapters</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">log</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">sites</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     &lt;</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">section</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">name</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">webLimits</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">allowDefinition</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">AppHostOnly</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
              </font>
            </font>
            <font color="#ff0000" size="2">
              <font color="#ff0000" size="2">overrideModeDefault</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">=</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">Deny</font>
            </font>
            <font color="#000000" size="2">"</font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2"> /&gt;<br />
     <strong><font size="3">&lt;</font></strong></font>
            </font>
            <strong>
              <font size="3">
                <font color="#a31515">
                  <font color="#a31515">section</font>
                </font>
                <font color="#0000ff">
                  <font color="#0000ff">
                  </font>
                </font>
                <font color="#ff0000">
                  <font color="#ff0000">name</font>
                </font>
                <font color="#0000ff">
                  <font color="#0000ff">=</font>
                </font>
                <font color="#000000">"</font>
                <font color="#0000ff">
                  <font color="#0000ff">configHistory</font>
                </font>
                <font color="#000000">"</font>
                <font color="#0000ff">
                  <font color="#0000ff">
                  </font>
                </font>
                <font color="#ff0000">
                  <font color="#ff0000">allowDefinition</font>
                </font>
                <font color="#0000ff">
                  <font color="#0000ff">=</font>
                </font>
                <font color="#000000">"</font>
                <font color="#0000ff">
                  <font color="#0000ff">AppHostOnly</font>
                </font>
                <font color="#000000">" </font>
                <font color="#ff0000">
                  <font color="#ff0000">overrideModeDefault</font>
                </font>
                <font color="#0000ff">
                  <font color="#0000ff">=</font>
                </font>
                <font color="#000000">"</font>
                <font color="#0000ff">
                  <font color="#0000ff">Deny</font>
                </font>
                <font color="#000000">"</font>
              </font>
            </strong>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">
                <strong>
                  <font size="3"> /&gt;<br /></font>
                </strong>&lt;/</font>
            </font>
            <font color="#a31515" size="2">
              <font color="#a31515" size="2">sectionGroup</font>
            </font>
            <font color="#0000ff" size="2">
              <font color="#0000ff" size="2">&gt;
<p></p></font>
            </font>
          </code>
        </pre>
        <code>Once this has been saved then the WAS service would start okay,
and hence IIS is now running.</code>
        <p>
        </p>
        <p>
          <code>I hope this information is useful to someone.</code>
        </p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2eaeca4e-1330-486f-908a-50f93e54027f" />
      </body>
      <title>IIS service can't start after Vista SP1 installed</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2eaeca4e-1330-486f-908a-50f93e54027f.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/03/05/IIS+Service+Cant+Start+After+Vista+SP1+Installed.aspx</link>
      <pubDate>Wed, 05 Mar 2008 06:41:56 GMT</pubDate>
      <description>&lt;p&gt;
I've just recently installed Service Pack 1 for Windows Vista, since then I my IIS
services won't start.&amp;nbsp; It wouldn't start because it relied in the WAS service
(the Windows Process Activation Service) which also wouldn't start. &amp;nbsp;I finally
found a solution:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Open an elevated command prompt window (Go to Start-&amp;gt;All Programs-&amp;gt;Accessories,
right click Command Prompt and select run as Administrator) 
&lt;li&gt;
Type "cd %Windir%\system32\inetsrv\config" 
&lt;li&gt;
Edit the applicationHost.config file (type "notepad ApplicationHost.config") 
&lt;li&gt;
Find the "system.applicationHost" sectionGroup and add a configHistory section.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Before I had done this my system.applicationHost looked like this:
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
&amp;lt;
&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;sectionGroup&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;system.applicationHost&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;applicationPools&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;customMetadata&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;listenerAdapters&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;log&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;sites&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;webLimits&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;sectionGroup&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
With the added line it looks like this:
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; 
&lt;p&gt;
&amp;lt;
&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;sectionGroup&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;system.applicationHost&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;applicationPools&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;customMetadata&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;listenerAdapters&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;log&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;sites&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;webLimits&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font size=3&gt;&amp;lt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size=3&gt;&lt;font color=#a31515&gt;&lt;font color=#a31515&gt;section&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000&gt;&lt;font color=#ff0000&gt;name&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;"&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;configHistory&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;"&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000&gt;&lt;font color=#ff0000&gt;allowDefinition&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;"&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;AppHostOnly&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;" &lt;/font&gt;&lt;font color=#ff0000&gt;&lt;font color=#ff0000&gt;overrideModeDefault&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;"&lt;/font&gt;&lt;font color=#0000ff&gt;&lt;font color=#0000ff&gt;Deny&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000&gt;"&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&lt;strong&gt;&lt;font size=3&gt; /&amp;gt;&lt;br&gt;
&lt;/font&gt;&lt;/strong&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;sectionGroup&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&gt;
&lt;p&gt;
&lt;/font&gt;&lt;/font&gt;&gt;
&lt;/pre&gt;&lt;code&gt;Once this has been saved then the WAS service would start okay, and hence
IIS is now running.&lt;/code&gt; 
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;I hope this information is useful to someone.&lt;/code&gt;&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2eaeca4e-1330-486f-908a-50f93e54027f" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2eaeca4e-1330-486f-908a-50f93e54027f.aspx</comments>
      <category>DotNet</category>
      <category>Vista</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=37189150-a4c4-4c98-9671-969088731658</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,37189150-a4c4-4c98-9671-969088731658.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,37189150-a4c4-4c98-9671-969088731658.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=37189150-a4c4-4c98-9671-969088731658</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
We have another Dunedin .Net User group event coming up next Wednesday (27th Feb)
</p>
        <p>
          <a title="JD's Blog" href="http://blog.bluecog.co.nz/">John-Daniel Trask</a> from <a title="JD's Bio" href="http://www.mindscape.co.nz/about/directors/#jd">Mindscape</a> is
coming down and will be introducing the ASP.NET MVC framework from Microsoft which
allows developers to create ASP.NET solutions without using standard webforms that
they’re used to. 
</p>
        <p>
This new framework empowers developers to more easily create robust solutions based
on solid design patterns. 
</p>
        <p>
This talk will start by introducing the MVC pattern and then dive into the specifics
of the framework so even if are new to using the MVC design pattern you will be able
to understand what is being discussed. 
</p>
        <p>
Finally, he will cover unit testing and mocking to validate your solutions. 
</p>
        <p>
 
</p>
        <p>
The MVC pattern is becoming more and more common in development, so I highly recommend
that everyone comes along and check it out.  Scott Guthrie has a great blog entry
discussing the <a title="Scott Guthrie discusses the ASP.NET MVC Framework" href="http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspx">MVC
framework</a>.
</p>
        <p>
The presentation will be at the Centre for Innovation on the university campus, and
we'll be starting off at 6pm.
</p>
        <p>
Register online at on the <a title="Register Online" href="http://www.dot.net.nz/Default.aspx?tabid=1&amp;mid=388&amp;ctl=Detail&amp;xmid=3497&amp;xmfid=2">dot.net.nz
website</a></p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=37189150-a4c4-4c98-9671-969088731658" />
      </body>
      <title>ASP.NET MVC framework .NET usergroup event in Dunedin</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,37189150-a4c4-4c98-9671-969088731658.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/02/18/ASPNET+MVC+Framework+NET+Usergroup+Event+In+Dunedin.aspx</link>
      <pubDate>Mon, 18 Feb 2008 22:27:12 GMT</pubDate>
      <description>&lt;p&gt;
We have another Dunedin .Net User group event coming up next Wednesday (27th Feb)
&lt;/p&gt;
&lt;p&gt;
&lt;a title="JD's Blog" href="http://blog.bluecog.co.nz/"&gt;John-Daniel Trask&lt;/a&gt; from &lt;a title="JD's Bio" href="http://www.mindscape.co.nz/about/directors/#jd"&gt;Mindscape&lt;/a&gt; is
coming down and will be introducing the ASP.NET MVC framework from Microsoft which
allows developers to create ASP.NET solutions without using standard webforms that
they’re used to. 
&lt;/p&gt;
&lt;p&gt;
This new framework empowers developers to more easily create robust solutions based
on solid design patterns. 
&lt;/p&gt;
&lt;p&gt;
This talk will start by introducing the MVC pattern and then dive into the specifics
of the framework so even if are new to using the MVC design pattern you will be able
to understand what is being discussed. 
&lt;/p&gt;
&lt;p&gt;
Finally, he will cover unit testing and mocking to validate your solutions. 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
The MVC pattern is becoming more and more common in development, so I highly recommend
that everyone comes along and check it out.&amp;nbsp; Scott Guthrie has a great blog entry
discussing the &lt;a title="Scott Guthrie discusses the ASP.NET MVC Framework" href="http://weblogs.asp.net/scottgu/archive/2007/10/14/asp-net-mvc-framework.aspx"&gt;MVC
framework&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
The presentation will be at the Centre for Innovation on the university campus, and
we'll be starting off at 6pm.
&lt;/p&gt;
&lt;p&gt;
Register online at on the &lt;a title="Register Online" href="http://www.dot.net.nz/Default.aspx?tabid=1&amp;amp;mid=388&amp;amp;ctl=Detail&amp;amp;xmid=3497&amp;amp;xmfid=2"&gt;dot.net.nz
website&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=37189150-a4c4-4c98-9671-969088731658" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,37189150-a4c4-4c98-9671-969088731658.aspx</comments>
      <category>DotNet</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=84554a43-44fb-453c-a1c6-ccfcccb88755</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,84554a43-44fb-453c-a1c6-ccfcccb88755.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,84554a43-44fb-453c-a1c6-ccfcccb88755.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=84554a43-44fb-453c-a1c6-ccfcccb88755</wfw:commentRss>
      <title>Summer Road Trip 2008</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,84554a43-44fb-453c-a1c6-ccfcccb88755.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2008/02/18/Summer+Road+Trip+2008.aspx</link>
      <pubDate>Mon, 18 Feb 2008 21:42:22 GMT</pubDate>
      <description>Yesterday we had the Microsoft Summer Road Trip event here in Dunedin for the launch of Visual Studio 2008, Windows Server 2008 and SQL Server 2008...&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=84554a43-44fb-453c-a1c6-ccfcccb88755"/&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,84554a43-44fb-453c-a1c6-ccfcccb88755.aspx</comments>
      <category>DotNet</category>
      <category>SQL Server</category>
      <category>Visual Studio</category>
      <category>Windows Server</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=46a49eff-4806-42d4-ab1f-4a17661cbaaf</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,46a49eff-4806-42d4-ab1f-4a17661cbaaf.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,46a49eff-4806-42d4-ab1f-4a17661cbaaf.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=46a49eff-4806-42d4-ab1f-4a17661cbaaf</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There's a pretty good article over on CodeProject discussing how to get an <a title="XNA Game Studio 2.0" target="_blank" href="http://msdn2.microsoft.com/en-us/library/bb200104.aspx">XNA
Game Studio 2.0</a> project working in Visual Studio 2008.  It also quickly goes
over how to get an XNA project hosted in a Windows Forms application.
</p>
        <p>
Take a look at <a title="XNA Games Studio 2.0 Project on Visual Studio 2008" href="http://www.thecodeproject.com/KB/game/XNA_And_Beyond.aspx" target="_blank">http://www.thecodeproject.com/KB/game/XNA_And_Beyond.aspx</a></p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=46a49eff-4806-42d4-ab1f-4a17661cbaaf" />
      </body>
      <title>XNA Game Studio 2.0 and Visual Studio 2008</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,46a49eff-4806-42d4-ab1f-4a17661cbaaf.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/12/16/XNA+Game+Studio+20+And+Visual+Studio+2008.aspx</link>
      <pubDate>Sun, 16 Dec 2007 23:06:12 GMT</pubDate>
      <description>&lt;p&gt;
There's a pretty good article over on CodeProject discussing how to get an &lt;a title="XNA Game Studio 2.0" target="_blank" href="http://msdn2.microsoft.com/en-us/library/bb200104.aspx"&gt;XNA
Game Studio 2.0&lt;/a&gt; project working in Visual Studio 2008.&amp;nbsp; It also quickly goes
over how to get an XNA project hosted in a Windows Forms application.
&lt;/p&gt;
&lt;p&gt;
Take a look at &lt;a title="XNA Games Studio 2.0 Project on Visual Studio 2008" href="http://www.thecodeproject.com/KB/game/XNA_And_Beyond.aspx" target=_blank&gt;http://www.thecodeproject.com/KB/game/XNA_And_Beyond.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=46a49eff-4806-42d4-ab1f-4a17661cbaaf" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,46a49eff-4806-42d4-ab1f-4a17661cbaaf.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>Visual Studio</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=aaa9a8be-4de3-45ab-8747-0ba48091119e</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,aaa9a8be-4de3-45ab-8747-0ba48091119e.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,aaa9a8be-4de3-45ab-8747-0ba48091119e.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=aaa9a8be-4de3-45ab-8747-0ba48091119e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
As I mentioned earlier, Visual Studio 2008 has been released, as well as the final
release of the <a title="Download the .NET Framework v3.5" href="http://go.microsoft.com/?linkid=7755937" target="_blank">v3.5
.NET Framework</a>.  MSDN subscribers can download <a title="Download Visual Studio 2008 Professional from MSDN" href="http://msdn2.microsoft.com/en-us/subscriptions/bb608344.aspx">Visual
Studio 2008</a> (both the Standard and Professional versions) already, or if you're
not a subscriber you can choose from the free <a title="Download Free Visual Studio Express Editions" href="http://www.microsoft.com/express/product/default.aspx" target="_blank">Visual
Studio Express Editions</a>.
</p>
        <p>
I don't expect to see much of a change because I've been running the beta versions
here for about 6 months as my main development platform, but I'm looking forward to
some stability improvements.  One big change that I like is that the Professional
edition now supports Unit Tests (VS2005 Pro didn't).
</p>
        <p>
I just wish there was a way to run .NET v3.5 websites on a windows 2000 server :-(
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=aaa9a8be-4de3-45ab-8747-0ba48091119e" />
      </body>
      <title>Visual Studio 2008 Released</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,aaa9a8be-4de3-45ab-8747-0ba48091119e.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/11/20/Visual+Studio+2008+Released.aspx</link>
      <pubDate>Tue, 20 Nov 2007 20:52:16 GMT</pubDate>
      <description>&lt;p&gt;
As I mentioned earlier, Visual Studio 2008 has been released, as well as the final
release of the &lt;a title="Download the .NET Framework v3.5" href="http://go.microsoft.com/?linkid=7755937" target=_blank&gt;v3.5
.NET Framework&lt;/a&gt;.&amp;nbsp; MSDN subscribers can download &lt;a title="Download Visual Studio 2008 Professional from MSDN" href="http://msdn2.microsoft.com/en-us/subscriptions/bb608344.aspx"&gt;Visual
Studio 2008&lt;/a&gt; (both the Standard and Professional versions) already, or if you're
not a subscriber you can choose from the free &lt;a title="Download Free Visual Studio Express Editions" href="http://www.microsoft.com/express/product/default.aspx" target=_blank&gt;Visual
Studio Express Editions&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
I don't expect to see much of a change because I've been running the beta versions
here for about 6 months as my main development platform, but I'm looking forward to
some stability improvements.&amp;nbsp; One big change that I like is that the Professional
edition now supports Unit Tests (VS2005 Pro didn't).
&lt;/p&gt;
&lt;p&gt;
I just wish there was a way to run .NET v3.5 websites on a windows 2000 server :-(
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=aaa9a8be-4de3-45ab-8747-0ba48091119e" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,aaa9a8be-4de3-45ab-8747-0ba48091119e.aspx</comments>
      <category>DotNet</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=d9ab9a03-ce01-4948-8475-8e628bcb0f15</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,d9ab9a03-ce01-4948-8475-8e628bcb0f15.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,d9ab9a03-ce01-4948-8475-8e628bcb0f15.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=d9ab9a03-ce01-4948-8475-8e628bcb0f15</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
You've probably already heard this from a hundred blogs across the planet already,
but there is a <a title="Download XNA Game Studio 2.0 beta" href="http://creators.xna.com/beta/betahome.aspx" target="_blank">beta
release of XNA Game Studio 2.0</a> available.  The official announcement on the
XNA blog is <a title="XNA Game Studio 2.0 beta announcement" href="http://blogs.msdn.com/xna/archive/2007/11/19/now-available-xna-game-studio-2-0-beta.aspx" target="_blank">here</a>. 
They also have a full list of <a title="Whats new in XNA Game Studio 2.0" href="http://creators.xna.com/beta/betawhatsnew.aspx" target="_blank">what's
new</a> on the official site.
</p>
        <p>
The biggest changes include support for Visual Studio 2005.  You don't have to
run it on Visual C# Express anymore.  Unfortunately there is no support for <a title="Visual Studio 2008 Released" href="http://buzzrick.true.geek.nz/dasBlog/2007/11/20/Visual+Studio+2008+Released.aspx">Visual
Studio 2008</a> which was released yesterday, although I imagine it will be supported
by the time it comes out of beta.
</p>
        <p>
It also includes support for the new multiplayer APIs so you can set up your games
to play over system link, xbox Live (you need an XNA Creators Club membership for
that), as well as over a local network.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=d9ab9a03-ce01-4948-8475-8e628bcb0f15" />
      </body>
      <title>XNA Game Studio 2.0 beta</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,d9ab9a03-ce01-4948-8475-8e628bcb0f15.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/11/20/XNA+Game+Studio+20+Beta.aspx</link>
      <pubDate>Tue, 20 Nov 2007 20:42:29 GMT</pubDate>
      <description>&lt;p&gt;
You've probably already heard this from a hundred blogs across the planet already,
but there is a &lt;a title="Download XNA Game Studio 2.0 beta" href="http://creators.xna.com/beta/betahome.aspx" target=_blank&gt;beta
release of XNA Game Studio 2.0&lt;/a&gt; available.&amp;nbsp; The official announcement on the
XNA blog is &lt;a title="XNA Game Studio 2.0 beta announcement" href="http://blogs.msdn.com/xna/archive/2007/11/19/now-available-xna-game-studio-2-0-beta.aspx" target=_blank&gt;here&lt;/a&gt;.&amp;nbsp;
They also have a full list of &lt;a title="Whats new in XNA Game Studio 2.0" href="http://creators.xna.com/beta/betawhatsnew.aspx" target=_blank&gt;what's
new&lt;/a&gt; on the official site.
&lt;/p&gt;
&lt;p&gt;
The biggest changes include support for Visual Studio 2005.&amp;nbsp; You don't have to
run it on Visual C# Express anymore.&amp;nbsp; Unfortunately there is no support for &lt;a title="Visual Studio 2008 Released" href="http://buzzrick.true.geek.nz/dasBlog/2007/11/20/Visual+Studio+2008+Released.aspx"&gt;Visual
Studio 2008&lt;/a&gt; which was released yesterday, although I imagine it will be supported
by the time it comes out of beta.
&lt;/p&gt;
&lt;p&gt;
It also includes support for the new multiplayer APIs so you can set up your games
to play over system link, xbox Live (you need an XNA Creators Club membership for
that), as well as over a local network.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=d9ab9a03-ce01-4948-8475-8e628bcb0f15" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,d9ab9a03-ce01-4948-8475-8e628bcb0f15.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>Visual Studio</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=dbea6ec6-013f-46f3-8ac6-f00fa019d6d0</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,dbea6ec6-013f-46f3-8ac6-f00fa019d6d0.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,dbea6ec6-013f-46f3-8ac6-f00fa019d6d0.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=dbea6ec6-013f-46f3-8ac6-f00fa019d6d0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
My wife must love me.
</p>
        <p>
I was checking out trademe the other day and happened across a very cheap factory
recertified <a title="MSI 7800GTX information" href="http://global.msi.com.tw/index.php?func=proddesc&amp;prod_no=772&amp;maincat_no=130&amp;cat2_no=136">MSI
Nvidia GeForce 7800GTX</a> video card, pretty much identical to the <a title="Gigabyte 7800GTX information" href="http://www.gigabyte.com.tw/Products/VGA/Products_Overview.aspx?ProductID=1265">Gigabyte</a> one
that I currently already use, for only $200NZD.  The normal retail for this is
over $500NZD.  I thought to myself that it would be bloody nice to set up as
SLI in my system, but I didn't have the pocket money, and we are going into a financially
tight time coming up to christmas with the kids so I just thought that was the
end of it.
</p>
        <p>
My wonderful wife disappeared and came back half an hour later and said that I could
buy it; she had shuffled some money around so that we could buy it out of the
family account.
</p>
        <p>
So now I have a great twin 7800GTX SLI rig.  It's awesome.  My 3DMark scores
have almost doubled, and I can bump up to almost maximum video quality settings in
most games.  
</p>
        <p>
I'm just loving playing <a title="Orange box package" href="http://orange.half-life2.com/hl2ep2.html">Half-Life
2 Episode 2</a> with full shadows and no noticeable slowdowns.  Half Life creeps
the sh!t out of me at the best of times but now it's even better especially when you
see the shadow of a Headcrab Zombie coming around the corner.  I also like when
you're holding something up with the gravity gun (like a circular saw blade with a
Zombie's name on it) and the flashlight on, and getting accurate shadows on the walls.
</p>
        <p>
I initially had some a problem with the computer shutting down when an intensive graphics
application started, but I juggled my power connections around so that the two video
cards get enough power.  I definitely recommend a good quality power supply if
you are setting up an SLI rig.
</p>
        <p>
The only issue that I have now is that with some games (well, only one in particular)
when you exit the normal Windows Vista screen doesn't reappear.  It just remains
black.  I can blindly run a reboot command, and as soon as the reboot starts
the screen will reappear before windows shuts down, but it's still a pain in the arse.
</p>
        <p>
Anyway, I know that my wife doesn't read my blog, but thanks sweetheart!  She
definitely must love me if she's helping me buy something which can only make me want
to spend MORE time on my computer.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=dbea6ec6-013f-46f3-8ac6-f00fa019d6d0" />
      </body>
      <title>Nvidia GeForce 7800GTX SLI</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,dbea6ec6-013f-46f3-8ac6-f00fa019d6d0.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/11/05/Nvidia+GeForce+7800GTX+SLI.aspx</link>
      <pubDate>Mon, 05 Nov 2007 01:07:13 GMT</pubDate>
      <description>&lt;p&gt;
My wife must love me.
&lt;/p&gt;
&lt;p&gt;
I was checking out trademe the other day and happened across a very cheap factory
recertified &lt;a title="MSI 7800GTX information" href="http://global.msi.com.tw/index.php?func=proddesc&amp;amp;prod_no=772&amp;amp;maincat_no=130&amp;amp;cat2_no=136"&gt;MSI
Nvidia GeForce 7800GTX&lt;/a&gt; video card, pretty much identical to the &lt;a title="Gigabyte 7800GTX information" href="http://www.gigabyte.com.tw/Products/VGA/Products_Overview.aspx?ProductID=1265"&gt;Gigabyte&lt;/a&gt; one
that I currently already use, for only $200NZD.&amp;nbsp; The normal retail for this is
over $500NZD.&amp;nbsp; I thought to myself that it would be bloody nice to set up as
SLI in my system, but I didn't have the pocket money, and we are going into a financially
tight time coming up to christmas with the kids&amp;nbsp;so I just thought that was the
end of it.
&lt;/p&gt;
&lt;p&gt;
My wonderful wife disappeared and came back half an hour later and said that I could
buy it;&amp;nbsp;she had shuffled some money around so that we could buy it out of the
family account.
&lt;/p&gt;
&lt;p&gt;
So now I have a great twin 7800GTX SLI rig.&amp;nbsp; It's awesome.&amp;nbsp; My 3DMark scores
have almost doubled, and I can bump up to almost maximum video quality settings in
most games.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
I'm just loving playing &lt;a title="Orange box package" href="http://orange.half-life2.com/hl2ep2.html"&gt;Half-Life
2 Episode 2&lt;/a&gt; with full shadows and no noticeable slowdowns.&amp;nbsp; Half Life creeps
the sh!t out of me at the best of times but now it's even better especially when you
see the shadow of a Headcrab Zombie coming around the corner.&amp;nbsp; I also like when
you're holding something up with the gravity gun (like a circular saw blade with a
Zombie's name on it) and the flashlight on, and getting accurate shadows on the walls.
&lt;/p&gt;
&lt;p&gt;
I initially had some a problem with the computer shutting down when an intensive&amp;nbsp;graphics
application started, but I juggled my power connections around so that the two video
cards get enough power.&amp;nbsp; I definitely recommend a good quality power supply if
you are setting up an SLI rig.
&lt;/p&gt;
&lt;p&gt;
The only issue that I have now is that with some games (well, only one in particular)
when you exit the normal Windows Vista screen doesn't reappear.&amp;nbsp; It just remains
black.&amp;nbsp; I can blindly run a reboot command, and as soon as the reboot starts
the screen will reappear before windows shuts down, but it's still a pain in the arse.
&lt;/p&gt;
&lt;p&gt;
Anyway, I know that my wife doesn't read my blog, but thanks sweetheart!&amp;nbsp; She
definitely must love me if she's helping me buy something which can only make me want
to spend MORE time on my computer.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=dbea6ec6-013f-46f3-8ac6-f00fa019d6d0" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,dbea6ec6-013f-46f3-8ac6-f00fa019d6d0.aspx</comments>
      <category>Gaming</category>
      <category>Hardware</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=de11ea1d-0be2-4b40-941e-6b4e30dbe330</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,de11ea1d-0be2-4b40-941e-6b4e30dbe330.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,de11ea1d-0be2-4b40-941e-6b4e30dbe330.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=de11ea1d-0be2-4b40-941e-6b4e30dbe330</wfw:commentRss>
      <title>Interesting new gameplay on PS3 (Eye of Judgement)</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,de11ea1d-0be2-4b40-941e-6b4e30dbe330.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/10/17/Interesting+New+Gameplay+On+PS3+Eye+Of+Judgement.aspx</link>
      <pubDate>Wed, 17 Oct 2007 20:11:58 GMT</pubDate>
      <description>IGN has a great video review of a new game coming out on Playstation 3 called "Eye of Judgement".  It's a card based game like M:TG, but it uses the new eyetoy to control it.  I'm not usually into card battle games but this looks like quite a bit of fun.&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=de11ea1d-0be2-4b40-941e-6b4e30dbe330"/&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,de11ea1d-0be2-4b40-941e-6b4e30dbe330.aspx</comments>
      <category>Gaming</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=8dc1d1c5-797b-4003-a14e-b3410c34287c</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,8dc1d1c5-797b-4003-a14e-b3410c34287c.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,8dc1d1c5-797b-4003-a14e-b3410c34287c.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=8dc1d1c5-797b-4003-a14e-b3410c34287c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you are running both <a title="Visual Studio page at Microsoft.com" href="http://msdn2.microsoft.com/en-us/vstudio/default.aspx">Visual
Studio 2005 and Visual Studio 2008</a> (beta 2 at the time of writing) then you may
wish to load solutions with both IDEs.  Unfortunately the Solution files are
a binary format which differs between VS2005 and VS2008, however the Project files
are a text format which is backwards compatible.
</p>
        <p>
So what I do is I copy the VS2005 solution files (.sln, .sou, .vsscc and .vssscc)
and append "_VS2008" to the end of the filename, so for example you would rename "myapp.sln"
to "myapp_vs2008.sln" etc.  Then I load this new solution into VS2008 which will
convert it. 
<br />
 <br />
Then you have two solution files, one which is loadable in VS2005 and one which is
loadable in VS2008.  I often use this in my development environment where most
of my developers are still using VS2005, but I use VS2008 B2, and we can collaborate
using both versions.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=8dc1d1c5-797b-4003-a14e-b3410c34287c" />
      </body>
      <title>Sharing solutions between Visual Studio 2005 and 2008</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,8dc1d1c5-797b-4003-a14e-b3410c34287c.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/09/24/Sharing+Solutions+Between+Visual+Studio+2005+And+2008.aspx</link>
      <pubDate>Mon, 24 Sep 2007 00:53:29 GMT</pubDate>
      <description>&lt;p&gt;
If you are running both &lt;a title="Visual Studio page at Microsoft.com" href="http://msdn2.microsoft.com/en-us/vstudio/default.aspx"&gt;Visual
Studio 2005 and Visual Studio 2008&lt;/a&gt; (beta 2 at the time of writing) then you may
wish to load solutions with both IDEs.&amp;nbsp; Unfortunately the Solution files are
a binary format which differs between VS2005 and VS2008, however the Project files
are a text format which is backwards compatible.
&lt;/p&gt;
&lt;p&gt;
So what I do is I copy the VS2005 solution files (.sln, .sou, .vsscc and .vssscc)
and append "_VS2008" to the end of the filename, so for example you would rename "myapp.sln"
to "myapp_vs2008.sln" etc.&amp;nbsp; Then I load this new solution into VS2008 which will
convert it. 
&lt;br&gt;
&amp;nbsp;&lt;br&gt;
Then you have two solution files, one which is loadable in VS2005 and one which is
loadable in VS2008.&amp;nbsp; I often use this in my development environment where most
of my developers are still using VS2005, but I use VS2008 B2, and we can collaborate
using both versions.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=8dc1d1c5-797b-4003-a14e-b3410c34287c" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,8dc1d1c5-797b-4003-a14e-b3410c34287c.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=f12bc225-6425-4ad3-97f5-ff3fce6ad552</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,f12bc225-6425-4ad3-97f5-ff3fce6ad552.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,f12bc225-6425-4ad3-97f5-ff3fce6ad552.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=f12bc225-6425-4ad3-97f5-ff3fce6ad552</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I bought <a href="http://www.ea.com/official/battlefield/battlefield2/us/" title="Battlefield 2">Battlefield
2</a> last week after playing with a demo. I was keen to get online and play with
real people
</p>
        <p>
Actually, I bought the Battlefield 2 Deluxe version which includes the <a href="http://www.ea.com/official/battlefield/specialforces/us/home.jsp" title="Battlefield 2 Special Forces">Special
Forces</a> expansion as well.
</p>
        <p>
I got home and installed it on my Windows Vista machine, installed the latest <a href="http://largedownloads.ea.com/pub/patches/BF2/1.41/BF2_Patch_1.41.exe" title="Battlefield 2 1.41 patch download">1.41
patch</a>, and rubbed my hands in glee as I tried to connect to a server...
</p>
        <p>
        </p>
        <p>
          <code>Invalid CD Key</code>
        </p>
        <p>
        </p>
        <p>
I was shattered.
</p>
        <p>
I googled for a few hours trying to figure out a solution. Was it a firewall issue?
Was it a router issue? I tried all sorts of solutions. The single player game ran
just fine, it just wouldn't accept my CD keys when I tried to play online.
</p>
        <p>
Eventually I found that I needed to run the game as an administrator to get it to
work.
</p>
        <p>
I also changed the compatibility mode to run as Windows XP SP2, but I'm not sure if
that is actually required.
</p>
        <p>
So I'm finally playing online and working my way to unlock my first extra weapon (going
for a new sniper rifle).
</p>
        <p>
If anyone sees me online (I'll be playing as "Buzzrick") then give me a shout. Or
shoot me. Or something
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=f12bc225-6425-4ad3-97f5-ff3fce6ad552" />
      </body>
      <title>Playing Battlefield 2 Online on Windows Vista.</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,f12bc225-6425-4ad3-97f5-ff3fce6ad552.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/09/10/Playing+Battlefield+2+Online+On+Windows+Vista.aspx</link>
      <pubDate>Mon, 10 Sep 2007 01:04:52 GMT</pubDate>
      <description>&lt;p&gt;
I bought &lt;a href="http://www.ea.com/official/battlefield/battlefield2/us/" title="Battlefield 2"&gt;Battlefield
2&lt;/a&gt; last week after playing with a demo. I was keen to get online and play with
real people
&lt;/p&gt;
&lt;p&gt;
Actually, I bought the Battlefield 2 Deluxe version which includes the &lt;a href="http://www.ea.com/official/battlefield/specialforces/us/home.jsp" title="Battlefield 2 Special Forces"&gt;Special
Forces&lt;/a&gt; expansion as well.
&lt;/p&gt;
&lt;p&gt;
I got home and installed it on my Windows Vista machine, installed the latest &lt;a href="http://largedownloads.ea.com/pub/patches/BF2/1.41/BF2_Patch_1.41.exe" title="Battlefield 2 1.41 patch download"&gt;1.41
patch&lt;/a&gt;, and rubbed my hands in glee as I tried to connect to a server...
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;Invalid CD Key&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
I was shattered.
&lt;/p&gt;
&lt;p&gt;
I googled for a few hours trying to figure out a solution. Was it a firewall issue?
Was it a router issue? I tried all sorts of solutions. The single player game ran
just fine, it just wouldn't accept my CD keys when I tried to play online.
&lt;/p&gt;
&lt;p&gt;
Eventually I found that I needed to run the game as an administrator to get it to
work.
&lt;/p&gt;
&lt;p&gt;
I also changed the compatibility mode to run as Windows XP SP2, but I'm not sure if
that is actually required.
&lt;/p&gt;
&lt;p&gt;
So I'm finally playing online and working my way to unlock my first extra weapon (going
for a new sniper rifle).
&lt;/p&gt;
&lt;p&gt;
If anyone sees me online (I'll be playing as "Buzzrick") then give me a shout. Or
shoot me. Or something
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=f12bc225-6425-4ad3-97f5-ff3fce6ad552" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,f12bc225-6425-4ad3-97f5-ff3fce6ad552.aspx</comments>
      <category>Gaming</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=b9cfe0ac-c782-432d-af51-b67384585f55</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,b9cfe0ac-c782-432d-af51-b67384585f55.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,b9cfe0ac-c782-432d-af51-b67384585f55.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=b9cfe0ac-c782-432d-af51-b67384585f55</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
Lua 5.1.2 is now available at <a href="http://www.lua.org/ftp/lua-5.1.2.tar.gz" alt="Lua v5.1.2 download">http://www.lua.org/ftp/lua-5.1.2.tar.gz</a></p>
        <p>
This new release fixes all of the known documented bugs from v5.1.1 (see the list
at <a href="http://www.lua.org/bugs.html#5.1.1" alt="Lua bugs fixed in v5.1.2">http://www.lua.org/bugs.html#5.1.1</a>).  
Thanks to Luiz and all the other contributors.
</p>
        <p>
Hopefully I'll be able to get my Vault source safe repository back online soon and
get this release built into my TileEngine platform.  Unfortunately SourceGear
Vault isn't supported on Vista yet, so i'm going to have to install it on a spare
WinXP box that I have.  Apparently SourceGear are planning an update to v3.5.2
in a month or so with Vista support.  There is a thread about this on their forums
here: <a href="http://support.sourcegear.com/viewtopic.php?t=7048" alt="SourceGear Vault Server on Windows Vista">http://support.sourcegear.com/viewtopic.php?t=7048</a></p>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=b9cfe0ac-c782-432d-af51-b67384585f55" />
      </body>
      <title>Lua v5.1.2 released</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,b9cfe0ac-c782-432d-af51-b67384585f55.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/04/02/Lua+V512+Released.aspx</link>
      <pubDate>Mon, 02 Apr 2007 21:20:11 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Lua 5.1.2 is now available at &lt;a href="http://www.lua.org/ftp/lua-5.1.2.tar.gz" alt="Lua v5.1.2 download"&gt;http://www.lua.org/ftp/lua-5.1.2.tar.gz&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
This new release fixes all of the known documented bugs from v5.1.1 (see the list
at &lt;a href="http://www.lua.org/bugs.html#5.1.1" alt="Lua bugs fixed in v5.1.2"&gt;http://www.lua.org/bugs.html#5.1.1&lt;/a&gt;).&amp;nbsp;&amp;nbsp;
Thanks to Luiz and all the other contributors.
&lt;/p&gt;
&lt;p&gt;
Hopefully I'll be able to get my Vault source safe repository back online soon and
get this release built into my TileEngine platform.&amp;nbsp; Unfortunately SourceGear
Vault isn't supported on Vista yet, so i'm going to have to install it on a spare
WinXP box that I have.&amp;nbsp; Apparently SourceGear are planning an update to v3.5.2
in a month or so with Vista support.&amp;nbsp; There is a thread about this on their forums
here: &lt;a href="http://support.sourcegear.com/viewtopic.php?t=7048" alt="SourceGear Vault Server on Windows Vista"&gt;http://support.sourcegear.com/viewtopic.php?t=7048&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=b9cfe0ac-c782-432d-af51-b67384585f55" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,b9cfe0ac-c782-432d-af51-b67384585f55.aspx</comments>
      <category>Game Development</category>
      <category>TileEngine</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=81368669-11a8-4d17-a098-7bda7b0a844a</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,81368669-11a8-4d17-a098-7bda7b0a844a.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,81368669-11a8-4d17-a098-7bda7b0a844a.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=81368669-11a8-4d17-a098-7bda7b0a844a</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I finally got my motherboard back from being sent away for warranty repair (see <a href="http://buzzrick.true.geek.nz/dasBlog/2007/02/14/A+Bump+In+The+Road.aspx">here</a>)
and i'm not at all suprised to see that even though the board was marked as "repaired",
it is just the same as before.  In fact now i'm having some weird issues where
Vista gets into a state where the UI seems to be responsive but no applications actually
seem to get their messages about mouseclicks or anything.  It's annoying as hell. 
I have to physically reboot the machine to recover.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=81368669-11a8-4d17-a098-7bda7b0a844a" />
      </body>
      <title>Motherboard back again</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,81368669-11a8-4d17-a098-7bda7b0a844a.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/03/27/Motherboard+Back+Again.aspx</link>
      <pubDate>Tue, 27 Mar 2007 21:24:34 GMT</pubDate>
      <description>&lt;p&gt;
I finally got my motherboard back from being sent away for warranty repair (see &lt;a href="http://buzzrick.true.geek.nz/dasBlog/2007/02/14/A+Bump+In+The+Road.aspx"&gt;here&lt;/a&gt;)
and i'm not at all suprised to see that even though the board was marked as "repaired",
it is just the same as before.&amp;nbsp; In fact now i'm having some weird issues where
Vista gets into a state where the UI seems to be responsive but no applications actually
seem to get their messages about mouseclicks or anything.&amp;nbsp; It's annoying as hell.&amp;nbsp;
I have to physically reboot the machine to recover.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=81368669-11a8-4d17-a098-7bda7b0a844a" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,81368669-11a8-4d17-a098-7bda7b0a844a.aspx</comments>
      <category>Hardware</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=bbb65166-8726-4166-a6ae-4c4891e74f89</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,bbb65166-8726-4166-a6ae-4c4891e74f89.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,bbb65166-8726-4166-a6ae-4c4891e74f89.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=bbb65166-8726-4166-a6ae-4c4891e74f89</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Someone has made an awesome music video with Half life 2 and Gary's mod.
</p>
        <p>
I just thought that I'd share it with everyone.
</p>
        <object height="350" width="425">
          <param name="movie" value="http://www.youtube.com/v/nTbL5elVXrU" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/nTbL5elVXrU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=bbb65166-8726-4166-a6ae-4c4891e74f89" />
      </body>
      <title>The Ballad of Black Mesa</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,bbb65166-8726-4166-a6ae-4c4891e74f89.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/02/28/The+Ballad+Of+Black+Mesa.aspx</link>
      <pubDate>Wed, 28 Feb 2007 01:36:14 GMT</pubDate>
      <description>&lt;p&gt;
Someone has made an awesome music video with Half life 2 and Gary's mod.
&lt;/p&gt;
&lt;p&gt;
I just thought that I'd share it with everyone.
&lt;/p&gt;
&lt;object height=350 width=425&gt;
&lt;param name="movie" value="http://www.youtube.com/v/nTbL5elVXrU"&gt;
&lt;param name="wmode" value="transparent"&gt;
&lt;embed src="http://www.youtube.com/v/nTbL5elVXrU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=bbb65166-8726-4166-a6ae-4c4891e74f89" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,bbb65166-8726-4166-a6ae-4c4891e74f89.aspx</comments>
      <category>Personal</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=2878b634-c4d1-4912-9f8b-d7478d33becc</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2878b634-c4d1-4912-9f8b-d7478d33becc.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2878b634-c4d1-4912-9f8b-d7478d33becc.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=2878b634-c4d1-4912-9f8b-d7478d33becc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Ozymandias (Andre Vrignaud) has posted links to some awesome YouTube footage showing
off a bit of the "Digital Molecular Matter" physics and Euphoria AI being used in
the upcoming Star Wars game <a href="http://en.wikipedia.org/wiki/Star_Wars:_Force_Unleashed">Star
Wars: The Force Unleashed</a>.  It is absolutely awesome.  It is still in
the tech demo stage, but I can see a day when we are all using plugin modules to accomplish
these results.
</p>
        <p>
Head over to <a href="http://ozymandias.com/archive/2007/02/19/Star-Wars_3A00_-The-Force-Unleashed-Tech-Demos.aspx">Ozymandias
blog entry</a> to view the tech demo videos.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2878b634-c4d1-4912-9f8b-d7478d33becc" />
      </body>
      <title>Physics and AI for Star Wars game</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2878b634-c4d1-4912-9f8b-d7478d33becc.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/02/19/Physics+And+AI+For+Star+Wars+Game.aspx</link>
      <pubDate>Mon, 19 Feb 2007 23:50:09 GMT</pubDate>
      <description>&lt;p&gt;
Ozymandias (Andre Vrignaud) has posted links to some awesome YouTube footage showing
off a bit of the "Digital Molecular Matter" physics and Euphoria AI being used in
the upcoming Star Wars game &lt;a href="http://en.wikipedia.org/wiki/Star_Wars:_Force_Unleashed"&gt;Star
Wars: The Force Unleashed&lt;/a&gt;.&amp;nbsp; It is absolutely awesome.&amp;nbsp; It is still in
the tech demo stage, but I can see a day when we are all using plugin modules to accomplish
these results.
&lt;/p&gt;
&lt;p&gt;
Head over to &lt;a href="http://ozymandias.com/archive/2007/02/19/Star-Wars_3A00_-The-Force-Unleashed-Tech-Demos.aspx"&gt;Ozymandias
blog entry&lt;/a&gt; to view the tech demo videos.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2878b634-c4d1-4912-9f8b-d7478d33becc" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2878b634-c4d1-4912-9f8b-d7478d33becc.aspx</comments>
      <category>Game Development</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
It's been a while since I've posted so I figure I should keep everyone in the loop.
</p>
        <p>
I was planning to get a whole lot of work done over the christmas break, but ended
up spending heaps of time with my wife and kids, which was probably more fun anyway.
</p>
        <p>
Getting back to work was hectic because we are in new offices so I've been rebuilding
the network and trying to keep up with coding jobs as well.
</p>
        <p>
Last week I installed Vista on my home machine which runs great, short of the lack
of drivers for either of the available ADSL modems that I have.  I ended up having
to revert to building an old computer and running it without a monitor as a gateway
machine.  It is appropriately named R2D2 on my home network.
</p>
        <p>
During the period of installing Vista and trying to get the ADSL modems working on
it I had to reboot lots of times.  Unfortunately I'm having further issues with
my <a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=1916">Gigabyte
GA-8N-SLI Pro</a> motherboard (see <a href="http://buzzrick.true.geek.nz/dasBlog/2005/09/06/Computer+Hastles.aspx">here</a> and <a href="http://buzzrick.true.geek.nz/dasBlog/2006/03/15/New+Motherboard+Faulty+DDR2+RAM.aspx">here</a>).  <font size="2"></font></p>
        <p>
The problem that I am having is that when I turn the computer on it will power up
for a couple of seconds and then reboot (you can hear the drives recycling and the
fans resetting), then powers for a couple of seconds, then reboots, etc.
</p>
        <font size="2">
          <p>
This will happen anywhere from 4 times or more. I've seen it cycle more than a dozen
times before, but I usually turn it off again before it does it too many times for
fear of causing permanent damage to the computer. If the rebooting does stop then
it won't load up the video card (a Gigabyte 7800GTX card) and the computer will continue
to load into windows but without the video card working. At this point I have to turn
it off again to try again.
</p>
          <p>
            <font size="2">This happens at least 19 out of 20 times that I turn it on. Getting
the machine to boot up is a labourious task because of this; it can take over 30 minutes
or more to get it to turn on successfully.  This definately made installing Vista
a problem, especially due to the fact that I needed to open the box a bunch of times
and twiddle with the internal PCI ADSL modem.</font>
          </p>
          <p>
            <font size="2">Usually I avoid the problem by not turning off my computer, but after
last week I decided to get something sorted out about it.</font>
          </p>
          <p>
I think it must be an incompatibility with the motherboard and my Pentium D 830
CPU, which is supposed to be supported but I'm not entirely sure.
</p>
          <p>
Unfortunately the only option to get it sorted was to send it back to the supplier
in australia, and it could take a couple of weeks to sort out, so once again I am
without a decent computer to code on.  On top of that my source code repository
(running on <a href="http://www.sourcegear.com/vault/">SourceGear Vault</a>)
is on that computer so I can't even code on my laptop.
</p>
          <p>
I have been doing a bit of work creating tilesets however, so during this downtime
I might attempt to get a better set of graphics for my TileEngine prototypes. 
I've been working on some cave wall tilesets, plus some better brick walls, and also
some road floor tiles and roadsigns etc.<font size="2"></font></p>
        </font>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7" />
      </body>
      <title>A bump in the road</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2007/02/14/A+Bump+In+The+Road.aspx</link>
      <pubDate>Wed, 14 Feb 2007 23:09:54 GMT</pubDate>
      <description>&lt;p&gt;
It's been a while since I've posted so I figure I should keep everyone in the loop.
&lt;/p&gt;
&lt;p&gt;
I was planning to get a whole lot of work done over the christmas break, but ended
up spending heaps of time with my wife and kids, which was probably more fun anyway.
&lt;/p&gt;
&lt;p&gt;
Getting back to work was hectic because we are in new offices so I've been rebuilding
the network and trying to keep up with coding jobs as well.
&lt;/p&gt;
&lt;p&gt;
Last week I installed Vista on my home machine which runs great, short of the lack
of drivers for either of the available ADSL modems that I have.&amp;nbsp; I ended up having
to revert to building an old computer and running it without a monitor as a gateway
machine.&amp;nbsp; It is appropriately named R2D2 on my home network.
&lt;/p&gt;
&lt;p&gt;
During the period of installing Vista and trying to get the ADSL modems working on
it I had to reboot lots of times.&amp;nbsp; Unfortunately I'm having further issues with
my &lt;a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=1916"&gt;Gigabyte
GA-8N-SLI Pro&lt;/a&gt; motherboard (see &lt;a href="http://buzzrick.true.geek.nz/dasBlog/2005/09/06/Computer+Hastles.aspx"&gt;here&lt;/a&gt; and &lt;a href="http://buzzrick.true.geek.nz/dasBlog/2006/03/15/New+Motherboard+Faulty+DDR2+RAM.aspx"&gt;here&lt;/a&gt;).&amp;nbsp; &lt;font size=2&gt;
&lt;/p&gt;
&lt;p&gt;
The problem that I am having is that when I turn the computer on it will power up
for a couple of seconds and then reboot (you can hear the drives recycling and the
fans resetting), then powers for a couple of seconds, then reboots, etc.
&lt;/p&gt;
&lt;font size=2&gt; 
&lt;p&gt;
This will happen anywhere from 4 times or more. I've seen it cycle more than a dozen
times before, but I usually turn it off again before it does it too many times for
fear of causing permanent damage to the computer. If the rebooting does stop then
it won't load up the video card (a Gigabyte 7800GTX card) and the computer will continue
to load into windows but without the video card working. At this point I have to turn
it off again to try again.
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;This happens at least 19 out of 20 times that I turn it on. Getting the
machine to boot up is a labourious task because of this; it can take over 30 minutes
or more to get it to turn on successfully.&amp;nbsp; This definately made installing Vista
a problem, especially due to the fact that I needed to open the box a bunch of times
and twiddle with the internal PCI ADSL modem.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size=2&gt;Usually I avoid the problem by not turning off my computer, but after
last week I decided to get something sorted out about it.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
I think it must be an incompatibility with the motherboard and my Pentium&amp;nbsp;D 830
CPU, which is supposed to be supported but I'm not entirely sure.
&lt;/p&gt;
&lt;p&gt;
Unfortunately the only option to get it sorted was to send it back to the supplier
in australia, and it could take a couple of weeks to sort out, so once again I am
without a decent computer to code on.&amp;nbsp; On top of that my source code repository
(running on&amp;nbsp;&lt;a href="http://www.sourcegear.com/vault/"&gt;SourceGear Vault&lt;/a&gt;)
is on that computer so I can't even code on my laptop.
&lt;/p&gt;
&lt;p&gt;
I have been doing a bit of work creating tilesets however, so during this downtime
I might attempt to get a better set of graphics for my TileEngine prototypes.&amp;nbsp;
I've been working on some cave wall tilesets, plus some better brick walls, and also
some road floor tiles and roadsigns etc.&lt;font size=2&gt;
&lt;/p&gt;
&lt;/font&gt;&gt;&gt;&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2eb5ccb8-69d7-4cc8-9a5e-ce7273c22ef7.aspx</comments>
      <category>Game Development</category>
      <category>Hardware</category>
      <category>Personal</category>
      <category>TileEngine</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=3967e343-b8ca-42bf-841b-8365daeaa1bb</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,3967e343-b8ca-42bf-841b-8365daeaa1bb.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,3967e343-b8ca-42bf-841b-8365daeaa1bb.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=3967e343-b8ca-42bf-841b-8365daeaa1bb</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just days after Microsoft released XNA Studio Express they have now released the December
2006 DirectX SDK.
</p>
        <p>
Head over to the <a target="_blank" title="December 2006 DirectX SDK" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=05DA7623-F2F9-4F57-91AA-6DB27FB8305F&amp;displaylang=en">Direct
Download</a> page and grab it.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=3967e343-b8ca-42bf-841b-8365daeaa1bb" />
      </body>
      <title>DirectX 9 December 2006 released</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,3967e343-b8ca-42bf-841b-8365daeaa1bb.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/12/14/DirectX+9+December+2006+Released.aspx</link>
      <pubDate>Thu, 14 Dec 2006 03:49:33 GMT</pubDate>
      <description>&lt;p&gt;
Just days after Microsoft released XNA Studio Express they have now released the December
2006 DirectX SDK.
&lt;/p&gt;
&lt;p&gt;
Head over to the &lt;a target="_blank" title="December 2006 DirectX SDK" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=05DA7623-F2F9-4F57-91AA-6DB27FB8305F&amp;amp;displaylang=en"&gt;Direct
Download&lt;/a&gt; page and grab it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=3967e343-b8ca-42bf-841b-8365daeaa1bb" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,3967e343-b8ca-42bf-841b-8365daeaa1bb.aspx</comments>
      <category>Game Development</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=2cdb8067-a38c-447a-94eb-025594101782</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2cdb8067-a38c-447a-94eb-025594101782.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2cdb8067-a38c-447a-94eb-025594101782.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=2cdb8067-a38c-447a-94eb-025594101782</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Well this one snuck up on me a bit.
</p>
        <p>
I came in this morning and found that the Microsoft XNA team had released XNA Game
Studio Express v1.0!  Head over to <a href="http://msdn.microsoft.com/directx/xna/gse/" target="_blank">http://msdn.microsoft.com/directx/xna/gse/</a> to
grab it.  It is still free of course, however if you want to create games for
your Xbox 360 then you'll need to subscribe to the XNA Creators Club from the Xbox
Live Marketplace on your Xbox 360.  You will need an active Xbox Live silver
or gold subscription to do that.
</p>
        <p>
Looking at the system requirements it appears that you still need Microsoft Visual
C# 2005 Express edition installed, which surprised me a bit because one of the most
requested features that I was aware of is the ability to use other editions of Visual
Studio 2005.  For instance I have Visual Studio 2005 Professional, and I usually
use either Visual C++ or Visual Basic; I haven't delved into C# nearly as deep as
the other two languages.  From the readme:
</p>
        <code>XNA Game Studio Express is designed to work only with Microsoft Visual C# 2005
Express Edition. Other members of the Visual Studio 2005 line of products, for example
Visual Studio 2005 Professional, can co-exist with XNA Game Studio Express on the
same computer. However, you cannot access the functionality of XNA Game Studio Express
from these other products.</code>
        <p>
Other than that, I'm sorry that I haven't had many updates lately.  Things have
been pretty hectic around here;  we recently moved offices at work, renovations
on the new kitchen at home are just about complete, and it's Christmas time etc.
</p>
        <p>
I'm off on holiday next week so I'll hopefully be able to get back into development
on my TileEngine.  It has progressed somewhat, i've been working on some new
tilesets for a Christmas themed game for the kids.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2cdb8067-a38c-447a-94eb-025594101782" />
      </body>
      <title>XNA Studio Express has gone live</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,2cdb8067-a38c-447a-94eb-025594101782.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/12/11/XNA+Studio+Express+Has+Gone+Live.aspx</link>
      <pubDate>Mon, 11 Dec 2006 20:30:35 GMT</pubDate>
      <description>&lt;p&gt;
Well this one snuck up on me a bit.
&lt;/p&gt;
&lt;p&gt;
I came in this morning and found that the Microsoft XNA team had released XNA Game
Studio Express v1.0!&amp;nbsp; Head over to &lt;a href="http://msdn.microsoft.com/directx/xna/gse/" target=_blank&gt;http://msdn.microsoft.com/directx/xna/gse/&lt;/a&gt;&amp;nbsp;to
grab it.&amp;nbsp; It is still free of course, however if you want to create games for
your Xbox 360 then you'll need to subscribe to the XNA Creators Club from the Xbox
Live Marketplace on your Xbox 360.&amp;nbsp; You will need an active Xbox Live silver
or gold subscription to do that.
&lt;/p&gt;
&lt;p&gt;
Looking at the system requirements it appears that you still need Microsoft Visual
C# 2005 Express edition installed, which surprised me a bit because one of the most
requested features that I was aware of is the ability to use other editions of Visual
Studio 2005.&amp;nbsp; For instance I have Visual Studio 2005 Professional, and I usually
use either Visual C++ or Visual Basic; I haven't delved into C# nearly as deep as
the other two languages.&amp;nbsp; From the readme:
&lt;/p&gt;
&lt;code&gt;XNA Game Studio Express is designed to work only with Microsoft Visual C# 2005
Express Edition. Other members of the Visual Studio 2005 line of products, for example
Visual Studio 2005 Professional, can co-exist with XNA Game Studio Express on the
same computer. However, you cannot access the functionality of XNA Game Studio Express
from these other products.&lt;/code&gt; 
&lt;p&gt;
Other than that, I'm sorry that I haven't had many updates lately.&amp;nbsp; Things have
been pretty hectic around here;&amp;nbsp; we recently moved offices at work, renovations
on the new kitchen at home are just about complete, and it's Christmas time etc.
&lt;/p&gt;
&lt;p&gt;
I'm off on holiday next week so I'll hopefully be able to get back into development
on my TileEngine.&amp;nbsp; It has progressed somewhat, i've been working on some new
tilesets for a Christmas themed game for the kids.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=2cdb8067-a38c-447a-94eb-025594101782" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,2cdb8067-a38c-447a-94eb-025594101782.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div style="FLOAT: left">
          <img src="http://buzzrick.true.geek.nz/dasBlog/content/binary/XNA_Thumbnail1.jpg" border="0" />
        </div>
        <p>
The XNA team have just released Beta 2 of <a title="Microsoft XNA Game Studio Express" href="http://msdn.microsoft.com/directx/xna/gse/" target="_blank">Microsoft
XNA Game Studio Express</a> for download.  For the direct download page <a title="XNA Studio Express Beta 2 direct download" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AADBB141-D28F-4ED0-9673-DF4D16DE3AFA&amp;displaylang=en" target="_blank">download
it here</a>. 
</p>
        <p>
The new beat includes the content pipeline functionality that we've all been waiting
for.  There are quite a few changes between Beta 1 and Beta 2 so anything that
you've built with the first beta will need a few modifications to work, however they
say that the changes between Beta 2 and release should be much smaller.
</p>
        <p>
For a lot more details on what has changed, head over to the <a title="Microsoft XNA Studio Team Blog" href="http://blogs.msdn.com/xna/" target="_blank">XNA
Team Blog</a> and read <a title="XNA Studio Express Beta 2 Changes (Part 1)" href="http://blogs.msdn.com/xna/archive/2006/11/01/beta-2-changes-part-i.aspx" target="_blank">Mitch
Walker's post</a>.
</p>
        <p>
The <a title="XNA Studio Express Beta 2 readme page" href="http://msdn.microsoft.com/directx/xna/gse/" target="_blank">readme
page</a> notes that you'll still need to run it on Visual C# Express, and it still
doesn't run out of the box on Vista.  It is well worth reading the readme before
you start because there are some important setup issues:
</p>
        <h5>
          <a name="ID2E2B">
          </a>1.1.1. Uninstall XNA Game Studio Express Beta1 Before Installing
XNA Game Studio Express Beta2
</h5>
        <div class="h4" id="ID2E2B">
          <p>
You must uninstall XNA Game Studio Express Beta1 before installing XNA Game Studio
Express Beta2. You can uninstall XNA Game Studio Express Beta1 using the <b>Add or
Remove Programs</b> applet in Control Panel.
</p>
        </div>
        <h5>
          <a name="ID2EHC">
          </a>1.1.2. Visual Studio 2005 Reports "This Project Type is Not
Supported", After Uninstalling XNA Game Studio Express Beta1
</h5>
        <div class="h4" id="ID2EHC">
          <p>
Uninstalling XNA Game Studio Express Beta1 causes ProjectAggregator.dll to be unregistered.
As a result, if you have SKUs of Visual Studio other than Visual C# Express installed
on the same computer, they may report that some project types are no longer supported.
Examples of such SKUs are Visual Studio 2005 Standard and Visual Studio 2005 Professional.
</p>
          <p>
To workaround this issue, give the following command at a console command prompt to
re-register ProjectAggregator.dll.
</p>
          <pre> regsvr32.exe "%vs80comntools%\..\IDE\projectaggregator.dll"</pre>
          <p>
This issue is fixed in the Beta2 release of XNA Game Studio Express; uninstalling
Beta2 will not cause this issue.
</p>
        </div>
        <h5>
          <a name="ID2EWC">
          </a>1.1.3. Run Visual C# 2005 Express Edition at Least Once Before
Installing XNA Game Studio Express
</h5>
        <div class="h4" id="ID2EWC">
          <p>
You should run Visual C# 2005 Express Edition at least once before installing XNA
Game Studio Express. Otherwise, features of XNA Game Studio Express may be missing
from the user interface. For example, the <b>XNA Game Studio Xbox 360</b> item in <b>Tools
| Options</b> dialog may be missing. If you encounter this issue, we recommend that
you do the following: 
</p>
          <ol>
            <li>
Uninstall XNA Game Studio Express. 
</li>
            <li>
Run Visual C# 2005 Express Edition. 
</li>
            <li>
Exit Visual C# 2005 Express Edition. 
</li>
            <li>
Reinstall XNA Game Studio Express. 
</li>
          </ol>
        </div>
        <h5>
          <a name="ID2EZD">
          </a>1.1.4. Register Microsoft Visual C# 2005 Express Edition
Before Installing XNA Game Studio Express
</h5>
        <div class="h4" id="ID2EZD">
          <p>
You must register Microsoft Visual C# 2005 Express Edition before installing XNA Game
Studio Express. To register Visual C# 2005 Express Edition, click <b>Register Product</b> on
the <b>Help</b> menu. 
</p>
        </div>
        <h5>
          <a name="ID2EHE">
          </a>1.1.5. Close Visual C# 2005 Express Edition Before Installing
XNA Game Studio Express
</h5>
        <div class="h4" id="ID2EHE">
          <p>
Before installing XNA Game Studio Express, close any running instances of Visual C#
2005 Express Edition.
</p>
        </div>
        <p>
 
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a" />
      </body>
      <title>Microsoft XNA Game Studio Express (Beta 2) Available</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/11/02/Microsoft+XNA+Game+Studio+Express+Beta+2+Available.aspx</link>
      <pubDate>Thu, 02 Nov 2006 01:27:09 GMT</pubDate>
      <description>&lt;div style="FLOAT: left"&gt;&lt;img src="http://buzzrick.true.geek.nz/dasBlog/content/binary/XNA_Thumbnail1.jpg" border=0&gt;
&lt;/div&gt;
&lt;p&gt;
The XNA team have just released Beta 2 of &lt;a title="Microsoft XNA Game Studio Express" href="http://msdn.microsoft.com/directx/xna/gse/" target=_blank&gt;Microsoft
XNA Game Studio Express&lt;/a&gt; for download.&amp;nbsp; For the direct download page &lt;a title="XNA Studio Express Beta 2 direct download" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AADBB141-D28F-4ED0-9673-DF4D16DE3AFA&amp;amp;displaylang=en" target=_blank&gt;download
it here&lt;/a&gt;. 
&lt;/p&gt;
&lt;p&gt;
The new beat includes the content pipeline functionality that we've all been waiting
for.&amp;nbsp; There are quite a few changes between Beta 1 and Beta 2 so anything that
you've built with the first beta will need a few modifications to work, however they
say that the changes between Beta 2 and release should be much smaller.
&lt;/p&gt;
&lt;p&gt;
For a lot more details on what has changed, head over to the &lt;a title="Microsoft XNA Studio Team Blog" href="http://blogs.msdn.com/xna/" target=_blank&gt;XNA
Team Blog&lt;/a&gt; and read &lt;a title="XNA Studio Express Beta 2 Changes (Part 1)" href="http://blogs.msdn.com/xna/archive/2006/11/01/beta-2-changes-part-i.aspx" target=_blank&gt;Mitch
Walker's post&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
The &lt;a title="XNA Studio Express Beta 2 readme page" href="http://msdn.microsoft.com/directx/xna/gse/" target=_blank&gt;readme
page&lt;/a&gt; notes that you'll still need to run it on Visual C# Express, and it still
doesn't run out of the box on Vista.&amp;nbsp; It is well worth reading the readme before
you start because there are some important setup issues:
&lt;/p&gt;
&lt;h5&gt;&lt;a name=ID2E2B&gt;&lt;/a&gt;1.1.1. Uninstall XNA Game Studio Express Beta1 Before Installing
XNA Game Studio Express Beta2
&lt;/h5&gt;
&lt;div class=h4 id=ID2E2B&gt;
&lt;p&gt;
You must uninstall XNA Game Studio Express Beta1 before installing XNA Game Studio
Express Beta2. You can uninstall XNA Game Studio Express Beta1 using the &lt;b&gt;Add or
Remove Programs&lt;/b&gt; applet in Control Panel.
&lt;/p&gt;
&lt;/div&gt;
&lt;h5&gt;&lt;a name=ID2EHC&gt;&lt;/a&gt;1.1.2. Visual Studio 2005 Reports "This Project Type is Not
Supported", After Uninstalling XNA Game Studio Express Beta1
&lt;/h5&gt;
&lt;div class=h4 id=ID2EHC&gt;
&lt;p&gt;
Uninstalling XNA Game Studio Express Beta1 causes ProjectAggregator.dll to be unregistered.
As a result, if you have SKUs of Visual Studio other than Visual C# Express installed
on the same computer, they may report that some project types are no longer supported.
Examples of such SKUs are Visual Studio 2005 Standard and Visual Studio 2005 Professional.
&lt;/p&gt;
&lt;p&gt;
To workaround this issue, give the following command at a console command prompt to
re-register ProjectAggregator.dll.
&lt;/p&gt;
&lt;pre&gt; regsvr32.exe "%vs80comntools%\..\IDE\projectaggregator.dll"&lt;/pre&gt;
&lt;p&gt;
This issue is fixed in the Beta2 release of XNA Game Studio Express; uninstalling
Beta2 will not cause this issue.
&lt;/p&gt;
&lt;/div&gt;
&lt;h5&gt;&lt;a name=ID2EWC&gt;&lt;/a&gt;1.1.3. Run Visual C# 2005 Express Edition at Least Once Before
Installing XNA Game Studio Express
&lt;/h5&gt;
&lt;div class=h4 id=ID2EWC&gt;
&lt;p&gt;
You should run Visual C# 2005 Express Edition at least once before installing XNA
Game Studio Express. Otherwise, features of XNA Game Studio Express may be missing
from the user interface. For example, the &lt;b&gt;XNA Game Studio Xbox 360&lt;/b&gt; item in &lt;b&gt;Tools
| Options&lt;/b&gt; dialog may be missing. If you encounter this issue, we recommend that
you do the following: 
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Uninstall XNA Game Studio Express. 
&lt;li&gt;
Run Visual C# 2005 Express Edition. 
&lt;li&gt;
Exit Visual C# 2005 Express Edition. 
&lt;li&gt;
Reinstall XNA Game Studio Express. 
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;h5&gt;&lt;a name=ID2EZD&gt;&lt;/a&gt;1.1.4. Register Microsoft Visual C# 2005 Express Edition Before
Installing XNA Game Studio Express
&lt;/h5&gt;
&lt;div class=h4 id=ID2EZD&gt;
&lt;p&gt;
You must register Microsoft Visual C# 2005 Express Edition before installing XNA Game
Studio Express. To register Visual C# 2005 Express Edition, click &lt;b&gt;Register Product&lt;/b&gt; on
the &lt;b&gt;Help&lt;/b&gt; menu. 
&lt;/p&gt;
&lt;/div&gt;
&lt;h5&gt;&lt;a name=ID2EHE&gt;&lt;/a&gt;1.1.5. Close Visual C# 2005 Express Edition Before Installing
XNA Game Studio Express
&lt;/h5&gt;
&lt;div class=h4 id=ID2EHE&gt;
&lt;p&gt;
Before installing XNA Game Studio Express, close any running instances of Visual C#
2005 Express Edition.
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,bc03d52e-4c0a-4d18-b1b1-c7c9e247d59a.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>Visual Studio</category>
      <category>XNA</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=0b0c0eb3-fceb-4027-a1ca-8348cb69275e</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,0b0c0eb3-fceb-4027-a1ca-8348cb69275e.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,0b0c0eb3-fceb-4027-a1ca-8348cb69275e.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=0b0c0eb3-fceb-4027-a1ca-8348cb69275e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For all of you VB.NET developers out there <a href="http://www.alanphipps.com/index.html">Alan
Phipps</a> has a really good tutorial on how to get XNA studio up and running on Visual
Basic 2005.
</p>
        <p>
Take a look at <a title="XNA Studio on Visual Basic 2005 tutorial" href="http://www.alanphipps.com/VisualBasicdotNET-XNA.html" target="_blank">his
XNA/VB.NET tutorial</a>.  Good work Alan
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=0b0c0eb3-fceb-4027-a1ca-8348cb69275e" />
      </body>
      <title>Visual Basic 2005 and XNA Studio</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,0b0c0eb3-fceb-4027-a1ca-8348cb69275e.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/10/31/Visual+Basic+2005+And+XNA+Studio.aspx</link>
      <pubDate>Tue, 31 Oct 2006 00:02:34 GMT</pubDate>
      <description>&lt;p&gt;
For all of you VB.NET developers out there &lt;a href="http://www.alanphipps.com/index.html"&gt;Alan
Phipps&lt;/a&gt; has a really good tutorial on how to get XNA studio up and running on Visual
Basic 2005.
&lt;/p&gt;
&lt;p&gt;
Take a look at &lt;a title="XNA Studio on Visual Basic 2005 tutorial" href="http://www.alanphipps.com/VisualBasicdotNET-XNA.html" target=_blank&gt;his
XNA/VB.NET tutorial&lt;/a&gt;.&amp;nbsp; Good work Alan
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=0b0c0eb3-fceb-4027-a1ca-8348cb69275e" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,0b0c0eb3-fceb-4027-a1ca-8348cb69275e.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=880b3a4b-f840-4975-a0a2-999fdebb62b0</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,880b3a4b-f840-4975-a0a2-999fdebb62b0.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,880b3a4b-f840-4975-a0a2-999fdebb62b0.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=880b3a4b-f840-4975-a0a2-999fdebb62b0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Yesterday a new bunch of <a title="Visual Studio 2005 IDE enhancement powertoys" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CD7C6E48-E41B-48E3-881E-A0E6E97F9534&amp;displaylang=en" target="_blank">Visual
Studio 2005 IDE enhancement powertoys</a> were released.  The pack includes 5
powertoys, most of them are pretty average, but the last one is something that I've
been wanting since VS 2005 came out:
</p>
        <p>
          <strong>Source Code Outliner </strong>: The Source Outliner tool is a Visual Studio
extension that provides a tree view of your source code's types and members and lets
you quickly navigate to them inside the editor.
</p>
        <p>
This doesn't appear to work with C++.  I haven't installed the powertoys on my
work computer yet, so I haven't had the chance to see how well it works with VB.net
and C#, or how much use it is.<br /><br /><b>Indexed Find </b>: The Indexed Find tool is a Visual Studio extension that uses
the Microsoft Indexing Service to provide improved Search capabilities to the integrated
development environment (IDE). It sends the results of a search to the Output Window.
</p>
        <p>
I've never been much of a fan of the indexing service, especially when it comes
to finding files on the filesystem.  I think that the default find functionality
in Visual Studio 2005 works perfectly well as it is.  If I <em>really</em> need
to find something on the filesystem (when it isn't isn't in an open VS solution) then
I'll use the exellent <a title="Agent Ransack file search tool" href="http://www.mythicsoft.com/agentransack/" target="_blank">Agent
Ransack</a> tool (which is free btw), and I have it installed on <em>every</em> machine
that I use.<br /><br /><b>Super Diff Utility</b>: The Super Diff Find tool is a Visual Studio extension that
compares text files. It uses color coding and graphics to show the difference between
the files in deleted text (red), changed text (blue), inserted text (green). 
</p>
        <p>
I haven't tested this very much.  It's a nice tool, but I haven't seen much to
write home about.  It is a good replacement for the windiff tool from the Windows
Resource Kit, I'll probably start using it a bit, but I already use the perfectly
functional compare functionality within Visual Studio.  Unfortunately it doesn't
integrate with Source Code Control providers, so for that I use the Vault Compare
tool which comes with <a title="SourceGear Vault Source Code Control repository" href="http://www.sourcegear.com/vault/" target="_blank">SourceGear
Vault</a> (my source code control provider of choice).<br /><br /><b>Event Toaster Utility</b>: The Event Toaster tool is a Visual Studio extension
that notifies users about specific events within the Visual Studio IDE.
</p>
        <p>
This is a weird one... who dreamed this up.  I can only say that it would be
useful for very large projects.  It allows you to be alerted when any of the
following events occur:  Build Completed, Code Analysis Completed, Entering Break
Mode, Execution Session Completed, Document Opened, and Document Saved.  The
ways that you can be alerted is via customisable sounds, or taskbar notifications,
or you can run a command or macro on any of these events.
</p>
        <p>
It could be useful for me in the future, but at this stage I can't see me using it.
</p>
        <p>
          <strong>Visual C++ Code Snippets</strong>:The Visual C++ Code Snippets tool lets you
insert snippets in your code by using a pop-up menu that contains programming keywords.
VB.NET and C# languages have this functionality in Visual Studio 2005. 
</p>
        <p>
          <em>This</em> is the powertoy which has me all excited!  We finally have code
snippet functionality for C++.  Try these out for size:
</p>
        <ul>
          <li>
Drag over a block of code, right click on it and select "Surround with..." to be provided
with a bunch of different control blocks, such as a try block or a while loop.  
</li>
          <li>
Type "tryf" and press tab to create a complete try/catch/finally block 
</li>
          <li>
Type "attribute" and press tab to create a full class attribute (based on the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconusingattributeclasses.asp">attribute
guidelines on MSDN</a> (this is for C++/CLI). 
</li>
          <li>
Type "prop" and press tab.  This will create a class property.  I've modified
this because I'm not familiar with the format that it produces (is it C++/CLI?),
to create a class with a __declspec statement as per <a title="Using __declspec to create C++ class properties" href="http://msdn2.microsoft.com/en-us/library/yhfk0thd.aspx" target="_blank">this
page on MSDN</a>. You can download the modified property snippet file here: <a title="C++ Property snippet file" href="http://buzzrick.true.geek.nz/dasBlog/content/binary/prop.snippet" target="_blank">prop.snippet
(1.22 KB)</a></li>
        </ul>
        <p>
You can of course create your own code snippets.  Just copy any of the default
snippet files from the "C:\Program Files\Microsoft Visual Studio 8\VC\Snippets\1033\Visual
C++" folder into your custom snippets folder at "C:\Documents and Settings\YourName\My
Documents\Visual Studio 2005\Code Snippets\Visual C++\My Code Snippets" and modify
them to suit.
</p>
        <p>
Anyway, go and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CD7C6E48-E41B-48E3-881E-A0E6E97F9534&amp;displaylang=en">download
the powertoys</a> for yourself and have a try.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=880b3a4b-f840-4975-a0a2-999fdebb62b0" />
      </body>
      <title>New Visual Studio Powertoys includes C++ code Snippets</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,880b3a4b-f840-4975-a0a2-999fdebb62b0.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/10/30/New+Visual+Studio+Powertoys+Includes+C+Code+Snippets.aspx</link>
      <pubDate>Mon, 30 Oct 2006 04:53:47 GMT</pubDate>
      <description>&lt;p&gt;
Yesterday a new bunch of &lt;a title="Visual Studio 2005 IDE enhancement powertoys" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CD7C6E48-E41B-48E3-881E-A0E6E97F9534&amp;amp;displaylang=en" target=_blank&gt;Visual
Studio 2005 IDE enhancement powertoys&lt;/a&gt; were released.&amp;nbsp; The pack includes 5
powertoys, most of them are pretty average, but the last one is something that I've
been wanting since VS 2005 came out:
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Source Code Outliner &lt;/strong&gt;: The Source Outliner tool is a Visual Studio
extension that provides a tree view of your source code's types and members and lets
you quickly navigate to them inside the editor.
&lt;/p&gt;
&lt;p&gt;
This doesn't appear to work with C++.&amp;nbsp; I haven't installed the powertoys on my
work computer yet, so I haven't had the chance to see how well it works with VB.net
and C#, or how much use it is.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Indexed Find &lt;/b&gt;: The Indexed Find tool is a Visual Studio extension that uses
the Microsoft Indexing Service to provide improved Search capabilities to the integrated
development environment (IDE). It sends the results of a search to the Output Window.
&lt;/p&gt;
&lt;p&gt;
I've never been much of a fan of the indexing service, especially&amp;nbsp;when it comes
to finding files on the filesystem.&amp;nbsp; I&amp;nbsp;think that the default find functionality
in Visual Studio 2005 works perfectly well as it is.&amp;nbsp; If I &lt;em&gt;really&lt;/em&gt; need
to find something on the filesystem (when it isn't isn't in an open VS solution) then
I'll use the exellent&amp;nbsp;&lt;a title="Agent Ransack file search tool" href="http://www.mythicsoft.com/agentransack/" target=_blank&gt;Agent
Ransack&lt;/a&gt;&amp;nbsp;tool (which is free btw), and I have it installed on &lt;em&gt;every&lt;/em&gt; machine
that I use.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Super Diff Utility&lt;/b&gt;: The Super Diff Find tool is a Visual Studio extension that
compares text files. It uses color coding and graphics to show the difference between
the files in deleted text (red), changed text (blue), inserted text (green). 
&lt;/p&gt;
&lt;p&gt;
I haven't tested this very much.&amp;nbsp; It's a nice tool, but I haven't seen much to
write home about.&amp;nbsp; It is a good replacement for the windiff tool from the Windows
Resource Kit, I'll probably start using it a bit, but I already use the perfectly
functional compare functionality within Visual Studio.&amp;nbsp; Unfortunately it doesn't
integrate with Source Code Control providers, so for that I use the Vault Compare
tool which comes with &lt;a title="SourceGear Vault Source Code Control repository" href="http://www.sourcegear.com/vault/" target=_blank&gt;SourceGear
Vault&lt;/a&gt; (my source code control provider of choice).&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Event Toaster Utility&lt;/b&gt;: The Event Toaster tool is a Visual Studio extension
that notifies users about specific events within the Visual Studio IDE.
&lt;/p&gt;
&lt;p&gt;
This is a weird one... who dreamed this up.&amp;nbsp; I can only say that it would be
useful for very large projects.&amp;nbsp; It allows you to be alerted when any of the
following events occur:&amp;nbsp; Build Completed, Code Analysis Completed, Entering Break
Mode, Execution Session Completed, Document Opened, and Document Saved.&amp;nbsp; The
ways that you can be alerted is via customisable sounds, or taskbar notifications,
or you can run a command or macro on any of these events.
&lt;/p&gt;
&lt;p&gt;
It could be useful for me in the future, but at this stage I can't see me using it.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Visual C++ Code Snippets&lt;/strong&gt;:The Visual C++ Code Snippets tool lets you
insert snippets in your code by using a pop-up menu that contains programming keywords.
VB.NET and C# languages have this functionality in Visual Studio 2005. 
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;This&lt;/em&gt; is the powertoy which has me all excited!&amp;nbsp; We finally have code
snippet functionality for C++.&amp;nbsp; Try these out for size:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Drag over a block of code, right click on it and select "Surround with..." to be provided
with a bunch of different control blocks, such as a try block or a while loop.&amp;nbsp; 
&lt;li&gt;
Type "tryf" and press tab to create a complete try/catch/finally block 
&lt;li&gt;
Type "attribute" and press tab to create a full class attribute (based on the &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconusingattributeclasses.asp"&gt;attribute
guidelines on MSDN&lt;/a&gt;&amp;nbsp;(this is for C++/CLI). 
&lt;li&gt;
Type "prop" and press tab.&amp;nbsp; This will create a class property.&amp;nbsp; I've modified
this because I'm not familiar with the format that it produces (is&amp;nbsp;it C++/CLI?),
to create a class with a __declspec statement as per &lt;a title="Using __declspec to create C++ class properties" href="http://msdn2.microsoft.com/en-us/library/yhfk0thd.aspx" target=_blank&gt;this
page on MSDN&lt;/a&gt;. You can download the modified property snippet file here: &lt;a title="C++ Property snippet file" href="http://buzzrick.true.geek.nz/dasBlog/content/binary/prop.snippet" target=_blank&gt;prop.snippet
(1.22 KB)&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
You can of course create your own code snippets.&amp;nbsp; Just copy any of the default
snippet files from the "C:\Program Files\Microsoft Visual Studio 8\VC\Snippets\1033\Visual
C++" folder into your custom snippets folder at "C:\Documents and Settings\YourName\My
Documents\Visual Studio 2005\Code Snippets\Visual C++\My Code Snippets" and modify
them to suit.
&lt;/p&gt;
&lt;p&gt;
Anyway, go and &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CD7C6E48-E41B-48E3-881E-A0E6E97F9534&amp;amp;displaylang=en"&gt;download
the powertoys&lt;/a&gt; for yourself and have a try.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=880b3a4b-f840-4975-a0a2-999fdebb62b0" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,880b3a4b-f840-4975-a0a2-999fdebb62b0.aspx</comments>
      <category>DotNet</category>
      <category>Game Development</category>
      <category>Visual Studio</category>
    </item>
    <item>
      <trackback:ping>http://buzzrick.true.geek.nz/DasBlog/Trackback.aspx?guid=36cb282e-b331-4623-8505-442a42b1b27e</trackback:ping>
      <pingback:server>http://buzzrick.true.geek.nz/DasBlog/pingback.aspx</pingback:server>
      <pingback:target>http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,36cb282e-b331-4623-8505-442a42b1b27e.aspx</pingback:target>
      <dc:creator>Buzzrick</dc:creator>
      <wfw:comment>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,36cb282e-b331-4623-8505-442a42b1b27e.aspx</wfw:comment>
      <wfw:commentRss>http://buzzrick.true.geek.nz/DasBlog/SyndicationService.asmx/GetEntryCommentsRss?guid=36cb282e-b331-4623-8505-442a42b1b27e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Michael Thomas Daniels has just helped point out that some of the formula on my
Isometric Coordinate Calculation tutorial were broken.  It turns out that for
some reason the HTML editor on the site was stripping out the '+' characters. 
I fixed the error in one formula and then immediately noticed that the plus symbols
in another formula had disappeared.  
</p>
        <p>
I've fixed them all now, but I'm going to have to keep an eye on it when I make any
changes in the future.  
</p>
        <p>
Thanks Mike for pointing it out.
</p>
        <img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=36cb282e-b331-4623-8505-442a42b1b27e" />
      </body>
      <title>Isometric Coordinate Calculation tutorial formula errors</title>
      <guid isPermaLink="false">http://buzzrick.true.geek.nz/DasBlog/PermaLink,guid,36cb282e-b331-4623-8505-442a42b1b27e.aspx</guid>
      <link>http://buzzrick.true.geek.nz/DasBlog/2006/10/26/Isometric+Coordinate+Calculation+Tutorial+Formula+Errors.aspx</link>
      <pubDate>Thu, 26 Oct 2006 22:29:21 GMT</pubDate>
      <description>&lt;p&gt;
Michael Thomas Daniels has just helped point out that some of the formula on&amp;nbsp;my
Isometric Coordinate Calculation tutorial were broken.&amp;nbsp; It turns out that for
some reason the HTML editor on the site was stripping out the '+' characters.&amp;nbsp;
I fixed the error in one formula and then immediately noticed that the plus symbols
in another formula had disappeared.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
I've fixed them all now, but I'm going to have to keep an eye on it when I make any
changes in the future.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Thanks Mike for pointing it out.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://buzzrick.true.geek.nz/DasBlog/aggbug.ashx?id=36cb282e-b331-4623-8505-442a42b1b27e" /&gt;</description>
      <comments>http://buzzrick.true.geek.nz/DasBlog/CommentView,guid,36cb282e-b331-4623-8505-442a42b1b27e.aspx</comments>
      <category>Game Development</category>
    </item>
  </channel>
</rss>