<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Michael King</title>
    <link>http://www.mpking.com/</link>
    <description>My little place on the web</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4 - http://www.s9y.org/</generator>
    <pubDate>Tue, 25 May 2010 21:16:01 GMT</pubDate>

    <image>
        <url>http://www.mpking.com/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Michael King - My little place on the web</title>
        <link>http://www.mpking.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Nerdtest</title>
    <link>http://www.mpking.com/archives/37-Nerdtest.html</link>
    
    <comments>http://www.mpking.com/archives/37-Nerdtest.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=37</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=37</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.nerdtests.com/ft_nt2.php&quot;&gt; &lt;img src=&quot;http://www.nerdtests.com/images/badge/nt2/996f26e39f9ee45a.png&quot; alt=&quot;NerdTests.com says I&#039;m an Uber Cool Nerd King.  Click here to take the Nerd Test, get geeky images and jokes, and talk to others on the nerd forum!&quot; /&gt; &lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 25 May 2010 14:16:01 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/37-guid.html</guid>
    
</item>
<item>
    <title>WPAD does not resolve in DNS</title>
    <link>http://www.mpking.com/archives/36-WPAD-does-not-resolve-in-DNS.html</link>
            <category>Tech Stuff</category>
    
    <comments>http://www.mpking.com/archives/36-WPAD-does-not-resolve-in-DNS.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=36</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;At work, we&#039;re doing a POC (proof of concept) with a web-proxy, specifically Ironport Websecurity Appliance. &amp;#160;Like&amp;#160;most all proxies, you have to get the traffic from the client to the proxy. &amp;#160;It supports transparent traffic redirection, but we&#039;re looking at using WPAD instead.&lt;br /&gt;However, when I created the WPAD DNS entry, it didn&#039;t resolve...&lt;/p&gt; &lt;br /&gt;
&lt;pre&gt;C:\&amp;gt;ping wpad&lt;br /&gt;
Ping request could not find host wpad. Please check the name and try again.&lt;/pre&gt; &lt;br /&gt;
&lt;pre&gt;&lt;/pre&gt; &lt;br /&gt;
&lt;pre&gt;C:\&amp;gt;nslookup wpad &amp;lt;DNSServer1&amp;gt;&lt;br /&gt;
Server: &amp;#160;&amp;lt;DNSServer1&amp;gt;.domain.net&lt;br /&gt;
Address: &amp;#160;&amp;lt;IPofDNSServer1&amp;gt;&lt;br /&gt;
*** &amp;lt;DNSServer1&amp;gt;.domain.net can&#039;t find wpad: Non-existent domain&amp;#160;&lt;/pre&gt; &lt;br /&gt;
&lt;p&gt;This of course, is a big problem. &amp;#160; It took a little investigating, but I found the cause..&lt;br /&gt;Windows Server 2008 introduced a new feature, called &amp;quot;Global Query Block list&amp;quot;, which prevents some arbitrary machine from registering the DNS name of WPAD. &amp;#160;This is a good security feature, as it prevents someone from just joining your network, and setting himself up as a proxy.&amp;#160;However, my DNS server is Windows 2003? &amp;#160;It doesn&#039;t have the &amp;quot;Global Query Block List&amp;quot;. &amp;#160;Well, when the documentation was written, it didn&#039;t, but a DNS service patch&amp;#160;Microsoft&amp;#160;published last year DID!&amp;#160;&lt;br /&gt;As far as I can tell,&amp;#160;&lt;a href=&quot;http://support.microsoft.com/kb/961063&quot;&gt;http://support.microsoft.com/kb/961063&lt;/a&gt;&amp;#160;&amp;#160;included the&amp;#160;&amp;quot;Global Query Block List&amp;quot;, it&#039;s not supposed to be enabled by default but mine was, and I did not intentionally turn it on, But here&#039;s the best news, not all the pieces of the feature made it down to 2003. &amp;#160;The TechNet article:&lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc995158.aspx&quot;&gt;http://technet.microsoft.com/en-us/library/cc995158.aspx&lt;/a&gt;&amp;#160;shows how to manipulate the&amp;#160;&amp;quot;Global Query Block List&amp;quot;, and sure enough, the command of:&lt;/p&gt; &lt;br /&gt;
&lt;pre&gt;dnscmd /info /enableglobalqueryblocklist&lt;br /&gt;
Query result:&lt;br /&gt;
Dword: &amp;#160;1 (0000000000000001)&lt;br /&gt;
Command completed successfully.&lt;/pre&gt; &lt;br /&gt;
&lt;p&gt;Shows the block list is enabled, but the command:&lt;br /&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;dnscmd /info /globalqueryblocklist Info query failed &amp;#160;&amp;#160; &amp;#160;status = 9553 (0x00002551) Command failed: &amp;#160;DNS_ERROR_INVALID_PROPERTY &amp;#160; &amp;#160; 9553 &amp;#160;(00002551)&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;Which is supposed to show you what&#039;s in the block list fails.&lt;br /&gt;Great..&lt;br /&gt;So there are two options here:&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt; &lt;/span&gt;1.&amp;#160;Turn off the &amp;quot;Global Query Block List&amp;quot;&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre; &quot;&gt; &lt;/span&gt;2. Remove WPAD from the &amp;#160;&amp;quot;Global Query Block List&amp;quot;&lt;br /&gt;Turning off&amp;#160;&amp;quot;Global Query Block List&amp;quot; is easy, just run the command:&lt;br /&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;dnscmd /config /enableglobalqueryblocklist 0&amp;#160;&amp;#160; &lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;That&#039;s it. &amp;#160;It&#039;s off. No service restart required.&amp;#160;But what if you turned it off and want to turn it back on? You can&#039;t run the opposite command of:&lt;br /&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;dnscmd /config /enableglobalqueryblocklist 0&amp;#160; &lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;Why not? &amp;#160;Cause Microsoft goofed in they&#039;re&amp;#160;documentation. &amp;#160;It&#039;s actually the same command as to turn it off! &amp;#160;The correct command is:&lt;br /&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;dnscmd /config /enableglobalqueryblocklist 1  &lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;To remove WPAD, but leave the Blocklist enabled, is a little more difficult&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;The &amp;quot;Global Query Block List &amp;quot; is stored here:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DNS\Parameters\GlobalQueryBlockList&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;&lt;span style=&quot;font-family: monospace; white-space: pre; &quot;&gt;&lt;span style=&quot;font-family: verdana, arial, geneva, helvetica, sans-serif; white-space: normal; &quot;&gt;Mine had the entries of WPAD and ISATAP. &amp;#160;Remove the WPAD entry and restart the DNS service for it to reload the Blocklist. &amp;#160;Note, there is a trailing newline character after ISATAP, it&#039;s best to leave it there. &amp;#160;Note, there is a command line that is supposed to edit this blocklist, &amp;#160;but again it&#039;s broken in the 2003 implementation,&amp;#160;hopefully a later patch, or Service pack will fix these features. &amp;#160;Make sure to makes changes to all your DNS services. &amp;#160;This is a per machine setting, not a zone setting, so if your using Active Directory&amp;#160;Integrated&amp;#160;zones, it won&#039;t replicate this change.&amp;#160;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt; &lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 17 Feb 2010 10:33:29 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/36-guid.html</guid>
    
</item>
<item>
    <title>Windows Server 2003 allows old passwords for 60 minutes</title>
    <link>http://www.mpking.com/archives/35-Windows-Server-2003-allows-old-passwords-for-60-minutes.html</link>
    
    <comments>http://www.mpking.com/archives/35-Windows-Server-2003-allows-old-passwords-for-60-minutes.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=35</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=35</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;Took me forever to find this again.&amp;#160;&amp;#160; &lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&lt;a href=&quot;http://support.microsoft.com/kb/906305&quot;&gt;http://support.microsoft.com/kb/906305&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Orignally I had a software vendor clue me into this registry key.&amp;#160; It&#039;s the reason why you change your password, your old one still works for 60 minutes.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 27 Apr 2009 11:38:28 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/35-guid.html</guid>
    
</item>
<item>
    <title>Find stale computer accounts in active directory</title>
    <link>http://www.mpking.com/archives/34-Find-stale-computer-accounts-in-active-directory.html</link>
            <category>Websites</category>
    
    <comments>http://www.mpking.com/archives/34-Find-stale-computer-accounts-in-active-directory.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=34</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=34</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;So it&#039;s inevitable that if you run Active Directory long enough, you will have &amp;quot;stale&amp;quot; accounts.&amp;#160;&amp;#160; Stale accounts are accounts that no-one is using anymore, be it because the user is no-longer employed, it was a shared account that no-one uses anymore, or people just forgot the account is there.&amp;#160; Yes, Yes, you should have good practices in place to prevent this kind of account stagnation, but it happens.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;The easiest way to find accounts is to use DSQuery:&lt;/p&gt;&lt;br /&gt;
&lt;pre&gt;&lt;br /&gt;
dsquery user domainroot -name * -inactive 18&lt;/pre&gt;&lt;br /&gt;
&lt;p&gt;which will display the distinguished names of all users in only the current domain who have been inactive for 120 days (17+ weeks rounded to 18 weeks) or more.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;But what about computer accounts?&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&lt;em&gt;dsquery computer -inactive 8 -limit 0&lt;/em&gt; &lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Searches for computers that have been inactive (stale) for the number of weeks that you specify (in this case 8 weeks) and displays all entries (Default is 100)&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;But what if you want pretty output ?&amp;#160; &lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Joeware has a nice little utility that does all of the hard part for you, and can display in a DHTML table that is easily sortable&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;&lt;a href=&quot;http://www.joeware.net/freetools/tools/oldcmp/index.htm&quot;&gt;http://www.joeware.net/freetools/tools/oldcmp/index.htm&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 20 Jan 2009 11:14:13 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/34-guid.html</guid>
    
</item>
<item>
    <title>New CCA site</title>
    <link>http://www.mpking.com/archives/33-New-CCA-site.html</link>
            <category>CCA</category>
    
    <comments>http://www.mpking.com/archives/33-New-CCA-site.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=33</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=33</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;The Clean Access users page I was hosting got hit by a bad hack.&amp;#160; Google very nicely sent me a message saying I was being removed from the search index&#039;s till I clean it up.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Since there wasn&#039;t alot of content there, I decided to delete the entire folder (and corresponding database) because it looks like they had pretty much rooted the entire site.&amp;#160; (There was link spam being injected on every page of the site)&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;So this is the first entry.&amp;#160; I&#039;ll post more of them as I manage to dig them out of the archives.&amp;#160;&amp;#160; Most of the content however was talking about releases, and changes from the previous releases.&amp;#160; Since this information is time sensitive, I don&#039;t think I&#039;ll be posting any of the older releases.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 31 Dec 2008 15:26:56 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/33-guid.html</guid>
    
</item>
<item>
    <title>Multi User Picasa</title>
    <link>http://www.mpking.com/archives/32-Multi-User-Picasa.html</link>
            <category>Websites</category>
    
    <comments>http://www.mpking.com/archives/32-Multi-User-Picasa.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=32</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=32</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;Just setup a new family computer, and I wanted to setup a different user account for both me and Rachel.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;One of the programs both of us use is Picasa, and of course we want to share the same photos (and reflect edits back to each other. &lt;/p&gt;&lt;p&gt;This guy has some nifty tips on how to do that:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.paraesthesia.com/archive/2008/01/04/multi-user-picasa.aspx&quot;&gt;http://www.paraesthesia.com/archive/2008/01/04/multi-user-picasa.aspx&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sat, 15 Nov 2008 00:26:03 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/32-guid.html</guid>
    
</item>
<item>
    <title>ASDM error: Unconnected sockets no implemented.</title>
    <link>http://www.mpking.com/archives/31-ASDM-error-Unconnected-sockets-no-implemented..html</link>
            <category>Websites</category>
    
    <comments>http://www.mpking.com/archives/31-ASDM-error-Unconnected-sockets-no-implemented..html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=31</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=31</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p /&gt;&lt;p&gt;I was installing ASDM on a new machine at work, and was greeted with the following Error:&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;FONT-WEIGHT: bold; FONT-FAMILY: arial&quot;&gt;ASDM is unable to continue loading. Click OK to exit from ASDM.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;FONT-WEIGHT: bold; FONT-FAMILY: arial&quot;&gt;Unconnected sockets not implemented.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Thankfully, this gentleman had already had this particular grief, and had found the resolution:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://the-network-guy.blogspot.com/2008/10/asdm-error-unconnected-sockets-not.html&quot;&gt;http://the-network-guy.blogspot.com/2008/10/asdm-error-unconnected-sockets-not.html&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Short answer, uninstall Java6 Update 10, and roll back to Java6 Update 7.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 03 Nov 2008 16:40:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/31-guid.html</guid>
    
</item>
<item>
    <title>Carbonite vs Mozy vs Jungle Disk</title>
    <link>http://www.mpking.com/archives/30-Carbonite-vs-Mozy-vs-Jungle-Disk.html</link>
            <category>Tech Stuff</category>
    
    <comments>http://www.mpking.com/archives/30-Carbonite-vs-Mozy-vs-Jungle-Disk.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=30</wfw:comment>

    <slash:comments>14</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=30</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;I decided that with my daughter coming into my life, that I need to now backup all my precious pictures of her.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;This is slightly easier said than done, since I&#039;m currently clocking in around 30 GB of pictures.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt;Click the read more (or the article title) to read which backup solution I chose.&lt;/p&gt;&lt;br /&gt;
&lt;p&gt; &lt;/p&gt; &lt;br /&gt;&lt;a href=&quot;http://www.mpking.com/archives/30-Carbonite-vs-Mozy-vs-Jungle-Disk.html#extended&quot;&gt;Continue reading &quot;Carbonite vs Mozy vs Jungle Disk&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 17 Aug 2008 20:43:30 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/30-guid.html</guid>
    
</item>
<item>
    <title>iCarbon</title>
    <link>http://www.mpking.com/archives/28-iCarbon.html</link>
            <category>Websites</category>
    
    <comments>http://www.mpking.com/archives/28-iCarbon.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=28</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=28</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;One of the nice things about having a scanner and a printer is that you should be able to photocopy something.  Unfortunately, if you have a generic scanner (Like I do) you don&#039;t get the nice software that does that automatically.&lt;/p&gt;&lt;p&gt;I&#039;ve been &amp;quot;using&amp;quot; Photocoper v3.03 for a few years, &amp;quot;using&amp;quot; being a relative term as it didn&#039;t work for me.  It did a few times, then it just stopped.  I&#039;ve had to compensate by just using Photoshop, or Picasa2 to fake it.&lt;/p&gt;&lt;p&gt;I just found this software, iCarbon today, and it works great!&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.idev.ch/index.php?option=content&amp;amp;task=view&amp;amp;id=76&amp;amp;Itemid=54&quot;&gt;http://www.idev.ch/index.php?option=content&amp;amp;task=view&amp;amp;id=76&amp;amp;Itemid=54&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Thanks to Steve Bass for pointing it out&lt;br /&gt;&lt;a href=&quot;http://blogs.pcworld.com/tipsandtweaks/archives/001635.htm&quot;&gt;http://blogs.pcworld.com/tipsandtweaks/archives/001635.htm&lt;/a&gt;l&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 09 Jul 2008 20:32:32 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/28-guid.html</guid>
    
</item>
<item>
    <title>Sophia Marilyn King</title>
    <link>http://www.mpking.com/archives/27-Sophia-Marilyn-King.html</link>
            <category>Sophia</category>
    
    <comments>http://www.mpking.com/archives/27-Sophia-Marilyn-King.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=27</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=27</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
Sophia was born June 16th 2008 at 9:46 pm, at 6lbs 4 ounces.  She&#039;s 20 1/4 inches long.&lt;br /&gt;
&lt;br /&gt;
&lt;embed width=&quot;800&quot; height=&quot;533&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; flashvars=&quot;host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FMichael.P.King%2Falbumid%2F5213598762713991809%3Fkind%3Dphoto%26alt%3Drss&quot; src=&quot;http://picasaweb.google.com/s/c/bin/slideshow.swf&quot; type=&quot;application/x-shockwave-flash&quot; /&gt; 
    </content:encoded>

    <pubDate>Mon, 16 Jun 2008 09:46:24 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/27-guid.html</guid>
    
</item>
<item>
    <title>Hubconnect</title>
    <link>http://www.mpking.com/archives/24-Hubconnect.html</link>
            <category>Work</category>
    
    <comments>http://www.mpking.com/archives/24-Hubconnect.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=24</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;a href=&quot;http://www.mpking.com/uploads/HUB-Connect.exe&quot;&gt;http://www.mpking.com/uploads/HUB-Connect.exe&lt;/a&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Wed, 27 Feb 2008 09:38:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/24-guid.html</guid>
    
</item>
<item>
    <title>Sophia's Room</title>
    <link>http://www.mpking.com/archives/25-Sophias-Room.html</link>
            <category>Sophia</category>
    
    <comments>http://www.mpking.com/archives/25-Sophias-Room.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=25</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;p&gt;So my family came over this weekend to get Sophia&#039;s room ready.&lt;/p&gt;&lt;p&gt;After many hours of hard work, the room is ready for furniture.&lt;/p&gt;&lt;p&gt;The picture below is of how it looks.  It&#039;s a light pink, with a ladybug border.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;!-- s9ymdb:8 --&gt;&lt;img width=&quot;512&quot; height=&quot;340&quot; src=&quot;http://www.mpking.com/uploads/DSC_4922.JPG&quot; style=&quot;border: 0px none ; padding-left: 5px; padding-right: 5px;&quot; alt=&quot;&quot;  /&gt;&lt;/p&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 18 Feb 2008 12:26:16 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/25-guid.html</guid>
    
</item>
<item>
    <title>Sophia's Ultrasound!</title>
    <link>http://www.mpking.com/archives/23-Sophias-Ultrasound!.html</link>
            <category>Sophia</category>
    
    <comments>http://www.mpking.com/archives/23-Sophias-Ultrasound!.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=23</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=23</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;So we had Sophia&#039;s Ultrasound today.  I&#039;ll post pictures when I get them from Rachel, but for now, you can see the video.  (Ain&#039;t technology great?)&lt;/p&gt;&lt;p&gt;You&#039;ll have to click the video to start it (It will open up in Picasa Web Albums in a new window)  If there is a big play button, you&#039;ll have to click twice.&lt;/p&gt;&lt;p /&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;embed width=&quot;288&quot; height=&quot;192&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;http://picasaweb.google.com/s/c/bin/slideshow.swf&quot; flashvars=&quot;host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FMichael.P.King%2Falbumid%2F5164466482187443457%3Fkind%3Dphoto%26alt%3Drss&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; 
    </content:encoded>

    <pubDate>Fri, 08 Feb 2008 00:53:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/23-guid.html</guid>
    
</item>
<item>
    <title>It's a GIRL!</title>
    <link>http://www.mpking.com/archives/22-Its-a-GIRL!.html</link>
            <category>Sophia</category>
    
    <comments>http://www.mpking.com/archives/22-Its-a-GIRL!.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=22</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;It&#039;s a girl and her name is Sophia!&lt;/p&gt;&lt;p /&gt;&lt;p&gt;Click on the pictures to see a bigger version.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;embed width=&quot;600&quot; height=&quot;400&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;http://picasaweb.google.com/s/c/bin/slideshow.swf&quot; flashvars=&quot;host=picasaweb.google.com&amp;captions=1&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FMichael.P.King%2Falbumid%2F5152570301078830513%3Fkind%3Dphoto%26alt%3Drss&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; 
    </content:encoded>

    <pubDate>Sun, 06 Jan 2008 23:30:37 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/22-guid.html</guid>
    
</item>
<item>
    <title>We're Having a BABY!</title>
    <link>http://www.mpking.com/archives/20-Were-Having-a-BABY!.html</link>
            <category>Sophia</category>
    
    <comments>http://www.mpking.com/archives/20-Were-Having-a-BABY!.html#comments</comments>
    <wfw:comment>http://www.mpking.com/wfwcomment.php?cid=20</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.mpking.com/rss.php?version=2.0&amp;type=comments&amp;cid=20</wfw:commentRss>
    

    <author>nospam@example.com (Michael King)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;Meet the newest member of our family.&lt;/p&gt;&lt;p /&gt;&lt;p&gt;(HINT:  In the black spot, the lima bean shape.  It&#039;s upside down, so the head is on the bottom.  What appears to be an eye is actually the heart.)&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://www.mpking.com/uploads/ultrasound.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 08 Nov 2007 12:39:56 -0700</pubDate>
    <guid isPermaLink="false">http://www.mpking.com/archives/20-guid.html</guid>
    
</item>

</channel>
</rss>