<?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" version="2.0">
  <channel>
    <title>simplegeek</title>
    <link>http://www.simplegeek.com</link>
    <description />
    <copyright>Copyright 2003 Chris Anderson</copyright>
    <lastBuildDate>Tue, 15 Jun 2004 06:56:49 GMT</lastBuildDate>
    <generator>ChrisAn's BlogX</generator>
    <managingEditor>chris_l_anderson@hotmail.com</managingEditor>
    <webMaster>chris_l_anderson@hotmail.com</webMaster>
    <item>
      <title>BlogX rev 24</title>
      <guid>http://www.simplegeek.com/permalink.aspx/91bcddca-d9c1-4c45-8481-b04bef0734ff</guid>
      <link>http://www.simplegeek.com/permalink.aspx/91bcddca-d9c1-4c45-8481-b04bef0734ff</link>
      <pubDate>Tue, 15 Jun 2004 06:56:49 GMT</pubDate>
      <description>Yes, another one... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        In the never ending battle... BlogX rev 24... Now you can turn off links of any kind
        (other than the mail link) in comments, and I've also removed the web service interface
        for adding comments.
    </p>
        <p>
          <a href="http://www.simplegeek.com/blogx24.zip">Source and Binaries</a>.
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/91bcddca-d9c1-4c45-8481-b04bef0734ff</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Anti-Spam</title>
      <guid>http://www.simplegeek.com/permalink.aspx/c62847bf-c572-45d0-9069-f91bc23d3a52</guid>
      <link>http://www.simplegeek.com/permalink.aspx/c62847bf-c572-45d0-9069-f91bc23d3a52</link>
      <pubDate>Sun, 13 Jun 2004 12:40:54 GMT</pubDate>
      <description>Justin doesn't like it... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://weblogs.asp.net/justin_rogers/archive/2004/06/13/154633.aspx">Justin
        takes issue</a> with my methodology for spam protection... 
    </p>
        <p>
        I spent about 90 minutes implementing the spam protection and a few other minor tweaks
        to blogx (like the ability to disable comments completely from the site.config file).
    </p>
        <p>
        First, let me explain the goals of my spam protection. My goal was fairly simple,
        remove the maximum number of spam comments in my blog. I had two approaches in mind,
        1) remove commenting from the site, 2) provide some security.
    </p>
        <p>
        When I went down the security route, I actually figured that even plain text security
        (just making someone/thing read the text and parse out a word). I doubt anyone is
        really using a OCR system to post spam comments on my site. Without anything it is
        just too easy to post. If people start hacking on the site again, i'll just remove
        comments - no money is at risk here, i'm not going to spend sleepless nights trying
        to prevent spammers.
    </p>
        <p>
        As for the process I use, it is a simple uniform gradient behind the text. Any artifacts
        are from the jpeg compression. The words are stored in a plain text file on the server,
        and I use System.Security.Cryptography.RandomNumberGenerator to pick the word. The
        only thing sent to the client is the offset of the word. 
    </p>
        <p>
        Simple threat modeling excercise... Of course, since I have a small dictionary on
        the server, it would be easy to visit the site often enough and form a complete duplicate
        of the words from the server. Since the offset is round triped to the client, both
        in the URL of the image and in the ViewState, these are both susceptible to attack.
        In addition, the image pattern is simple, as you point out, so OCR against it would
        be relatively straight forward.
    </p>
        <p>
        With all of these threats, and basically no mitigations, it is pretty clear that someone
        can hack around my "security". The intent isn't to provide robust security that I
        would expect from a bank or anything else (I'm not even running HTTPs, I don't authorize
        commentors, etc.)... the goal is just to make my site less attractive to spammers.
    </p>
        <p>
         
    </p>
        <p>
         
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/c62847bf-c572-45d0-9069-f91bc23d3a52</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 23 released</title>
      <guid>http://www.simplegeek.com/permalink.aspx/c8e87eb0-e6b1-4dd4-a8ea-0bc29d6fc637</guid>
      <link>http://www.simplegeek.com/permalink.aspx/c8e87eb0-e6b1-4dd4-a8ea-0bc29d6fc637</link>
      <pubDate>Sun, 13 Jun 2004 09:45:57 GMT</pubDate>
      <description>Hmm... must make work right... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        I've made the text (hopefully) more readable and replaced the random number generation
        algorthim that I used... should be much better now.
    </p>
        <p>
          <a href="http://www.simplegeek.com/blogx23.zip">Source and Binaries</a>.
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/c8e87eb0-e6b1-4dd4-a8ea-0bc29d6fc637</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Blog 22 released</title>
      <guid>http://www.simplegeek.com/permalink.aspx/f085404d-00e3-47b4-be83-c73a682bc1f3</guid>
      <link>http://www.simplegeek.com/permalink.aspx/f085404d-00e3-47b4-be83-c73a682bc1f3</link>
      <pubDate>Sat, 12 Jun 2004 21:09:47 GMT</pubDate>
      <description>Comment spam protection... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        I added some basic comment spam protection (using a "security word" obuscated in an
        image)... I also added the ability to turn comments off with a simple site.config
        file change. Hopefully this will stop the spammers... 
    </p>
        <p>
          <a href="http://www.simplegeek.com/blogx22.zip">BlogX 22 Source and Binaries</a>.
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/f085404d-00e3-47b4-be83-c73a682bc1f3</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX, .Text, and dasBlog</title>
      <guid>http://www.simplegeek.com/permalink.aspx/68b79867-a704-4d99-bfde-b909024aac40</guid>
      <link>http://www.simplegeek.com/permalink.aspx/68b79867-a704-4d99-bfde-b909024aac40</link>
      <pubDate>Thu, 18 Dec 2003 01:16:40 GMT</pubDate>
      <description>The rumors of my death... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        Craig asked me in mail, and on his <a href="http://craigrandall.home.comcast.net/index.htm#031217b">blog</a>,
        about the move from GDN to a .Text based solution...
    </p>
        <p>
        When I first started working on BlogX I was just trying to understand blogging. After
        I made some progress I felt like sharing the source with everyone, and I really wanted
        to participate in a community development effort. Unfortunately a combination of my
        interest and a spike of work (uhm, yeah, the PDC took some time &lt;G&gt;) caused
        me to not make any more progress on BlogX.
    </p>
        <p>
        I looked around for someone to take over for BlogX and <a href="http://www.25hoursaday.com/weblog">Dare</a> offered
        to take over. Dare surveyed the land and quickly realized that there were many blogging
        efforts going around - <a href="http://scottwater.com/DotText/default.aspx">.Text</a> and <a href="http://www.dasblog.net/documentation/">dasBlog</a> being
        two of the major .NET based blogging solutions. Dare's decision, which I supported,
        was to instead of continuing yet another .NET blogging solution, to "close the doors"
        so to speak on BlogX.
    </p>
        <p>
        The source is still freely available, and if anyone wanted to pick it up, they are
        more than welcome. However, right now I'm recommending people participate in either <a href="http://scottwater.com/DotText/default.aspx">.Text</a> or <a href="http://www.dasblog.net/documentation/">dasBlog</a> if
        they want to contribute.
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/68b79867-a704-4d99-bfde-b909024aac40</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>The ultimate sin... BlogX rev 21</title>
      <guid>http://www.simplegeek.com/permalink.aspx/808a1527-7a17-4682-bbbd-6581443128f0</guid>
      <link>http://www.simplegeek.com/permalink.aspx/808a1527-7a17-4682-bbbd-6581443128f0</link>
      <pubDate>Mon, 03 Nov 2003 19:29:51 GMT</pubDate>
      <description>A minor update to BlogX...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        With massive appologies to the huge number of people that have joined the <a href="http://www.gotdotnet.com/community/workspaces/workspace.aspx?id=ddc98753-6559-489b-a533-57034790a93a">BlogX
        workspace</a>, I have made a minor update to BlogX. Specifically, I had to make a
        patch to my RSS logic to start honoring the if-modified-since header... I was consuming
        massive bandwidth from <a href="http://www.urbanpotato.net">Brian</a> and I needed
        to fix this.
    </p>
        <p>
        As always, <a href="http://www.simplegeek.com/blogx21.zip">source and binaries</a> are
        available.
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/808a1527-7a17-4682-bbbd-6581443128f0</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX tops the GotDotNet workspace list...</title>
      <guid>http://www.simplegeek.com/permalink.aspx/6a607adf-6220-4a7b-a3e7-f5c350fcfbc8</guid>
      <link>http://www.simplegeek.com/permalink.aspx/6a607adf-6220-4a7b-a3e7-f5c350fcfbc8</link>
      <pubDate>Thu, 10 Jul 2003 22:42:32 GMT</pubDate>
      <description>But, will we ever see a release...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        The <a href="http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=ddc98753-6559-489b-a533-57034790a93a">BlogX</a> GDN
        workspace now has the most members of any workspace... <a href="http://www.itnextgen.net/pseudo/archives/000043.html">Paul's
        post</a> talked about anybody can get a bunch of open source people engaged in a project
        at least temporarily, but it takes good design to keep them there... 
    </p>
        <p>
        I have always maintained that BlogX was never designed - I hacked it together over
        a week or so to solve my blog problem... I don't believe that BlogX is elegant or
        well implemented... I think it is simple? I hope that <a href="http://www.kuro5hin.org/user/Carnage4Life/diary">Dare</a> is
        able to make sense of the code and do something interesting with the huge number of
        people that have showed so much interest in the project... 
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/6a607adf-6220-4a7b-a3e7-f5c350fcfbc8</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Future of BlogX</title>
      <guid>http://www.simplegeek.com/permalink.aspx/6dbbc2a2-b2d3-4e8b-a1b9-8c4d057da62b</guid>
      <link>http://www.simplegeek.com/permalink.aspx/6dbbc2a2-b2d3-4e8b-a1b9-8c4d057da62b</link>
      <pubDate>Tue, 01 Jul 2003 20:34:24 GMT</pubDate>
      <description>Work is causing some changes...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        I have been doing a tremendously bad job of managing BlogX since I released rev 20.
        Given my responsibilities at work leading up to the PDC, and the new house, I don't
        think I will be a very good steward of the code for the rest of the year.
    </p>
        <p>
        Happily <a href="http://www.kuro5hin.org/user/Carnage4Life/diary">Dare</a> has agreed
        to take over. I'll still be somewhat involved, but I'm hoping that Dare can make some
        progress where I have failed to. We have over 250 people in the GDN workspace, so
        I'm really hoping that we can make some great progress.
    </p>
        <p>
        The good news is that I'll have that much more time to make Longhorn great for the
        PDC!! :)
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/6dbbc2a2-b2d3-4e8b-a1b9-8c4d057da62b</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Busted</title>
      <guid>http://www.simplegeek.com/permalink.aspx/257fd863-d2e8-4681-9007-a17433726b96</guid>
      <link>http://www.simplegeek.com/permalink.aspx/257fd863-d2e8-4681-9007-a17433726b96</link>
      <pubDate>Fri, 02 May 2003 23:51:24 GMT</pubDate>
      <description>.NET Guy found me out...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://dotnetguy.techieswithcats.com/archives/002973.shtml">Apparently</a> I
    need to work on my rss feed a bit...</body>
      <comments>http://www.simplegeek.com/commentview.aspx/257fd863-d2e8-4681-9007-a17433726b96</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Simon is adding blogger API support</title>
      <guid>http://www.simplegeek.com/permalink.aspx/32952603-1c00-4650-8363-8a60776d4703</guid>
      <link>http://www.simplegeek.com/permalink.aspx/32952603-1c00-4650-8363-8a60776d4703</link>
      <pubDate>Tue, 08 Apr 2003 20:45:52 GMT</pubDate>
      <description>features for blogx...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.gotdotnet.com/Community/User/viewprofile.aspx?userid=00037FFE816B2594">Simon
        Jefford</a> is adding support for several standard blogging apis... KeithBa got a
        server and client setup program added... 
    </p>
        <p>
        Myself, I've been slacking off and not gotten anything done... should be back in a
        couple weeks and actually start making progress... 
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/32952603-1c00-4650-8363-8a60776d4703</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX bugs...</title>
      <guid>http://www.simplegeek.com/permalink.aspx/906b3275-a056-48e6-b95c-5aae304f6623</guid>
      <link>http://www.simplegeek.com/permalink.aspx/906b3275-a056-48e6-b95c-5aae304f6623</link>
      <pubDate>Wed, 02 Apr 2003 21:44:58 GMT</pubDate>
      <description>if you have them, file them...</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
    GDN has <a href="http://www.gotdotnet.com/community/workspaces/BugList.aspx?id=ddc98753-6559-489b-a533-57034790a93a">BlogX
    Bugs</a> now... 
</body>
      <comments>http://www.simplegeek.com/commentview.aspx/906b3275-a056-48e6-b95c-5aae304f6623</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX, now under source control!</title>
      <guid>http://www.simplegeek.com/permalink.aspx/eb51f22d-fa3b-4b1f-aa4a-b132ff0f0e6e</guid>
      <link>http://www.simplegeek.com/permalink.aspx/eb51f22d-fa3b-4b1f-aa4a-b132ff0f0e6e</link>
      <pubDate>Wed, 02 Apr 2003 21:26:03 GMT</pubDate>
      <description>SourceForge be damned... GotDotNet, here I come... </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        I finally gave up on ever understanding the hell of SourceForge... the GDN Workspaces
        stuff isn't the fastest, but it took less that 20 minutes to setup the project, upload
        my files, enlist, and build... 
    </p>
        <p>
          <a href="http://www.gotdotnet.com/community/workspaces/workspace.aspx?id=ddc98753-6559-489b-a533-57034790a93a">BlogX
        Workspace</a>
        </p>
        <p>
        The source code is there for the world - enlist, fix, enhance, extend... 
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/eb51f22d-fa3b-4b1f-aa4a-b132ff0f0e6e</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 20</title>
      <guid>http://www.simplegeek.com/permalink.aspx/4a202482-239b-40a6-aa38-ae8bc348a4a4</guid>
      <link>http://www.simplegeek.com/permalink.aspx/4a202482-239b-40a6-aa38-ae8bc348a4a4</link>
      <pubDate>Sun, 30 Mar 2003 11:00:06 GMT</pubDate>
      <description>Description support, and xhtml:body in RSS</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        As promissed, rev 20 - now with xhtml:body!
    </p>
        <p>
        Also, I added support for "description" as a different field than "content" through
        the system. Since we are now going to have a real place to put content <strong>and</strong> description,
        then I don't need to keep stuffing the content into the description field in RSS.
    </p>
        <p>
        So, if you favorite aggregator isn't showing the full text of my blog, send them a
        mail and get them to support &lt;xhtml:body&gt;!
    </p>
        <p>
        Features:
    </p>
        <ul>
          <li>
            xhtml:body</li>
          <li>
            description</li>
          <li>
            "kill application" button on the wait dialog</li>
        </ul>
        <p>
          <a href="http://www.simplegeek.com/blogx20.zip">Binaries and Source</a>
        </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/4a202482-239b-40a6-aa38-ae8bc348a4a4</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>XHTML in RSS... for BlogX</title>
      <guid>http://www.simplegeek.com/permalink.aspx/bf131b09-c088-4238-8f6d-243c44cbfaf1</guid>
      <link>http://www.simplegeek.com/permalink.aspx/bf131b09-c088-4238-8f6d-243c44cbfaf1</link>
      <pubDate>Sun, 30 Mar 2003 00:37:55 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
    &lt;p&gt;
        &amp;lt;xhtml:body&amp;gt; support in &lt;a href="http://www.simplegeek.com/blogxbrowsing.asmx/GetRss?"&gt;RSS&lt;/a&gt;...
        thanks to &lt;a href="http://www.gotdotnet.com/team/dbox/default.aspx?key=2003-03-29T06:15:00Z"&gt;Don&lt;/a&gt; and &lt;a href="http://www.intertwingly.net/blog/1299.html"&gt;Sam&lt;/a&gt; for
        the proding... 
    &lt;/p&gt;
    &lt;p&gt;
        Expect a public rev 20 of BlogX with this feature tomorrow... 
    &lt;/p&gt;
&lt;/body&gt;</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        &lt;xhtml:body&gt; support in <a href="http://www.simplegeek.com/blogxbrowsing.asmx/GetRss?">RSS</a>...
        thanks to <a href="http://www.gotdotnet.com/team/dbox/default.aspx?key=2003-03-29T06:15:00Z">Don</a> and <a href="http://www.intertwingly.net/blog/1299.html">Sam</a> for
        the proding... 
    </p>
        <p>
        Expect a public rev 20 of BlogX with this feature tomorrow... 
    </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/bf131b09-c088-4238-8f6d-243c44cbfaf1</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 19</title>
      <guid>http://www.simplegeek.com/permalink.aspx/98ccac93-c431-4d6c-8388-89d2c58c6042</guid>
      <link>http://www.simplegeek.com/permalink.aspx/98ccac93-c431-4d6c-8388-89d2c58c6042</link>
      <pubDate>Sat, 29 Mar 2003 10:49:02 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
    &lt;p&gt;
        There are a ton of features that I need to get to, however I have been working hard
        to try and get a new HTML viewing and editing codebase up and running... thankfully,
        that is now done! 
    &lt;/p&gt;
    &lt;p&gt;
        Thanks to Nikhil Kothari and Andrew Lin for the great new editing and viewing code.
        It is a low level wrapper on MSHTML (from Nikhil)&amp;#160;- totally awesome code, with
        XHTML support (from Andrew). Wahoo! 
    &lt;/p&gt;
    &lt;p&gt;
        The HTML viewing and editing code is adapted from the &lt;a href="http://www.asp.net"&gt;ASP.NET&lt;/a&gt; &lt;a href="http://www.asp.net/webmatrix/default.aspx?tabindex=4&amp;amp;tabid=46"&gt;WebMatrix&lt;/a&gt; codebase. 
    &lt;/p&gt;
    &lt;ul&gt;
        &lt;li&gt;
            WinBlogXControls &amp;amp; WinBlogX changes only (except for version number) 
        &lt;/li&gt;
        &lt;li&gt;
            New HTML Viewing control 
        &lt;/li&gt;
        &lt;li&gt;
            New HTML Editing control 
        &lt;/li&gt;
    &lt;/ul&gt;
    &lt;p&gt;
        Just for reference, the internal server that I'm hosting blogx is up to over 80 users! 
    &lt;/p&gt;
    &lt;p&gt;
        &lt;a href="http://www.simplegeek.com/blogx19.zip"&gt;Binaries and Source&lt;/a&gt; 
    &lt;/p&gt;
&lt;/body&gt;</description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        There are a ton of features that I need to get to, however I have been working hard
        to try and get a new HTML viewing and editing codebase up and running... thankfully,
        that is now done! 
    </p>
        <p>
        Thanks to Nikhil Kothari and Andrew Lin for the great new editing and viewing code.
        It is a low level wrapper on MSHTML (from Nikhil) - totally awesome code, with
        XHTML support (from Andrew). Wahoo! 
    </p>
        <p>
        The HTML viewing and editing code is adapted from the <a href="http://www.asp.net">ASP.NET</a><a href="http://www.asp.net/webmatrix/default.aspx?tabindex=4&amp;tabid=46">WebMatrix</a> codebase. 
    </p>
        <ul>
          <li>
            WinBlogXControls &amp; WinBlogX changes only (except for version number) 
        </li>
          <li>
            New HTML Viewing control 
        </li>
          <li>
            New HTML Editing control 
        </li>
        </ul>
        <p>
        Just for reference, the internal server that I'm hosting blogx is up to over 80 users! 
    </p>
        <p>
          <a href="http://www.simplegeek.com/blogx19.zip">Binaries and Source</a>
        </p>
      </body>
      <comments>http://www.simplegeek.com/commentview.aspx/98ccac93-c431-4d6c-8388-89d2c58c6042</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Hosting multiple blogs with BlogX</title>
      <guid>http://www.simplegeek.com/permalink.aspx/47d29424-314e-428e-8b18-f87e0379f494</guid>
      <link>http://www.simplegeek.com/permalink.aspx/47d29424-314e-428e-8b18-f87e0379f494</link>
      <pubDate>Sat, 08 Mar 2003 16:25:19 GMT</pubDate>
      <description>&lt;p&gt;Chris Brooks asked for some guidance on hosting multiple people with BlogX... currently I'm doing this in a totally brute force way... I have about 40 people hosted on a server at work.  I create a vroot for each person, and then copy BlogX into their directory, and away they go.  The nice thing about this is that each person can tweak the implementation if they way.  Obviously this strategy wouldn't work for a publis hosting service - but that wasn't my design goal.&lt;/p&gt;

&lt;p&gt;So far it is working pretty well. I have a single proc Intel P4/3.06Ghz 512MB machine running 40 people, and the machine isn't bogging down at all.  I suspect that once we start getting more active bloggers that this won't scale, but for now I'm continuing with the "go simple" model.&lt;/p&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/47d29424-314e-428e-8b18-f87e0379f494</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>rev 18 feature</title>
      <guid>http://www.simplegeek.com/permalink.aspx/a4889f8d-127b-4b88-ab7f-1e8b517d8750</guid>
      <link>http://www.simplegeek.com/permalink.aspx/a4889f8d-127b-4b88-ab7f-1e8b517d8750</link>
      <pubDate>Thu, 06 Mar 2003 23:26:32 GMT</pubDate>
      <description>&lt;P&gt;Oh, almost forgot... added a feature to the WinForms 
client - basically it will auto-open the most recently opened blog when you 
startup. Since most people only have one blog, this removes something like 4 
clicks from the startup sequence... wahoo!&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/a4889f8d-127b-4b88-ab7f-1e8b517d8750</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 18</title>
      <guid>http://www.simplegeek.com/permalink.aspx/7b48b6ab-d51f-447c-87bb-b02010e171af</guid>
      <link>http://www.simplegeek.com/permalink.aspx/7b48b6ab-d51f-447c-87bb-b02010e171af</link>
      <pubDate>Thu, 06 Mar 2003 23:24:03 GMT</pubDate>
      <description>&lt;P&gt;Minor fixes...&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;You can use "opml.txt" instead of "opml.xml"... the TXT version contains a 
  URL, from which the OPML will be downloaded and rendered. (thanks to &lt;A 
  href="http://headblender.com/joe/blog/"&gt;Joe Bork&lt;/A&gt;&amp;nbsp;for the code!)&lt;/LI&gt;
  &lt;LI&gt;You can add &amp;lt;EntryTitleAsLink&amp;gt;true&amp;lt;/EntryTitleAsLink&amp;gt; to your 
  site.config to get the titles of your entries rendered as permalinks (thanks 
  to Brad Abrams for the suggestion!)&lt;/LI&gt;
  &lt;LI&gt;All links are generated as fully qualified links&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;I am hosting around 40 people at work on BlogX, so we are running into more 
issues... Unfortunately I have people running a variety of builds of BlogX, so I 
really have to do an upgrade push to get them all on rev 18... &lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx18.zip"&gt;Binaries and 
Source&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/7b48b6ab-d51f-447c-87bb-b02010e171af</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 17</title>
      <guid>http://www.simplegeek.com/permalink.aspx/55cdfe57-82bf-47aa-9beb-5dc06d966724</guid>
      <link>http://www.simplegeek.com/permalink.aspx/55cdfe57-82bf-47aa-9beb-5dc06d966724</link>
      <pubDate>Sun, 02 Mar 2003 21:30:25 GMT</pubDate>
      <description>&lt;P&gt;I made some minor tweaks and then had to get them to my 
work machine (hence, rev 16) and then I have a few more minor tweaks, but I 
wanted to get this published...&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;Joe's &lt;A 
  href="http://www.eightypercent.net/Archive/2003/03/02.html#a54"&gt;ftp&lt;/A&gt; code 
  is intergrated into BlogXRuntime, however I don't have a UI up and running for 
  it... yet. (however, it doesn't delete, so I may need to harp on Joe for 
  that).&lt;/LI&gt;
  &lt;LI&gt;Added OPML support - you can have "Links" which are just a link of XML 
  links, and then "Blogroll" which is your OPML list... &lt;/LI&gt;
  &lt;LI&gt;Minor CSS tweaks and fixes... I added a readme, etc... &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;With the CSS changes, it means you should check out your site before blindly 
upgrading :-)&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; People have started talking about adding code to 
the project - that is great! Again, as soon as I get SourceForge figured out I 
will be hosting it there... Although the ease of use of GotDotNet is sounding 
really appealing... &lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx17.zip"&gt;Binaries and 
Source&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/55cdfe57-82bf-47aa-9beb-5dc06d966724</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>SourceForge?</title>
      <guid>http://www.simplegeek.com/permalink.aspx/ac9fcafd-0c12-4070-879b-6abe6ef45eb1</guid>
      <link>http://www.simplegeek.com/permalink.aspx/ac9fcafd-0c12-4070-879b-6abe6ef45eb1</link>
      <pubDate>Thu, 27 Feb 2003 23:54:50 GMT</pubDate>
      <description>&lt;P&gt;I decided to host blogx source on SourceForge... I must 
not be that smart of a person... I haven't been able to figure out how to do 
it.&amp;nbsp;I have my project, everything is approved... but I can't get WinCVS to 
connect up. I have PuTTy on my machine, and I tried to point WinCVS to it... 
ugh...&lt;/P&gt;
&lt;P&gt;Ah! Luckily I found &lt;A 
href="https://sourceforge.net/docman/display_doc.php?docid=766&amp;amp;group_id=1"&gt;this&lt;/A&gt;, 
which should help. Scary thing is that it says (with the instructions) it will 
take at least 40 minutes, plus a six hour delay to get it 
up and running...&lt;/P&gt;
&lt;P&gt;I just don't have the time right now... Once I get the 40 minutes plus six 
hours, i'll get this uploaded... &lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/ac9fcafd-0c12-4070-879b-6abe6ef45eb1</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Non-PASV uploading...</title>
      <guid>http://www.simplegeek.com/permalink.aspx/063d639b-10c7-4826-9f5f-0b6c026a9268</guid>
      <link>http://www.simplegeek.com/permalink.aspx/063d639b-10c7-4826-9f5f-0b6c026a9268</link>
      <pubDate>Thu, 27 Feb 2003 09:29:19 GMT</pubDate>
      <description>&lt;P&gt;I'm trying to integrate Joe's uploader, however the 
problem seems to be that when I request a PASV ftp session, the address that he 
sends is my private network address, so of course, the server can't find me... 
boom!&lt;/P&gt;
&lt;P&gt;Hmm... too bad I know nothing about ftp, or I could fix the code... guess 
it's time to start getting educated.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/063d639b-10c7-4826-9f5f-0b6c026a9268</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 15</title>
      <guid>http://www.simplegeek.com/permalink.aspx/51dcf88b-d37a-4d03-a971-5c3520167157</guid>
      <link>http://www.simplegeek.com/permalink.aspx/51dcf88b-d37a-4d03-a971-5c3520167157</link>
      <pubDate>Wed, 26 Feb 2003 01:40:06 GMT</pubDate>
      <description>&lt;P&gt;The addiction continues... I have several internal beta 
users at MSFT, and it looks like there are a couple of "real" people out there 
using it also. I have my hotmail filters a little too strong, or I would have 
fixed Chris Brooks' reported problem with my RSS link on permalink pages being 
broken (although it may be fixed... turns out releasing builds at 1:30am is 
bad).&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Warning&lt;/STRONG&gt; If you have a site that is working with rev 14 or 
before, be warning - rev 15 has a whole new CSS model.&lt;/P&gt;
&lt;P&gt;Fil Fortes (someone that actually understands CSS) gave me a whole new mockup 
of what HTML I should be generating, so it can actually be configured with CSS 
correctly. Anyway, needless to say - if you drop rev 15 onto your site, you will 
need to update you blogx.css file, or be broken.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Warning&lt;/STRONG&gt; There is a new SiteConfig file need - 
blogxfooter.format.html. I added this for parity with the header - everyone 
wants their footer to look different, so... there you are.&lt;/P&gt;
&lt;P&gt;Anyway, the changes are:&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;WinForms fixes (misc reported bugs from beta users, too early in the 
  morning to remember them all)&lt;/LI&gt;
  &lt;LI&gt;Added 80% of the work for Windows authentication... this would have been 
  all done, except the winforms front end breaks with Windows auth on... 
  doh!&lt;/LI&gt;
  &lt;LI&gt;Complete change of the HTML structure outputed - now much more 
  configurable with CSS!&lt;/LI&gt;
  &lt;LI&gt;Added category RSS feeds&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx15.zip"&gt;Sources and binaries&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Oh, and for those of you that are interested, I have my SourceForge project 
started... I just need to upload the files!&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/51dcf88b-d37a-4d03-a971-5c3520167157</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX in the wild!</title>
      <guid>http://www.simplegeek.com/permalink.aspx/b36916eb-4571-41c4-9b23-358ac955b532</guid>
      <link>http://www.simplegeek.com/permalink.aspx/b36916eb-4571-41c4-9b23-358ac955b532</link>
      <pubDate>Tue, 25 Feb 2003 23:07:38 GMT</pubDate>
      <description>&lt;P&gt;Very cool... &lt;A 
href="http://staff.develop.com/gehtland/weblog/"&gt;Justin&lt;/A&gt; has started using 
blogx...&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/b36916eb-4571-41c4-9b23-358ac955b532</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 14</title>
      <guid>http://www.simplegeek.com/permalink.aspx/a12825c6-b9e0-432d-a9f4-51d39c30fd14</guid>
      <link>http://www.simplegeek.com/permalink.aspx/a12825c6-b9e0-432d-a9f4-51d39c30fd14</link>
      <pubDate>Mon, 24 Feb 2003 22:30:30 GMT</pubDate>
      <description>&lt;P&gt;I know, i keep promising to stop... anyway, rev 14 fixes 
a few issues found by Fil Fortes at work (basically configuring a new site would 
easily get you into a broken state)...&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;Deal with authentication better (logout, stale cookie, etc.)&lt;/LI&gt;
  &lt;LI&gt;Calendar selection bug&lt;/LI&gt;
  &lt;LI&gt;Support for non-obfuscated email in comments (this is for the intranet 
  scenarios)&lt;/LI&gt;
  &lt;LI&gt;Added correct formatting of newlines in comments&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx14.zip"&gt;Binaries and 
source&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/a12825c6-b9e0-432d-a9f4-51d39c30fd14</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Weblogs.com test post</title>
      <guid>http://www.simplegeek.com/permalink.aspx/09e08980-60e5-4d93-8021-c5b082048cd4</guid>
      <link>http://www.simplegeek.com/permalink.aspx/09e08980-60e5-4d93-8021-c5b082048cd4</link>
      <pubDate>Mon, 24 Feb 2003 22:18:06 GMT</pubDate>
      <description>&lt;P&gt;I added support to optionally ping weblogs.com... this is 
just a test to see if it works :)&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/09e08980-60e5-4d93-8021-c5b082048cd4</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 13</title>
      <guid>http://www.simplegeek.com/permalink.aspx/c44b4e48-fc03-4eca-925a-64d05fdb8b5e</guid>
      <link>http://www.simplegeek.com/permalink.aspx/c44b4e48-fc03-4eca-925a-64d05fdb8b5e</link>
      <pubDate>Sun, 23 Feb 2003 23:05:50 GMT</pubDate>
      <description>&lt;P&gt;uhm... ok... note to self - test before 
releasing!&amp;nbsp;Found some blocking issues with the WinForms client (wouldn't 
shut down, etc.)... Also, made a change to unify the security model for the Web 
Service and ASP.NET front end... basically the web service now requires a 
username/password, instead of just a password.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx13.zip"&gt;Source and 
binaries&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/c44b4e48-fc03-4eca-925a-64d05fdb8b5e</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 12</title>
      <guid>http://www.simplegeek.com/permalink.aspx/ae6ec9c9-dab2-40ba-bc45-8e924dd5a4ef</guid>
      <link>http://www.simplegeek.com/permalink.aspx/ae6ec9c9-dab2-40ba-bc45-8e924dd5a4ef</link>
      <pubDate>Sun, 23 Feb 2003 22:24:31 GMT</pubDate>
      <description>&lt;P&gt;OK, I think I'm beginning to understand the basic 
features needed for this software. I'm getting a better picture of what I want 
the smart client vs. web client to do, etc. In this rev I did a bunch of really 
bad looking UI in the WinForms client piece, but at least it is consistently 
bad! :-)&lt;/P&gt;
&lt;P&gt;The code is getting in really bad shape - standard thing that happens when 
you decide to just pump out code as fast as possible. If I want to keep going on 
this, I think I need to sit back and do an actual design for the system, and 
then write the code. Although this hack &amp;amp; slash is a lot of fun, this code 
is getting a little too spaghetti for me.&lt;/P&gt;
&lt;P&gt;Anyway, new features:&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;Web service for editing site configuration 
  &lt;LI&gt;WinForms UI redesign 
  &lt;LI&gt;WinForms editing of site configuration&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx12.zip"&gt;Source and binaries&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This will most likely be the last release in a while... i need to fish or cut 
bait here... &lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/ae6ec9c9-dab2-40ba-bc45-8e924dd5a4ef</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 11</title>
      <guid>http://www.simplegeek.com/permalink.aspx/78a545e5-2883-4035-8d42-e98495f13264</guid>
      <link>http://www.simplegeek.com/permalink.aspx/78a545e5-2883-4035-8d42-e98495f13264</link>
      <pubDate>Fri, 21 Feb 2003 23:01:15 GMT</pubDate>
      <description>&lt;P&gt;Totally trivial updates... I shouldn't really publish... 
however for some reason I am compelled to live up to my daily publishing pattern 
so far.&lt;/P&gt;
&lt;UL&gt;
  &lt;LI&gt;Simple status bar added to WinBlogX&lt;/LI&gt;
  &lt;LI&gt;Added bullet/number list formatted to editor&lt;/LI&gt;
  &lt;LI&gt;Added cookie code for comment editting&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx11.zip"&gt;Sources and 
binaries&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/78a545e5-2883-4035-8d42-e98495f13264</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>How to get fields to persist on the users machine?</title>
      <guid>http://www.simplegeek.com/permalink.aspx/225437fd-d020-4b7e-b57b-30924643ebbd</guid>
      <link>http://www.simplegeek.com/permalink.aspx/225437fd-d020-4b7e-b57b-30924643ebbd</link>
      <pubDate>Fri, 21 Feb 2003 07:22:39 GMT</pubDate>
      <description>&lt;P&gt;I think this is pretty trivial... I believe I just need 
to write some ASP.NET code to persist a cookie, but I figure I'll ask before I 
spend too much time... Basically I want to make my comment editor persist your 
name/email/site so that you don't have to fill it out everytime...&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/225437fd-d020-4b7e-b57b-30924643ebbd</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX rev 10</title>
      <guid>http://www.simplegeek.com/permalink.aspx/46471dac-d397-4a77-83c2-0448aecaa41f</guid>
      <link>http://www.simplegeek.com/permalink.aspx/46471dac-d397-4a77-83c2-0448aecaa41f</link>
      <pubDate>Thu, 20 Feb 2003 22:06:02 GMT</pubDate>
      <description>&lt;P&gt;OK, fixed a bunch of bugs that people reported. My RSS 
feed now validates (except for a validator bug that is reporting an escaped 
&amp;lt;/p&amp;gt; as a relative URL). Fixes include:&lt;/P&gt;
&lt;ul&gt;
&lt;li&gt;RSS feed only includes category (not dc:subject also) 

  
&lt;li&gt;Comment page tells you no HTML allowed 
  
&lt;li&gt;Comment page escapes email addresses 
  
&lt;li&gt;Comment page has a specified rows &amp;amp; cols for 
  textarea 
  
&lt;li&gt;All pages use URL munging instead of query strings
&lt;li&gt;Fixed some spelling errors in the proxy project&lt;/li&gt;        
&lt;/ul&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx10.zip"&gt;Source 
and binaries&lt;/A&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/46471dac-d397-4a77-83c2-0448aecaa41f</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Blogx 1.0.0001.0009</title>
      <guid>http://www.simplegeek.com/permalink.aspx/2fee4533-9dad-41ae-a6fc-fafbb1365ddc</guid>
      <link>http://www.simplegeek.com/permalink.aspx/2fee4533-9dad-41ae-a6fc-fafbb1365ddc</link>
      <pubDate>Wed, 19 Feb 2003 22:33:36 GMT</pubDate>
      <description>&lt;P&gt;Rev 9 is &lt;A 
href="http://www.simplegeek.com/blogx9.zip"&gt;available&lt;/A&gt;... mostly fixes in 
WinForms front end.&amp;nbsp;Some people at work are going to try and use this, so I 
figured I needed to fix some of the major usability issues. Also fixed a few 
minor issues with the web forms front end.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/2fee4533-9dad-41ae-a6fc-fafbb1365ddc</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Sourceforge or GotDotNet workspaces?</title>
      <guid>http://www.simplegeek.com/permalink.aspx/4a4d18b8-3efd-4c5d-90b3-2c8bf60632ae</guid>
      <link>http://www.simplegeek.com/permalink.aspx/4a4d18b8-3efd-4c5d-90b3-2c8bf60632ae</link>
      <pubDate>Tue, 18 Feb 2003 22:17:01 GMT</pubDate>
      <description>&lt;P&gt;I think I want to move the source code for BlogX up to 
some shared space... has anyone had any expierence with either sourceforge or 
gotdotnet workspaces... GDN seemed to offer a nice GUI interface, but WinCVS 
worked nicely also, and I seem to remember hearing that Sourceforge runs CVS 
over the internet (I can't validate because they are offline right now... not a 
good sign &amp;lt;G&amp;gt;).&lt;/P&gt;
&lt;P&gt;Thoughts?&lt;/P&gt;
&lt;P&gt;I guess another question - does anyone care if I put the source on a public 
server, or is dropping the source enough?&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/4a4d18b8-3efd-4c5d-90b3-2c8bf60632ae</comments>
      <category>Software</category>
    </item>
    <item>
      <title>BlogX ...8</title>
      <guid>http://www.simplegeek.com/permalink.aspx/c4a6be82-0e75-4644-a03d-43af015c4d74</guid>
      <link>http://www.simplegeek.com/permalink.aspx/c4a6be82-0e75-4644-a03d-43af015c4d74</link>
      <pubDate>Tue, 18 Feb 2003 20:42:46 GMT</pubDate>
      <description>&lt;P&gt;ok... first, I'm tired of the really long version 
numbers... I ran into an issue where I kept getting a null reference exception 
when I would try to get a new WinBlogX project (basically the link from the 
WinForms front end to a server). After some debugging I determined that if you 
have a WebMethod that returns an XmlSerializable object that has an Namespace="" 
in the attribute, the serializer crashes. Odd. I'll have to report this 
tomorrow.&lt;/P&gt;
&lt;P&gt;Anyway, the work around was kinda nasty, but in the end it worked. Basically 
I return an XmlNode instead of the strongly typed RssRoot type. Everything 
works.&lt;/P&gt;
&lt;P&gt;In addition, I updated the ASP.NET front end to use forms authentication. 
&lt;a href="http://www.ibuyspy.com"&gt;IBuySpy&lt;/a&gt; was the quick and dirty path to authentication magic. 
Wahoo!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.simplegeek.com/blogx8.zip"&gt;Binaries and sources&lt;/A&gt;.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/c4a6be82-0e75-4644-a03d-43af015c4d74</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0007</title>
      <guid>http://www.simplegeek.com/permalink.aspx/11c2ebe8-cce7-49ba-b9e2-f011231b307a</guid>
      <link>http://www.simplegeek.com/permalink.aspx/11c2ebe8-cce7-49ba-b9e2-f011231b307a</link>
      <pubDate>Tue, 18 Feb 2003 00:01:19 GMT</pubDate>
      <description>&lt;P&gt;Sorry to be a bother, but here is yet another 
&lt;A href="blogx7.zip"&gt;build&lt;/A&gt;. I ran into a bunch of issues with the winforms client's 
wait dialog, etc. Basically I'm forcing myself to use the winforms front end. I 
desparately need a real HTML editor and viewer... maybe that should be my next 
project?&lt;/P&gt;
&lt;P&gt;Another weird thing... My performance varies wildly on the web service calls. 
Normally their are taking ~2s to complete, but once in a while I get a session 
that takes&amp;nbsp;&amp;lt;100ms to make the request. I really don't know what is going 
on.&lt;/P&gt;
&lt;P&gt;Oh well... anyway, there are also some totally minor webforms changes 
also.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/11c2ebe8-cce7-49ba-b9e2-f011231b307a</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0006</title>
      <guid>http://www.simplegeek.com/permalink.aspx/39682fb0-4a9b-4973-a323-2fcacfcfb12f</guid>
      <link>http://www.simplegeek.com/permalink.aspx/39682fb0-4a9b-4973-a323-2fcacfcfb12f</link>
      <pubDate>Mon, 17 Feb 2003 19:08:29 GMT</pubDate>
      <description>&lt;p&gt;Another day, another &lt;a href="http://www.simplegeek.com/blogx6.zip"&gt;build&lt;/a&gt;... I moved all the configuration of the site into a separate directory... should make it easier for anyone to configure and/or update blogx... &lt;/p&gt;
&lt;p&gt;Not sure how often people want to get builds... once a day is probably a bit much... &lt;/p&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/39682fb0-4a9b-4973-a323-2fcacfcfb12f</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0005</title>
      <guid>http://www.simplegeek.com/permalink.aspx/627c30ef-d06b-45f5-a50c-f0268c437f60</guid>
      <link>http://www.simplegeek.com/permalink.aspx/627c30ef-d06b-45f5-a50c-f0268c437f60</link>
      <pubDate>Mon, 17 Feb 2003 08:04:35 GMT</pubDate>
      <description>Latest &lt;a href="http://www.simplegeek.com/blogx5.zip"&gt;source and binaries&lt;/a&gt;. Main fix here was a horrible wait dialog... I was seeing my web service calls take less that 40ms against localhost, but almost 500ms against www.simplegeek.com. I need to investigate, but in the mean time at least the dialog and async web service invocation keeps the UI from hanging completely.</description>
      <comments>http://www.simplegeek.com/commentview.aspx/627c30ef-d06b-45f5-a50c-f0268c437f60</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0004</title>
      <guid>http://www.simplegeek.com/permalink.aspx/9cd3f67c-c100-4804-b142-0a83f9af8914</guid>
      <link>http://www.simplegeek.com/permalink.aspx/9cd3f67c-c100-4804-b142-0a83f9af8914</link>
      <pubDate>Sun, 16 Feb 2003 18:24:39 GMT</pubDate>
      <description>&lt;p&gt;Final &lt;a href="http://www.simplegeek.com/blogx4.zip"&gt;source&lt;/a&gt; for the day. This marks 1 week of working on the software. I think i'm going to slow down and not play with it for a while (or if I do, I won't be uploading it contastantly).&lt;/p&gt;
&lt;p&gt;Added some more RSS features and made sure it works correctly in Syndirella. I still can't figure out why the WinForms front end is so slow once I go against my real server. The expierence of using the web services in IE is much faster than what I'm seeing. Oh well, it gives me something to work on.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note&lt;/b&gt; the last post was done through the WinForms front end, this one was done through the WebForms front end. I love technology!&lt;/p&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/9cd3f67c-c100-4804-b142-0a83f9af8914</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>Radio is gone!</title>
      <guid>http://www.simplegeek.com/permalink.aspx/475409f8-3d96-4582-8254-77b9d2dab729</guid>
      <link>http://www.simplegeek.com/permalink.aspx/475409f8-3d96-4582-8254-77b9d2dab729</link>
      <pubDate>Sun, 16 Feb 2003 16:55:37 GMT</pubDate>
      <description>&lt;P&gt;Wahoo! BlogX is now my primary software. I think this is 
good enough. You can get to the old homepage &lt;a href="http://www.simplegeek.com/radio.html"&gt;here&lt;/a&gt;, and all the comments, etc, 
are still live there - however I won't be adding new entries.&lt;/P&gt;
&lt;P&gt;My new RSS feed is &lt;a href="http://www.simplegeek.com/blogxbrowsing.asmx/GetRss?"&gt;here&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;I just tried (for the first time) using my WinForms front end across the 
internet. Queries are a bit slow. Running off local host is almost 
instantaneous, so I have to imagine that this is due to network issues. I'll 
probably have to tweak the application to do more automatic caching.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;I'll post new source once I get the bugs ironed out from my live 
dogfooding!&lt;/EM&gt;&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/475409f8-3d96-4582-8254-77b9d2dab729</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0003</title>
      <guid>http://www.simplegeek.com/permalink.aspx/204</guid>
      <link>http://www.simplegeek.com/permalink.aspx/204</link>
      <pubDate>Sun, 16 Feb 2003 13:14:57 GMT</pubDate>
      <description>&lt;P&gt;Lots of changes &lt;A href="http://www.simplegeek.com/blogx3.zip"&gt;here&lt;/A&gt;... Added a CRUD web service front end and a query web service front end. There are now 7 projects in the sources:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;BlogCmd &lt;/STRONG&gt;- command line radio&amp;nbsp;to blogx converter&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;BlogXRuntime &lt;/STRONG&gt;- data model, shared by all&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;BlogXServiceProxy &lt;/STRONG&gt;- hand tweaked web service proxy&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;WeblogX &lt;/STRONG&gt;- ASP.NET front end &amp;amp; web services&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;WinBlogX &lt;/STRONG&gt;- WinForms front end (talks to web services)&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;WinBlogXControls &lt;/STRONG&gt;- Shared controls between WinBlogX and WoodBlog&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;WoodBlog &lt;/STRONG&gt;- "Legacy" WinForms front end&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;WoodBlog was done to directly whack on the XML files. This was more effiecient but it introduced the problem of two places you can edit (through the web and client). I decided to just go with a single data store, on the server, and then rewrite the client to talk through web services.&lt;/P&gt;
&lt;P&gt;BlogXServiceProxy was needed because I wanted the objects seen on the client to be from BlogXRuntime. Since all the data model is XML Serializable, I just removed the XSD generated data classes and viola!&lt;/P&gt;
&lt;P&gt;The WinBlogXControls currently contains an HTML editor and viewer. Both are actually the same control, and require VS.NET to be installed to use. I'm going to search around for the write code to do these correctly, but for now it works for me.&lt;/P&gt;
&lt;P&gt;I have two web services exposed now - BlogXEditing and BlogXBrowsing. The browsing service is basically all the entry points you would need to write a browsing application. Including categories, etc. Right now it is still missing a "post a comment" on the browsing service. The editing service is a simple CRUD api set for manipulating the blog entries. Today it is secured with a crappy password argument on all the methods. I'll work on real security later.&lt;/P&gt;
&lt;P&gt;Once I can get reliable FTP working for uploading new versions, I am ready to switch from Radio. My plan will be to keep the existing Radio HTML files up on the server so that permalinks work, but all new content will be on the BlogX version.&amp;nbsp;However, I still can't make the switch because I'm having difficulties uploading my software.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/204</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>License for BlogX?</title>
      <guid>http://www.simplegeek.com/permalink.aspx/203</guid>
      <link>http://www.simplegeek.com/permalink.aspx/203</link>
      <pubDate>Sat, 15 Feb 2003 10:32:26 GMT</pubDate>
      <description>&lt;P&gt;&lt;A href="http://www.kuro5hin.org/user/Carnage4Life/diary/"&gt;Dare&lt;/A&gt; asked a good question in the comments &lt;A href="http://www.simplegeek.com/2003/02/15.html#a201"&gt;below&lt;/A&gt;.&amp;nbsp;What is the license for BlogX? I put a copyright at the top of each file, but I didn't think about enough of what I really want here. I guess I'm looking for a license that provides the following:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Free (no charge) use by anyone with or without modification (free)&lt;/LI&gt;
&lt;LI&gt;Anyone using the source or binaries I provide must hold me harmless (no warranties)&lt;/LI&gt;
&lt;LI&gt;Any product that uses the source or binaries can use any license they wish (no viral licensing)&lt;/LI&gt;
&lt;LI&gt;No limitations on usage in acedemic or commercial spaces (for your use anywhere)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Given that it only took me ~15 hours of coding, I can't imagine there is all that much IP in the source, but I don't want this to come around and bite me in the ass. :)&lt;/P&gt;
&lt;P&gt;Any suggestions on a good license?&amp;nbsp;GPL won't work because of the viral stuff... MS Shared Source won't work because of the acedemic limitations... other suggestions?&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/203</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>RSS 2.0 as my native format... </title>
      <guid>http://www.simplegeek.com/permalink.aspx/202</guid>
      <link>http://www.simplegeek.com/permalink.aspx/202</link>
      <pubDate>Sat, 15 Feb 2003 03:20:52 GMT</pubDate>
      <description>&lt;P&gt;&lt;A href="http://gary.burd.info/content/news/14.html"&gt;Gary&lt;/A&gt; makes an interesting point... at a minimum why don't I use RSS 2.0 as the native XML format for my blogging tool... hmm... &lt;/P&gt;
&lt;P&gt;At this point i'm convinced that the "per-day" or "per-entry" debate is largely moot... either way I'll end up with a cache for the other direction... &lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/202</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX source code</title>
      <guid>http://www.simplegeek.com/permalink.aspx/201</guid>
      <link>http://www.simplegeek.com/permalink.aspx/201</link>
      <pubDate>Sat, 15 Feb 2003 02:56:24 GMT</pubDate>
      <description>&lt;P&gt;I'm not happy with the source, it's mostly slapped together on various late nights, but I figure there is nothing like a little peer review to clean your act you. You can download the &lt;A href="http://www.simplegeek.com/blogx2.zip"&gt;source and binaries&lt;/A&gt; (one zip).&lt;/P&gt;
&lt;P&gt;There are no instructions, almost no comments, no support, and no warrenties on any of this - it works on my machine, and that's all I can say :)&lt;/P&gt;
&lt;P&gt;Please post feedback in the comments for this, or, of course, on your blog! :)&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/201</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX 1.0.0001.0002</title>
      <guid>http://www.simplegeek.com/permalink.aspx/200</guid>
      <link>http://www.simplegeek.com/permalink.aspx/200</link>
      <pubDate>Sat, 15 Feb 2003 02:46:35 GMT</pubDate>
      <description>&lt;P&gt;More web frontend work... referrers are now being tracked.&amp;nbsp;I just write out the UrlReferrer and Url from the request when pages are hit. This seems like the wrong model... is there a better way to track referrers?&lt;/P&gt;
&lt;P&gt;Also did some minor HTML cleanup (more divs, etc.) and also added support for navigation links like Radio has.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/200</comments>
      <category>BlogX</category>
    </item>
    <item>
      <title>BlogX data...</title>
      <guid>http://www.simplegeek.com/permalink.aspx/199</guid>
      <link>http://www.simplegeek.com/permalink.aspx/199</link>
      <pubDate>Sat, 15 Feb 2003 02:42:12 GMT</pubDate>
      <description>&lt;P&gt;One of the designs that I'm not happy with is how i'm handling file path resolving. Right now I've got a static (re: global) delegate that is called to resolve files. This allows me to map this to a Server.MapPath in the web case, and a Path.Combine on the client. The problem is that the "map" ends up being per app domain - which works great for ASP.NET, but sucks for WinForms... At this point I'm not going to rewrite it, but I'm just not happy with the design.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; I've created a &lt;A href="http://www.simplegeek.com/categories/blogx/"&gt;BlogX&lt;/A&gt; category for tracking progress and comments on this specifically.&lt;/P&gt;</description>
      <comments>http://www.simplegeek.com/commentview.aspx/199</comments>
      <category>BlogX</category>
    </item>
  </channel>
</rss>