<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Mike Clark's Blog</title>
    <link>http://blog.clarkmichael.com/</link>
    <description>A Geek in Time</description>
    <language>en-us</language>
    <copyright>Mike Clark</copyright>
    <lastBuildDate>Fri, 12 Feb 2010 18:50:01 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.8.5223.2</generator>
    <managingEditor>mike@clarkmichael.com</managingEditor>
    <webMaster>mike@clarkmichael.com</webMaster>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=ac703039-e3b8-4d47-8f98-69438e824f00</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,ac703039-e3b8-4d47-8f98-69438e824f00.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,ac703039-e3b8-4d47-8f98-69438e824f00.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=ac703039-e3b8-4d47-8f98-69438e824f00</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      There I was, debugging an application using VS2008 and stepping through the code,
      and suddenly, when I press the F11 key to step into a method in another class, up
      pops this dialog box saying something like "No source available for the current location." 
      Options are to show disassembly (wow, that would help) and I think not to show disassembly. 
      Meanwhile, despite any breakpoints in the method I'm trying to debug -- that's logical,
      because if there's no source, then how can it breakpoint? -- it runs to completion
      and execution resumes at the next breakpoint in the code that I <em>can</em> see.
   </p>
        <p>
      This is most perplexing, because the source code most emphatically exists -- I can
      see it -- and restarting VS2008 doesn't help, rebooting the machine doesn't help,
      and when I load another project and attempt to F11 into code in that one, it works
      just fine.
   </p>
        <p>
      This last gives me a clue.  I'm not much for delving into the operating details
      of Visual Studio, but it seems to be that if I can step into code everywhere else
      except this one class, maybe there's something going on with the class, and not VS
      or the machine.  I then have this flash of insight: maybe it's the .PDB file
      for the assembly that is toast.  How to fix this, if true... hmmm.  I could
      edit it and force a recompile (I'm going to edit it anyway as soon as I can figure
      out why it isn't working right), but perhaps a similar problem might have occurred
      in some other assembly.  So the best thing to do under the circumstances is to
      force a rebuild of the entire Solution.  
   </p>
        <p>
      I click on Build -&gt; Rebuild Solution, and it goes through everything.  Now
      I try the debugging with the F11 Step-into, and BINGO!  It works.  Great,
      'cuz I was beginning to get worried that I was going to have to use up some precious
      project time debugging Visual Studio!!  Thank goodness I am now back on track. 
      I'll be finished today, if all goes well, and ready to deliver to QA for testing!
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=ac703039-e3b8-4d47-8f98-69438e824f00" />
      </body>
      <title>Perplexing Visual Studio 2008 episode today</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,ac703039-e3b8-4d47-8f98-69438e824f00.aspx</guid>
      <link>http://blog.clarkmichael.com/Perplexing+Visual+Studio+2008+Episode+Today.aspx</link>
      <pubDate>Fri, 12 Feb 2010 18:50:01 GMT</pubDate>
      <description>&lt;p&gt;
   There I was, debugging an application using VS2008&amp;nbsp;and stepping through the code,
   and suddenly, when I press the F11 key to step into a method in another class, up
   pops this dialog box saying something like "No source available for the current location."&amp;nbsp;
   Options are to show disassembly (wow, that would help) and I think not to show disassembly.&amp;nbsp;
   Meanwhile, despite any breakpoints in the method I'm trying to debug -- that's logical,
   because if there's no source, then how can it breakpoint? -- it runs to completion
   and execution resumes at the next breakpoint in the code that I &lt;em&gt;can&lt;/em&gt; see.
&lt;/p&gt;
&lt;p&gt;
   This is most perplexing, because the source code most emphatically exists -- I can
   see it -- and restarting VS2008 doesn't help, rebooting the machine doesn't help,
   and when I load another project and attempt to F11 into code in that one, it works
   just fine.
&lt;/p&gt;
&lt;p&gt;
   This last gives me a clue.&amp;nbsp; I'm not much for delving into the operating details
   of Visual Studio, but it seems to be that if I can step into code everywhere else
   except this one class, maybe there's something going on with the class, and not VS
   or the machine.&amp;nbsp; I then have this flash of insight: maybe it's the .PDB file
   for the assembly that is toast.&amp;nbsp; How to fix this, if true... hmmm.&amp;nbsp; I could
   edit it and force a recompile (I'm going to edit it anyway as soon as I can figure
   out why it isn't working right), but perhaps a similar problem might have occurred
   in some other assembly.&amp;nbsp; So the best thing to do under the circumstances is to
   force a rebuild of the entire Solution.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   I click on Build -&amp;gt; Rebuild Solution, and it goes through everything.&amp;nbsp; Now
   I try the debugging with the F11 Step-into, and BINGO!&amp;nbsp; It works.&amp;nbsp; Great,
   'cuz I was beginning to get worried that I was going to have to use up some precious
   project time debugging Visual Studio!!&amp;nbsp; Thank goodness I am now back on track.&amp;nbsp;
   I'll be finished today, if all goes well, and ready to deliver to QA for testing!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=ac703039-e3b8-4d47-8f98-69438e824f00" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,ac703039-e3b8-4d47-8f98-69438e824f00.aspx</comments>
      <category>Geek Speak</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=0bb7e93c-ad68-4c7e-adea-c8e4d064b637</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,0bb7e93c-ad68-4c7e-adea-c8e4d064b637.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,0bb7e93c-ad68-4c7e-adea-c8e4d064b637.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=0bb7e93c-ad68-4c7e-adea-c8e4d064b637</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      It's time to register, Al Qaeda!  South Carolina now has a law on the books requiring
      subversive and terrorist organizations to register!  
   </p>
        <p>
          <a href="http://rawstory.com/2010/02/south-carolinas-subversive-activities-registration-act-force/">http://rawstory.com/2010/02/south-carolinas-subversive-activities-registration-act-force/</a>
        </p>
        <p>
      It costs just $5 to register, so expense is not an excuse.  And what organizations
      are covered by the law?
   </p>
        <p>
      "...every corporation, society, association, camp, group, bund, political party, assembly,
      body or organization, composed of two or more persons, which directly or indirectly
      advocates, advises, teaches or practices the duty, necessity or propriety of controlling,
      conducting, seizing or overthrowing the government of the United States [or] of this
      State."
   </p>
        <p>
      I guess this means that the <a href="http://lpus.org">Libertarian Party</a> must register
      or face a $25,000 fine.  Or maybe the Republicans.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=0bb7e93c-ad68-4c7e-adea-c8e4d064b637" />
      </body>
      <title>Register as a Subversive!</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,0bb7e93c-ad68-4c7e-adea-c8e4d064b637.aspx</guid>
      <link>http://blog.clarkmichael.com/Register+As+A+Subversive.aspx</link>
      <pubDate>Thu, 11 Feb 2010 16:27:29 GMT</pubDate>
      <description>&lt;p&gt;
   It's time to register, Al Qaeda!&amp;nbsp; South Carolina now has a law on the books requiring
   subversive and terrorist organizations to register!&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://rawstory.com/2010/02/south-carolinas-subversive-activities-registration-act-force/"&gt;http://rawstory.com/2010/02/south-carolinas-subversive-activities-registration-act-force/&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
   It costs just $5 to register, so expense is not an excuse.&amp;nbsp; And what organizations
   are covered by the law?
&lt;/p&gt;
&lt;p&gt;
   "...every corporation, society, association, camp, group, bund, political party, assembly,
   body or organization, composed of two or more persons, which directly or indirectly
   advocates, advises, teaches or practices the duty, necessity or propriety of controlling,
   conducting, seizing or overthrowing the government of the United States [or] of this
   State."
&lt;/p&gt;
&lt;p&gt;
   I guess this means that the &lt;a href="http://lpus.org"&gt;Libertarian Party&lt;/a&gt; must register
   or face a $25,000 fine.&amp;nbsp; Or maybe the Republicans.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=0bb7e93c-ad68-4c7e-adea-c8e4d064b637" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,0bb7e93c-ad68-4c7e-adea-c8e4d064b637.aspx</comments>
      <category>You're Kidding, Right?</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=a82873b7-14e0-4160-bda4-f9eb3342e55e</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,a82873b7-14e0-4160-bda4-f9eb3342e55e.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,a82873b7-14e0-4160-bda4-f9eb3342e55e.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=a82873b7-14e0-4160-bda4-f9eb3342e55e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I thought it might be noteworthy to note that I am currently developing a replacement
      for the Inter-Agency Payment import system that my friend <a href="http://www.wintellect.com/CS/blogs/pmehner/default.aspx">Paul
      Mehner</a> developed while he was on contract here.  It's about time, as Paul
      wrote this in VB6 using the now-obsolete ADO RDS technology, and the application has
      started acting rather quirky over the past couple of years.  
   </p>
        <p>
      I had my choice of technology to redevelop the application, and I decided to use Websphere
      MQ as the transport layer, and a Web Service for the business layer interface. 
      I am supposed to be finished by the end of next week, or at least, have delivered
      the application for QA testing by the end of next week.  I will be done well
      before that, in fact.
   </p>
        <p>
      It's very much fun to be back in the coding saddle, I have to say.  Cranking
      out code is what I like best when it comes to work.  
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=a82873b7-14e0-4160-bda4-f9eb3342e55e" />
      </body>
      <title>InterAgency Payments</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,a82873b7-14e0-4160-bda4-f9eb3342e55e.aspx</guid>
      <link>http://blog.clarkmichael.com/InterAgency+Payments.aspx</link>
      <pubDate>Tue, 02 Feb 2010 20:05:43 GMT</pubDate>
      <description>&lt;p&gt;
   I thought it might be noteworthy to note that I am currently developing a replacement
   for the Inter-Agency Payment import system that my friend &lt;a href="http://www.wintellect.com/CS/blogs/pmehner/default.aspx"&gt;Paul
   Mehner&lt;/a&gt; developed while he was on contract here.&amp;nbsp; It's about time, as Paul
   wrote this in VB6 using the now-obsolete ADO RDS technology, and the application has
   started acting rather quirky over the past couple of years.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   I had my choice of technology to redevelop the application, and I decided to use Websphere
   MQ as the transport layer, and a Web Service for the business layer interface.&amp;nbsp;
   I am supposed to be finished by the end of next week, or at least, have delivered
   the application for QA testing by the end of next week.&amp;nbsp; I will be done well
   before that, in fact.
&lt;/p&gt;
&lt;p&gt;
   It's very much fun to be back in the coding saddle, I have to say.&amp;nbsp; Cranking
   out code is what I like best when it comes to work.&amp;nbsp; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=a82873b7-14e0-4160-bda4-f9eb3342e55e" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,a82873b7-14e0-4160-bda4-f9eb3342e55e.aspx</comments>
      <category>Geek Speak</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=12cfa9de-a36f-4df6-bbc5-e0219bda05ad</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,12cfa9de-a36f-4df6-bbc5-e0219bda05ad.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,12cfa9de-a36f-4df6-bbc5-e0219bda05ad.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=12cfa9de-a36f-4df6-bbc5-e0219bda05ad</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I have in the past coded up Windows Form or Console apps in Visual Studio (2005 and
      earlier), and the IDE has facilitated linking up with a web service.  Now I am
      building a console application that needs to consume a web service, but when I right-click
      on the project (or References), I do not see a "Add Web Reference" context menu item
      (for WinForm or Console app).  There IS one if I right-click on a Web Application
      project, but this doesn't help me, as the application I am building MUST be a console
      app.  This was not the behavior in VS2005, or earlier!  What's up with that? 
      The <a href="http://msdn.microsoft.com/en-us/library/d9w023sx.aspx">MSDN page that
      describes the process</a> for .NET 3.5 does not make a distinction; i.e. does not
      acknowledge a difference.
   </p>
        <p>
      I am not making this up, and it is not an optical illusion.  Here's are the two
      context menus, side by side:
   </p>
        <img src="http://blog.clarkmichael.com/content/binary/VS2008_ProjContextMenu.jpg" border="2" />
        <p>
      So now I am wondering how I am supposed to hook up a web service to a Console application.
      I imagine that this is still possible at a lower level (i.e. it can be hand-coded),
      but I am unsure how to proceed. I have posted the <a href="http://stackoverflow.com/questions/2051768/how-to-consume-an-asp-net-web-service-in-windows-console-app-vs2008">question
      on StackOverflow</a>.
   </p>
        <p>
          <hr />
        </p>
        <p>
        </p>
        <p>
      And StackOverflow Comes Through With an Answer!
   </p>
        <blockquote>With VS2008 MS is focused on WCF-Services. You can select a Webservice
   Reference by clicking "Add Service Reference..." and on the following dialog clicking
   the "Advanced..." button. In the following dialog you can choose to add a Web Service
   Reference. </blockquote>
        <p>
      And just as <a href="http://stackoverflow.com/users/205233/filburt">Filburt</a> said,
      so it was. I love StackOverflow!
   </p>
        <p>
      But my observation is: Leave it to Microsoft to hide something that used to exist
      in a highly visible location, and without comment in the documentation, shove it into
      an obscure location 2 levels deeper in the IDE! I can imagine some design wanker saying
      to himself, "Well, nobody cares about this anymore, so we'll just hide it where the
      sun doesn't shine." Did someone take a survey to decide this? He probably just asked
      his liberal-arts degreed girlfriend, and when she said "Huh?" he ticked the box marked
      "Asked the users?" 
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=12cfa9de-a36f-4df6-bbc5-e0219bda05ad" />
      </body>
      <title>Visual Studio 2008 is Messing With My Mind!</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,12cfa9de-a36f-4df6-bbc5-e0219bda05ad.aspx</guid>
      <link>http://blog.clarkmichael.com/Visual+Studio+2008+Is+Messing+With+My+Mind.aspx</link>
      <pubDate>Tue, 12 Jan 2010 19:43:35 GMT</pubDate>
      <description>&lt;p&gt;
   I have in the past coded up Windows Form or Console apps in Visual Studio (2005 and
   earlier), and the IDE has facilitated linking up with a web service.&amp;nbsp; Now I am
   building a console application that needs to consume a web service, but when I right-click
   on the project (or References), I do not see a "Add Web Reference" context menu item
   (for WinForm or Console app).&amp;nbsp; There IS one if I right-click on a Web Application
   project, but this doesn't help me, as the application I am building MUST be a console
   app.&amp;nbsp; This was not the behavior in VS2005, or earlier!&amp;nbsp; What's up with that?&amp;nbsp;
   The &lt;a href="http://msdn.microsoft.com/en-us/library/d9w023sx.aspx"&gt;MSDN page that
   describes the process&lt;/a&gt; for .NET 3.5 does not make a distinction; i.e. does not
   acknowledge a difference.
&lt;/p&gt;
&lt;p&gt;
   I am not making this up, and it is not an optical illusion.&amp;nbsp; Here's are the two
   context menus, side by side:
&lt;/p&gt;
&lt;img src="http://blog.clarkmichael.com/content/binary/VS2008_ProjContextMenu.jpg" border=2&gt; 
&lt;p&gt;
   So now I am wondering how I am supposed to hook up a web service to a Console application.
   I imagine that this is still possible at a lower level (i.e. it can be hand-coded),
   but I am unsure how to proceed. I have posted the &lt;a href="http://stackoverflow.com/questions/2051768/how-to-consume-an-asp-net-web-service-in-windows-console-app-vs2008"&gt;question
   on StackOverflow&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
   &lt;hr&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
   And StackOverflow Comes Through With an Answer!
&lt;/p&gt;
&lt;blockquote&gt;With VS2008 MS is focused on WCF-Services. You can select a Webservice
Reference by clicking "Add Service Reference..." and on the following dialog clicking
the "Advanced..." button. In the following dialog you can choose to add a Web Service
Reference. &lt;/blockquote&gt; 
&lt;p&gt;
   And just as &lt;a href="http://stackoverflow.com/users/205233/filburt"&gt;Filburt&lt;/a&gt; said,
   so it was. I love StackOverflow!
&lt;/p&gt;
&lt;p&gt;
   But my observation is: Leave it to Microsoft to hide something that used to exist
   in a highly visible location, and without comment in the documentation, shove it into
   an obscure location 2 levels deeper in the IDE! I can imagine some design wanker saying
   to himself, "Well, nobody cares about this anymore, so we'll just hide it where the
   sun doesn't shine." Did someone take a survey to decide this? He probably just asked
   his liberal-arts degreed girlfriend, and when she said "Huh?" he ticked the box marked
   "Asked the users?" 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=12cfa9de-a36f-4df6-bbc5-e0219bda05ad" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,12cfa9de-a36f-4df6-bbc5-e0219bda05ad.aspx</comments>
      <category>Geek Speak;Stack Overflow</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=61a0538c-1d87-497d-95b5-e58eee9cede0</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,61a0538c-1d87-497d-95b5-e58eee9cede0.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,61a0538c-1d87-497d-95b5-e58eee9cede0.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=61a0538c-1d87-497d-95b5-e58eee9cede0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      At work they enforce changing our passwords on a periodic basis, and that's a fairly
      common security measure in order to avoid having hackers hijack computer resources. 
      I have learned to accept this grudgingly as a good, yet annoying, process.
   </p>
        <p>
      However, Steve Gibson of <a href="http://www.grc.com/intro.htm">Gibson Research</a> has
      passed along word from another security guru named Cormac (didn't pick up the last
      name) that changing a perfectly good non-hacked password on any kind of rational schedule
      is likely quite pointless.  When he said this (check out the podcast Security
      Now!, episode 229, "<a href="http://twit.tv/sn229">The Rational Rejection of
      Security Advice</a>") I was at first aghast at the idea, but the rationale for not
      bothering seems upon some thought to be quite valid.
   </p>
        <p>
      Consider that if someone who is not supposed to learns your password, when is he going
      to use it to do something bad?  Right away, or is he going to wait for a couple
      of weeks?  The answer is, probably right away.  So if you change your password
      every six weeks, for example, what are the odds that you're changing the password
      just before someone who has learned your password is going to use it for the first
      time?  Almost no chance at all!  And if they do learn my password, and use
      it, I'm going to find out in very short order and change it immediately -- especially
      if it costs me money (like my bank account getting hacked).  So the whole notion
      of changing your password periodically only makes sense if the account you're protecting
      doesn't matter all that much!  Heh.
   </p>
        <p>
      I listen to Security Now! regularly, and I recommend it for anyone who wants to keep
      up with security and the mitigation of security threats.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=61a0538c-1d87-497d-95b5-e58eee9cede0" />
      </body>
      <title>Changing Passwords Frequently: How Important?</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,61a0538c-1d87-497d-95b5-e58eee9cede0.aspx</guid>
      <link>http://blog.clarkmichael.com/Changing+Passwords+Frequently+How+Important.aspx</link>
      <pubDate>Wed, 06 Jan 2010 16:53:03 GMT</pubDate>
      <description>&lt;p&gt;
   At work they enforce changing our passwords on a periodic basis, and that's a fairly
   common security measure in order to avoid having hackers hijack computer resources.&amp;nbsp;
   I have learned to accept this grudgingly as a good, yet annoying, process.
&lt;/p&gt;
&lt;p&gt;
   However, Steve Gibson of &lt;a href="http://www.grc.com/intro.htm"&gt;Gibson Research&lt;/a&gt; has
   passed along word from another security guru named Cormac (didn't pick up the last
   name) that changing a perfectly good non-hacked password on any kind of rational schedule
   is likely quite pointless.&amp;nbsp; When he said this (check out the podcast Security
   Now!, episode&amp;nbsp;229, "&lt;a href="http://twit.tv/sn229"&gt;The Rational Rejection of
   Security Advice&lt;/a&gt;") I was at first aghast at the idea, but the rationale for not
   bothering seems upon some thought to be quite valid.
&lt;/p&gt;
&lt;p&gt;
   Consider that if someone who is not supposed to learns your password, when is he going
   to use it to do something bad?&amp;nbsp; Right away, or is he going to wait for a couple
   of weeks?&amp;nbsp; The answer is, probably right away.&amp;nbsp; So if you change your password
   every six weeks, for example, what are the odds that you're changing the password
   just before someone who has learned your password is going to use it for the first
   time?&amp;nbsp; Almost no chance at all!&amp;nbsp; And if they do learn my password, and use
   it, I'm going to find out in very short order and change it immediately -- especially
   if it costs me money (like my bank account getting hacked).&amp;nbsp; So the whole notion
   of changing your password periodically only makes sense if the account you're protecting
   doesn't matter all that much!&amp;nbsp; Heh.
&lt;/p&gt;
&lt;p&gt;
   I listen to Security Now! regularly, and I recommend it for anyone who wants to keep
   up with security and the mitigation of security threats.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=61a0538c-1d87-497d-95b5-e58eee9cede0" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,61a0538c-1d87-497d-95b5-e58eee9cede0.aspx</comments>
      <category>Geek Speak</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=26406f38-f090-4c52-ae89-361698f18ca5</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,26406f38-f090-4c52-ae89-361698f18ca5.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,26406f38-f090-4c52-ae89-361698f18ca5.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=26406f38-f090-4c52-ae89-361698f18ca5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I recently read on <a href="http://tech.slashdot.org/story/09/12/30/0352211/Is-OpenOfficeorg-a-Threat-Microsoft-Thinks-So">Slashdot </a>that
      Microsoft is worried about the threat posed by OpenOffice.org to MS Office. 
      Apparently, they are trying to hire someone with OOO experience to give them a perspective
      on the problem.
   </p>
        <p>
      Rubbish.  OOO is a nice product, in its way, but I've used it and it actually
      sucks.  I don't care for it.
   </p>
        <p>
      If I couldn't afford Office, then OOO would be adequate.  But I can afford Office,
      so there we are.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=26406f38-f090-4c52-ae89-361698f18ca5" />
      </body>
      <title>Open Office a Threat to MS Office?  Hardly.</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,26406f38-f090-4c52-ae89-361698f18ca5.aspx</guid>
      <link>http://blog.clarkmichael.com/Open+Office+A+Threat+To+MS+Office++Hardly.aspx</link>
      <pubDate>Wed, 30 Dec 2009 16:57:24 GMT</pubDate>
      <description>&lt;p&gt;
   I recently read on &lt;a href="http://tech.slashdot.org/story/09/12/30/0352211/Is-OpenOfficeorg-a-Threat-Microsoft-Thinks-So"&gt;Slashdot &lt;/a&gt;that
   Microsoft is worried about the threat posed by OpenOffice.org to MS Office.&amp;nbsp;
   Apparently, they are trying to hire someone with OOO experience to give them a perspective
   on the problem.
&lt;/p&gt;
&lt;p&gt;
   Rubbish.&amp;nbsp; OOO is a nice product, in its way, but I've used it and it actually
   sucks.&amp;nbsp; I don't care for it.
&lt;/p&gt;
&lt;p&gt;
   If I couldn't afford Office, then OOO would be adequate.&amp;nbsp; But I can afford Office,
   so there we are.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=26406f38-f090-4c52-ae89-361698f18ca5" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,26406f38-f090-4c52-ae89-361698f18ca5.aspx</comments>
      <category>Geek Speak</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=8903f1c2-42f6-4720-906b-5a9899c33d05</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,8903f1c2-42f6-4720-906b-5a9899c33d05.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,8903f1c2-42f6-4720-906b-5a9899c33d05.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=8903f1c2-42f6-4720-906b-5a9899c33d05</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Yesterday, a Nigerian man named Abdulfarouk Umar Muttalab apparently attempted to
      destroy the aircraft he was riding in, by way of burning his lap off, except his device
      failed to work properly and his fellow passengers subdued him (they should have beat
      the crap out of him, but being Dutch, they were probably incredibly polite about it,
      mores the pity).
   </p>
        <p>
      That's one thing, but now the "authorities" have ratcheted up security precautions
      one or two more notches as a result. And we are definitely approproaching the ridiculous.
      My friend Paul Mehner (@paulmehner on Twitter) re-tweeted Rick Strahl (@RickStrahl)
      on the new rules and procedures being put into effect.
   </p>
        <p>
      Here's the Yahoo News report:
   </p>
        <p>
          <a href="http://finance.yahoo.com/news/Airline-passengers-see-apf-2678313752.html?x=0" target="_blank">http://finance.yahoo.com/news/Airline-passengers-see-apf-2678313752.html?x=0</a>
        </p>
        <blockquote>Passengers getting off flights from overseas reported being told that
   they couldn't get out of their seat for the last hour of their flight. Air Canada
   also said that during the last hour passengers won't be allowed access to carry-on
   baggage or to have any items on their laps.</blockquote>
        <p>
      I can see it coming. We will eventually be manacled into our seats for the entire
      flight. What, you need to use the lavatory, you terrorist? Just wait a moment while
      we unshackle you. And of course, our security officer, Bubba, will accompany you into
      the lav, to ensure you don't do anything funny.
   </p>
        <p>
      Because that is what's happening here. We have reached the point where we are all
      considered to be terrorists, by default. And we will be treated accordingly. As Rick
      Strahl points out, this is good training for sheepdom.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=8903f1c2-42f6-4720-906b-5a9899c33d05" />
      </body>
      <title>What's Next?  Will we be Manacled to our seats?</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,8903f1c2-42f6-4720-906b-5a9899c33d05.aspx</guid>
      <link>http://blog.clarkmichael.com/Whats+Next++Will+We+Be+Manacled+To+Our+Seats.aspx</link>
      <pubDate>Sun, 27 Dec 2009 03:03:21 GMT</pubDate>
      <description>&lt;p&gt;
   Yesterday, a Nigerian man named Abdulfarouk Umar Muttalab apparently attempted to
   destroy the aircraft he was riding in, by way of burning his lap off, except his device
   failed to work properly and his fellow passengers subdued him (they should have beat
   the crap out of him, but being Dutch, they were probably incredibly polite about it,
   mores the pity).
&lt;/p&gt;
&lt;p&gt;
   That's one thing, but now the "authorities" have ratcheted up security precautions
   one or two more notches as a result. And we are definitely approproaching the ridiculous.
   My friend Paul Mehner (@paulmehner on Twitter) re-tweeted Rick Strahl (@RickStrahl)
   on the new rules and procedures being put into effect.
&lt;/p&gt;
&lt;p&gt;
   Here's the Yahoo News report:
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://finance.yahoo.com/news/Airline-passengers-see-apf-2678313752.html?x=0" target="_blank"&gt;http://finance.yahoo.com/news/Airline-passengers-see-apf-2678313752.html?x=0&lt;/a&gt;
&lt;/p&gt;
&lt;blockquote&gt;Passengers getting off flights from overseas reported being told that
they couldn't get out of their seat for the last hour of their flight. Air Canada
also said that during the last hour passengers won't be allowed access to carry-on
baggage or to have any items on their laps.&lt;/blockquote&gt; 
&lt;p&gt;
   I can see it coming. We will eventually be manacled into our seats for the entire
   flight. What, you need to use the lavatory, you terrorist? Just wait a moment while
   we unshackle you. And of course, our security officer, Bubba, will accompany you into
   the lav, to ensure you don't do anything funny.
&lt;/p&gt;
&lt;p&gt;
   Because that is what's happening here. We have reached the point where we are all
   considered to be terrorists, by default. And we will be treated accordingly. As Rick
   Strahl points out, this is good training for sheepdom.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=8903f1c2-42f6-4720-906b-5a9899c33d05" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,8903f1c2-42f6-4720-906b-5a9899c33d05.aspx</comments>
      <category>Politics</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=d82d143a-eb17-494d-a734-d39601eea58b</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,d82d143a-eb17-494d-a734-d39601eea58b.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,d82d143a-eb17-494d-a734-d39601eea58b.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=d82d143a-eb17-494d-a734-d39601eea58b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I just learned that <a href="http://en.wikipedia.org/wiki/Kim_Peek">Kim Peek</a>,
      the mega-savant who inspired the fictional movie "Rain Man" (with Dustin Hoffman in
      the title role), passed away on December 19, from a heart attack.
   </p>
        <p>
      He was literally amazing, and sometimes I wondered if it were possible that somehow
      or other I might be able to tap the same kinds of mental power in myself that he had. 
      While retaining the ability to dress myself, at least!  Because Kim couldn't
      do simple motor tasks like that -- nevertheless, what he could do showed that there
      is more to any of us than meets the eye, and if only we could unlock that potential
      we would all be quite literally amazing!
   </p>
        <p>
      Rest in Peace, Kim.  
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=d82d143a-eb17-494d-a734-d39601eea58b" />
      </body>
      <title>The Real "Rain Man" Passes</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,d82d143a-eb17-494d-a734-d39601eea58b.aspx</guid>
      <link>http://blog.clarkmichael.com/The+Real+Rain+Man+Passes.aspx</link>
      <pubDate>Thu, 24 Dec 2009 17:14:52 GMT</pubDate>
      <description>&lt;p&gt;
   I just learned that &lt;a href="http://en.wikipedia.org/wiki/Kim_Peek"&gt;Kim Peek&lt;/a&gt;,
   the mega-savant who inspired the fictional movie "Rain Man" (with Dustin Hoffman in
   the title role), passed away on December 19, from a heart attack.
&lt;/p&gt;
&lt;p&gt;
   He was literally amazing, and sometimes I wondered if it were possible that somehow
   or other I might be able to tap the same kinds of mental power in myself that he had.&amp;nbsp;
   While retaining the ability to dress myself, at least!&amp;nbsp; Because Kim couldn't
   do simple motor tasks like that -- nevertheless, what he could do showed that there
   is more to any of us than meets the eye, and if only we could unlock that potential
   we would all be quite literally amazing!
&lt;/p&gt;
&lt;p&gt;
   Rest in Peace, Kim.&amp;nbsp; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=d82d143a-eb17-494d-a734-d39601eea58b" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,d82d143a-eb17-494d-a734-d39601eea58b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=a981259b-481b-4bdb-a3f7-dff4c75e4800</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,a981259b-481b-4bdb-a3f7-dff4c75e4800.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,a981259b-481b-4bdb-a3f7-dff4c75e4800.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=a981259b-481b-4bdb-a3f7-dff4c75e4800</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      My son has a landscape business.  And he doesn't have a website for it. 
      Rather than having him go to some outfit who will charge him a few hundred (or thousand)
      dollars for building him a website, so he can finally drop the overpriced Yellow Book
      and Yellow Pages ads, it seemed that I ought to help out and create a nice one --
      for free!  Well, anyway, at cost.
   </p>
        <p>
      So, viola!  <a href="http://www.greenscapeconstruction.com">http://www.greenscapeconstruction.com</a></p>
        <p>
      The site went live just a few days ago, and it's still a bit what I would call <em>spare</em>. 
      You know, less content than one would like?  But I'm still working on it. 
      There's behind-the-scenes infrastructure to build yet (for example, it doesn't use
      a database for its dynamic features so far -- that's on the way -- and although there's
      a login for administration, there's no administration features yet.  But as a
      fun little project it is just great!  I plan to shove some jQuery effects into
      it before I'm done.
   </p>
        <p>
      Now for the Doh! moment.
   </p>
        <p>
      Ideally, if one wants search engines to index your site correction, you have to have
      some meta tags (although those are nowhere near as important as they used to be),
      but Yahoo! tells us that the site's Title is very important.  And I couldn't
      get the site title to change from the default.  I changed it in the html part
      of the .aspx on the master page, but it wouldn't change in reality.  It was starting
      to make me crazy -- what on earth could be causing that?  Some kind of weird
      caching thing going on?  Turns out: Nope.
   </p>
        <p>
      I was setting the Title text in two places.  Once in the .aspx, and then in code
      during Page_Load.  Yikes!  The Page_Load event code had exactly the same
      Title that the original .aspx had.  So OF COURSE it's not going to change.  
   </p>
        <p>
      Gotta watch for that kind of thing.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=a981259b-481b-4bdb-a3f7-dff4c75e4800" />
      </body>
      <title>Doh! Moments Happen.</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,a981259b-481b-4bdb-a3f7-dff4c75e4800.aspx</guid>
      <link>http://blog.clarkmichael.com/Doh+Moments+Happen.aspx</link>
      <pubDate>Fri, 22 May 2009 15:51:20 GMT</pubDate>
      <description>&lt;p&gt;
   My son has a landscape business.&amp;nbsp; And he doesn't have a website for it.&amp;nbsp;
   Rather than having him go to some outfit who will charge him a few hundred (or thousand)
   dollars for building him a website, so he can finally drop the overpriced Yellow Book
   and Yellow Pages ads, it seemed that I ought to help out and create a nice one --
   for free!&amp;nbsp; Well, anyway, at cost.
&lt;/p&gt;
&lt;p&gt;
   So, viola!&amp;nbsp; &lt;a href="http://www.greenscapeconstruction.com"&gt;http://www.greenscapeconstruction.com&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
   The site went live just a few days ago, and it's still a bit what I would call &lt;em&gt;spare&lt;/em&gt;.&amp;nbsp;
   You know, less content than one would like?&amp;nbsp; But I'm still working on it.&amp;nbsp;
   There's behind-the-scenes infrastructure to build yet (for example, it doesn't use
   a database for its dynamic features so far -- that's on the way -- and although there's
   a login for administration, there's no administration features yet.&amp;nbsp; But as a
   fun little project it is just great!&amp;nbsp; I plan to shove some jQuery effects into
   it before I'm done.
&lt;/p&gt;
&lt;p&gt;
   Now for the Doh! moment.
&lt;/p&gt;
&lt;p&gt;
   Ideally, if one wants search engines to index your site correction, you have to have
   some meta tags (although those are nowhere near as important as they used to be),
   but Yahoo! tells us that the site's Title is very important.&amp;nbsp; And I couldn't
   get the site title to change from the default.&amp;nbsp; I changed it in the html part
   of the .aspx on the master page, but it wouldn't change in reality.&amp;nbsp; It was starting
   to make me crazy -- what on earth could be causing that?&amp;nbsp; Some kind of weird
   caching thing going on?&amp;nbsp; Turns out: Nope.
&lt;/p&gt;
&lt;p&gt;
   I was setting the Title text in two places.&amp;nbsp; Once in the .aspx, and then in code
   during Page_Load.&amp;nbsp; Yikes!&amp;nbsp; The Page_Load event code had exactly the same
   Title that the original .aspx had.&amp;nbsp; So OF COURSE it's not going to change.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   Gotta watch for that kind of thing.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=a981259b-481b-4bdb-a3f7-dff4c75e4800" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,a981259b-481b-4bdb-a3f7-dff4c75e4800.aspx</comments>
      <category>Family;Geek Speak</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=5eee8393-e941-4ba6-a869-799e59cee07b</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,5eee8393-e941-4ba6-a869-799e59cee07b.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,5eee8393-e941-4ba6-a869-799e59cee07b.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=5eee8393-e941-4ba6-a869-799e59cee07b</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Actually, I've been trying to avoid <a href="http://jquery.com/">jQuery</a> for several
      months.  I've had enough on my hands at the moment without digging down into
      some JavaScript nonsense -- aside from the fact that as much as I <em>respect</em> JavaScript,
      I could say with some degree of exaggeration (OK, a <em>huge</em> amount of exaggeration)
      that I hate JavaScript to the root of my soul.  Well, jQuery is JavaScript,
      and it's starting to get as ubiquitous as JavaScript, so I should hate it, too.
   </p>
        <p>
      I turns out that jQuery may, however, be my salvation as far as JavaScript is concerned. 
      Because if you want to do anything remotely nifty and peachy keen on the web, you
      need to know JavaScript, and the niftier and peachier that you want to be, the
      better you better know JavaScript!  This is largely because it is an integral
      part of AJAX -- which stands for <strong>A</strong>synchronous <strong>J</strong>avaScript <strong>A</strong>nd <strong>X</strong>ml.  
   </p>
        <p>
      So, it's jQuery to the rescue!  I bought a book, <em>jQuery in Action</em>,
      by Bear Bibeault and Yehuda Katz, and CoDe Magazine has been publishing a new series
      on jQuery, by Rick Strahl, so it's time to dive deep and see what treasures I can
      wrest from the deep.  
   </p>
        <p>
      Who knows?  Maybe I'll actually become good at this.
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=5eee8393-e941-4ba6-a869-799e59cee07b" />
      </body>
      <title>JQuery?  What on earth...</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,5eee8393-e941-4ba6-a869-799e59cee07b.aspx</guid>
      <link>http://blog.clarkmichael.com/JQuery++What+On+Earth.aspx</link>
      <pubDate>Thu, 07 May 2009 22:29:13 GMT</pubDate>
      <description>&lt;p&gt;
   Actually, I've been trying to avoid &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt; for several
   months.&amp;nbsp; I've had enough on my hands at the moment without digging down into
   some JavaScript nonsense -- aside from the fact that as much as I &lt;em&gt;respect&lt;/em&gt; JavaScript,
   I could say with some degree of exaggeration (OK, a &lt;em&gt;huge&lt;/em&gt; amount of exaggeration)
   that I hate JavaScript to the root of my soul.&amp;nbsp; Well,&amp;nbsp;jQuery is JavaScript,
   and it's starting to get as ubiquitous as JavaScript, so I should hate it, too.
&lt;/p&gt;
&lt;p&gt;
   I turns out that jQuery may, however, be my salvation as far as JavaScript is concerned.&amp;nbsp;
   Because if you want to do anything remotely nifty and peachy keen on the web, you
   need to know JavaScript, and the niftier&amp;nbsp;and peachier that you want to be, the
   better you better know JavaScript!&amp;nbsp; This is largely because it is an integral
   part of AJAX -- which stands for &lt;strong&gt;A&lt;/strong&gt;synchronous &lt;strong&gt;J&lt;/strong&gt;avaScript &lt;strong&gt;A&lt;/strong&gt;nd &lt;strong&gt;X&lt;/strong&gt;ml.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   So, it's&amp;nbsp;jQuery to the rescue!&amp;nbsp; I bought a book, &lt;em&gt;jQuery in Action&lt;/em&gt;,
   by Bear Bibeault and Yehuda Katz, and CoDe Magazine has been publishing a new series
   on jQuery, by Rick Strahl, so it's time to dive deep and see what treasures I can
   wrest from the deep.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   Who knows?&amp;nbsp; Maybe I'll actually become good at this.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=5eee8393-e941-4ba6-a869-799e59cee07b" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,5eee8393-e941-4ba6-a869-799e59cee07b.aspx</comments>
      <category>Geek Speak;jQuery</category>
    </item>
    <item>
      <trackback:ping>http://blog.clarkmichael.com/Trackback.aspx?guid=40f5a658-0722-4c90-827c-f80a4a42ea68</trackback:ping>
      <pingback:server>http://blog.clarkmichael.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.clarkmichael.com/PermaLink,guid,40f5a658-0722-4c90-827c-f80a4a42ea68.aspx</pingback:target>
      <dc:creator>mike@clarkmichael.com (Mike)</dc:creator>
      <wfw:comment>http://blog.clarkmichael.com/CommentView,guid,40f5a658-0722-4c90-827c-f80a4a42ea68.aspx</wfw:comment>
      <wfw:commentRss>http://blog.clarkmichael.com/SyndicationService.asmx/GetEntryCommentsRss?guid=40f5a658-0722-4c90-827c-f80a4a42ea68</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      For you non-programmers out there here's a fair warning, this is probably going to
      be of little interest to you.
   </p>
        <p>
      The rest of you, if you haven't heard of Stack Overflow yet, this is one Rockin' site
      for developers.  Just have a quick look:
   </p>
        <p>
          <a href="http://stackoverflow.com">Stack Overflow</a>
        </p>
        <p>
      It is a marvelous place to ask programming-related questions, mainly because there
      are people there who will answer them!  I've done some comparisions between Stack
      Overflow and the MSDN Forums, and my experience is that questions that garner 2 or
      3 views in a week or two on MSDN (and maybe no answers) will get several views in
      an hour and a first response within minutes.  Awesome.  Maybe they've all
      gone over to Stack Overflow, I don't know, but this is one heckuva "social networking"
      site for nerds, let me tell you.  Nerds want to talk about tech, and programmer
      nerds want to talk about programming, and even better, show off their smarts. 
      This is the place!
   </p>
        <img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=40f5a658-0722-4c90-827c-f80a4a42ea68" />
      </body>
      <title>The StackOverflow Website</title>
      <guid>http://blog.clarkmichael.com/PermaLink,guid,40f5a658-0722-4c90-827c-f80a4a42ea68.aspx</guid>
      <link>http://blog.clarkmichael.com/The+StackOverflow+Website.aspx</link>
      <pubDate>Thu, 07 May 2009 15:31:25 GMT</pubDate>
      <description>&lt;p&gt;
   For you non-programmers out there here's a fair warning, this is probably going to
   be of little interest to you.
&lt;/p&gt;
&lt;p&gt;
   The rest of you, if you haven't heard of Stack Overflow yet, this is one Rockin' site
   for developers.&amp;nbsp; Just have a quick look:
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://stackoverflow.com"&gt;Stack Overflow&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
   It is a marvelous place to ask programming-related questions, mainly because there
   are people there who will answer them!&amp;nbsp; I've done some comparisions between Stack
   Overflow and the MSDN Forums, and my experience is that questions that garner 2 or
   3 views in a week or two on MSDN (and maybe no answers) will get several views in
   an hour and a first response within minutes.&amp;nbsp; Awesome.&amp;nbsp; Maybe they've all
   gone over to Stack Overflow, I don't know, but this is one heckuva "social networking"
   site for nerds, let me tell you.&amp;nbsp; Nerds want to talk about tech, and programmer
   nerds want to talk about programming, and even better, show off their smarts.&amp;nbsp;
   This is the place!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.clarkmichael.com/aggbug.ashx?id=40f5a658-0722-4c90-827c-f80a4a42ea68" /&gt;</description>
      <comments>http://blog.clarkmichael.com/CommentView,guid,40f5a658-0722-4c90-827c-f80a4a42ea68.aspx</comments>
      <category>Geek Speak;Stack Overflow</category>
    </item>
  </channel>
</rss>