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

<rdf:RDF
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns="http://purl.org/rss/1.0/"
 xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
 xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:syn="http://purl.org/rss/1.0/modules/syndication/"
>

<channel rdf:about="http://dast.freeshell.org">
<title>LAB-Y</title>
<link>http://dast.freeshell.org</link>
<description>Notes from Laboratory Y.</description>
<dc:language>en-us</dc:language>
<dc:date>2005-04-07T19:41-05:00</dc:date>
<dc:subject>Notes from Laboratory Y</dc:subject>
<syn:updatePeriod>hourly</syn:updatePeriod>
<syn:updateFrequency>1</syn:updateFrequency>
<syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
<items>
 <rdf:Seq>
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/04/07/194141" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/03/29/115223" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/03/28/201259" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/03/21/222605" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/03/21/221750" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/02/16/071859" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2005/01/03/222300" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/12/01/124023" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/10/24/223724" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/10/04/192958" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/07/25/173120" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/07/14/211612" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/07/06/202749" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/07/02/123217" />
  <rdf:li rdf:resource="http://dast.freeshell.org/blog/rarchive/2004/06/30/205952" />
 </rdf:Seq>
</items>
</channel>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/04/07/194141">
<title>Disabling Windows XP Detection of Devices on Serial Ports (serenum)</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/04/07/194141</link>
<description>&lt;p&gt;Or: Stopping Windows from freaking out ancient or non-standard serial peripherals...&lt;/p&gt;

&lt;p&gt;Recently, I ran into a problem where an XP box, during bootup, was
freaking out a peripheral attached to the box via a COM port.  I won't
get into the details of why the device is so sensitive, but I'll
simply say that the usual RS232 flow control lines were not used for
flow control, but instead to do some very delicate operations.  During
bootup, XP was pulsing the DTR and RTS lines, perhaps looking for a
serial mouse or modem or to do something else.  We didn't know why or
how to make it stop.  This short article describes the cause and how
to fix it.&lt;/p&gt;

&lt;h3&gt;Windows detecting a serial mouse incorrectly?&lt;/h3&gt;

&lt;p&gt;My first thought was that &lt;a
href=&quot;http://support.microsoft.com/default.aspx?scid=kb;en-us;q283063&quot;&gt;XP
was looking for a serial mouse&lt;/a&gt;.  That seems to be a common problem
with old serial devices attached to an XP and 2000 boxen, especially
where those devices are continuously outputting data.  XP often
detects them as serial mice incorrectly.  However, no such device
showed up in the device manager and we didn't notice any weirdness
associated with the mouse, which I would have expected if XP was
interpreting random incoming data as a serial mouse&amp;mdash;the mouse
should be jumping around on the screen or acting weird.  But it
wasn't.&lt;/p&gt;

&lt;p&gt;Serial mice in NT/2000/XP can be detected by &lt;a
href=&quot;http://iws.ccccd.edu/btaylor/XP%20Pro%20PowerPoints/Ch18.ppt&quot;
title=&quot;Power Point presentation that explains the 2000/XP Boot Process&quot;&gt;the
NTDETECT.COM program, run by the NTLDR (NT Loader)&lt;/a&gt; before the
kernel has taken control.  &lt;a
href=&quot;http://support.microsoft.com/default.aspx?scid=kb;en-us;833721&quot;&gt;In
NT4, this could be disabled by passing the /NOSERIALMICE flag in
boot.ini, and in 2000/XP by the /FASTDETECT flag&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;/fastdetect:comnumber&lt;/strong&gt;&lt;br /&gt;
This switch turns off serial and bus mouse detection in the Ntdetect.com file for the specified port. Use this switch if you have a component other than a mouse that is attached to a serial port during the startup process. For example, type /fastdetect:comnumber, where number is the number of the serial port. Ports may be separated with commas to turn off more than one port. If you use /fastdetect, and you do not specify a communications port, serial mouse detection is turned off on all communications ports.&lt;/p&gt;
&lt;p&gt;Note In earlier versions of Windows, including Windows NT 4.0, this switch was named /noserialmice.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;a href=&quot;http://support.microsoft.com/default.aspx?scid=kb;en-us;833721&quot;&gt;Source&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;On this XP box, by default, we always passed in /FASTDETECT in
boot.ini, so this wasn't the problem.  Something else had to be
causing the behavior I was seeing.&lt;/p&gt;

&lt;h3&gt;Disabling enumeration in the Serenum service.&lt;/h3&gt;

&lt;p&gt;The only other method I could find to possibly stop Windows from
probing devices on this serial port was to monkey with the &lt;a
href=&quot;http://www.microsoft.com/whdc/system/CEC/serddvr.mspx&quot;&gt;Serenum
service&lt;/a&gt;.  Apparently in 2000/XP, code was added to check a
registry value called &lt;em&gt;SkipEnumerations&lt;/em&gt; in a specific key on a
per-port basis.  Setting this value would keep Windows from probing
devices on this COM port.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Additional Features in Serenum.sys&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Windows supports a variety of multiport serial adapters through third-party drivers from manufacturers. In the case of high-capacity adapters (16 ports or more), boot time can be delayed on Windows 2000 when Serenum.sys scans each port for attached devices. To improve the boot time and the related user experience, expanded control over the serial port scanning has been added to Serenum.sys in Windows XP. These options can be controlled by a new REG_DWORD registry value, SkipEnumerations, as described in this article.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Serenum Features in Windows XP&lt;/strong&gt;&lt;br /&gt;
&gt;Windows XP addresses issues with the Serenum driver and reduces the boot time required to start machines, even with high-capacity adapters (16 ports or more) attached. An additional registry key is also defined in Windows XP, allowing hardware vendors to control Serenum.sys, forcing it to skip port scanning during system startup. This feature is achieved by setting the following registry key:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\%Enumerator%\%Device_ID%\%Instance_ID%\Device&amp;nbsp;Parameters\SkipEnumerations&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;The use of SkipEnumerations in the Device&amp;nbsp;Parameters key must be used on a per-port basis. There is no global option to change the behavior of all ports at once.&lt;br /&gt;The REG_DWORD value name, SkipEnumerations, can contain the following data:&lt;/p&gt;

&lt;p&gt;Zero or non-existent: Default Serenum behavior; each port will be scanned during every system boot.&lt;br /&gt;For example: SkipEnumerations\REG_DWORD\0x00000000 (0)&lt;/p&gt;
	
&lt;p&gt;0xffffffff: Serenum will never scan the ports, either automatically or through user-initiated scans in Device Manager or Hardware Wizard. Any device attached to a port with this value in the registry will need to be installed manually.&lt;br /&gt;For example: SkipEnumerations\REG_DWORD\0xffffffff (4294967295)&lt;/p&gt;
	

&lt;p&gt;If any other value is used, Serenum will skip that number of scans (boots or user-initiated). The successive scan will behave normally (similar to the setting of zero). Once the value goes to zero, it will stay at zero until Serenum.sys is unloaded and reloaded. At this point, it will be reset to the original registry value.&lt;br /&gt;For example: SkipEnumerations\REG_DWORD\0x00000003 (3)&lt;/p&gt;

&lt;p&gt;In this example, the data value is set to 3. Serenum will skip 3 scans. After the 3 scans, it will perform a normal scan.&lt;/p&gt;

&lt;p&gt;The Windows XP version of Serenum.sys has been enhanced to automatically speed up the boot process when high-capacity multiport serial adapters are installed. With the addition of SkipEnumerations support in Serenum.sys, vendors have greater control over how COM ports behave during the boot process. Vendors should examine these new registry options and evaluate whether the user experience can be improved.&lt;/p&gt;

&lt;p&gt;&lt;cite&gt;&lt;a href=&quot;http://www.microsoft.com/whdc/system/CEC/serddvr.mspx&quot;&gt;Source&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The technique was clear on everything except for exactly what key
to put the &lt;em&gt;SkipEnumerations&lt;/em&gt; value in.  What key was this?
&lt;br /&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\%Enumerator%\%Device_ID%\%Instance_ID%\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;What were the values of %Enumerator%, %Device_ID%, and
%Instance_ID% supposed to be?  I found these values by looking in the
key following key for Serenum.&lt;br /&gt;
&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\serenum\Enum&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;In this key there is one value per COM port on the system.  Each
value had a name of just a single digit, starting at 0.  The below
image shows the registry editor with the Enum key selected and the
various values that it contains.&lt;/p&gt;

&lt;div class=&quot;lycenter&quot;&gt;
&lt;img src=&quot;http://dast.freeshell.org/files/images/serenum_enum_key.png&quot; alt=&quot;Image showing registry editor with the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\serenum\Enum highlighted&quot; /&gt;
&lt;/div&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;The values named 0 through 3 corresponded to the COM ports on
the box.  The box in question had one on-board serial port, two serial
ports on a PCI card, and one USB-to-serial adapter for a 4th port.
Notice the values of 0-3&amp;mdash;these values are the
%Enumerator%\%Device_ID%\%Instance_ID% that I needed to identify where
to put the SkipEnumerations value.  So, looking at 0, the value was
&lt;br /&gt;&lt;tt&gt;PCI\VEN_1407&amp;amp;DEV_0110&amp;amp;SUBSYS_00000000&amp;amp;REV_00\4&amp;amp;2af9ed5&amp;amp;0&amp;amp;00F0&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;Breaking this down, the %Enumerator% is PCI, the %Device_ID% is
&quot;VEN_1407&amp;amp;DEV_0110&amp;amp;SUBSYS_00000000&amp;amp;REV_00&quot;, and the
%Instance_ID% is 4&amp;amp;2af9ed5&amp;amp;0&amp;amp;00F0.  This means if I
wanted to disable probing on this port, I needed to
create the SkipEnumerations value in the following key.
&lt;br /&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1407&amp;amp;DEV_0110&amp;amp;SUBSYS_00000000&amp;amp;REV_00\4&amp;amp;2af9ed5&amp;amp;0&amp;amp;00F0\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;As an aside, looking at the enumerator value of PCI, I knew that
this corresponded to one of the serial ports on the PCI card I had,
but I didn't know which one, because there are two.  The numbers in
the
&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\serenum\Enum&lt;/tt&gt;
don't correspond to the COM port numbers we are used to dealing with
as users, like COM1, COM4, COM8, etc.  I'll show how to identify the
COM port number associated with this serial port in a minute.  Before
that, look at the 2 value in the serenum\Enum key:
&lt;br /&gt;ACPI\PNP0501\1
&lt;br /&gt;Because the enumerator here was ACPI, that indicated that the port
was on the motherboard.  The other value, 3, was for the USB port.
It's enumerator is (surprise) USB.  Easy enough.  Now how could I
figure out which COM port number I needed to set the SkipEnumerations
value in?  I only knew that COM1 was the port on which the probing was
causing problems.&lt;/p&gt;

&lt;p&gt;To find which COM port number I needed, I looked at all of the
&quot;Device&amp;nbsp;Parameters&quot; keys identified numbered values in the
serenum\Enum key.&lt;/p&gt;

&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1407&amp;amp;DEV_0110&amp;amp;SUBSYS_00000000&amp;amp;REV_00\4&amp;amp;2af9ed5&amp;amp;0&amp;amp;00F0\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/li&gt;
&lt;li&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1407&amp;amp;DEV_0111&amp;amp;SUBSYS_00000000&amp;amp;REV_00\4&amp;amp;2af9ed5&amp;amp;0&amp;amp;01F0\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/li&gt;
&lt;li&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\ACPI\PNP0501\1\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/li&gt;
&lt;li&gt;&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\Vid_067b&amp;amp;Pid_2303\5&amp;amp;287ed76f&amp;amp;0&amp;amp;2\Device&amp;nbsp;Parameters&lt;/tt&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Each of these keys had a value in them named &quot;PortName&quot;, which had
the COM port number.  The following image shows the first of these
keys as an example.  Notice the PortName value.&lt;/p&gt;

&lt;div class=&quot;lycenter&quot;&gt;
&lt;img src=&quot;http://dast.freeshell.org/files/images/enum.png&quot; alt=&quot;Image showing registry editor with the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1407&amp;amp;DEV_0110&amp;amp;SUBSYS_00000000&amp;amp;REV_00\4&amp;amp;2af9ed5&amp;amp;0&amp;amp;00F0\Device&amp;nbsp;Parameters key selected.&quot; /&gt;
&lt;/div&gt;

&lt;p&gt;So using this information, I figured out that COM1 was the on-board
serial port and that I needed to create the &lt;em&gt;SkipEnumerations&lt;/em&gt;
value in the
&lt;tt&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\ACPI\PNP0501\1\Device&amp;nbsp;Parameters&lt;/tt&gt;
key.  Doing this stopped Windows from pulsing the DTR and RTS lines
during bootup, which caused my device to freak out.&lt;/p&gt;

&lt;h3&gt;Summation&lt;/h3&gt;

&lt;p&gt;The XP box in question already skipped detecting a serial mouse via
the flags in boot.ini.  The offending service was Serenum, which in XP
respects the &lt;em&gt;SkipEnumerations&lt;/em&gt; registry value to avoid probing
particular serial ports for attached devices.&lt;/p&gt;
</description>
<dc:subject>windows</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/03/29/115223">
<title>Fit Linux into an Ethernet Port Size Package</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/03/29/115223</link>
<description>&lt;p&gt;Run &lt;a href=&quot;http://linuxdevices.com/news/NS8386088053.html&quot;&gt;Linux
in a package about the size of an RJ-45 jack&lt;/a&gt;.&lt;/p&gt;
</description>
<dc:subject>linux</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/03/28/201259">
<title>EWF: No Other Virus Protection Needed?</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/03/28/201259</link>
<description>&lt;p&gt;Is this true?  Is &lt;a
href=&quot;http://www.windowsfordevices.com/news/NS4872413210.html&quot;&gt;Advantech
pushing EWF as a replacement for virus protection&lt;/a&gt;?  &lt;a
href=&quot;http://blogs.msdn.com/embedded/archive/2005/03/23/401377.aspx&quot;&gt;Still
a bad idea&lt;/a&gt;, right?&lt;/p&gt;
</description>
<dc:subject>WindowsCE</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/03/21/222605">
<title>Back from Seattle</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/03/21/222605</link>
<description>&lt;p&gt;I just got back from the Seattle area, taking a Microsoft training
class with one of their partner/reseller's in the Bellevue area on
Windows CE.  Interesting stuff.  They pointed me to a lot of resources
out there covering CE.&lt;/p&gt;
</description>
<dc:subject>life, travel</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/03/21/221750">
<title>Sharpen your Windows CE "ninja debugging skillz".</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/03/21/221750</link>
<description>&lt;p&gt;Some Windows CE debugging fun for you tonight...&lt;/p&gt;

&lt;p&gt;First, sharpen your &amp;quot;ninja debugging skillz&amp;quot; &lt;a
href=&quot;http://blogs.msdn.com/sloh/archive/2005/02/25/380475.aspx&quot;&gt;by
understanding VM layout on CE&lt;/a&gt; (read: recognizing the location of
an address just by looking at it--wha*ta!).  Then learn how to &lt;a
href=&quot;http://blogs.msdn.com/sloh/archive/2005/02/28/381706.aspx&quot;&gt;figure
out which freaking function of which DLL threw that exception&lt;/a&gt; with
Sue Loh's write-up on manual address to symbol resolution.&lt;/p&gt;

&lt;p&gt;I'm not a big Windows CE fan, but I work with it every day, and I
can't tell you the number of times I've needed to do this very
process.  Sue's article does a good job of breaking this down.&lt;/p&gt;
</description>
<dc:subject>WindowsCE, programming</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/02/16/071859">
<title>Lots of things to do, so little time</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/02/16/071859</link>
<description>&lt;p&gt;I've been meaning to do a lot of things around here, but I haven't
had the time.  Things like fixing the default style sheet to render
properly in &lt;a
href=&quot;http://www.mozilla.org/products/firefox/&quot;&gt;Firefox&lt;/a&gt;, removing
a lot of unused content to make space, cutting out crufty
backend-code, etc.  Unfortunately, I've been way to busy for these
things to even register on my radar.&lt;/p&gt;</description>
<dc:subject>laby, life</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2005/01/03/222300">
<title>Sanyo MM-7400 confirmed to work with Linux for data access</title>
<link>http://dast.freeshell.org/blog/rarchive/2005/01/03/222300</link>
<description>&lt;p&gt;Thanks goes out to &lt;a href=&quot;mailto:xenuluvsyouN0_SP_AM@yahoo.com&quot;&gt;Greg Danielius&lt;/a&gt; (despam the address) for his report of Linux compatilibity for the Sanyo MM-7400 phone.  It works for data access under Linux with Sprint's PCS Vision service.  &lt;a href=&quot;http://dast.freeshell.org/section/debian/phones&quot;&gt;Report posted in the list&lt;/a&gt;.&lt;/p&gt;</description>
<dc:subject>linux, wireless, cellphones</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/12/01/124023">
<title>Nokia 3588i confirmed to work with Linux</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/12/01/124023</link>
<description>&lt;p&gt;Just added the &lt;a href=&quot;http://www.nokiausa.com/phones/3588i&quot;&gt;Nokia 3588i&lt;/a&gt; to the &lt;a href=&quot;http://dast.freeshell.org/section/debian/phones&quot;&gt;database of Sprint Phones known to work with Linux for data access&lt;/a&gt;.  The info comes from &lt;a href=&quot;http://www.peerfear.org/rss/permalink/2004/11/30/WirelessIPWithSprintUSBAndKernel26/&quot;&gt;a post&lt;/a&gt; over at &lt;a href=&quot;http://www.peerfear.org&quot;&gt;PeerFear&lt;/a&gt;&lt;/p&gt;</description>
<dc:subject>cellphones, linux, wireless</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/10/24/223724">
<title>1999 Ford Escort SE Engine Misfires between 40 and 60 MPH</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/10/24/223724</link>
<description>&lt;p&gt;I'm starting this thread tonight that I'll be updating after I go
to the mechanic this week.  My &lt;a
href=&quot;http://fords-stall.com/index.php?cat=159&quot;&gt;1999 Ford Escort
SE&lt;/a&gt; started stuttering and riding hard last night on the way up to
see my fiance.  I hit some &lt;strong&gt;extremely&lt;/strong&gt; heavy rain and
very light flooding on a major interstate on the way, as I was coming
through one of the cities halfway between us.  That's when it
started.&lt;/p&gt;

&lt;p&gt;When I would accelerate from around 40 MPH to 60 MPH, the car would
start to ride hard, almost stuttering or shuttering.  Like a quick
series of hesitations, the car would feel like it was jerking a bit.
It would clear up around 65 MPH or so, but I did experience it between
70 - 80 MPH for a few minutes.&lt;/p&gt;

&lt;p&gt;I'm at about 82K miles on the thing, after being bought around 40K.
Never had any serious problem with my fuel injectors sticking, and I
just had the engine decoked at around 70K.  Other than some problems
with &lt;a href=&quot;http://dast.freeshell.org/blog/category/cars&quot;&gt;an
improperly installed fuel filter, an IAC valve that wanted to go bad a
lot, and one leak in my EVAP system, the car didn't give me much
trouble.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I stopped during the rain, after feeling it stutter a few times,
filled up the tank, and put in an engine treatment that would remove
water, an STP brand I believe.  Didn't do any good.  It still
stuttered in that MPH range on the rest of the way up, but the rain
slacked off, so I could easily keep it above 70 MPH for the rest of
the trip, letting it ride smooth.&lt;/p&gt;

&lt;p&gt;On the way back down, it kept stuttering in the same MPH range.
Then it got bad and the Check Engine Light started flashing,
indicating the engine was misfiring.&lt;/p&gt;

&lt;p&gt;A friend of mine theorized that perhaps the Escort took up some of
the water and maybe it got in the distributor.  I did a quick bit of
research about that, consulting the Haynes manual for Ford Escorts
&amp;amp; and Mercury Tracers, 1991 - 2000.  However, The engine, &lt;a
href=&quot;http://www.escortfocus.com/html/engine_specifications.html&quot;&gt;a
2.0L SPI (Slit Port Injection?) engine that 1999 Ford Escort SEs
have&lt;/a&gt;, &lt;a
href=&quot;http://autorepair.about.com/library/weekly/aa110301b.htm&quot;&gt;doesn't
have an distributor&lt;/a&gt;, &lt;a
href=&quot;http://autorepair.about.com/cs/generalinfo/l/bldef_342.htm&quot;&gt;like
many newer engines&lt;/a&gt;.  However, the theory may still be
helpful&amp;mdash;I may have water in my ignition system.&lt;/p&gt;

&lt;p&gt;Of course, &lt;a
href=&quot;http://www.users.bigpond.com/jack_stands/automotive_advice/engine_misfire/ignition_misfire.html&quot;&gt;it
could be many other things causing me to misfire&lt;/a&gt;.  As long as I
drive it smooth it seems okay.&lt;/p&gt;

&lt;p&gt;I'm going to see a local mechanic tomorrow and I'll probably update
this entry with any details.&lt;/p&gt;

&lt;h3&gt;Update: Mon Oct 25 20:55:56 CDT 2004&lt;/h3&gt;

&lt;p&gt;The problem was caused by faulty spark plug wires.  A tune-up
seemed to do the job and the car seems to be riding a &lt;em&gt;lot&lt;/em&gt;
smoother.  Cost: $150.&lt;/p&gt;

&lt;p style=&quot;text-align: right;&quot;&gt;Current total: &lt;strong&gt;$1665&lt;/strong&gt;&lt;/p&gt;</description>
<dc:subject>cars</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/10/04/192958">
<title>Sanyo RL-4920 phone tested with Linux: works great</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/10/04/192958</link>
<description>&lt;p&gt;I just added up a compatibility report to the list of Sprint Phones
known to work with Linux for data access, specifically for the &lt;a
href=&quot;http://www.sanyo.com/wireless/handsets/index.cfm?productID=935&quot;&gt;Sanyo
RL-4920&lt;/a&gt;.  I tested it personally with the data cable I use with my
4900 and it worked great.&lt;/p&gt;
</description>
<dc:subject>linux, wireless, cellphones</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/07/25/173120">
<title>Just got engaged</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/07/25/173120</link>
<description>&lt;p&gt;This weekend I asked my girlfriend of almost 2 years (and friend of
around 8 years) to marry me, and she accepted.  For collateral, I
offered her a expensive lump of crystalline carbon on a white gold
band, a questionable tradition at best.  But you have to do what you
have to do to get the girl you want to marry you.&lt;/p&gt;

</description>
<dc:subject>life</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/07/14/211612">
<title>Mozilla Pagerank Calculator</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/07/14/211612</link>
<description>&lt;p&gt;Do you run &lt;a href=&quot;http://mozilla.org&quot;&gt;Mozilla or Firefox&lt;/a&gt;?  Do
you want to know what &lt;a href=&quot;http://google.com&quot;&gt;Google&lt;/a&gt; thinks
about the pages you visit (including perhaps your own)?  Then check
out &lt;a href=&quot;http://pagerankstatus.mozdev.org/&quot;&gt;Pagerank extention&lt;/a&gt;
for Mozilla and Firefox browsers.  Finally, a cross-platform browser
extention to view standings in the &lt;a
href=&quot;http://www.google.com/technology/&quot;&gt;greatest popularity contenst
of the digital era&lt;/a&gt;.  I'm using it here under &lt;a
href=&quot;http://gentoo.org&quot;&gt;Gentoo Linux&lt;/a&gt; with &lt;a
href=&quot;http://mozilla.org&quot;&gt;Mozilla&lt;/a&gt; 1.6 and it works great.&lt;/p&gt;
</description>
<dc:subject>browsers, internet</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/07/06/202749">
<title>Fahrenheit Skepticism</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/07/06/202749</link>
<description>&lt;p&gt;I saw &lt;a href=&quot;http://www.imdb.com/title/tt0361596/&quot;&gt;Fahrenheit
9/11&lt;/a&gt; this holiday weekend, and overall I was fairly impressed.
I've maintained a &lt;a
href=&quot;http://dast.freeshell.org/blog/title/moores_photomosaic_the_war_president&quot;&gt;mild
dislike&lt;/a&gt; of &lt;a href=&quot;http://www.michaelmoore.com/&quot;&gt;Michael
Moore&lt;/a&gt; ever since I had the misfortune of seeing his
piece-of-shit-Bowling movie, so needless to say, I had low
expectations of Moore as a filmmaker.  I can say, however, that I was
hyped about seeing this flick, so that balanced things out.  Like I
said, overall, I was fairly impressed.&lt;/p&gt;

&lt;p&gt;Of course, this movie has gotten people up-in-arms raving about how
the movie is nothing more than a pack of lies.  I've seen a lot of
goofy &amp;quot;criticism&amp;quot; of Moore and his latest artistic endeavor.
Don't believe everything negative you hear about this movie.  However,
that being said, don't believe everything you see in F911 either.  For
some balanced criticism of Moore's conspiracy theories, check out &lt;a
href=&quot;http://www.spinsanity.org/columns/20040702.html&quot;&gt;Brendan Nyhan's
article&lt;/a&gt; on the topic at &lt;a
href=&quot;http://www.spinsanity.org/&quot;&gt;Spinsantiy&lt;/a&gt;.  Rather than
screaming about how Moore is a dirty liar, Nyhan does a decent job of
pointing out some parts of F911 where Moore strings mostly accurate
things together to give a potentially misleading impression.  Good
reading.&lt;/p&gt;

&lt;p&gt;And even better, for your linking pleasure, check out &lt;a
href=&quot;http://www.redlinerants.com/index.php?subaction=showfull&amp;amp;id=1088491633&amp;amp;archive=&amp;amp;start_from=&amp;amp;ucat=1&amp;amp;&quot;&gt;an
unofficial transcript of the first 43 minutes of Fahrenheit 9/11&lt;/a&gt;.
I can't vouch for the accuracy of this transcript.&lt;/p&gt;
</description>
<dc:subject>movies, skepticism</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/07/02/123217">
<title>DHS says stay away from IE</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/07/02/123217</link>
<description>&lt;p&gt;Internet Explorer users beware!  &lt;a href=&quot;http://www.dhs.gov&quot;&gt;The
Department of Homeland Security&lt;/a&gt; is &lt;a
href=&quot;http://story.news.yahoo.com/news?tmpl=story&amp;amp;cid=74&amp;amp;e=3&amp;amp;u=/cmp/20040702/tc_cmp/22103407&quot;&gt;advising
surfers to use other browsers&lt;/a&gt; in light of the recent severe
security flaws in IE.  A malicious website may be able to snoop your
keypresses on the keyboard for things like creditcard numbers.
Woops.  &lt;a
href=&quot;http://slashdot.org/article.pl?sid=04/07/02/1441242&quot;&gt;Via /.&lt;/a&gt;&lt;/p&gt;</description>
<dc:subject>internet, security</dc:subject>
</item>

<item rdf:about="http://dast.freeshell.org/blog/rarchive/2004/06/30/205952">
<title>"Brain and brain!  What is brain?"</title>
<link>http://dast.freeshell.org/blog/rarchive/2004/06/30/205952</link>
<description>&lt;p&gt;Today while listening to &lt;a
href=&quot;http://airamericaradio.com/pub/prg5about.htm&quot;&gt;Marty Kaplan's
show&lt;/a&gt; on &lt;a href=&quot;http://airamericaradio.com&quot;&gt;Air America
Radio&lt;/a&gt;, I heard that some theater troop is putting on a stage
version of my absolute, 100%, &lt;em&gt;all-fscking-time&lt;/em&gt; favorite
episode of &lt;a href=&quot;http://www.startrek.com/&quot;&gt;Star Trek&lt;/a&gt;, &amp;quot;&lt;a
href=&quot;http://www.starfleetlibrary.com/tos/tos3/spocks_brain.htm&quot;&gt;Spock's
Brain&lt;/a&gt;&amp;quot;.  God damn, this was one excellent episode.  For readers out
there not familiar with episode 61 of &lt;a
href=&quot;http://www.starfleetlibrary.com/tos/&quot;&gt;The Original Series&lt;/a&gt;,
some women alien comes on the ship and replaces Spock's brain with a
&lt;a href=&quot;http://www.twinkies.com/noflash.html&quot;&gt;Twinkie&lt;/a&gt; or some
shit.  What a great plot idea.&lt;/p&gt;

&lt;p&gt;The scam is this&amp;mdash;these alien women called Eymorgs ganked &lt;a
href=&quot;http://members.tripod.com/funky.hippy/spock.html&quot;&gt;Spock's best
organ&lt;/a&gt; to run their underground city, dubbing it &amp;quot;The
Controller&amp;quot;.  On their quest to retrieve the controller, the crew
of the 'Prize rig up a remote control for their science officer's
lifeless body.  They end up with a pimped out RC vulcan and they get to
hear Spock's disembodied voice spout trippy little quotables while
searching for his brain in the Eymorgs' underground city.  &amp;quot;I
seem to have a body which stretches into infinity...&amp;quot; Does it get
any better than being captured by the givers of pain and delight who
use Spock's brain as their master computer?  &lt;em&gt;I think not&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Hailed as the best and worse of Star Trek, this episode is now
being done in the theater.  I couldn't have asked for anything more.&lt;/p&gt;</description>
<dc:subject>life</dc:subject>
</item>

</rdf:RDF>