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

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Daniel E. Markle's Blog - Comments</title>
    <link>http://www.ashtech.net/~syntax/blog/</link>
    <description>Daniel E. Markle's Blog - Blatherings on Technology and Life</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 1.2.1 - http://www.s9y.org/</generator>
    <managingEditor>syntax@ashtech.net</managingEditor>
<webMaster>syntax@ashtech.net</webMaster>

    <image>
        <url>http://ashtech.net/~syntax/blog/uploads/128blackcat.png</url>
        <title>RSS: Daniel E. Markle's Blog - Comments - Daniel E. Markle's Blog - Blatherings on Technology and Life</title>
        <link>http://www.ashtech.net/~syntax/blog/</link>
        <width></width>
        <height></height>
    </image>

<item>
    <title>linda: Struts html:text and the 'disabled' flag</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/25-Struts-htmltext-and-the-disabled-flag.html#c914</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/25-Struts-htmltext-and-the-disabled-flag.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=25</wfw:comment>

    

    <author>syntax@ashtech.net (linda)</author>
    <content:encoded>
    Excellent. I was hitting on my head for 2 weeks about this. God bless you. 
    </content:encoded>

    <pubDate>Sun, 16 Nov 2008 12:17:04 -0500</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/25-guid.html#c914</guid>
    
</item>
<item>
    <title>Anonymous: Netbeans svn+ssh Username Glitch</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/93-Netbeans-svn+ssh-Username-Glitch.html#c913</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/93-Netbeans-svn+ssh-Username-Glitch.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=93</wfw:comment>

    

    <author>syntax@ashtech.net ()</author>
    <content:encoded>
    My experience w/ this bug is that I would fill it in as&lt;br /&gt;
svn+ssh://username@server/dir1/dir2&lt;br /&gt;
and tunnel method&lt;br /&gt;
ssh -l username&lt;br /&gt;
&lt;br /&gt;
...and it would work initially, but sometime later (maybe after restarting Netbeans?) it would break as you described.&lt;br /&gt;
&lt;br /&gt;
Your workaround (assuming it works, I haven&#039;t tried) sounds great if you&#039;re creating a new repository, but doesn&#039;t explain what to do if the repository is already created.  So here&#039;s what I did:&lt;br /&gt;
&lt;br /&gt;
First, I did a grep to find all the files / lines in my source directory that would have the info I needed to change.&lt;br /&gt;
&lt;br /&gt;
cd workingdir&lt;br /&gt;
grep -R servername .&lt;br /&gt;
&lt;br /&gt;
I noted that none of them had my username@ preceding servername, as expected.  I found that all files that needed to be changed were in .svn/ folders, and all were named &quot;entries&quot;.  Doing a listing on these files revealed that they were all read only, so if I was to change them, I&#039;d have to&lt;br /&gt;
&lt;br /&gt;
chmod u+w `find . -name entries`&lt;br /&gt;
&lt;br /&gt;
I proceeded to insert the &quot;username@&quot; in the files using regexxer.  (I&#039;m using Ubuntu, so I installed it directly from the universe repository.  Here is a blog post about it:  http://dailypackage.fedorabook.com/index.php?/archives/137-Productive-Monday-Regexxer-GUI-search-replace.html .  The regexxer homepage is http://regexxer.sourceforge.net/ .  If you need this functionality on Windows, I hear jEdit may work.)&lt;br /&gt;
&lt;br /&gt;
I navigated to the svn working copy on the left, and checked the &quot;hidden&quot; box (recursive was already checked).  In the search field, I put &quot;svn\+ssh:\/\/servername&quot; (no quotes).  (For users familiar w/ regular expressions, note that the plus sign needs to be escaped here, whereas it doesn&#039;t for a grep search, or for sed replacement.)&lt;br /&gt;
&lt;br /&gt;
I copied the search text, pasted it in the Replace, and inserted added the obvious so it looked like &quot;svn\+ssh:\/\/username@servername&quot; (no quotes).&lt;br /&gt;
&lt;br /&gt;
I clicked Find so it would show me the files containing the search string, and there&#039;s a preview of the first replacement toward the bottom right.  It all looked good, so I clicked &quot;All Files&quot;, which performed the replacement.&lt;br /&gt;
&lt;br /&gt;
Lastly, I undid the permissions change at the command line (while still in the workingdir):&lt;br /&gt;
&lt;br /&gt;
chmod u-w `find . -name entries`&lt;br /&gt;
&lt;br /&gt;
So far, so good.  Hopefully Netbeans won&#039;t strip it again.  At least now if it does, I can fight back.  If it happens repeatedly, I can make a shell script using perl or sed.&lt;br /&gt;
&lt;br /&gt;
------------------------------&lt;br /&gt;
&lt;br /&gt;
BTW, I was using Netbeans 6.1, and I&#039;m currently using NetBeans 6.5 RC2.  I experienced this bug on both, though in 6.5 RC2 it may have been only after I migrated from 6.1, I really don&#039;t know.&lt;br /&gt;
&lt;br /&gt;
...Has no one submitted this bug yet?  If not, do you know where one could do so? 
    </content:encoded>

    <pubDate>Sun, 02 Nov 2008 13:59:28 -0500</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/93-guid.html#c913</guid>
    
</item>
<item>
    <title>Anonymous: APC Back-UPS XS 1500</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#c912</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=94</wfw:comment>

    

    <author>syntax@ashtech.net ()</author>
    <content:encoded>
    Isn&#039;t it obvious that your meter is reading 100watts low?  Mine happens to read 30watts low for various loads. 
    </content:encoded>

    <pubDate>Wed, 29 Oct 2008 16:46:27 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/94-guid.html#c912</guid>
    
</item>
<item>
    <title>Craig: Java Swing Browser Launching</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/91-Java-Swing-Browser-Launching.html#c911</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/91-Java-Swing-Browser-Launching.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=91</wfw:comment>

    

    <author>craig399@gmail.com (Craig)</author>
    <content:encoded>
    Does anyone by chance know of a handy way to launch a browser behind the scenes and then take a screen capture of the client arew once the page is loaded? 
    </content:encoded>

    <pubDate>Wed, 29 Oct 2008 11:32:05 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/91-guid.html#c911</guid>
    
</item>
<item>
    <title>some1: APC Back-UPS XS 1500</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#c910</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=94</wfw:comment>

    

    <author>syntax@ashtech.net (some1)</author>
    <content:encoded>
    LCD Full Time Display Mode&lt;br /&gt;
The LCD can be set to full time display mode by performing the following steps:&lt;br /&gt;
1. Ensure the unit is connected to utility input power, and the power on/off switch&lt;br /&gt;
is turned off (no power is supplied to the output connectors).&lt;br /&gt;
2. Press the DISPLAY/HOLD TO MUTE pushbutton, and hold it in for 10&lt;br /&gt;
seconds. All five blocks in the Battery Capacity bar will flash off and on, which&lt;br /&gt;
indicates the unit is in pushbutton programming mode.&lt;br /&gt;
Note: A rotating selection method is used that allows you to step through the&lt;br /&gt;
display modes using the DISPLAY/HOLD TO MUTE button until you&lt;br /&gt;
select the display mode you want. For example, in Power Save mode&lt;br /&gt;
none of the blocks are lit. If all five of the blocks are lit, it indicates&lt;br /&gt;
the LCD is in full time mode, and will remain on full time.&lt;br /&gt;
3. When you rotate through the selections and reach the display mode you want,&lt;br /&gt;
press and release the DISPLAY/HOLD TO MUTE button to select the display&lt;br /&gt;
mode.&lt;br /&gt;
Note: If no buttons are pushed, and no operations occur for five seconds, the&lt;br /&gt;
unit automatically exits pushbutton programming mode.&lt;br /&gt;
4. Once you have selected the desired display mode, continue with normal&lt;br /&gt;
operations. 
    </content:encoded>

    <pubDate>Tue, 28 Oct 2008 20:27:32 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/94-guid.html#c910</guid>
    
</item>
<item>
    <title>Martijn de Munnik: Solaris 10 Partitioning, RAID, and ZFS</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/50-Solaris-10-Partitioning,-RAID,-and-ZFS.html#c909</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/50-Solaris-10-Partitioning,-RAID,-and-ZFS.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=50</wfw:comment>

    

    <author>martijn@youngguns.nl (Martijn de Munnik)</author>
    <content:encoded>
    To make an AMD system (in my case a Sun Fire X2100M2) bootable I also did the following steps;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;To /etc/system I added these lines:&lt;/strong&gt;&lt;br /&gt;
set md:mirrored_root_flag=1&lt;br /&gt;
set md_mirror:md_resync_bufsz = 2048&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;To /boot/solaris/bootenv.rc:&lt;/strong&gt;&lt;br /&gt;
setprop altbootpath &#039;/pci@0,0/pci-ide@5/ide@1/cmdk@0,0:a&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Make the partitions on both discs active (format-&gt;fdisk).&lt;/strong&gt; 
    </content:encoded>

    <pubDate>Tue, 21 Oct 2008 07:36:58 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/50-guid.html#c909</guid>
    
</item>
<item>
    <title>indiehead: Data Scrub with Linux RAID or Die</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/53-Data-Scrub-with-Linux-RAID-or-Die.html#c908</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/53-Data-Scrub-with-Linux-RAID-or-Die.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=53</wfw:comment>

    

    <author>indiehead@gmail.com (indiehead)</author>
    <content:encoded>
    was told about this after meeting up with some friends at LRUG, so got to put this in place quickly.&lt;br /&gt;
&lt;br /&gt;
really glad he mentioned it,&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
John. 
    </content:encoded>

    <pubDate>Tue, 14 Oct 2008 05:19:33 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/53-guid.html#c908</guid>
    
</item>
<item>
    <title>zazuge: Java Date Manipulation Annoyances</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/54-Java-Date-Manipulation-Annoyances.html#c907</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/54-Java-Date-Manipulation-Annoyances.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=54</wfw:comment>

    

    <author>abderdar@yahoo.fr (zazuge)</author>
    <content:encoded>
    thanks for the info it helped me alot&lt;br /&gt;
especialy the add thingy&lt;br /&gt;
mabye it&#039;s better to wrapup higher level date manip functionality in a singleton date class&lt;br /&gt;
so we won&#039;t have to repeat those cryptic phrases ;) 
    </content:encoded>

    <pubDate>Sat, 11 Oct 2008 16:17:28 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/54-guid.html#c907</guid>
    
</item>
<item>
    <title>Daniel E. Markle: PostgreSQL and Ruby on OS X</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/112-PostgreSQL-and-Ruby-on-OS-X.html#c906</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/112-PostgreSQL-and-Ruby-on-OS-X.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=112</wfw:comment>

    

    <author>syntax@ashtech.net (Daniel E. Markle)</author>
    <content:encoded>
    Check for a misconfigured or missing pg_config. Try running /opt/PostgreSQL/8.3/bin/pg_config. If that command returns invalid paths (or the command or any shown elements are missing or wrong) the gem will never find the files it needs. If you are using packages, you may need the development versions. 
    </content:encoded>

    <pubDate>Sat, 11 Oct 2008 08:42:59 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/112-guid.html#c906</guid>
    
</item>
<item>
    <title>Juan Escajadillo: PostgreSQL and Ruby on OS X</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/112-PostgreSQL-and-Ruby-on-OS-X.html#c905</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/112-PostgreSQL-and-Ruby-on-OS-X.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=112</wfw:comment>

    

    <author>neurochild@gmail.com (Juan Escajadillo)</author>
    <content:encoded>
    Hi there.&lt;br /&gt;
&lt;br /&gt;
I know you&#039;re working on Mac, but I think you installed your PostgreSQL via an installer and then installed the &quot;pg&quot; gem for Ruby. I&#039;m having a problem here: I&#039;m trying to install the same gem, pg-0.7.9.2008.10.05 (The last version). I followed similar instructions, but instead, I get this...&lt;br /&gt;
&lt;br /&gt;
PATH=/opt/PostgreSQL/8.3/bin:$PATH gem install pg&lt;br /&gt;
Building native extensions.  This could take a while...&lt;br /&gt;
ERROR:  Error installing pg:&lt;br /&gt;
        ERROR: Failed to build gem native extension.&lt;br /&gt;
&lt;br /&gt;
/usr/local/bin/ruby extconf.rb install pg&lt;br /&gt;
checking for main() in -lpq... no&lt;br /&gt;
checking for main() in -llibpq... no&lt;br /&gt;
checking for main() in -lms/libpq... no&lt;br /&gt;
**&lt;strong&gt; extconf.rb failed **&lt;/strong&gt;&lt;br /&gt;
Could not create Makefile due to some reason, probably lack of&lt;br /&gt;
necessary libraries and/or headers.  Check the mkmf.log file for more&lt;br /&gt;
details.  You may need configuration options.&lt;br /&gt;
&lt;br /&gt;
Provided configuration options:&lt;br /&gt;
        --with-opt-dir&lt;br /&gt;
        --without-opt-dir&lt;br /&gt;
        --with-opt-include&lt;br /&gt;
        --without-opt-include=${opt-dir}/include&lt;br /&gt;
        --with-opt-lib&lt;br /&gt;
        --without-opt-lib=${opt-dir}/lib&lt;br /&gt;
        --with-make-prog&lt;br /&gt;
        --without-make-prog&lt;br /&gt;
        --srcdir=.&lt;br /&gt;
        --curdir&lt;br /&gt;
        --ruby=/usr/local/bin/ruby&lt;br /&gt;
        --with-pg-dir&lt;br /&gt;
        --without-pg-dir&lt;br /&gt;
        --with-pg-include&lt;br /&gt;
        --without-pg-include=${pg-dir}/include&lt;br /&gt;
        --with-pg-lib&lt;br /&gt;
        --without-pg-lib=${pg-dir}/lib&lt;br /&gt;
        --with-pqlib&lt;br /&gt;
        --without-pqlib&lt;br /&gt;
        --with-libpqlib&lt;br /&gt;
        --without-libpqlib&lt;br /&gt;
        --with-ms/libpqlib&lt;br /&gt;
        --without-ms/libpqlib&lt;br /&gt;
Could not find PostgreSQL build environment (libraries &amp;amp; headers): Makefile not created&lt;br /&gt;
&lt;br /&gt;
It mentions 3 files missing as you can see, but that&#039;s impossible, because I installed PostgreSQL 8.3.4 via a Linux installer. What could be wrong? The version I&#039;m using now, ruby-pg-0.7.9.2008.01.28, can be installed flawlessly and doesn&#039;t give me any errors, but i&#039;m worried about the ActiveRecord support my gem doesn&#039;t have and the latest version does.&lt;br /&gt;
&lt;br /&gt;
Can you help me? I&#039;m working with a company in a project with Rails 2.1 and PostgreSQL 8.3.4. It&#039;s urgent!!! Any ideas?&lt;br /&gt;
&lt;br /&gt;
Contact me here: neurochild@gmail.com&lt;br /&gt;
&lt;br /&gt;
Greetings and thanks in advance.&lt;br /&gt;
&lt;br /&gt;
Juan Escajadillo. 
    </content:encoded>

    <pubDate>Fri, 10 Oct 2008 14:14:27 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/112-guid.html#c905</guid>
    
</item>
<item>
    <title>Sandy: Homemade Ice Cream Recipe for 6 quart Churn</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/107-Homemade-Ice-Cream-Recipe-for-6-quart-Churn.html#c904</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/107-Homemade-Ice-Cream-Recipe-for-6-quart-Churn.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=107</wfw:comment>

    

    <author>cslehigh@gmail.com (Sandy)</author>
    <content:encoded>
    Daniel, Your recipe is very much like our own. We too have made ice cream for many many years. Here is what I have found that helps the rock hard problem. I use no whole milk now. Swiched to half and half. More costly and fattening but, what the hey.--Sandy 
    </content:encoded>

    <pubDate>Wed, 03 Sep 2008 21:55:37 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/107-guid.html#c904</guid>
    
</item>
<item>
    <title>Feng Zhang: Hibernate Annotations Schema Handling</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/41-Hibernate-Annotations-Schema-Handling.html#c902</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/41-Hibernate-Annotations-Schema-Handling.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=41</wfw:comment>

    

    <author>fzhangj2ee@gmail.com (Feng Zhang)</author>
    <content:encoded>
    In addition to change the element in hibernate.cfg.xml, need to change it in HibernateUtil.java 
    </content:encoded>

    <pubDate>Mon, 18 Aug 2008 12:29:17 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/41-guid.html#c902</guid>
    
</item>
<item>
    <title>joe: APC Back-UPS XS 1500</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#c901</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/94-APC-Back-UPS-XS-1500.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=94</wfw:comment>

    

    <author>jet472000@yahoo.com (joe)</author>
    <content:encoded>
    just how bad is the load featue on the lcd?  also, is there a way to keep it on always so it doesnt go off after 10 sec? 
    </content:encoded>

    <pubDate>Tue, 05 Aug 2008 02:52:40 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/94-guid.html#c901</guid>
    
</item>
<item>
    <title>Petr Jiricka: Netbeans Javascript and CSS Support</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/55-Netbeans-Javascript-and-CSS-Support.html#c898</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/55-Netbeans-Javascript-and-CSS-Support.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=55</wfw:comment>

    

    <author>petr.jiricka@sun.com (Petr Jiricka)</author>
    <content:encoded>
    The JavaScript editor is definitely supposed to work within JSP files; if it does not, then that&#039;s a bug, and we would appreciate if you could submit a bug report through http://www.netbeans.org/issues/enter_bug.cgi. Also, I recommend using NetBeans 6.1 and downloading all the latest updates from the Update Center - they contain several important bugfixes in the JavaScript/JSP editing areas. 
    </content:encoded>

    <pubDate>Mon, 28 Jul 2008 11:02:39 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/55-guid.html#c898</guid>
    
</item>
<item>
    <title>Patrick: First Bicycle Commute</title>
    <link>http://www.ashtech.net/~syntax/blog/archives/118-First-Bicycle-Commute.html#c897</link>
            <category></category>
    
    <comments>http://www.ashtech.net/~syntax/blog/archives/118-First-Bicycle-Commute.html#comments</comments>
    <wfw:comment>http://www.ashtech.net/~syntax/blog/wfwcomment.php?cid=118</wfw:comment>

    

    <author>200807-ashtech@haller.ws (Patrick)</author>
    <content:encoded>
    w00000! Have fun with that. Not sure how much biking you&#039;ve done, so you might want to watch out for the seat chafing unfun. ;) 
    </content:encoded>

    <pubDate>Fri, 25 Jul 2008 01:12:13 -0400</pubDate>
    <guid isPermaLink="false">http://www.ashtech.net/~syntax/blog/archives/118-guid.html#c897</guid>
    
</item>

</channel>
</rss>