<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>David Crowell :: Occasional Thoughts</title>
        <link>http://davidcrowell.com/Default.aspx</link>
        <description>Some Dumb Tech Guy</description>
        <language>en-US</language>
        <copyright>David Crowell</copyright>
        <managingEditor>dave@davidcrowell.com</managingEditor>
        <generator>Subtext Version 1.9.5.177</generator>
        <image>
            <title>David Crowell :: Occasional Thoughts</title>
            <url>http://davidcrowell.com/images/RSS2Image.gif</url>
            <link>http://davidcrowell.com/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Getting Remote Content in ASP.NET From Behind a Proxy</title>
            <category>.NET</category>
            <link>http://davidcrowell.com/archive/2008/05/01/getting-remote-content-in-asp.net-from-behind-a-proxy.aspx</link>
            <description>&lt;p&gt;I had a simple piece of code to grab an RSS feed from another site, and display it formatted the way I wanted.  I used caching, and it worked well &lt;strong&gt;on my develepment server.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;When deploying to the client's server, it no longer worked.  I did some digging and found out that I'd have to use a proxy.  No big deal, just a few lines of code.  I really didn't like have to add code, and have a setting to disable it, or use a different proxy, or whatever.&lt;/p&gt;
&lt;p&gt;Then I discovered, I didn't need to change the code.  Everything in the System.Net namespace can be configured to use a proxy in the web.config file.  I just added these few lines:&lt;/p&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;       &amp;lt;&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: #a31515"&gt;system.net&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;              &amp;lt;&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: #a31515"&gt;defaultProxy&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;                     &amp;lt;&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: #a31515"&gt;proxy&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;                           &lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;usesystemdefault&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;=&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt"&gt;"&lt;span style="COLOR: blue"&gt;False&lt;/span&gt;"&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;                           &lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;proxyaddress&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;=&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt"&gt;"&lt;span style="COLOR: blue"&gt;http://theproxy&lt;/span&gt;"&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;                           &lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: red"&gt;bypassonlocal&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;=&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt"&gt;"&lt;span style="COLOR: blue"&gt;True&lt;/span&gt;"&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;                     /&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;              &amp;lt;/&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: #a31515"&gt;defaultProxy&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;       &amp;lt;/&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: #a31515"&gt;system.net&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 10pt"&gt; &lt;/div&gt;&lt;img src="http://davidcrowell.com/aggbug/29.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2008/05/01/getting-remote-content-in-asp.net-from-behind-a-proxy.aspx</guid>
            <pubDate>Fri, 02 May 2008 01:19:07 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/29.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2008/05/01/getting-remote-content-in-asp.net-from-behind-a-proxy.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/29.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Gone in 9000 Seconds</title>
            <link>http://davidcrowell.com/archive/2008/04/30/gone-in-9000-seconds.aspx</link>
            <description>&lt;p&gt;I got rid of my second car in two and a half hours.  Two and a half hours from posting it on Craigslist, I had money in my hand.&lt;/p&gt;
&lt;p&gt;I am in awe.&lt;/p&gt;&lt;img src="http://davidcrowell.com/aggbug/28.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2008/04/30/gone-in-9000-seconds.aspx</guid>
            <pubDate>Thu, 01 May 2008 03:06:40 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/28.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2008/04/30/gone-in-9000-seconds.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/28.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Vista Everywhere!</title>
            <category>Vista</category>
            <link>http://davidcrowell.com/archive/2008/04/28/vista-everywhere.aspx</link>
            <description>&lt;p&gt;I've read a lot of bad reviews of Vista.  When I first got my Thinkpad 11 months ago, I understood.  Vista was different.  It seemed half-baked.  It's startup time was horrendous.&lt;/p&gt;
&lt;p&gt;Various patches and updates have since been released, and I don't see a real reason for complaint anymore.  Well, other than the "It's different" complaint.  My Thinkpad now has a startup time comparable with an XP machine.  Copying files works well now.  I really like Vista.&lt;/p&gt;
&lt;p&gt;I've been using 32-bit Vista Business for 11 months, and I love it.  I had never used Media Center until recently though.  I subscribed to MSDN, and now have access to a lot of Microsoft software.  I set up some spare hardware I had as a Media Center, running Vista Ultimate.  The machine does not have a TV tuner, but for browsing video on the machine, it's great.  I'm using a wireless keyboard with trackball, and it's connected to my HDTV.&lt;/p&gt;
&lt;p&gt;I actually use iTunes more on the machine, but that's just because I have an easy way to rent movies.&lt;/p&gt;
&lt;p&gt;I bought my daughter a Dell laptop that came with Vista Home Basic, which I later upgraded to Vista Home Premium.  It's a low-end machine, but works well, and supports Aero.&lt;/p&gt;
&lt;p&gt;I started a new job last month.  I was given the opportunity to run 64-bit Vista Business.  I was a bit worried about compatibility, but I've had zero problems.&lt;/p&gt;
&lt;p&gt;I now use three machines with Vista on a regular basis, and support a fourth.  It's gotten to where I can't stand XP anymore.&lt;/p&gt;
&lt;p&gt;I plan on building myself a new desktop machine for at home.  It will run 64-bit Vista Ultimate.  I can then be sure all of my freeware plays nice in a 64-bit environment.  I have a feeling it will, with no modifications.&lt;/p&gt;
&lt;p&gt;So, please, if you're happy with XP, then don't worry about it.  However, when you get a new machine, have an open mind about Vista.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://davidcrowell.com/aggbug/27.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2008/04/28/vista-everywhere.aspx</guid>
            <pubDate>Tue, 29 Apr 2008 03:59:52 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/27.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2008/04/28/vista-everywhere.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/27.aspx</wfw:commentRss>
        </item>
        <item>
            <title>A Lot of Changes</title>
            <link>http://davidcrowell.com/archive/2008/04/26/a-lot-of-changes.aspx</link>
            <description>&lt;p&gt;I've been posting far too infrequently.  I've been busy with a &lt;a target="_blank" href="http://fatguy.org/"&gt;lifestyle change&lt;/a&gt;, &lt;a target="_blank" href="http://fatguy.org/archive/2008/03/02/a-new-beginning.aspx"&gt;an upcoming divorce&lt;/a&gt;, and a new job.&lt;/p&gt;
&lt;p&gt;I took a permanent position with my former employer.  I'm done with freelancing for a while.  &lt;/p&gt;
&lt;p&gt;I hope to make more time to work on projects of my choosing now.  I'd like to dig back into my various freeware applications, and make some updates.&lt;/p&gt;
&lt;p&gt;I've mentioned my love/hate relationship with iTunes before.  I'm still using it.  I bought an iPod nano to replace my Sansa.  I've set up a dedicated PC hooked to my new TV for iTunes movie rentals and TV shows.  Yep, I went all in to Apple... other than buying an actual Apple computer.  My Thinkpad with Vista will keep me going for a while longer.  I have been looking longingly at a Macbook Pro though.  Maybe next year.&lt;/p&gt;&lt;img src="http://davidcrowell.com/aggbug/26.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2008/04/26/a-lot-of-changes.aspx</guid>
            <pubDate>Sat, 26 Apr 2008 18:43:24 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/26.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2008/04/26/a-lot-of-changes.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/26.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Too Busy to Review a Book</title>
            <link>http://davidcrowell.com/archive/2008/01/21/too-busy-to-review-a-book.aspx</link>
            <description>I was contacted by Packt Publishing back in November to review a book, &lt;a href="http://www.packtpub.com/jquery-reference-guide-Open-Source/book" target="_blank"&gt;jQuery Reference Guide&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Unfortunately I've been too busy to do so.  I finally admitted defeat, and emailed them back today, letting them know I would be unable to review the book, and offering to pay for the book that they generously provided.&lt;br /&gt;
&lt;br /&gt;
I have skimmed the book, and it does seem to be a good reference.  It doesn't however seem to mention what version of jQuery it is based on.  That said, I do recommend the book if you already know javascript and DHTML, and want a quicker way of writing client-side code.&lt;img src="http://davidcrowell.com/aggbug/25.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2008/01/21/too-busy-to-review-a-book.aspx</guid>
            <pubDate>Mon, 21 Jan 2008 14:09:36 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/25.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2008/01/21/too-busy-to-review-a-book.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/25.aspx</wfw:commentRss>
        </item>
        <item>
            <title>jQuery, AJAX, and JSON</title>
            <category>.NET</category>
            <link>http://davidcrowell.com/archive/2007/11/26/jquery-ajax-and-json.aspx</link>
            <description>I had to quickly get up to speed today on a project using &lt;a target="_blank" href="http://jquery.com/"&gt;jQuery&lt;/a&gt;, and &lt;a href="http://json.org/" target="_blank"&gt;JSON&lt;/a&gt;.  I used the &lt;a href="http://james.newtonking.com/pages/json-net.aspx" target="_blank"&gt;Json.NET&lt;/a&gt; library to serialize C# objects to JSON.  That part was extremely easy.  On the client end, jQuery has good support for JSON, but I had to dynamically create HTML form fields (mostly radio buttons) from javascript.&lt;br /&gt;
&lt;br /&gt;
I haven't done much with either JSON or jQuery, so it was nice to learn something new.&lt;img src="http://davidcrowell.com/aggbug/24.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2007/11/26/jquery-ajax-and-json.aspx</guid>
            <pubDate>Tue, 27 Nov 2007 02:40:48 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/24.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2007/11/26/jquery-ajax-and-json.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/24.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Taming the iBorg</title>
            <link>http://davidcrowell.com/archive/2007/11/19/taming-the-iborg.aspx</link>
            <description>I installed &lt;a href="http://www.binaryfortress.com/itunes-sync/"&gt;iTunes Sync&lt;/a&gt;, which allows me to easily synchronize a playlist with my Sansa.  It's free, but the developer does accept donations.  Give it a try.&lt;img src="http://davidcrowell.com/aggbug/23.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2007/11/19/taming-the-iborg.aspx</guid>
            <pubDate>Mon, 19 Nov 2007 17:25:43 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/23.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2007/11/19/taming-the-iborg.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/23.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Succumbing to the iBorg</title>
            <link>http://davidcrowell.com/archive/2007/11/19/succumbing-to-the-iborg.aspx</link>
            <description>Ahhhhhhh!&lt;br /&gt;
&lt;br /&gt;
I removed iTunes from my laptop a while ago.  I was sick of it's always-running services that use system resources.  I was sick of it's non-standard interface &amp;amp; behavior on Windows.&lt;br /&gt;
&lt;br /&gt;
Oh, and I use a Sandisk Sansa, not an overpriced iPod.&lt;br /&gt;
&lt;br /&gt;
However, I was unable to find a suitable replacement.  Nothing rivals iTunes in it's ability to manage my music collection.  I tried MediaMonkey, Windows Media Player, and a dozen little-known media library applications.&lt;br /&gt;
&lt;br /&gt;
Yesterday, I installed the latest iTunes version back onto my laptop.  I will live with it until something better comes along.  I have, in the past, purchased two albums through iTunes plus.  So it's not all bad.&lt;img src="http://davidcrowell.com/aggbug/22.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2007/11/19/succumbing-to-the-iborg.aspx</guid>
            <pubDate>Mon, 19 Nov 2007 16:28:17 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/22.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2007/11/19/succumbing-to-the-iborg.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/22.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Websites &amp; Advertising</title>
            <link>http://davidcrowell.com/archive/2007/11/12/websites--advertising.aspx</link>
            <description>I used to sell shareware on this site.  I still consider this my business website, although it has pathetically little to do with my freelance business currently.  I plan on changing that, but that's an issue for another time.&lt;br /&gt;
&lt;br /&gt;
I've always believed that business websites should not have third-party advertising on them.  You should be trying to sell your own product or service.&lt;br /&gt;
&lt;br /&gt;
This site, will remain ad-free for the foreseeable future.  However, I have created &lt;a href="http://fatguy.org/" target="_blank"&gt;a new blog about my weight loss attempt&lt;/a&gt;, and have decided to drop Google AdSense in there to see how it goes.  I'm considering it an experiment.  I'm not selling anything on that site, and a little advertising can't be all bad.&lt;img src="http://davidcrowell.com/aggbug/21.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2007/11/12/websites--advertising.aspx</guid>
            <pubDate>Mon, 12 Nov 2007 17:30:59 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/21.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2007/11/12/websites--advertising.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/21.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Self Employment or Unemployment?</title>
            <link>http://davidcrowell.com/archive/2007/10/25/Self-Employment-or-Unemployment.aspx</link>
            <description>Several weeks ago I left my full-time job for an attempt at being self-employed.  The freedom is nice, but limited.  Sure, I can choose not to work today.  I can also lose a client.&lt;br /&gt;
&lt;br /&gt;
I have two good clients, one is pretty much full-time, the other, while part-time, seems to need me on short notice.  I also have two other individuals that I do occasional project work for.&lt;br /&gt;
&lt;br /&gt;
If I can stay busy, and I will in the short term, I should do fine.  The longer term outlook is too hazy to know what is going to happen.&lt;br /&gt;
&lt;br /&gt;
If you need .NET development work done, preferably small projects, and are local to the Louisville Kentucky area, &lt;a href="http://davidcrowell.com/archive/2007/03/11/Contact.aspx"&gt;we should talk&lt;/a&gt;.&lt;img src="http://davidcrowell.com/aggbug/20.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>David Crowell</dc:creator>
            <guid>http://davidcrowell.com/archive/2007/10/25/Self-Employment-or-Unemployment.aspx</guid>
            <pubDate>Thu, 25 Oct 2007 15:42:53 GMT</pubDate>
            <wfw:comment>http://davidcrowell.com/comments/20.aspx</wfw:comment>
            <comments>http://davidcrowell.com/archive/2007/10/25/Self-Employment-or-Unemployment.aspx#feedback</comments>
            <wfw:commentRss>http://davidcrowell.com/comments/commentRss/20.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>