<?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>shwango! blog</title>
	<atom:link href="http://blog.shwango.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.shwango.com</link>
	<description>life, love and some other stuff...</description>
	<lastBuildDate>Mon, 07 May 2012 19:58:52 +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>SQL Server DistributedCOM error</title>
		<link>http://blog.shwango.com/2012/05/07/sql-server-distributedcom-error/</link>
		<comments>http://blog.shwango.com/2012/05/07/sql-server-distributedcom-error/#comments</comments>
		<pubDate>Mon, 07 May 2012 19:55:56 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[sqlserver]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/?p=339</guid>
		<description><![CDATA[We had been seeing a ton of &#8220;The application-specific permission settings do not grant Local Launch permission for the COM Server application with CLSID {46063B1E-BE4A-4014-8755-5B377CD462FC} and APPID {FAAFC69C-F4ED-4CCA-8849-7B882279EDBE}&#8221; errors in the event log for our SQL 2008 R2 server. Looks like other have had the same issue and posted fixes here and here. We&#8217;re not [...]]]></description>
			<content:encoded><![CDATA[<p>We had been seeing a ton of &#8220;The application-specific permission settings do not grant Local Launch permission for the COM Server application with CLSID {46063B1E-BE4A-4014-8755-5B377CD462FC} and APPID  {FAAFC69C-F4ED-4CCA-8849-7B882279EDBE}&#8221; errors in the event log for our SQL 2008 R2 server.  Looks like other have had the same issue and posted fixes <a href="http://connect.microsoft.com/SQLServer/feedback/details/422267/sql-agent-dcom-errors-event-id-10016">here</a> and <a href="https://danieladeniji.wordpress.com/2011/06/14/microsoft-sql-server-ssis-error-the-application-specific-permission-settings-do-not-grant-local-launch-permission-for-the-com-server-application-with-clsid-46063b1e-be4a-4014-8755-5b377cd462fc/">here</a>.</p>
<p>We&#8217;re not running SQL server and agent as a domain account since we&#8217;re not in a domain in production, but the situation is basically the same and the solution had worked so far &#8211; basically using Component Services to give the appropriate user/group Launch access.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2012/05/07/sql-server-distributedcom-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What time is it?</title>
		<link>http://blog.shwango.com/2012/05/04/what-time-is-it/</link>
		<comments>http://blog.shwango.com/2012/05/04/what-time-is-it/#comments</comments>
		<pubDate>Sat, 05 May 2012 03:26:49 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/?p=337</guid>
		<description><![CDATA[Update I didn&#8217;t find any other issues reported about Microsoft&#8217;s time server having issues, so we&#8217;re suspecting some thing with the ESXi settings on our VM provider&#8217;s setup. Today apparently Microsoft&#8217;s time.windows.com went wonky &#8211; or could have been our hosting provider. Caused 4 hours of pulling our hair out since several web servers weren&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update</strong> I didn&#8217;t find any other issues reported about Microsoft&#8217;s time server having issues, so we&#8217;re suspecting some thing with the ESXi settings on our VM provider&#8217;s setup.</p>
<p>Today apparently Microsoft&#8217;s time.windows.com went wonky &#8211; or could have been our hosting provider.  Caused 4 hours of pulling our hair out since several web servers weren&#8217;t able to validate sessions and users couldn&#8217;t login.  Finally we looked down at the time on the server and it was 8:35pm on September 22nd, 2010!  Updated the time and all was working.  Our provider changed the time server out of Microsoft&#8217;s hands.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2012/05/04/what-time-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSMQ machine name</title>
		<link>http://blog.shwango.com/2012/05/03/msmq-machine-name/</link>
		<comments>http://blog.shwango.com/2012/05/03/msmq-machine-name/#comments</comments>
		<pubDate>Thu, 03 May 2012 20:00:19 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[msmq]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/?p=334</guid>
		<description><![CDATA[When deploying a new app in production yesterday, we struggled for hours on our configuration connecting up our WCF service through MSMQ. The key is that you MUST use the machine name of the MSMQ server &#8211; no hostname/domain name will work when using net.msmq endpoints. This is documented here and here, but we missed [...]]]></description>
			<content:encoded><![CDATA[<p>When deploying a new app in production yesterday, we struggled for hours on our configuration connecting up our WCF service through MSMQ.  The key is that you MUST use the machine name of the MSMQ server &#8211; no hostname/domain name will work when using net.msmq endpoints.</p>
<p>This is documented <a href="http://msdn.microsoft.com/en-us/library/ms789025.aspx">here</a> and <a href="http://msdn.microsoft.com/en-us/library/ms789038.aspx">here</a>, but we missed it.  Worked for us in our integration and UAT environment because the machine name and hostname are the same, but in production, our provider manages the VMs and uses their name as the machine name.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2012/05/03/msmq-machine-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good software gone bad</title>
		<link>http://blog.shwango.com/2009/06/14/good-software-gone-bad/</link>
		<comments>http://blog.shwango.com/2009/06/14/good-software-gone-bad/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 15:50:22 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2009/06/14/good-software-gone-bad/</guid>
		<description><![CDATA[I&#8217;m sure the Amarok guys had good intentions with Amarok2, but I just don&#8217;t like it. Actually I hate it and think it really sucks. Not intuitive at all &#8211; I just want to play my music. The &#8220;upgrade&#8221; is an unfortunate side effect of upgrading Ubuntu from 8.10 to 9.04. I&#8217;m going back to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure the <a href="http://amarok.kde.org/">Amarok</a> guys had good intentions with Amarok2, but I just don&#8217;t like it.  Actually I hate it and think it really sucks.  Not intuitive at all &#8211; I just want to play my music.  The &#8220;upgrade&#8221; is an unfortunate side effect of upgrading Ubuntu from 8.10 to 9.04.  I&#8217;m going <a href="http://ubuntu-blog.com/how-to-install-amarok-14-in-ubuntu-904">back to 1.4</a>.</p>
<p><font face="sans-serif"></font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2009/06/14/good-software-gone-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow! I have a blog!</title>
		<link>http://blog.shwango.com/2009/05/03/wow-i-have-a-blog/</link>
		<comments>http://blog.shwango.com/2009/05/03/wow-i-have-a-blog/#comments</comments>
		<pubDate>Sun, 03 May 2009 17:46:35 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2009/05/03/wow-i-have-a-blog/</guid>
		<description><![CDATA[Ah&#8230; yeah, now I remember&#8230; I do have a blog! I felt like dusting the blog off and posting again. Life sure gets busy when you have a kid! I had a grand plan to go back and add entries for the important dates &#8211; and maybe I still will, but for now I&#8217;ll just [...]]]></description>
			<content:encoded><![CDATA[<p>Ah&#8230; yeah, now I remember&#8230; I <i>do</i> have a blog!</p>
<p>I felt like dusting the blog off and posting again.</p>
<p>Life sure gets busy when you have a kid!  I had a grand plan to go back and add entries for the important dates &#8211; and maybe I still will, but for now I&#8217;ll just start posting.</p>
<p>Julien Patrick was born on September 20th, 2008, at 6:04pm.  Jen went into labor around 10:30am.  She had a completely natural birth &#8211; it was awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2009/05/03/wow-i-have-a-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wonderful things happening</title>
		<link>http://blog.shwango.com/2008/06/08/wonderful-things-happening/</link>
		<comments>http://blog.shwango.com/2008/06/08/wonderful-things-happening/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 14:42:04 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2008/06/08/wonderful-things-happening/</guid>
		<description><![CDATA[Jen said I was posting too much tech stuff and she&#8217;s right.  Sorry about that, but that is what I tend to post about most&#8230;Anyway, the baby is doing great.  We&#8217;re (most likely) having a boy according to the ultrasound.  It is quite an amazing thing to see this awesome guy growing inside my wonderful [...]]]></description>
			<content:encoded><![CDATA[<p>Jen said I was posting too much tech stuff and she&#8217;s right.  Sorry about that, but that is what I tend to post about most&#8230;Anyway, the baby is doing great.  We&#8217;re (most likely) having a boy according to the ultrasound.  It is quite an amazing thing to see this awesome guy growing inside my wonderful wife.  And we get to hear the heartbeat during our monthly (soon to get more frequent) visits to the Midwife center.  More and more now I&#8217;m feeling the baby crawling around inside Jen &#8211; it&#8217;s so cool!</p>
<p>I painted the baby&#8217;s room a few weekends ago.  &#8220;Brown Teepee&#8221; by Behr is an awesome color!  Last week I pulled up the old carpet.  The old carpet was pretty disgusting and I&#8217;m glad it&#8217;s gone.  I&#8217;d like to keep the hardwood, but Jen wants new carpet installed.  Either way, the room is starting to come together!  Oh, we ordered the crib and dresser/changing table &#8211; really nice looking furiture!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2008/06/08/wonderful-things-happening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X on a Dell Latitude D600</title>
		<link>http://blog.shwango.com/2008/06/08/os-x-on-a-dell-latitude-d600/</link>
		<comments>http://blog.shwango.com/2008/06/08/os-x-on-a-dell-latitude-d600/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 14:21:50 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2008/06/08/os-x-on-a-dell-latitude-d600/</guid>
		<description><![CDATA[Once I got OS X booting on my Dell desktop, I thought I&#8217;d give it a try on the laptop, a Dell Latitude D600.  I read that OS X would indeed install on the D600, since it does have SSE2 &#8211; it&#8217;s a Pentium M &#8211; using one of the OS X images floating around.  I won&#8217;t detail [...]]]></description>
			<content:encoded><![CDATA[<p>Once I got <a href="http://blog.shwango.com/2008/06/07/starting-to-love-os-x/">OS X booting on my Dell desktop</a>, I thought I&#8217;d give it a try on the laptop, a Dell Latitude D600.  I read that OS X would indeed install on the D600, since it does have SSE2 &#8211; it&#8217;s a Pentium M &#8211; using one of the OS X images floating around.  I won&#8217;t detail the whole process as others have done that.  The main down side it that the ATI Mobility Radeon 9000 is not supported &#8211; or at least not supported well, so I don&#8217;t have any hardware acceleration, but I did get it running at native resolution of 1400 x 1050.  It works pretty well &#8211; speed it comparable to XP and Ubuntu which I also have installed on the laptop.  Wireless networking worked out of the box as did sound.  The wired network connection required a kext (kernel extension) patch to get working.  All in all, not to difficult.  Why do this you ask?  1) I like OS X, 2) I can&#8217;t afford a new Mac right now and 3) It&#8217;s a cool, geeky thing to do.</p>
<p>No, software update doesn&#8217;t work for the system patches, but I can live without that for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2008/06/08/os-x-on-a-dell-latitude-d600/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Scissor-switch is where it&#8217;s at!</title>
		<link>http://blog.shwango.com/2008/06/08/scissor-switch-is-where-its-at/</link>
		<comments>http://blog.shwango.com/2008/06/08/scissor-switch-is-where-its-at/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 14:07:23 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2008/06/08/scissor-switch-is-where-its-at/</guid>
		<description><![CDATA[I&#8217;ve been using an Enermax Crystal aluminum keyboard for like a year now and love it.  Since I&#8217;ll be working from home more once the baby&#8217;s born, I&#8217;m trying to get my home office as productive (or more) than my work office &#8211; that means getting my computer up to snuff.  I&#8217;ve always liked the feel of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using an <a href="http://www.pcper.com/article.php?aid=263">Enermax Crystal aluminum keyboard</a> for like a year now and love it.  Since I&#8217;ll be working from home more once the baby&#8217;s born, I&#8217;m trying to get my home office as productive (or more) than my work office &#8211; that means getting my computer up to snuff.  I&#8217;ve always liked the feel of laptop (aka scissor-switch) keyboards and the Crystal keyboard has one for desktop use.  The new Enermax keyboards - apparently they don&#8217;t make the Crystal any more and it was a bit pricey - have the &#8220;L&#8221; shaped enter key which I detest, so that was out of the question for a new keyboard for home.  Luckily I found the <a href="http://us.kensington.com/html/4826.html">Kensington SlimType</a> keyboard while making a pit stop at MicroCenter the other day.  For $30 this keyboard rocks!  It&#8217;s got a really nice feel and the layout is the same as the Crystal.  Once again, I&#8217;m a happy camper.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2008/06/08/scissor-switch-is-where-its-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting to love OS X</title>
		<link>http://blog.shwango.com/2008/06/07/starting-to-love-os-x/</link>
		<comments>http://blog.shwango.com/2008/06/07/starting-to-love-os-x/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 02:11:49 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2008/06/07/starting-to-love-os-x/</guid>
		<description><![CDATA[I created my &#8220;hackintosh&#8221; a few weeks ago on my Dell Dimension 9200.  The main reason was so I could check out TextMate - the editor most Rails guys seem to use.  I&#8217;ve been using NetBeans on Ubuntu for a while now and like it, but just wanted to give TextMate a whirl.  Well, after using OS [...]]]></description>
			<content:encoded><![CDATA[<p>I created my &#8220;hackintosh&#8221; a few weeks ago on my Dell Dimension 9200.  The main reason was so I could check out <a href="http://macromates.com/">TextMate</a> - the editor most Rails guys seem to use.  I&#8217;ve been using NetBeans on Ubuntu for a while now and like it, but just wanted to give TextMate a whirl.  Well, after using OS X, I&#8217;m really starting to dig it.  Not sure if I like it as much as Ubuntu, but it&#8217;s better than Windows.  Some things take getting use it &#8211; like the close/minimize/maximize buttons on the left side instead of the right.  Also the application menu always betting at the top of the screen is strange, although in some ways nice. Oh, and TextMate is great.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2008/06/07/starting-to-love-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bummer &#8211; server crash</title>
		<link>http://blog.shwango.com/2008/03/06/bummer-server-crash/</link>
		<comments>http://blog.shwango.com/2008/03/06/bummer-server-crash/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 17:56:37 +0000</pubDate>
		<dc:creator>osterday</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.shwango.com/2008/03/06/bummer-server-crash/</guid>
		<description><![CDATA[Not exactly sure what caused it, but my server crashed last night around 6:15pm. Logs just have: Mar 5 18:13:50 [kernel] eth0: PCI Bus error 8290. Mar 5 18:13:51 [kernel] eth1: Tx timeout - resetting We&#8217;ve been cleaning up the server room and making some changes. One of the guys moved my box a bit [...]]]></description>
			<content:encoded><![CDATA[<p>Not exactly sure what caused it, but my server crashed last night around 6:15pm.</p>
<p>Logs just have:<br />
<code><br />
Mar  5 18:13:50 [kernel] eth0: PCI Bus error 8290.<br />
Mar  5 18:13:51 [kernel] eth1: Tx timeout - resetting<br />
</code></p>
<p>We&#8217;ve been cleaning up the server room and making some changes.  One of the guys moved my box a bit and might have jiggled things just enough to cause this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.shwango.com/2008/03/06/bummer-server-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

