<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC "-//W3C//ENTITIES Latin 1 for XHTML//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">]>
<rss version="0.92" xml:base="http://www.razing.net">
<channel>
 <title>Razing-The.Net - Less talk, more code.</title>
 <link>http://www.razing.net</link>
 <description>If the words Flipcode, Gamasutra, and/or Nehe register a blip on your radar this site is for you. For those of you left scratching your head there's still plenty to be enjoyed including several games, numerous applications, and plethora of plugins I've written for fun and (future hopes of) profit. For the more technical there'll be various tricks of the game development trade, programming puzzlers, and various articles exploring the often times murky depths of computers.</description>
 <language>en</language>
<item>
 <title>Mike's Discount Software</title>
 <link>http://www.razing.net/node/653</link>
 <description>&lt;p&gt;My good buddy Mike Vastarelli from way back, and when I say way back I mean when I was about half my current height and prepubescent, opened up a discount software shop (&lt;a href=http://www.vdiscountsoftware.com&gt;http://www.vdiscountsoftware.com&lt;/a&gt;) selling applications at near wholesale rates. &lt;/p&gt;
&lt;p&gt;If you're in the market, keep him in mind. You'll save yourself a fistful of cash and in the process help him pay for his Master's degree. :)&lt;/p&gt;
&lt;p&gt;I wish you lots of luck Mike'y!&lt;/p&gt;
</description>
 <pubDate>Fri, 04 May 2007 19:25:28 -0700</pubDate>
</item>
<item>
 <title>Microsoft Game Studios - Live Anywhere</title>
 <link>http://www.razing.net/images/liveanywhere</link>
 <description>&lt;style type="text/css"&gt;  img.server { margin: 10px; } &lt;/style&gt;
&lt;a href="images/liveanywhere/1"&gt;&lt;img class="server" src="images/panorama/sm-MyDoorName.jpg"/&gt;&lt;/a&gt;&lt;a href="images/liveanywhere/2"&gt;&lt;img class="server" src="images/panorama/sm-MyOffice.jpg"/&gt;&lt;/a&gt;&lt;a href="images/liveanywhere/3"&gt;&lt;img class="server" src="images/panorama/sm-MyDesk.jpg"/&gt;&lt;/a&gt;</description>
 <pubDate>Sat, 24 Feb 2007 15:36:27 -0800</pubDate>
</item>
<item>
 <title>Apartment 2.0</title>
 <link>http://www.razing.net/images/apartment2.0</link>
 <description>&lt;style type="text/css"&gt;  img.server { margin: 10px; } &lt;/style&gt;
&lt;a href="images/apartment2.0/1"&gt;&lt;img class="server" src="images/apartment/sm-TheDen.JPG"/&gt;&lt;/a&gt;&lt;a href="images/apartment2.0/2"&gt;&lt;img class="server" src="images/apartment/sm-TheDen-NaturallyLit.JPG"/&gt;&lt;/a&gt;&lt;a href="images/apartment2.0/3"&gt;&lt;img class="server" src="images/apartment/sm-TheLivingRoom.JPG"/&gt;&lt;/a&gt;</description>
 <pubDate>Tue, 10 Oct 2006 17:59:46 -0700</pubDate>
</item>
<item>
 <title>Working on Live Meeting at Microsoft.</title>
 <link>http://www.razing.net/node/452</link>
 <description>&lt;p&gt;Before we shipped Live Server Beta 2 on Thursday, I hung this from my cube:&lt;/p&gt;
&lt;p&gt;&lt;img src="images/ComeOn.JPG"/&gt;&lt;/p&gt;
</description>
 <pubDate>Fri, 30 Jun 2006 15:09:15 -0700</pubDate>
</item>
<item>
 <title>Switch -- The command line alternative to A</title>
 <link>http://www.razing.net/project/switch</link>
 <description>&lt;p&gt;This little beaut is a way to switch to other processes by simply keying in a regular expression of either the PID, process name, or window title.&lt;/p&gt;
&lt;p&gt;So for instance, this command:&lt;br /&gt;
sw firefox &lt;/p&gt;
&lt;p&gt;Would grab the first instance of firefox in your tasklist and make it the active window.&lt;/p&gt;
&lt;p&gt;Even better, if you happen to remember that you were just looking at CNN, you could instead type:&lt;br /&gt;
sw cnn&lt;/p&gt;
&lt;p&gt;And probably have a better chance of getting switched to the right Firefox window. &lt;/p&gt;
&lt;p&gt;This gets really powerful when you put sw.exe in your path. Then you can simply hit [Windows Key]+R to pull up the run dialog, type in: sw {Process You're Interested In} and be there in no time flat.&lt;/p&gt;
</description>
 <pubDate>Sat, 05 Aug 2006 09:57:51 -0700</pubDate>
</item>
<item>
 <title>Automate a bunch of machines ... automatica</title>
 <link>http://www.razing.net/at-script</link>
 <description>&lt;p&gt;&lt;b&gt;&lt;u&gt;RemoteExecute.bat&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
@echo off&lt;br /&gt;
setlocal&lt;br /&gt;
setlocal enableextensions&lt;br /&gt;
setlocal enabledelayedexpansion&lt;/p&gt;
&lt;p&gt;FOR /F "eol=;" %%i in (machines.txt) do (&lt;br /&gt;
	ping %%i &gt; nul&lt;br /&gt;
	set ERROR=!ERRORLEVEL!&lt;br /&gt;
	FOR /F "tokens=1,2,3* delims=: " %%a in ('time /t') Do (&lt;br /&gt;
		set HR=%%a&lt;br /&gt;
		set MIN=%%b&lt;br /&gt;
		set TOD=%%c&lt;br /&gt;
	)&lt;br /&gt;
	if !TOD!==PM set /A HR=!HR!+12&lt;br /&gt;
	set /A MIN=!MIN!+1&lt;br /&gt;
	echo Scheduling an update at !HR!:!MIN! for machine: %%i ...&lt;br /&gt;
	if !ERROR! EQU 1 (echo Error: %%i is down! ) ELSE (&lt;br /&gt;
		echo Running update.bat on %%i&lt;br /&gt;
		FOR /F "tokens=9*" %%a in ('at \\%%i !HR!:!MIN! /interactive cmd /C C:\update.bat') Do set NEWPID=%%a&lt;/p&gt;
</description>
 <pubDate>Fri, 28 Apr 2006 15:15:42 -0700</pubDate>
</item>
<item>
 <title>The ROL Belgian ROFL exclusive!</title>
 <link>http://www.razing.net/node/402</link>
 <description>I'm proud to bring you &lt;a href="http://www.dancoproductions.com"&gt;Danjamin&lt;i&gt;Cups&lt;/i&gt;&lt;/a&gt; exclusive Rise of Legends comic starring, the one, the only, *drum-roll* the Doge!!
&lt;br/&gt;
&lt;center&gt;&lt;a href="Strips/TheDoge"&gt;&lt;img src="images/TheDogeThumb.png"&gt;&lt;/a&gt;&lt;/center&gt;</description>
 <pubDate>Fri, 04 Aug 2006 10:01:03 -0700</pubDate>
</item>
<item>
 <title>Dummies for Outlook</title>
 <link>http://www.razing.net/node/398</link>
 <description>&lt;p&gt;Microsoft normally means business, but yesterday it reverted back to its rather hilarious two years old self. &lt;/p&gt;
&lt;p&gt;It all started so quiet too... &lt;/p&gt;
&lt;p&gt;Most everyone straggled in late (except for me of course, but then who said I was normal?), a little under-the-weather from having drank too much pumpkin-nog. Then a perfectly innocent email appeared in my inbox addressed to a company wide email alias. &lt;/p&gt;
&lt;p&gt;The contents read:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;"I wanted to see if you would be calling me [something about setting up an email address for some new hire]&lt;/p&gt;
&lt;p&gt;Please advise.&lt;/p&gt;
&lt;p&gt;[A table with a column of values labeled CS Requisition Number, CS Position Number, Reports to Manager, Requestor, Estimated Start Date, Position Start Date, Position End Date] &lt;/p&gt;
</description>
 <pubDate>Mon, 22 Jan 2007 17:58:45 -0800</pubDate>
</item>
<item>
 <title>Shiny</title>
 <link>http://www.razing.net/node/378</link>
 <description>&lt;p&gt;After years of being completely out of contact, blissfully wrapped up in our own projects, my good friend and old buddy Steven Huber stumbled on to this site and in to the #abzaar EFNET IRC channel. &lt;/p&gt;
&lt;p&gt;We laughed, we cried, we got reacquainted and then Steve showed off his latest work; a rather &lt;a href="http://www.niceshoes.com/reels/index.php?id=rsudal&amp;#038;fl=RonS_Bravery_Large_1100k&amp;#038;sz=lg&amp;#038;fo=sd"&gt;amazing music video&lt;/a&gt; that's being featured in the November issue of American Cinematographer.&lt;/p&gt;
&lt;p&gt;David Fincher eat your heart out.&lt;/p&gt;
</description>
 <pubDate>Thu, 08 Sep 2005 21:28:06 -0700</pubDate>
</item>
<item>
 <title>WOW: Aritfacts, Trust, and a Whole lot of F</title>
 <link>http://www.razing.net/wow/artifacts/3</link>
 <description>&lt;p&gt;Is this the next big thing for World of Warcraft? Give it a look and decide for yourself!&lt;/p&gt;
</description>
 <pubDate>Sat, 03 Sep 2005 12:30:47 -0700</pubDate>
</item>
<item>
 <title>Excel Pivot Functions</title>
 <link>http://www.razing.net/node/375</link>
 <description>&lt;p&gt;While trying to improve the way I track my teams' progress here at Microsoft Game Studios it dawned on me that I needed a way to conditionally pivot on cells in a range and then return the column headers of the cells that matched the condition. Ideally I wanted it to be a module so I could use it as a function (ie =GetColHeader(...) or =GetTableHeader(...)). &lt;/p&gt;
&lt;p&gt;A few minutes and some coffee later, my fingers brought in to being these VBA snippets:&lt;br /&gt;
</description>
 <pubDate>Fri, 04 Aug 2006 10:03:14 -0700</pubDate>
</item>
<item>
 <title>Car meet Post</title>
 <link>http://www.razing.net/node/373</link>
 <description>&lt;p&gt;I have the classiest neighbors.&lt;/p&gt;
&lt;p&gt;&lt;img src="images/Stupid-and-driving_wide.jpg"/&gt;&lt;/p&gt;
</description>
 <pubDate>Thu, 25 Aug 2005 04:09:56 -0700</pubDate>
</item>
<item>
 <title>I of Borg</title>
 <link>http://www.razing.net/node/366</link>
 <description>&lt;div id="general"&gt;
&lt;p&gt; Eye laser implants will soon follow!&lt;/p&gt;
</description>
 <pubDate>Sun, 08 Apr 2007 00:07:06 -0700</pubDate>
</item>
<item>
 <title>Keeping up with the Jonses.</title>
 <link>http://www.razing.net/node/335</link>
 <description>&lt;p&gt;This DSL connection is &lt;i&gt;slow&lt;/i&gt; and I have a 700 MB ISO that I downloaded while I was in NY to prove it. In retaliation I've setup a torrent tracker in a vain attempt to alleviate the heinous pain that is my up speed. &lt;/p&gt;
&lt;p&gt;If you're hunting for the link, look no further, &lt;a href="http://torrents.razing.net/"&gt;click here&lt;/a&gt; (and &lt;i&gt;please&lt;/i&gt; seed!). For future reference the URL can also be found in the appropriately labeled "Links" block on the right hand margin. &lt;/p&gt;
&lt;p&gt;On the subject of seeding I should probably say what's hopefully obvious to everyone reading. &lt;a href="http://torrents.razing-the.net"&gt;Torrents.Razing-The.Net&lt;/a&gt; is in no shape or form to be thought of like Suprnova. :) &lt;/p&gt;
&lt;p&gt;The files being hosted at the moment are of my own making, meaning &lt;i&gt;*gasp*&lt;/i&gt; legal. The plan is to stick any files over five megs on the tracker to theoretically cut down bandwidth usage (ha!) with the added bonus of improving download speeds for visitors. &lt;/p&gt;
</description>
 <pubDate>Mon, 18 Jul 2005 22:46:56 -0700</pubDate>
</item>
<item>
 <title>Strongbox Entertainment</title>
 <link>http://www.razing.net/node/181</link>
 <description>&lt;p&gt;It takes &lt;a href="http://www.reallybadfanfiction.com/Fanfics/DoomComic/page3.html"&gt; gargantuan guts&lt;/a&gt; to start a company. Luckily the the founders of &lt;a href="http://www.strongboxentertainment.com/"&gt;StrongBox Entertainment&lt;/a&gt; are in no short supply of stomach (just kidding!). Having recently released their debut game, &lt;a href="http://www.boosterlogic.com/"&gt;Booster Logic&lt;/a&gt;, the team has clearly shown they're willing, capable, and ready for the challenges that lie ahead. &lt;/p&gt;
&lt;p&gt;So go on already, play the demo! When you're done I think you'll agree with me when I say, "Garage games are alive, well, and a &lt;i&gt;heck of a lot of fun.&lt;/i&gt;" &lt;/p&gt;
</description>
 <pubDate>Sat, 09 Dec 2006 02:03:08 -0800</pubDate>
</item>
</channel>
</rss>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script>
<script type="text/javascript"> _uacct = "UA-2080117-1"; urchinTracker(); </script>
