<?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>Burm.net &#187; Interesting</title>
	<atom:link href="http://burm.net/category/interesting/feed/" rel="self" type="application/rss+xml" />
	<link>http://burm.net</link>
	<description>John Burmeister's Blog</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:31:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>XenServer basic security Tips &#8211; How do you secure your XenServer?</title>
		<link>http://burm.net/2012/01/29/xenserver-basic-security-tips-how-do-you-secure-your-xenserver/</link>
		<comments>http://burm.net/2012/01/29/xenserver-basic-security-tips-how-do-you-secure-your-xenserver/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 07:49:05 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Xen]]></category>
		<category><![CDATA[XenServer]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://burm.net/?p=278</guid>
		<description><![CDATA[Using this post to keep some notes on a few things I did to my XenServer instance,  most of this is just common sense. Disable root login via SSH First things first, make sure you add a user on the Xenserver box.  This is the user you will allow to login via SSH (if you [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2012%2F01%2F29%2Fxenserver-basic-security-tips-how-do-you-secure-your-xenserver%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2012%2F01%2F29%2Fxenserver-basic-security-tips-how-do-you-secure-your-xenserver%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Using this post to keep some notes on a few things I did to my XenServer instance,  most of this is just common sense.</p>
<p><strong>Disable root login via SSH</strong></p>
<p>First things first, make sure you add a user on the Xenserver box.  This is the user you will allow to login via SSH (if you have SSH running at all).</p>
<p>Edit the sshd_config, and find the text #PermitRootLogin yes and change it to:</p>
<p>PermitRootLogin no</p>
<p>Right below that add a new line, and replace USERNAME with the username you created.</p>
<p>AllowUsers USERNAME</p>
<p>If you have more then one user that you want to add just put a space between them and add them in succession.  Example:</p>
<p>AllowUsers john harry bob</p>
<p>Then go ahead and restart sshd:</p>
<p>/etc/init.d/sshd restart</p>
<p>Open up a new terminal session and make sure you can login to the server under your new user, and you should be good to go!</p>
<p><strong>Edit the web page that XenServer shows or limit access completely</strong></p>
<p>Xenserver by default serves up a web page that gives your links to download the Xen Center admin console&#8230; The web server also servers up the XAPI that is needed for the admin console to access the server remotely. So you have a few options, edit the index.html page to remove the data on there and serve up a blank page.  Or the better option is to restrict access completely to the XAPI via the hosts file.  And the best option is to toss the Xenserver behind a firewall (hardware or software).  Perhaps I&#8217;ll go into detail on how to do that in a future post, but in short, firewall the entire server and tunnel in via SSH, which would be the most secure avenue. The only downside to restricting access via a firewall or restricting access via the hosts file is that if you are not at home / work / at a PC where you have access to the restrictions in place your, out of luck on getting access to your server.   Now keep in mind, there are alternatives for access (port knocking, ssh via another server or VM, etc)  I could go on forever, but everyones situation is different. With that said, lets go over the first two options.</p>
<p>To prevent XenServer from showing the default index.html page, you can either edit the actual file and change it to your liking. The file is located here:</p>
<p>/opt/xensource/www/index.html</p>
<p>For the second option, you can reference the Citrix support document here for detailed information on modifying the hosts file http://support.citrix.com/article/CTX118504, however below is essentially what you need to do.</p>
<p>First edit the hosts.deny file located here: /etc/hosts.deny and enter in: xapi:ALL &#8211; What this does is restrict every IP from accessing the XAPI.  Second, you&#8217;ll need to edit the hosts.allow file, which takes precedence over the hosts.deny and specify the ip adresses or range of ip addresses that you would like to allow access to the XAPI.  The hosts.allow file is located /etc/hosts.allow</p>
<p>Allow access to a specific ip in the hosts.allow you would put in the following replacing IPADDRESS with the ip you would like to grant access:</p>
<p>xapi:IPADDRESS</p>
<p>Example:</p>
<p>xapi:24.22.12.222</p>
<p>To allow access to a group of ip addresses, for our example, lets use 24.22. &#8211; this would allow any ip address that begins with 24.22. to access the XAPI.</p>
<p>Example:</p>
<p>xapi: 24.22.</p>
<p>If you happen to come across this page, what do you do to lock down your XenServer installs?  I&#8217;ll be writing a few more articles as I dive deeper into Xen and XenServer, so be sure to check back often.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2012/01/29/xenserver-basic-security-tips-how-do-you-secure-your-xenserver/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XenServer Tips and Tricks &#8211; Auto Start Your VM</title>
		<link>http://burm.net/2012/01/28/xenserver-tips-and-tricks-auto-start-your-vm/</link>
		<comments>http://burm.net/2012/01/28/xenserver-tips-and-tricks-auto-start-your-vm/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 18:29:44 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Xen]]></category>
		<category><![CDATA[XenServer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://burm.net/?p=272</guid>
		<description><![CDATA[Figured I&#8217;d share a few of my notes from firing up a XenServer instance&#8230;  I went through lot of research before deciding to go with XenServer versus just firing up Xen on Debian, but thats for another post. The main reason I setup this server was to move off of Linode because I was at the point where it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2012%2F01%2F28%2Fxenserver-tips-and-tricks-auto-start-your-vm%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2012%2F01%2F28%2Fxenserver-tips-and-tricks-auto-start-your-vm%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Figured I&#8217;d share a few of my notes from firing up a XenServer instance&#8230;  I went through lot of research before deciding to go with XenServer versus just firing up Xen on Debian, but thats for another post. The main reason I setup this server was to move off of Linode because I was at the point where it just made sense cost wise, essentially I have a more powerful server for way less money.  Granted, you do loose some of the conveniences of Linode  (simple management/upgrade/backup).  Anyways, onto XenServer&#8230;</p>
<p>When using the free edition of XenServer 6.0, you&#8217;ll want to do a few things such as enabling Auto Start / Auto Boot / Auto Power On.  For some reason this feature was removed from the &#8220;Free&#8221; version in 6.0, so lets go ahead and set this up.</p>
<p>First your going to want to get the UUID of the VM&#8217;s you wish to enable auto start on as well as the UUID of the pool these VM&#8217;s reside in.</p>
<p>To get the list of the pool&#8217;s on your XenServer type:</p>
<p>xe pool-list</p>
<p>Copy the UUID of the pool, in my case there ist just one pool. Then issue the following command, and replace the UUID with your pools UUID.</p>
<p>xe pool-param-set uuid=UUID other-config:auto_poweron=true</p>
<p>Then, at the command prompt of your XenServer type:</p>
<p>xe vm-list</p>
<p>You should get a full list of the VM&#8217;s on the server, along with their name and UUID. Copy the UUID of the VM you wish to enable autostart then issue the command below, again replacing the UUID with the UUID of the VM you wish to auto start.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 174px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">To Auto Start your Pool (replace UUID with the UUID of your Pool):</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 174px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">xe pool-param-set uuid=UUID other-config:auto_poweron=true</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 174px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">To Auto Start your VM (replace the UUID with the UUID of your VM):</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 174px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">xe vm-param-set uuid=UUID other-config:auto_poweron=true</div>
<p>xe vm-param-set uuid=UUID other-config:auto_poweron=true</p>
<p>And thats it, the next time you ever need to power cycle your main server, the Xen instances should power up automatically.</p>
<p>I&#8217;ll be adding a few more articles over the next few weeks of some other notes and tips.  Next up is adding some monitoring to your main XenServer to see whats going on with your different instances.</p>
<p><span style="font-family: arial, helvetica, sans-serif; color: #35383d;"><span style="line-height: 18px;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2012/01/28/xenserver-tips-and-tricks-auto-start-your-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detailed the ATV and Fixed some things&#8230;</title>
		<link>http://burm.net/2010/05/06/detailed-the-atv-and-fixed-some-things/</link>
		<comments>http://burm.net/2010/05/06/detailed-the-atv-and-fixed-some-things/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:04:16 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Upstate]]></category>
		<category><![CDATA[ATV]]></category>
		<category><![CDATA[Brute Force 750]]></category>
		<category><![CDATA[Kawasaki]]></category>

		<guid isPermaLink="false">http://burm.net/?p=262</guid>
		<description><![CDATA[I finished up the main detailing to get rid of all the oxidation.  I started to work on some of the corroded wiring and other problems. I had a really hard time getting off some of the body screws because they were so rusted. All cleaned up: Bus connector fix (common problem on 2005 and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2010%2F05%2F06%2Fdetailed-the-atv-and-fixed-some-things%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2010%2F05%2F06%2Fdetailed-the-atv-and-fixed-some-things%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I finished up the main detailing to get rid of all the oxidation.  I started to work on some of the corroded wiring and other problems. I had a really hard time getting off some of the body screws because they were so rusted.</p>
<p>All cleaned up:</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9961" href="http://burm.net/photos/photo/4573082276/img_9961.html"><img class="alignnone" src="http://farm5.static.flickr.com/4055/4573082276_b1bce83112.jpg" alt="IMG_9961" width="500" height="333" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9959" href="http://burm.net/photos/photo/4573082050/img_9959.html"><img class="alignnone" src="http://farm4.static.flickr.com/3416/4573082050_6348fb60d7.jpg" alt="IMG_9959" width="500" height="333" /></a></p>
<p>Bus connector fix (common problem on 2005 and 2006 Kawasaki Brute Force 750&#8242;s)</p>
<p><a class="tt-flickr tt-flickr-Small" title="IMG_9970" href="http://burm.net/photos/photo/4582837039/img_9970.html"><img class="alignnone" src="http://farm5.static.flickr.com/4037/4582837039_9ef624e568_m.jpg" alt="IMG_9970" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="IMG_9972" href="http://burm.net/photos/photo/4583467048/img_9972.html"><img class="alignnone" src="http://farm5.static.flickr.com/4066/4583467048_20444cb244_m.jpg" alt="IMG_9972" width="240" height="160" /></a></p>
<p>Took the wires out of this plug, stripped then soldered.</p>
<p><a class="tt-flickr tt-flickr-Small" title="IMG_9976" href="http://burm.net/photos/photo/4582837645/img_9976.html"><img class="alignnone" src="http://farm5.static.flickr.com/4040/4582837645_8116407551_m.jpg" alt="IMG_9976" width="240" height="160" /></a> <a class="tt-flickr tt-flickr-Small" title="IMG_9979" href="http://burm.net/photos/photo/4583467836/img_9979.html"><img class="alignnone" src="http://farm5.static.flickr.com/4002/4583467836_1866ccdcd1_m.jpg" alt="IMG_9979" width="240" height="160" /></a></p>
<p>Then taped them up nice and secure&#8230;</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9981" href="http://burm.net/photos/photo/4583467990/img_9981.html"><img class="alignnone" src="http://farm5.static.flickr.com/4047/4583467990_f6d95c66d0.jpg" alt="IMG_9981" width="500" height="333" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2010/05/06/detailed-the-atv-and-fixed-some-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2005 Kawasaki Brute Force 750 4x4i &#8211; New Toy</title>
		<link>http://burm.net/2010/05/02/2005-kawasaki-brute-force-750-4x4i-new-toy/</link>
		<comments>http://burm.net/2010/05/02/2005-kawasaki-brute-force-750-4x4i-new-toy/#comments</comments>
		<pubDate>Sun, 02 May 2010 06:46:17 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Upstate]]></category>
		<category><![CDATA[ATV]]></category>
		<category><![CDATA[Hunting]]></category>
		<category><![CDATA[Kawasaki]]></category>

		<guid isPermaLink="false">http://burm.net/?p=259</guid>
		<description><![CDATA[After 10 months of looking I finally found the ATV deal I was looking for.  A 2005 Kawasaki Brute Force 750.  It has 33 hours on the clock ~170 miles, its basically brand new.  I spend about 8 hours today detailing the quad, it was pretty oxidated from sitting outside. I used a oxidation remover [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2010%2F05%2F02%2F2005-kawasaki-brute-force-750-4x4i-new-toy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2010%2F05%2F02%2F2005-kawasaki-brute-force-750-4x4i-new-toy%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>After 10 months of looking I finally found the ATV deal I was looking for.  A 2005 Kawasaki Brute Force 750.  It has 33 hours on the clock ~170 miles, its basically brand new.  I spend about 8 hours today detailing the quad, it was pretty oxidated from sitting outside. I used a oxidation remover and then wax on the whole ATV.  Its coming out pretty good. I took off the racks and starting spray painting some of the rusted bolts and parts with Rustoleum.  The plow needs to be reconditioned as well, I&#8217;ll probably strip that down to bear metal with the wizzer next week.  Here are some pics:</p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4042/4569715995_d58468b7a2.jpg" alt="IMG_9889" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4006/4569716867_b17f0681c5.jpg" alt="IMG_9892" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4034/4570357172_8448f3835d.jpg" alt="IMG_9908" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4049/4570355840_c19975a008.jpg" alt="IMG_9925" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4042/4570355572_ce4afc7346.jpg" alt="IMG_9938" width="500" height="333" /></p>
<p>My &#8220;spray booth&#8221;</p>
<p><img class="alignnone" src="http://farm5.static.flickr.com/4026/4570356184_8a0ce92071.jpg" alt="IMG_9936" width="500" height="333" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2010/05/02/2005-kawasaki-brute-force-750-4x4i-new-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some pics of the Mustang all cleaned up and ashtray switches installed&#8230;</title>
		<link>http://burm.net/2009/08/08/some-pics-of-the-mustang-all-cleaned-up-and-ashtray-switches-installed/</link>
		<comments>http://burm.net/2009/08/08/some-pics-of-the-mustang-all-cleaned-up-and-ashtray-switches-installed/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 05:46:25 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Levittown]]></category>
		<category><![CDATA[long island]]></category>
		<category><![CDATA[mustang]]></category>
		<category><![CDATA[My Projects]]></category>

		<guid isPermaLink="false">http://burm.net/?p=242</guid>
		<description><![CDATA[Here are some pics from a few weeks ago when she was all cleaned up.   The stang looks a lot better via photos then in person, but hey&#8230; What do you expect for 23+ year old paint?!?! Other pics are for the new switch console I added to the ashtray.  These switches control my Fan, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2009%2F08%2F08%2Fsome-pics-of-the-mustang-all-cleaned-up-and-ashtray-switches-installed%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2009%2F08%2F08%2Fsome-pics-of-the-mustang-all-cleaned-up-and-ashtray-switches-installed%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here are some pics from a few weeks ago when she was all cleaned up.   The stang looks a lot better via photos then in person, but hey&#8230; What do you expect for 23+ year old paint?!?! Other pics are for the new switch console I added to the ashtray.  These switches control my Fan, Shift Light, and gauges.   Heading to Englishtown,NJ this weekend for the big Muscle Mustang &amp; Fast Fords Event.  More info on the event here: <a href="http://www.etownraceway.com/schedule/fords.aspx" target="_blank">http://www.etownraceway.com/schedule/fords.aspx</a> It should be fun!</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9409" href="http://burm.net/photos/photo/3737248022/img_9409.html"><img class="alignnone" src="http://farm4.static.flickr.com/3418/3737248022_3858639cd4.jpg" alt="IMG_9409" width="500" height="334" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9403" href="http://burm.net/photos/photo/3736454045/img_9403.html"><img class="alignnone" src="http://farm4.static.flickr.com/3506/3736454045_7d3a243515.jpg" alt="IMG_9403" width="500" height="334" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_9412" href="http://burm.net/photos/photo/3736455481/img_9412.html"><img class="alignnone" src="http://farm4.static.flickr.com/3085/3736455481_3e1020b4b1.jpg" alt="IMG_9412" width="500" height="333" /></a></p>
<p>Some pics of the control panel installed in the ashtray, sorry crappy pics, took it with my iPhone.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="mustang ash tray" href="http://burm.net/photos/photo/3723962794/mustang-ash-tray.html"><img class="alignnone" src="http://farm4.static.flickr.com/3487/3723962794_441bd22c06.jpg" alt="mustang ash tray" width="500" height="375" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="mustang ash tray" href="http://burm.net/photos/photo/3723962624/mustang-ash-tray.html"><img class="alignnone" src="http://farm4.static.flickr.com/3426/3723962624_72868070f8.jpg" alt="mustang ash tray" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2009/08/08/some-pics-of-the-mustang-all-cleaned-up-and-ashtray-switches-installed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid Broadvoice.com VoIP Phone Company at all costs!</title>
		<link>http://burm.net/2008/12/19/avoid-broadvoicecom-voip-phone-company-at-all-costs/</link>
		<comments>http://burm.net/2008/12/19/avoid-broadvoicecom-voip-phone-company-at-all-costs/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 01:55:35 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[broadvoice]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://burm.net/?p=189</guid>
		<description><![CDATA[Just a frustrated consumer&#8230;  Avoid http://broadvoice.com at all costs.  I was a customer of theirs for over 4 years, pretty much from when they launched.   I think their service as a VoIP company (Not their customer service) was average.  I had a few issues along the way with their sip servers going down but it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2008%2F12%2F19%2Favoid-broadvoicecom-voip-phone-company-at-all-costs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2008%2F12%2F19%2Favoid-broadvoicecom-voip-phone-company-at-all-costs%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Just a frustrated consumer&#8230;  Avoid <a href="http://broadvoice.com">http://broadvoice.com</a> at all costs.  I was a customer of theirs for over 4 years, pretty much from when they launched.   I think their service as a VoIP company (Not their customer service) was average.  I had a few issues along the way with their sip servers going down but it was really minimal.   The voice quality was OK, their web interface is is complete, their phone support is moderate at best.   Soo&#8230;.  4 years later, time to move on to my triple play with Cablevision.  I have a $99.00 a month deal for Cable, Internet, and Phone service.  I think great! Save cash, move the phone number over, done deal.</p>
<p>Ahhh, but wait.  &#8220;Broadvoice&#8221; is not a phone company (this is the crap they fed to me) .  They will NOT release their number to you if you try to port it OUT.   Yet, they&#8217;d gladly port your number in.   While I did NOT agree or sign to these &#8220;TERMS&#8221; when I first became a customer, yet they magically apply to me.</p>
<p>So now I am stuck moving my home phone to a new number, dumping Broadvoice because they will not transfer my number which will end up in a class action lawsuit sooner or later.  Maybe its me, but I just think that&#8217;s shady business practice. They are trying to retain customers by holding your number hostage. This is one time where I think the government needs to step in&#8230;.</p>
<p>If you provide phone service, 911 service, etc, your a damn phone company in my book.</p>
<p>I hope if you have learned anything from this, its stay away from Broadvoice.  I cain&#8217;t even imagine if you have your business lines ported over. Imagine not being able to keep your business number because they would not release it to you?  Seriously think twice before signing up for Broadvoice or any phone company before getting a SIGNED contract that states that you can port your number out when you leave.  Thank god that my business number is not with Broadvoice (I just use their service for outgoing sip on that line, as well as my customers accounts).  I&#8217;ll be moving them away from them as well as 4 of my family members as result of this.</p>
<p>Have a good Holiday all!</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/12/19/avoid-broadvoicecom-voip-phone-company-at-all-costs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2008 Live Election Results Map</title>
		<link>http://burm.net/2008/11/04/2008-live-election-results-map/</link>
		<comments>http://burm.net/2008/11/04/2008-live-election-results-map/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 16:07:25 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://burm.net/?p=185</guid>
		<description><![CDATA[2008 Live Election Results Map &#8211; Mouse over and or click the state&#8230; Obama won, hope he does the right thing.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2008%2F11%2F04%2F2008-live-election-results-map%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2008%2F11%2F04%2F2008-live-election-results-map%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>2008 Live Election Results Map &#8211; Mouse over and or click the state&#8230;</p>
<p>Obama won, hope he does the right thing. </p>
<p><script src="http://www.gmodules.com/ig/ifr?url=http://general-election-2008.googlecode.com/svn/trunk/results-gadget.xml&amp;up_state=us&amp;up_race=President&amp;up_countdown=1&amp;synd=open&amp;w=580&amp;h=450&amp;title=2008+Election+Results+from+Google&amp;lang=all&amp;country=ALL&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/11/04/2008-live-election-results-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here are some before, during and after shots of the landscaping</title>
		<link>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/</link>
		<comments>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/#comments</comments>
		<pubDate>Tue, 27 May 2008 13:30:45 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[house]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Levittown]]></category>
		<category><![CDATA[long island]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Remodeling]]></category>

		<guid isPermaLink="false">http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/</guid>
		<description><![CDATA[Here are some before, during and after shots of the landscaping. We did a simple design for the front, and are planning on adding another layer or two of the brick to finish it off. We just did one layer so we could put the initial mulch down and that is all that would fit [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2008%2F05%2F27%2Fhere-are-some-before-during-and-after-shots-of-the-landscaping%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2008%2F05%2F27%2Fhere-are-some-before-during-and-after-shots-of-the-landscaping%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here are some before, during and after shots of the landscaping. We did a simple design for the front, and are planning on adding another layer or two of the brick to finish it off. We just did one layer so we could put the initial mulch down and that is all that would fit in my truck.</p>
<p>Everything seems to be growing pretty good, the grass has some bare spots and I&#8217;ll address those in the spring. Hopefully some of those weeds will go away with the next weed and feed session. Next up is to do a fence along the side and back (behind the new arborvitaes we planted). Waiting for that tax refund!</p>
<p>Front Before</p>
<p><img src="http://farm3.static.flickr.com/2106/2527835332_4c7715b852.jpg?v=0" style="max-width: 800px" /></p>
<p>Front After</p>
<p><img src="http://farm4.static.flickr.com/3286/2525347773_19a51b94e3.jpg?v=0" style="max-width: 800px" /></p>
<p>Another Shot of the front &#8211; An in progress photo</p>
<p><img src="http://farm3.static.flickr.com/2373/2527841708_af83ce5286.jpg?v=0" style="max-width: 800px" /></p>
<p>Another two shots of the front &#8211; All done &#8211; And sidewalk / walkway is power washed now!</p>
<p><img src="http://farm3.static.flickr.com/2370/2525361495_3165f15ca1.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm3.static.flickr.com/2251/2525339253_91059583ab.jpg?v=0" style="max-width: 800px" /></p>
<p>The Backyard</p>
<p>Before:</p>
<p><img src="http://farm3.static.flickr.com/2171/2527835054_61a13a7cc5.jpg?v=0" style="max-width: 800px" /></p>
<p>In Progress (All cleaned up and seeded)</p>
<p><img src="http://farm4.static.flickr.com/3088/2526153118_92de6e9d32.jpg?v=0" style="max-width: 800px" /></p>
<p>After &#8211; John Power washed neighbors fence too</p>
<p><img src="http://farm3.static.flickr.com/2310/2526172888_317caecf83.jpg?v=0" style="max-width: 800px" /></p>
<p>Two more backyard shots</p>
<p><img src="http://farm3.static.flickr.com/2328/2526170948_422c888b2a.jpg?v=0" style="max-width: 800px" /></p>
<p><img src="http://farm4.static.flickr.com/3239/2526169382_6fb43c9905.jpg?v=0" style="max-width: 800px" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/05/27/here-are-some-before-during-and-after-shots-of-the-landscaping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tree smashed my truck, wife&#8217;s car, and my house &#8211; Will I be in good hands? (Allstate)</title>
		<link>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/</link>
		<comments>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 04:13:14 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[house]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Levittown]]></category>
		<category><![CDATA[long island]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/</guid>
		<description><![CDATA[Well,  this isn&#8217;t a normal &#8220;house update&#8221;.  The house was updated, but with a few thousand pound branch that crushed my truck, scratched Chrissy&#8217;s car, and took off my brand new gutters.  Below are some pictures, it happened at about 10:45pm (about an hour and 1/2 ago) on 3/8/2008.  I reported 3 claims (yes three) [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2008%2F03%2F08%2Ftree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2008%2F03%2F08%2Ftree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Well,  this isn&#8217;t a normal &#8220;house update&#8221;.  The house was updated, but with a few thousand pound branch that crushed my truck, scratched Chrissy&#8217;s car, and took off my brand new gutters.  Below are some pictures, it happened at about 10:45pm (about an hour and 1/2 ago) on 3/8/2008.  I reported 3 claims (yes three) to Allstate.  They made me do one claim per car, then one for the house.  I&#8217;ve herd some horror stories in the past with claims of this nature with Allstate, lets just hope they handle everything correctly.</p>
<p>I do have a question for everyone, this was a branch from my neighbors tree.  What do I do? Who&#8217;s responsible for the tree cleanup and all of the other expenses?</p>
<p>Sideshow here:  <a href="http://www.flickr.com/photos/burmjohn/sets/72157604073525656/show/">http://www.flickr.com/photos/burmjohn/sets/72157604073525656/show/</a></p>
<p>All pictures here: <a href="http://www.flickr.com/photos/burmjohn/sets/72157604073525656/">http://www.flickr.com/photos/burmjohn/sets/72157604073525656/ </a></p>
<p><img src="http://farm4.static.flickr.com/3003/2319671079_172ca9edab.jpg" height="333" width="500" /></p>
<p>Yes, the tree is IN my car!</p>
<p><img src="http://farm4.static.flickr.com/3083/2319669367_55d47759f2.jpg?v=0" height="333" width="500" /></p>
<p>Roof is crushed in, windows smashed, quarter panel is smashed&#8230;.</p>
<p><img src="http://farm3.static.flickr.com/2075/2319669849_f88cf74cab.jpg?v=0" height="333" width="500" /></p>
<p>Wifes car has a lot of scratches and missing a side mirror now&#8230;</p>
<p><img src="http://farm3.static.flickr.com/2396/2319669103_36e51cd4f3.jpg?v=0" height="333" width="500" /></p>
<p>Thats one big branch!</p>
<p><img src="http://farm3.static.flickr.com/2084/2320480368_85c3bbec1f.jpg?v=0" height="333" width="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/03/08/tree-smashed-my-truck-wifes-car-and-my-house-will-i-be-in-good-hands-allstate/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Appreciate Downtime, because without it, uptime wouldnt exist!</title>
		<link>http://burm.net/2008/01/02/appreciate-downtime-because-without-it-uptime-wouldnt-exist/</link>
		<comments>http://burm.net/2008/01/02/appreciate-downtime-because-without-it-uptime-wouldnt-exist/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 01:41:00 +0000</pubDate>
		<dc:creator>John Burmeister</dc:creator>
				<category><![CDATA[Interesting]]></category>

		<guid isPermaLink="false">http://burm.net/2008/01/02/appreciate-downtime-because-without-it-uptime-wouldnt-exist/</guid>
		<description><![CDATA[I had to post this, especially for all the techies&#8230; &#8220;see the thing is, uptime is only as good a downtime. you NEED downtime to get uptime.  Uptime wouldnt mean anything without downtime. Appreciate the downtime, its priceless.  &#8211; John]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fburm.net%2F2008%2F01%2F02%2Fappreciate-downtime-because-without-it-uptime-wouldnt-exist%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fburm.net%2F2008%2F01%2F02%2Fappreciate-downtime-because-without-it-uptime-wouldnt-exist%2F&amp;source=burmjohn&amp;style=compact&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I had to post this, especially for all the techies&#8230;</p>
<p>&#8220;see the thing is, uptime is only as good a downtime. you  NEED downtime to get uptime.  Uptime wouldnt mean anything without  downtime. Appreciate the downtime, its priceless.</p>
<p class="msg Nth"> &#8211; John</p>
]]></content:encoded>
			<wfw:commentRss>http://burm.net/2008/01/02/appreciate-downtime-because-without-it-uptime-wouldnt-exist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

