<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mike says things sometimes &#187; nerdery</title>
	<atom:link href="http://blueglowy.com/category/nerdery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blueglowy.com</link>
	<description>omg where am I I AM NOT GOOD WITH COMPUTERS</description>
	<lastBuildDate>Fri, 29 Apr 2011 04:15:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Garrison Titan on Evening Magazine</title>
		<link>http://blueglowy.com/2011/04/28/garrison-titan-on-evening-magazine/</link>
		<comments>http://blueglowy.com/2011/04/28/garrison-titan-on-evening-magazine/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 04:14:36 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[nerdery]]></category>
		<category><![CDATA[501st]]></category>
		<category><![CDATA[garrison titan]]></category>
		<category><![CDATA[star wars]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2011/04/28/garrison-titan-on-evening-magazine/</guid>
		<description><![CDATA[&#160; Look! We’re on the news!]]></description>
			<content:encoded><![CDATA[<p><object height="288" width="470"><param name="movie" type="application/x-shockwave-flash" value="http://www.king5.com/v/?i=120886354" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="AllowFullScreen" value="true" /><embed type="application/x-shockwave-flash" src="http://www.king5.com/v/?i=120886354" AllowFullScreen="true" allowScriptAccess="always" height="288" wmode="transparent" width="470"></embed></object>
<p>&#160;</p>
<p>Look! We’re on the news!</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2011/04/28/garrison-titan-on-evening-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching users print servers with Powershell</title>
		<link>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/</link>
		<comments>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 17:44:21 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/</guid>
		<description><![CDATA[&#160; So we recently setup a new Win2k8 R2 print server to replace our aging 2k3 server, and I needed a way to easily switch a whole bunch of users over to the printer mappings on the new server.&#160; After some digging, I came up with this method of switching everyone over at login with [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>So we recently setup a new Win2k8 R2 print server to replace our aging 2k3 server, and I needed a way to easily switch a whole bunch of users over to the printer mappings on the new server.&#160; After some digging, I came up with this method of switching everyone over at login with Powershell:</p>
<p>&#160;</p>
<p>&lt;#</p>
<p>.SYNOPSIS   <br />This is a Powershell script to remove the old &lt;printserver&gt; printers and replace them with Printers mapped to &lt;newprintserver&gt;</p>
<p>.DESCRIPTION   <br />This script will run at logon, and accomplish the following tasks:     <br />1) Sets ErrorAction to Silently Continue to hide any red errors if a printer connection doesn&#8217;t exist    <br />2) Gets the machines list of installed printers and passes it to the $localprinters variable    <br />3) Searches the $localprinters variable for the printer names and declares them    <br />4) Tests each variable for existence, and if it exists removes the old &lt;printserver&gt; version and installs the &lt;newprintserver&gt; version    <br />5) Checks what the original default printer was, and if it was a &lt;printserver&gt; one changes it to the new &lt;newprintserver&gt; version</p>
<p>.NOTES   <br />This script is fairly easy to modify and tailor to a different site by modifying the what is searched for via -pattern, and adjusting the printer connections in each test case.</p>
<p>.LINK   <br /><a href="http://www.blueglowy.com">http://www.blueglowy.com</a></p>
<p>#&gt;   <br />$ErrorActionPreference = &quot;SilentlyContinue&quot;</p>
<p>$localprinters = Get-WmiObject -Class Win32_Printer -ComputerName ${env:computername}</p>
<p>$defaultprt = Get-WMIObject -class Win32_Printer -computer ${env:computername} -Filter Default=True | Select Name,Default</p>
<p>$test = Select-String -inputObject $localprinters -pattern &quot;&lt;printer1&gt;&quot; -quiet   <br />$test2 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer2&gt;&quot; -quiet    <br />$test3 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer3&gt;&quot; -quiet    <br />$test4 = Select-String -inputObject $localprinters -pattern &quot;&lt;printer4&gt;&quot; -quiet</p>
<p>$prt1 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer1&gt;&quot; -quiet    <br />$prt2 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer2&gt;&quot; -quiet    <br />$prt3 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer3&gt;&quot; -quiet    <br />$prt4 = Select-String -inputObject $defaultprt -pattern &quot;&lt;printer4&gt;&quot; -quiet</p>
<p>if ($test -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer1&gt;&quot;)   <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer1&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test2 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer2&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer2&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test3 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer3&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer3&gt;&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}    <br />&#160;&#160;&#160; <br />if ($test4 -eq &quot;True&quot;) {(New-Object -ComObject WScript.Network).RemovePrinterConnection(&quot;\\&lt;printserver&gt;\&lt;printer4&gt;&quot;)    <br />&#160;&#160;&#160; (New-Object -ComObject WScript.Network).AddWindowsPrinterConnection(&quot;\\&lt;newprintserver&gt;\&lt;printer4&gt; PCL5&quot;)}    <br />&#160;&#160;&#160; else {&quot;&quot;}</p>
<p>#Check for default printer and reset it to users original choice if printer was removed   <br />if ($prt1 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer1&gt;&quot;})}    <br />&#160;&#160;&#160; Elseif ($prt2 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer2&gt;&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Elseif ($prt3 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer3&gt;&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Elseif ($prt4 -eq &quot;True&quot;) {($Printer = Get-WmiObject win32_printer&#160; | where {$_.name -match &quot;&lt;printer4&gt; PCL5&quot;})}    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Else {$Printer = &quot;&quot;}</p>
<p>$Printer.SetDefaultPrinter()   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />Printer Check Complete</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2011/04/01/switching-users-print-servers-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deadly Space</title>
		<link>http://blueglowy.com/2011/01/18/deadly-space/</link>
		<comments>http://blueglowy.com/2011/01/18/deadly-space/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 06:41:34 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[dead space]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[nerdcore]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2011/01/18/deadly-space/</guid>
		<description><![CDATA[Since Dead Space 2 comes out next week, I’d like to take this opportunity to remind everyone about the song I did for Rhyme Torrents 8, “Deadly Space”, inspired by the first game and Dead Space: Downfall. Please to be enjoying]]></description>
			<content:encoded><![CDATA[<p>Since Dead Space 2 comes out next week, I’d like to take this opportunity to remind everyone about the song I did for Rhyme Torrents 8, “Deadly Space”, inspired by the first game and Dead Space: Downfall.</p>
<p>Please to be enjoying</p>
<p> <a href="http://blueglowy.com/Music/Deadly_Space.m4a" target="_blank"><img alt="Dead Space Wallpaper 2" src="http://i225.photobucket.com/albums/dd138/WooDyWooD_PaCKeR/Dead_Space_2l.jpg" width="601" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2011/01/18/deadly-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://blueglowy.com/Music/Deadly_Space.m4a" length="8494895" type="audio/mpeg" />
		</item>
		<item>
		<title>Standards People</title>
		<link>http://blueglowy.com/2010/06/17/standards-people/</link>
		<comments>http://blueglowy.com/2010/06/17/standards-people/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 22:51:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[itunes; apple; zune;]]></category>

		<guid isPermaLink="false">http://blueglowy.com/2010/06/17/standards-people/</guid>
		<description><![CDATA[I completely regret ever purchasing video from the itunes store now. So i like a good consumer I updated my itunes to 9.2 today, and after it completed, 88 files are missing, 564 tv shows are showing as unplayed, and some of my music is now gone.&#160; Thankfully the music had already been copied over [...]]]></description>
			<content:encoded><![CDATA[<p>I completely regret ever purchasing video from the itunes store now. </p>
<p>So i like a good consumer I updated my itunes to 9.2 today, and after it completed, 88 files are missing, 564 tv shows are showing as unplayed, and some of my music is now gone.&#160; Thankfully the music had already been copied over to my Zune library, but the problem is that I HAVE NO IDEA WHAT HAPPENED. Its just gone.</p>
<p>Frankly though, my greater concern is the fact that even if I want to move to a computer’s product, like oh say….Zune, I can’t take my media with me.&#160; Due to drm and failure to adhere to standards, Apple has assured that I will forever have to use this apple TV they don’t really want to support to view the files.&#160; The container Apple uses for MP4 is an M4V with AC3 passthru, which is an unsupported hack to the MP4 codec container, therefore most other software won’t read it.&#160; Combined with the DRM, you are locked forever into using this thing, no matter how laggy and crappy it is, since Apple doesn’t wanna actually upgrade the device.&#160; </p>
<p>The lesson I’ve learned here is this, if you want interoperability and you want to insure your investment in media isn’t destroyed by a shitty software update….PIRATE.&#160; </p>
<p>And they wonder why they can’t beat piracy?</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2010/06/17/standards-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Club Nintendo</title>
		<link>http://blueglowy.com/2008/12/23/club-nintendo/</link>
		<comments>http://blueglowy.com/2008/12/23/club-nintendo/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 01:27:46 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[nerdery]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[nintendo]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=224</guid>
		<description><![CDATA[Well, in doing research on the new American version of Club Nintendo, it appears I will for the most part be screwed on all the games I bought in registered in the past with the exception of a couple. So I found this nice little list to help keep track of whats currently available that [...]]]></description>
			<content:encoded><![CDATA[<p>Well, in doing research on the new American version of Club Nintendo, it appears I will for the most part be screwed on all the games I bought in registered in the past with the exception of a couple. So I found this nice little list to help keep track of whats currently available that will give you Club Nintendo coins for swag.</p>
<p><span><strong>Wii Games (50 coins after survey)</strong></span><br />
Animal Crossing: City Folk<br />
Big Brain Academy: Wii Degree<br />
Endless Ocean<br />
Fire Emblem: Radiant Dawn<br />
Legend of Zelda: Twilight Princess<br />
Link&#8217;s Crossbow Training<br />
Mario Kart Wii<br />
Mario Party 8<br />
Mario Strikers Charged<br />
Mario Super Sluggers<br />
Metroid Prime 3: Corruption<br />
Pokemon Battle Revolution<br />
Super Mario Galaxy<br />
Super Paper Mario<br />
Super Smash Bros. Brawl<br />
Wario Land: Shake It!<br />
WarioWare: Smooth Moves<br />
Wii Fit (80 points)<br />
Wii Music<br />
Wii Play</p>
<p><span><strong>Wii Shop Channel games and Wii Channels (10 coins after survey)</strong></span><br />
Alien Crush Returns<br />
Art Style: Cubello<br />
Art Style: Rotohex<br />
Big Kahuna Party<br />
Boingz<br />
Boogerman: A Pick and Flick Adventure<br />
Brain Challenge<br />
Bruiser and Scratch<br />
Digital Champ Battle Boxing<br />
Earthworm Jim<br />
Enduro Racer<br />
Forgotten Worlds<br />
Gradius II Gofer No Yabou<br />
Hockey Allstar Shootout<br />
Home Sweet Home<br />
Mega Man 3<br />
Metal Slug 2<br />
Pit Crew Panic!<br />
Secret of Mana<br />
Sonic the Hedgehog 2<br />
Space Harrier<br />
Space Invaders Get Even<br />
Space Invaders: The Original Game<br />
Street Fighter II: Special Champion Edition<br />
Strong Bad Episode 3: Baddest of the Bands<br />
Strong Bad Episode 4: Dangeresque 3<br />
Strong Bad Episode 5: 8-bit is Enough<br />
Sudoku Challenge!<br />
Target Toss Pro: Bags<br />
Tetris Party<br />
The Incredible Maze<br />
World of Goo<br />
Yummy Yummy Cooking Jam</p>
<p><span><strong>Nintendo DS Games (30 coins after survey)</strong></span><br />
Advance Wars: Days of Ruin<br />
Animal Crossing: Wild World<br />
Big Brain Academy<br />
Brain Age: Train Your Brain in Minutes a Day<br />
Brain Age 2: More Training in Minutes a Day<br />
Clubhouse Games<br />
Crosswords DS<br />
Diddy Kong Racing<br />
Electroplankton<br />
Elite Beat Agents<br />
Flash Focus: Vision Training in Minutes a Day<br />
Hotel Dusk: Room 215<br />
Kirby Super Star Ultra<br />
Legend of Zelda: Phantom Hourglass<br />
Mario Kart DS<br />
Mario Party DS<br />
Master of Illusion<br />
Mystery Case Files: MillionHeir<br />
New Super Mario Bros.<br />
Nintendogs: Chihuahua and Friends<br />
Nintendogs: Dalmatian and Friends<br />
Nintendogs: Labrador Retriever and Friends<br />
Nintendogs: Miniature Dachshund and Friends<br />
Personal Trainer: Cooking<br />
Planet Puzzle League<br />
Pokemon Diamond<br />
Pokemon Mystery Dungeon: Explorers of Time<br />
Pokemon Mystery Dungeon: Explorers of Darkness<br />
Pokemon Pearl<br />
Pokemon Ranger<br />
Pokemon Ranger: Shadows of Almia<br />
Professor Layton and the Curious Village<br />
Super Mario 64 DS<br />
Tetris DS<br />
Yoshi&#8217;s Island DS</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/12/23/club-nintendo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mathematics of facepalm</title>
		<link>http://blueglowy.com/2008/12/08/mathematics-of-facepalm/</link>
		<comments>http://blueglowy.com/2008/12/08/mathematics-of-facepalm/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 22:46:06 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[nerdery]]></category>
		<category><![CDATA[facepalm]]></category>

		<guid isPermaLink="false">http://blueglowy.com/?p=219</guid>
		<description><![CDATA[All credit to SuchetaFox on Kotaku.com: Â  I think the problem here is whether or not one multiplies or adds facepalms. Let f = a facepalm If it&#8217;s multiplication, then 2 facepalms is f * f = f^Â² But if it&#8217;s addition, then 2 facepalms is f + f = 2f Perhaps, though, it depends [...]]]></description>
			<content:encoded><![CDATA[<p>All credit to SuchetaFox on Kotaku.com:</p>
<p>Â </p>
<p>I think the problem here is whether or not one multiplies or adds facepalms. Let f = a facepalm If it&#8217;s multiplication, then 2 facepalms is f * f = f^Â² But if it&#8217;s addition, then 2 facepalms is f + f = 2f Perhaps, though, it depends on what the facepalm is about. If one facepalms in shame of another&#8217;s facepalm, then we can define that as multiplication. Conversely, facepalming performed by two individuals with respect to the same event would be two of them, or 2f. Incidently, facepalming due to the above posters&#8217; two facepalms would be f * (f + f) = 2f^Â² In the same line of thinking, this is the same as two people facepalming due to a single individual&#8217;s facepalm, such that (f + f) * f = 2f^Â² Therefore, facepalming is commutative.</p>
]]></content:encoded>
			<wfw:commentRss>http://blueglowy.com/2008/12/08/mathematics-of-facepalm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

