<?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>Mindless Conversation</title>
	<atom:link href="http://www.bgsneeze.net/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.bgsneeze.net/blog</link>
	<description>My random thoughts and (mis)adventures</description>
	<lastBuildDate>Mon, 23 Apr 2012 12:18:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Remotely Reboot Servers with Powershell</title>
		<link>http://www.bgsneeze.net/blog/?p=178</link>
		<comments>http://www.bgsneeze.net/blog/?p=178#comments</comments>
		<pubDate>Mon, 23 Apr 2012 12:18:14 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=178</guid>
		<description><![CDATA[I needed to remotely reboot some servers in batches. Here is some quick code to reboot the servers. The script will issue the first reboot using the server names in the first .txt file. it will then pause and display a popup, wait 8 minutes and then fire off the second .txt file.   This [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to remotely reboot some servers in batches. Here is some quick code to reboot the servers. The script will issue the first reboot using the server names in the first .txt file. it will then pause and display a popup, wait 8 minutes and then fire off the second .txt file.   This repeats until the end. You will need to change &#8220;Domain\account&#8221; to your domain and an account that has admin rights.  Also note, that Powershell does not have a pause function like cmd.exe does. The pause function was created after finding some examples from around the web. Enjoy!</p>
<p>&nbsp;</p>
<p>$Cred = Get-Credential -credential Domain\account<br />
$servgroup = &#8220;&#8221;</p>
<p>Function Pause ($Message = &#8220;Press any key to continue . . . &#8220;) {<br />
If ($psISE) {<br />
# The &#8220;ReadKey&#8221; functionality is not supported in Windows PowerShell ISE.<br />
$alert = $servgroup + &#8220;Server Group Rebooting. Waiting 8 Minutes.&#8221;<br />
$Shell = New-Object -ComObject &#8220;WScript.Shell&#8221;<br />
$Button = $Shell.Popup($alert,480, &#8220;Servers Reboot, Script Paused&#8221;, 64)</p>
<p>Return<br />
}</p>
<p>Write-Host -NoNewline $Message</p>
<p>$Ignore =<br />
16, # Shift (left or right)<br />
17, # Ctrl (left or right)<br />
18, # Alt (left or right)<br />
20, # Caps lock<br />
91, # Windows key (left)<br />
92, # Windows key (right)<br />
93, # Menu key<br />
144, # Num lock<br />
145, # Scroll lock<br />
166, # Back<br />
167, # Forward<br />
168, # Refresh<br />
169, # Stop<br />
170, # Search<br />
171, # Favorites<br />
172, # Start/Home<br />
173, # Mute<br />
174, # Volume Down<br />
175, # Volume Up<br />
176, # Next Track<br />
177, # Previous Track<br />
178, # Stop Media<br />
179, # Play<br />
180, # Mail<br />
181, # Select Media<br />
182, # Application 1<br />
183 # Application 2</p>
<p>While ($KeyInfo.VirtualKeyCode -Eq $Null -Or $Ignore -Contains $KeyInfo.VirtualKeyCode) {<br />
$KeyInfo = $Host.UI.RawUI.ReadKey(&#8220;NoEcho, IncludeKeyDown&#8221;)<br />
}</p>
<p>Write-Host<br />
}<br />
restart-computer -computername (Get-Content C:\batch1.txt) -force -credential $Cred<br />
$servgroup = &#8220;Batch1&#8243;</p>
<p>pause</p>
<p>restart-computer -computername (get-content C:\batch2.txt) -force -credential $Cred<br />
restart-computer -computername (get-content c:\batch3.txt) -force -credential $cred<br />
$servgroup = &#8220;Batch2 &amp; Batch3 &#8221;<br />
pause<br />
restart-computer -computername (get-content c:\batch4.txt) -force -credential $Cred<br />
$servgroup = &#8220;Batch4 &#8221;<br />
pause</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Powershell</title>
		<link>http://www.bgsneeze.net/blog/?p=172</link>
		<comments>http://www.bgsneeze.net/blog/?p=172#comments</comments>
		<pubDate>Mon, 12 Mar 2012 12:25:24 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=172</guid>
		<description><![CDATA[On 3/10/2012 I made a trip to Columbus Ohio for the First Microsoft Powershell Saturday. It was an &#8220;all day&#8221; event starting in the morning and finishing at 4 in the afternoon. Ed Wilson, Ashley McGlone and others put on some classes to show how to setup a profile, and work with different providers and [...]]]></description>
			<content:encoded><![CDATA[<p>On 3/10/2012 I made a trip to Columbus Ohio for the First Microsoft Powershell Saturday. It was an &#8220;all day&#8221; event starting in the morning and finishing at 4 in the afternoon. <a href="http://blogs.technet.com/b/heyscriptingguy/">Ed Wilson</a>, <a href="http://blogs.technet.com/b/ashleymcglone">Ashley McGlone</a> and others put on some classes to show how to setup a profile, and work with different providers and interact with Active Directory. There were also sessions dealing with Exchange and WMI. It was very informative. I hope Ashley will post all of the code he presented, he showed how to use different command line tools and convert the output into more readable formats, as well as some very good scripts to parse Active directory objects. He also showed some very cool ways to find objects in the Active Directory Recycle Bin and then restore them. His script would even recursively restore deleted OUs. If you see this course offered in you region, take advantage of the class.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Henry Ford 2011 Old Car Festival</title>
		<link>http://www.bgsneeze.net/blog/?p=155</link>
		<comments>http://www.bgsneeze.net/blog/?p=155#comments</comments>
		<pubDate>Sun, 18 Sep 2011 22:37:35 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=155</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-1-155">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.bgsneeze.net/blog/?p=155&amp;show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00772-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00772-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00773-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00773-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00775-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00775-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00776-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00776-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00779-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00779-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00784-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00784-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-30" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00785-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00785-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-31" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00786-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00786-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00787-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00787-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00788-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00788-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00789-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00789-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00790-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00790-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00793-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00793-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00794-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00794-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00800-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00800-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00801-custom.jpg" title=" " class="shutterset_set_1" >
								<img title="SONY DSC" alt="SONY DSC" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00801-custom.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00704.jpg" title=" " class="shutterset_set_1" >
								<img title="1926 Franklin 11-A Coupe" alt="1926 Franklin 11-A Coupe" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00704.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00706.jpg" title=" " class="shutterset_set_1" >
								<img title="1926 Franklin 11-A Coupe" alt="1926 Franklin 11-A Coupe" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00706.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00707.jpg" title=" " class="shutterset_set_1" >
								<img title="1929 Auburn 8-120 Boat Tail Speedster" alt="1929 Auburn 8-120 Boat Tail Speedster" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00707.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/dsc00751.jpg" title=" " class="shutterset_set_1" >
								<img title="1929 Auburn 8-120 Boat Tail Speedster" alt="1929 Auburn 8-120 Boat Tail Speedster" src="http://www.bgsneeze.net/blog/wp-content/gallery/the-henry-ford-old-car-festival-2011/thumbs/thumbs_dsc00751.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span class="current">1</span><a class="page-numbers" href="http://www.bgsneeze.net/blog/?p=155&amp;nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://www.bgsneeze.net/blog/?p=155&amp;nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=155</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-readers, A review and my thoughts</title>
		<link>http://www.bgsneeze.net/blog/?p=140</link>
		<comments>http://www.bgsneeze.net/blog/?p=140#comments</comments>
		<pubDate>Thu, 09 Jun 2011 11:41:29 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Free Time]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=140</guid>
		<description><![CDATA[For over a year I had wanted an e-book reader. Since I work with technology every day, having some way to carry around refernece materials in a small package is ideal.  Having computer manual after computer manual in a small device is prefered to carrying 40 pounds of books in a bag. In June 2010, [...]]]></description>
			<content:encoded><![CDATA[<p>For over a year I had wanted an e-book reader. Since I work with technology every day, having some way to carry around refernece materials in a small package is ideal.  Having computer manual after computer manual in a small device is prefered to carrying 40 pounds of books in a bag. In June 2010, Barnes and Noble reduced the cost of their nook. I ended up getting one with the 3G connection for my birthday. I decided on the nook for several reasons. I like that I can &#8220;side load&#8221; books from other publishers. I also like that I can download samples from Barnes and Noble to see if the book is what I am looking for. The device is simple to use and upgrade the storage on. Barnes and Noble have a fair selection of books on line for purchase. I would how ever like to see more nonfiction selections. I mostly read technical and nonfiction books. I also would like to see Barnes and Noble add some better free ebooks to their store. Many of the free books seem to be trashy romance or some such books. Having some high quality free books would be a great way to get people started when they have just purchased the nook.</p>
<p>The Nook&#8217;s screen is very clear and easy to read. The battery life is good, allowing me to read for several days if I turn off the WiFi and 3G. The touch screen for navigation is simple to use. The Web browser included  isn&#8217;t the greatest and lacks some abilities to reformat pages to fit on the Nook&#8217;s screen. But I didn&#8217;t get the nook for web browsing. A friens has the Nook Color, and is much better at web content.</p>
<p>I think e-readers in general are a great thing. If an e-reader can get people to read more, I am all for their use. I find that by and large too many do not read.  I have noticed that with the ease of checking online, I have read more samples of books.</p>
<p>The future of e-readers will be interesting. EInk is working on a color display but the prototype photos look like junk. If you want a touch screen, the Apple iPad is the best interface going. Pixel Qi has an interesting display technology, a LCD panel that can run in several modes and allows the screen to be easily read in daylight. A tablet made with a Pixel Qi display with multitouch and running Android as the OS would make a great device. Content for the e-readers is improving.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=140</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nagios trademark problems</title>
		<link>http://www.bgsneeze.net/blog/?p=143</link>
		<comments>http://www.bgsneeze.net/blog/?p=143#comments</comments>
		<pubDate>Fri, 01 Oct 2010 20:58:48 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=143</guid>
		<description><![CDATA[I have been using Nagios, the network monitoring software, for several years now. It is a shame to see that someone is trying to take advantage of the good work created by the Nagios community. Read the details here.]]></description>
			<content:encoded><![CDATA[<p>I have been using Nagios, the network monitoring software, for several years now. It is a shame to see that someone is trying to take advantage of the good work created by the Nagios community. Read the details<a href="http://community.nagios.org/2010/09/28/nagios-trademark-truth/" target="_blank"> here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi-Touch Table</title>
		<link>http://www.bgsneeze.net/blog/?p=127</link>
		<comments>http://www.bgsneeze.net/blog/?p=127#comments</comments>
		<pubDate>Fri, 19 Mar 2010 20:13:26 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=127</guid>
		<description><![CDATA[For the past while I have been looking at building some kind of multi-touch table. I you have used an iPhone, or the like you know what multi-touch is. What I would like to make is some something close to Microsoft&#8217;s Surface. NUI Group is a great site and forums. They have information for the [...]]]></description>
			<content:encoded><![CDATA[<p>For the past while I have been looking at building some kind of <a href="http://en.wikipedia.org/wiki/Multi-touch">multi-touch</a> table. I you have used an iPhone, or the like you know what multi-touch is. What I would like to make is some something close to <a href="http://www.microsoft.com/surface/">Microsoft&#8217;s Surface</a>. <a href="http://nuigroup.com/">NUI Group</a> is a great site and forums. They have information for the creation of server types of multi-touch interfaces. After studying the site forums, and with what I have access to right now, I think I will be trying to build and LCD FTIR type display. When I get further I hope to post more details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=127</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pizza and Beer</title>
		<link>http://www.bgsneeze.net/blog/?p=112</link>
		<comments>http://www.bgsneeze.net/blog/?p=112#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:12:16 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=112</guid>
		<description><![CDATA[So here is and interesting take on delivery pizza and beer.]]></description>
			<content:encoded><![CDATA[<p>So here is and <a href="http://www.inhabitat.com/2009/10/08/hopworksfiets-bike-is-a-pedal-powered-party/?=homepage#">interesting take</a> on delivery pizza and beer. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=112</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The CrunchPad is dead</title>
		<link>http://www.bgsneeze.net/blog/?p=121</link>
		<comments>http://www.bgsneeze.net/blog/?p=121#comments</comments>
		<pubDate>Mon, 30 Nov 2009 22:09:43 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=121</guid>
		<description><![CDATA[Well it turns out that after months of waiting that the CrunchPad is dead. It is a real shame as the pad looks like it could be a real winner for the tablet form factor. I hope some how they are able to bring it back to life, or that some one will be able [...]]]></description>
			<content:encoded><![CDATA[<p>Well it turns out that after months of waiting that the <a href="http://www.techcrunch.com/2009/11/30/crunchpad-end/">CrunchPad is dead.</a> It is a real shame as the pad looks like it could be a real winner for the tablet form factor. I hope some how they are able to bring it back to life, or that some one will be able to create a clone device.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=121</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu turns 5, look back at what they have done</title>
		<link>http://www.bgsneeze.net/blog/?p=115</link>
		<comments>http://www.bgsneeze.net/blog/?p=115#comments</comments>
		<pubDate>Thu, 22 Oct 2009 22:24:16 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=115</guid>
		<description><![CDATA[This past week Ubuntu Linux turned 5 years old. I have been using Ubuntu for about 3 years now. I feel it is important to look at what they have done for users, and how Ubuntu has changed the experience of Linux for the desktop. First, Ubuntu releases new versions on a time based system. [...]]]></description>
			<content:encoded><![CDATA[<p>This past week Ubuntu Linux turned 5 years old. I have been using Ubuntu for about 3 years now. I feel it is important to look at what they have done for users, and how Ubuntu has changed the experience of Linux for the desktop. </p>
<p>First, Ubuntu releases new versions on a time based system. While Ubuntu is not the first distro to do this, they are fairly consistent, and they do not delay a release because they are waiting on some new feature in the kernel or some user space utility. Ubuntu really makes upgrades for this release schedule work well. Ubuntu releases twice a year. This means that you will have access to newer software in the repositories, and that you will enjoy the new enhancements to GNOME or KDE about every 6 months. </p>
<p>Second, Ubuntu really pioneered the use of the Live CD installer. Before Ubuntu it was very hard to try-before-you-buy. I spent hours installing, formatting, installing, wiping, installing before finding a distro that was easy to use, powerful, and simple to maintain. With Ubuntu&#8217;s Live CD new users can see if they like the interface, and if they do they can just click on the installer to have a new OS. </p>
<p>Third, Ubuntu has taken on the task of accessing proprietary drivers. if you network card requires a closed source driver, you can install it using the restricted driver module installer, and Ubuntu&#8217;s repos. It is much easier than hunting down each driver and guessing that you have all the needed parts to install it. </p>
<p>Fourth, Ubuntu has focused on usability, especially for desktop users. Ubuntu recruited professional programmers and designers. the developers have worked to stamp out bugs, and add features. All while not charging the end-user. </p>
<p>Lastly, Ubuntu has created a large community. If you are a new user, check out the wiki, or forums. You are bound to find answers to your questions. Ubuntu has worked hard at making users feel welcome. So these are just a few things Ubuntu has done over the past 5 year. It will be interesting to see what 5 more years bring.  If you are a Ubuntu user what do you really like about Ubuntu? What are you looking forward to?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pizza and Beer</title>
		<link>http://www.bgsneeze.net/blog/?p=111</link>
		<comments>http://www.bgsneeze.net/blog/?p=111#comments</comments>
		<pubDate>Mon, 12 Oct 2009 10:06:30 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bgsneeze.net/blog/?p=111</guid>
		<description><![CDATA[So here is and interesting take on delivery pizza and beer. Maybe someone will come up with a bicycle and smoker combo. Or even a bicycle deep fryer could be cool.]]></description>
			<content:encoded><![CDATA[<p>So here is and <a href="http://www.inhabitat.com/2009/10/08/hopworksfiets-bike-is-a-pedal-powered-party/?=homepage#">interesting take</a> on delivery pizza and beer. Maybe someone will come up with a bicycle and smoker combo. Or even a bicycle deep fryer could be cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bgsneeze.net/blog/?feed=rss2&#038;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

