<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Jeremy Simmons: The Blog - General</title>
    <link>http://www.jeremysimmons.net/blog/</link>
    <description>Four out of Five Coders recommend</description>
    <language>en-us</language>
    <copyright>Jeremy Simmons 2005-2009</copyright>
    <lastBuildDate>Fri, 07 Oct 2005 16:51:19 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.2.8279.16125</generator>
    <managingEditor>jsimmons@jeremysimmons.net</managingEditor>
    <webMaster>jsimmons@jeremysimmons.net</webMaster>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=f00df73b-b988-438e-857e-94edac012a3c</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,f00df73b-b988-438e-857e-94edac012a3c.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,f00df73b-b988-438e-857e-94edac012a3c.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=f00df73b-b988-438e-857e-94edac012a3c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I like seeing people be creative with things like this.
</p>
        <p>
          <img src="http://www.jeremysimmons.net/blog/content/binary/gr8twifissdi.PNG" border="0" />
        </p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=f00df73b-b988-438e-857e-94edac012a3c" />
      </body>
      <title>Great Wifi SSID Name</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,f00df73b-b988-438e-857e-94edac012a3c.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2005/10/07/GreatWifiSSIDName.aspx</link>
      <pubDate>Fri, 07 Oct 2005 16:51:19 GMT</pubDate>
      <description>&lt;p&gt;
I like seeing people be creative with things like this.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.jeremysimmons.net/blog/content/binary/gr8twifissdi.PNG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=f00df73b-b988-438e-857e-94edac012a3c" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,f00df73b-b988-438e-857e-94edac012a3c.aspx</comments>
      <category>Comedy</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=22165528-6943-44fb-93f4-ff19541ad03d</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,22165528-6943-44fb-93f4-ff19541ad03d.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,22165528-6943-44fb-93f4-ff19541ad03d.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=22165528-6943-44fb-93f4-ff19541ad03d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This is a batch script I made for running a Google Search. It supports up
to 9 words which are space-delimited. For reference, it went in my %USERPROFILE% directory and
is named gs.bat. Any other location which is in your %PATH% is also acceptable,
I happen to use that directory because it's quick to get to. Just open the <b>Run</b> dialog
box. (<img alt="" hspace="0" src="http://www.jeremysimmons.net/blog/content/images/winkey.gif" align="middle" border="0" /> +
R) and type .  (thats a period)
</p>
        <p>
The syntax is pretty easy, 
</p>
        <p>
gs <em>word1 (word2 word3 word[n])</em></p>
        <p>
        </p>
        <strong>gs.bat</strong>
        <hr />
        <pre>@echo off
IF [%1]==[] (GOTO Syntax) ELSE (GOTO Run)
:Run
SET QUERY=
IF NOT (%1)==() SET QUERY=%1
IF NOT (%2)==() SET QUERY=%QUERY%+%2
IF NOT (%3)==() SET QUERY=%QUERY%+%3
IF NOT (%4)==() SET QUERY=%QUERY%+%4
IF NOT (%5)==() SET QUERY=%QUERY%+%5
IF NOT (%6)==() SET QUERY=%QUERY%+%6
IF NOT (%7)==() SET QUERY=%QUERY%+%7
IF NOT (%8)==() SET QUERY=%QUERY%+%8
IF NOT (%9)==() SET QUERY=%QUERY%+%9
start http://www.google.com/search?q=%QUERY%
GOTO End
:Syntax
ECHO You must specify at least one word to search for
ECHO gs word1 word2 wordN
pause
:End
SET QUERY=%MYTEMP%
:EOF
</pre>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=22165528-6943-44fb-93f4-ff19541ad03d" />
      </body>
      <title>Google Search from a batch script</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,22165528-6943-44fb-93f4-ff19541ad03d.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2005/05/28/GoogleSearchFromABatchScript.aspx</link>
      <pubDate>Sat, 28 May 2005 22:08:35 GMT</pubDate>
      <description>&lt;p&gt;
This is a batch script I made for running a&amp;nbsp;Google Search. It supports&amp;nbsp;up
to 9 words which are space-delimited. For reference, it went in my %USERPROFILE% directory&amp;nbsp;and
is named gs.bat. Any other location which is&amp;nbsp;in your %PATH% is also acceptable,
I happen to use that directory because it's quick to get to. Just open the &lt;b&gt;Run&lt;/b&gt; dialog
box. (&lt;img alt="" hspace=0 src="http://www.jeremysimmons.net/blog/content/images/winkey.gif" align=middle border=0&gt;&amp;nbsp;+
R) and type .&amp;nbsp; (thats a period)
&lt;/p&gt;
&lt;p&gt;
The syntax is pretty easy, 
&lt;/p&gt;
&lt;p&gt;
gs &lt;em&gt;word1 (word2 word3 word[n])&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;strong&gt;gs.bat&lt;/strong&gt; 
&lt;hr&gt;
&lt;pre&gt;@echo off
IF [%1]==[] (GOTO Syntax) ELSE (GOTO Run)
:Run
SET QUERY=
IF NOT (%1)==() SET QUERY=%1
IF NOT (%2)==() SET QUERY=%QUERY%+%2
IF NOT (%3)==() SET QUERY=%QUERY%+%3
IF NOT (%4)==() SET QUERY=%QUERY%+%4
IF NOT (%5)==() SET QUERY=%QUERY%+%5
IF NOT (%6)==() SET QUERY=%QUERY%+%6
IF NOT (%7)==() SET QUERY=%QUERY%+%7
IF NOT (%8)==() SET QUERY=%QUERY%+%8
IF NOT (%9)==() SET QUERY=%QUERY%+%9
start http://www.google.com/search?q=%QUERY%
GOTO End
:Syntax
ECHO You must specify at least one word to search for
ECHO gs word1 word2 wordN
pause
:End
SET QUERY=%MYTEMP%
:EOF
&lt;/pre&gt;&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=22165528-6943-44fb-93f4-ff19541ad03d" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,22165528-6943-44fb-93f4-ff19541ad03d.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=73319d09-5fc8-4338-bcd7-1b480b047218</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,73319d09-5fc8-4338-bcd7-1b480b047218.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,73319d09-5fc8-4338-bcd7-1b480b047218.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=73319d09-5fc8-4338-bcd7-1b480b047218</wfw:commentRss>
      <title>Teaching HTML </title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,73319d09-5fc8-4338-bcd7-1b480b047218.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2005/05/05/TeachingHTML.aspx</link>
      <pubDate>Thu, 05 May 2005 20:15:31 GMT</pubDate>
      <description>I am teaching someone some simple HTML. While they&amp;rsquo;re really anxious to do useful things, it would be like throwing an infant into the deep end of the pool. Thus, we start with simple exercises, in order to have a firm grasp on the basics.&lt;br /&gt;
The example looks like this. 
&lt;hr&gt;
&lt;table height="600" cellspacing="0" cellpadding="0" width="600" align="center" border="0"&gt;
&lt;col align="middle" width="200"&gt;
&lt;col align="middle" width="200"&gt;
&lt;col align="middle" width="200"&gt;
&lt;tr&gt;
&lt;td bgcolor="#FF0000" colspan="2"&gt;
&lt;h3&gt;&lt;font color="#FFFFFF"&gt;RED&lt;/font&gt;
&lt;/h3&gt;
&lt;/td&gt;
&lt;td bgcolor="#0000FF" rowspan="2"&gt;
&lt;h3&gt;&lt;font color="#FFFFFF"&gt;BLUE&lt;/font&gt;
&lt;/h3&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#FFFF00" rowspan="2"&gt;
&lt;h3&gt;&lt;font color="#FFFFFF"&gt;YELLOW&lt;/font&gt;
&lt;/h3&gt;
&lt;/td&gt;
&lt;td bgcolor="#000000"&gt;
&lt;h3&gt;
&lt;font color="#FF0000"&gt;C&lt;/font&gt; &lt;font color="#FF6600"&gt;O&lt;/font&gt; &lt;font color="#FFFF00"&gt;L&lt;/font&gt; &lt;font color="#00FF00"&gt;O&lt;/font&gt; &lt;font color="#0000FF"&gt;R&lt;/font&gt; &lt;font color="#9900CC"&gt;S&lt;/font&gt; 
&lt;/h3&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#00FF00" colspan="2"&gt;
&lt;h3&gt;&lt;font color="#FFFFFF"&gt;GREEN&lt;/font&gt;
&lt;/h3&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr&gt;
&lt;p&gt;
The code is really pretty simple, but lets not put the whole thing in our mouth at
once. Remember what mother said, take small bites, and chew each one 30 times.
&lt;/p&gt;
&lt;pre style="BORDER: #999 1px dotted; BACKGROUND-COLOR: #ddd"&gt;&amp;lt;table height=&amp;quot;600&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; width=&amp;quot;600&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot;&amp;gt;
&lt;/pre&gt;
&lt;p&gt;
Start with a table tag. Zero the borders, give it a width. No spacing, no padding,
give it a height, and make the table align center to it's parent.
&lt;/p&gt;
&lt;pre style="BORDER: #999 1px dotted; BACKGROUND-COLOR: #ddd"&gt;&amp;lt;col align=&amp;quot;middle&amp;quot; width=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;col align=&amp;quot;middle&amp;quot; width=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;col align=&amp;quot;middle&amp;quot; width=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
&lt;/pre&gt;
&lt;colgroup&gt;
&lt;col align="middle" width="200"&gt;
&lt;col align="middle" width="200"&gt;
&lt;col align="middle" width="200"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;p&gt;
We're going to have 3 columns, and we want each one to be a set width. 1/3 of 600
is 200.
&lt;/p&gt;
&lt;pre style="BORDER: #999 1px dotted; BACKGROUND-COLOR: #ddd"&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td bgcolor=&amp;quot;#FF0000&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;font color=&amp;quot;#FFFFFF&amp;quot;&amp;gt;RED&amp;lt;/font&amp;gt;&amp;lt;/h3&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td bgcolor=&amp;quot;#0000FF&amp;quot; rowspan=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;font color=&amp;quot;#FFFFFF&amp;quot;&amp;gt;BLUE&amp;lt;/font&amp;gt;&amp;lt;/h3&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;/pre&gt;
&lt;p&gt;
Row one has two cells, one two columns wide, then another two rows tall. Make the
background color of each appropriate, using short-cut style hex notiation #RED_GREEN_BLUE
(two numbers each, 0-F, single number means two of the same). After that, we're going
to make the font larger using the h3 tag, and a color using the font tag with a color
attribute. No CSS yet, this is BASIC HTML.
&lt;/p&gt;
&lt;pre style="BORDER: #999 1px dotted; BACKGROUND-COLOR: #ddd"&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td bgcolor=&amp;quot;#FFFF00&amp;quot; rowspan=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;font color=&amp;quot;#FFFFFF&amp;quot;&amp;gt;YELLOW&amp;lt;/font&amp;gt;&amp;lt;/h3&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td bgcolor=&amp;quot;#000000&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;C&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;O&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FFFF00&amp;quot;&amp;gt;L&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#00FF00&amp;quot;&amp;gt;O&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#0000FF&amp;quot;&amp;gt;R&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;font color=&amp;quot;#9900CC&amp;quot;&amp;gt;S&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/h3&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;/pre&gt;
&lt;p&gt;
Another row bites the dust. We need a cell that is two rows tall again, and then just
a single column, single row cell. Then comes the fun part, wrap each letter in a color,
like the rainbow. It helps to have a color chart for this. Maybe &lt;a href="http://www.visibone.com/"&gt;Visibone&lt;/a&gt;?
&lt;/p&gt;
&lt;pre style="BORDER: #999 1px dotted; BACKGROUND-COLOR: #ddd"&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td bgcolor=&amp;quot;#00FF00&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;font color=&amp;quot;#FFFFFF&amp;quot;&amp;gt;GREEN&amp;lt;/font&amp;gt;&amp;lt;/h3&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/pre&gt;
&lt;p&gt;
Finish it up with the last cell, two columns wide. Don't forget to close the table
tag! Congratulations, now you have a pretty finished product. You have used the table,
tr, td, col, h3, and font tag. Play around with the values in the attributes and see
how pretty or ugly you can make it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=73319d09-5fc8-4338-bcd7-1b480b047218" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,73319d09-5fc8-4338-bcd7-1b480b047218.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=9f49a7cf-80fa-40e0-9524-a2bacc4cef34</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,9f49a7cf-80fa-40e0-9524-a2bacc4cef34.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,9f49a7cf-80fa-40e0-9524-a2bacc4cef34.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=9f49a7cf-80fa-40e0-9524-a2bacc4cef34</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Sigh. I hate when hosting providers mess with your permissions, and you find out that
all of your blog entries for the last two months haven't ACTUALLY posted. Oh well...
I guess it's fixed now.
</p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=9f49a7cf-80fa-40e0-9524-a2bacc4cef34" />
      </body>
      <title>Something is wrong in your Config Files</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,9f49a7cf-80fa-40e0-9524-a2bacc4cef34.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2005/04/28/SomethingIsWrongInYourConfigFiles.aspx</link>
      <pubDate>Thu, 28 Apr 2005 15:17:42 GMT</pubDate>
      <description>&lt;p&gt;
Sigh. I hate when hosting providers mess with your permissions, and you find out that
all of your blog entries for the last two months haven't ACTUALLY posted. Oh well...
I guess it's fixed now.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=9f49a7cf-80fa-40e0-9524-a2bacc4cef34" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,9f49a7cf-80fa-40e0-9524-a2bacc4cef34.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=035e126f-bce4-43b1-b1bb-39ea2c9fca83</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,035e126f-bce4-43b1-b1bb-39ea2c9fca83.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,035e126f-bce4-43b1-b1bb-39ea2c9fca83.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=035e126f-bce4-43b1-b1bb-39ea2c9fca83</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I read something the other day that had a tremendous impact on me, I thought I'd share.
</p>
        <h3>Truth
</h3>
        <p>
Truth is unchangeable reality.<br />
It doesn't depend on circumstances.<br />
What is true is always true in every place on every occasion.<br />
Truth systematically links facts together to create an understanding of life's situations.<br />
Line upon line, precept upon precept, truth builds it's house.<br /><i>-Author unknown</i></p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=035e126f-bce4-43b1-b1bb-39ea2c9fca83" />
      </body>
      <title>Truth</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,035e126f-bce4-43b1-b1bb-39ea2c9fca83.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2005/01/04/Truth.aspx</link>
      <pubDate>Tue, 04 Jan 2005 14:54:07 GMT</pubDate>
      <description>&lt;p&gt;
I read something the other day that had a tremendous impact on me, I thought I'd share.
&lt;/p&gt;
&lt;h3&gt;Truth
&lt;/h3&gt;
&lt;p&gt;
Truth is unchangeable reality.&lt;br /&gt;
It doesn't depend on circumstances.&lt;br /&gt;
What is true is always true in every place on every occasion.&lt;br /&gt;
Truth systematically links facts together to create an understanding of life's situations.&lt;br /&gt;
Line upon line, precept upon precept, truth builds it's house.&lt;br /&gt;
&lt;i&gt;-Author unknown&lt;/i&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=035e126f-bce4-43b1-b1bb-39ea2c9fca83" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,035e126f-bce4-43b1-b1bb-39ea2c9fca83.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=b6ae18d5-2118-4e43-aaac-770dfb3da6b6</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,b6ae18d5-2118-4e43-aaac-770dfb3da6b6.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,b6ae18d5-2118-4e43-aaac-770dfb3da6b6.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=b6ae18d5-2118-4e43-aaac-770dfb3da6b6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <!--StartFragment --> <i><b>All mankind is divided into three classes: those
that are immovable, those that are moveable, and those that move. — Benjamin Franklin</b></i><br /><img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=b6ae18d5-2118-4e43-aaac-770dfb3da6b6" /></body>
      <title>Quoteable</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,b6ae18d5-2118-4e43-aaac-770dfb3da6b6.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/12/28/Quoteable.aspx</link>
      <pubDate>Tue, 28 Dec 2004 16:15:17 GMT</pubDate>
      <description>&lt;!--StartFragment --&gt;&amp;nbsp;&lt;i&gt;&lt;b&gt;All mankind is divided into three classes: those
that are immovable, those that are moveable, and those that move. — Benjamin Franklin&lt;/b&gt;&lt;/i&gt; 
&lt;br /&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=b6ae18d5-2118-4e43-aaac-770dfb3da6b6" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,b6ae18d5-2118-4e43-aaac-770dfb3da6b6.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=3b900560-93eb-42aa-aa48-8dc991299a16</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,3b900560-93eb-42aa-aa48-8dc991299a16.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,3b900560-93eb-42aa-aa48-8dc991299a16.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3b900560-93eb-42aa-aa48-8dc991299a16</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I was reading a post here about how firefox is just as insecure as IE, but not more
secure by default. I highly recommend you take a look. <a href="http://blogs.msdn.com/ptorr/archive/2004/12/20/327511.aspx">http://blogs.msdn.com/ptorr/archive/2004/12/20/327511.aspx</a></p>
        <p>
I got down to the comments, and I read how someone said that they 'prefer' to use
Firefox for developing web applications because it is more (among other, very valid
reasons, even though IE has just as many, if not more compelling reasons itself) 'standards
compliant'. 
</p>
        <p>
I am so SICK of people saying that Mozilla, Firefox, and Opera are more 'standards
compliant' than IE. While I whole heartedly agree that if we're comparing the two
in terms of the proposed W3 standards, then that person is totally correct. However,
making that statement assumes a few things. In the end, isn't all that really matters
to the end user is how their content is rendered on the screen, and that it is rendered
correctly?
</p>
        <p>
          <!--StartFragment -->I pulled this from dictionary online <a href="http://www.dictionary.com">http://www.dictionary.com</a>. You
know, those long alphabetically organized books that seem to have the common interpretation
of words.
</p>
        <p>
Standard <i>adj.</i></p>
        <ol>
          <li>
Serving as or conforming to a standard of measurement or value.</li>
          <li>
Widely recognised or employed as a model of authority or excellence: <cite>a standard
reference work.</cite></li>
          <li>
Acceptable but of less than top quality: <cite>a standard grade of beef.</cite></li>
          <li>
Normal, familiar, or usual: <cite>the standard excuse.</cite></li>
          <li>
Commonly used or supplied: <cite>standard car equipment.</cite></li>
          <li>
            <u>
              <i>Linguistics.</i>
            </u> Conforming to established educated usage in speech or writing.</li>
        </ol>
        <ol>
          <li>
IE is the standard browser Microsoft has chosen for their OS for the last 10 years.
They haven't changed to Netscape, or anything else. I'm fully aware that it's built
into the OS, and that excuse doesn't work on me, you can take it out with tools like
WinLite. Furthermore, you can run all the versions side by side on the same install
of Windows as standalone web browsers.</li>
          <li>
IE is still the most widely used browser in the world. So says these people, <a href="http://www.w3schools.com/browsers/browsers_stats.asp">http://www.w3schools.com/browsers/browsers_stats.asp</a> and
these people <a href="http://www.webreference.com/stats/browser.html">ttp://www.webreference.com/stats/browser.html</a></li>
          <li>
Nobody on the open source community can dispute this one. It displays a large majority
of content correctly. Remember, my argument is not that it is the best, just that
it's more of a standard than the "other stuff"</li>
          <li>
Who's browser had the buttons first? Who's layout is imitations who's? That would
be IE, of course.</li>
          <li>
Refer to point 2.</li>
          <li>
Not applicable. This is a piece of software, not a language.</li>
        </ol>
        <p>
So, we weigh in the results, and it looks like IE is ahead of "the rest of them" with
a score of 5:0 on the definition of "standard".
</p>
        <p>
I will concede defeat that these "W3 standards" are definitely supported by the "other"
browsers "better" than IE, but until the market share is in reverse, you can take
your "standards compliance" and shove it. It doesn't mean a thing unless you own the
majority of the user base.
</p>
        <p>
So, stop the incessant whining about how your browser is more "standards compliant"
and start realizing that the majority of the user base A) doesn't care, and B) most
likely will never care.
</p>
        <p>
I as a programmer do care, but have some care for me and stop whining that you have
to write a few extra lines of code.
</p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=3b900560-93eb-42aa-aa48-8dc991299a16" />
      </body>
      <title>Standards Compliance is no substitution for Market Share</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,3b900560-93eb-42aa-aa48-8dc991299a16.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/12/21/StandardsComplianceIsNoSubstitutionForMarketShare.aspx</link>
      <pubDate>Tue, 21 Dec 2004 17:18:00 GMT</pubDate>
      <description>&lt;p&gt;
I was reading a post here about how firefox is just as insecure as IE, but not more
secure by default. I highly recommend you take a look. &lt;a href="http://blogs.msdn.com/ptorr/archive/2004/12/20/327511.aspx"&gt;http://blogs.msdn.com/ptorr/archive/2004/12/20/327511.aspx&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I got down to the comments, and I read how someone said that they 'prefer' to use
Firefox for developing web applications because it is more (among other, very valid
reasons, even though IE has just as many, if not more compelling reasons itself) 'standards
compliant'. 
&lt;/p&gt;
&lt;p&gt;
I am so SICK of people saying that Mozilla, Firefox, and Opera are more 'standards
compliant' than IE. While I whole heartedly agree that if we're comparing the two
in terms of the proposed W3 standards, then that person is totally correct. However,
making that statement assumes a few things. In the end, isn't all that really matters
to the end user is how their content is rendered on the screen, and that it is rendered
correctly?
&lt;/p&gt;
&lt;p&gt;
&lt;!--StartFragment --&gt;I pulled this from&amp;nbsp;dictionary online&amp;nbsp;&lt;a href="http://www.dictionary.com"&gt;http://www.dictionary.com&lt;/a&gt;.&amp;nbsp;You
know, those long alphabetically organized books that seem to have the common interpretation
of words.
&lt;/p&gt;
&lt;p&gt;
Standard&amp;nbsp;&lt;i&gt;adj.&lt;/i&gt; 
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Serving as or conforming to a standard of measurement or value.&lt;/li&gt;
&lt;li&gt;
Widely recognised or employed as a model of authority or excellence: &lt;cite&gt;a standard
reference work.&lt;/cite&gt; 
&lt;/li&gt;
&lt;li&gt;
Acceptable but of less than top quality: &lt;cite&gt;a standard grade of beef.&lt;/cite&gt; 
&lt;/li&gt;
&lt;li&gt;
Normal, familiar, or usual: &lt;cite&gt;the standard excuse.&lt;/cite&gt; 
&lt;/li&gt;
&lt;li&gt;
Commonly used or supplied: &lt;cite&gt;standard car equipment.&lt;/cite&gt; 
&lt;/li&gt;
&lt;li&gt;
&lt;u&gt;&lt;i&gt;Linguistics.&lt;/i&gt;&lt;/u&gt; Conforming to established educated usage in speech or writing.&lt;/li&gt;
&lt;/ol&gt;
&lt;ol&gt;
&lt;li&gt;
IE is the standard browser Microsoft has chosen for their OS for the last 10 years.
They haven't changed to Netscape, or anything else. I'm fully aware that it's built
into the OS, and that excuse doesn't work on me, you can take it out with tools like
WinLite. Furthermore, you can run all the versions side by side on the same install
of Windows as standalone web browsers.&lt;/li&gt;
&lt;li&gt;
IE is still the most widely used browser in the world. So says these people,&amp;nbsp;&lt;a href="http://www.w3schools.com/browsers/browsers_stats.asp"&gt;http://www.w3schools.com/browsers/browsers_stats.asp&lt;/a&gt; and
these people &lt;a href="http://www.webreference.com/stats/browser.html"&gt;ttp://www.webreference.com/stats/browser.html&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
Nobody on the open source community can dispute this one. It displays a large majority
of content correctly. Remember, my argument is not that it is the best, just that
it's more of a standard than the "other stuff"&lt;/li&gt;
&lt;li&gt;
Who's browser had the buttons first? Who's layout is imitations who's? That would
be IE, of course.&lt;/li&gt;
&lt;li&gt;
Refer to point 2.&lt;/li&gt;
&lt;li&gt;
Not applicable. This is a piece of software, not a language.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
So, we weigh in the results, and it looks like IE is ahead of "the rest of them" with
a score of 5:0 on the definition of "standard".
&lt;/p&gt;
&lt;p&gt;
I will concede defeat that these "W3 standards" are definitely supported by the "other"
browsers "better" than IE, but until the market share is in reverse, you can take
your "standards compliance" and shove it. It doesn't mean a thing unless you own the
majority of the user base.
&lt;/p&gt;
&lt;p&gt;
So, stop the incessant whining about how your browser is more "standards compliant"
and start realizing that the majority of the user base A) doesn't care, and B) most
likely will never care.
&lt;/p&gt;
&lt;p&gt;
I as a programmer do care, but have some care for me and stop whining that you have
to write a few extra lines of code.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=3b900560-93eb-42aa-aa48-8dc991299a16" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,3b900560-93eb-42aa-aa48-8dc991299a16.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=0df840c0-d1b9-45c7-b827-77682e15c2e0</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,0df840c0-d1b9-45c7-b827-77682e15c2e0.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,0df840c0-d1b9-45c7-b827-77682e15c2e0.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=0df840c0-d1b9-45c7-b827-77682e15c2e0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
These are great
</p>
        <p>
          <i>"<b>The pure and simple truth is rarely pure and never simple</b>."<br /></i>Oscar Wilde
</p>
        <p>
          <i>"<b>First get your facts; then you can distort them at your leisure</b>."<br /></i>Mark Twain
</p>
        <p>
          <i>"<b>There are three kinds of lies: lies, damn lies, and statistics</b>."<br /></i>Benjamin Disraeli
</p>
        <p>
          <i>"<b>Then there was the man who drowned crossing a stream with an average depth
of six inches</b>."</i>
          <br />
W. I. E. Gates
</p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=0df840c0-d1b9-45c7-b827-77682e15c2e0" />
      </body>
      <title>Quoteable Quotes</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,0df840c0-d1b9-45c7-b827-77682e15c2e0.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/12/14/QuoteableQuotes.aspx</link>
      <pubDate>Tue, 14 Dec 2004 15:30:08 GMT</pubDate>
      <description>&lt;p&gt;
These are great
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;"&lt;b&gt;The pure and simple truth is rarely pure and never simple&lt;/b&gt;."&lt;br /&gt;
&lt;/i&gt;Oscar Wilde
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;"&lt;b&gt;First get your facts; then you can distort them at your leisure&lt;/b&gt;."&lt;br /&gt;
&lt;/i&gt;Mark Twain
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;"&lt;b&gt;There are three kinds of lies: lies, damn lies, and statistics&lt;/b&gt;."&lt;br /&gt;
&lt;/i&gt;Benjamin Disraeli
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;"&lt;b&gt;Then there was the man who drowned crossing a stream with an average depth
of six inches&lt;/b&gt;."&lt;/i&gt;
&lt;br /&gt;
W. I. E. Gates
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=0df840c0-d1b9-45c7-b827-77682e15c2e0" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,0df840c0-d1b9-45c7-b827-77682e15c2e0.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=9a6d1457-c6c6-4046-ada4-b7a3d333275f</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,9a6d1457-c6c6-4046-ada4-b7a3d333275f.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,9a6d1457-c6c6-4046-ada4-b7a3d333275f.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=9a6d1457-c6c6-4046-ada4-b7a3d333275f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <table border="0">
          <tbody>
            <tr>
              <td>
                <p>
I took a neat quiz today... Drop me a line and let me know what you are.
</p>
                <p>
                  <a href="http://quiz.ravenblack.net/videogame.pl">
                    <img height="80" alt="What Video Game Character Are You? I am a Breakout Bat." src="http://quiz.ravenblack.net/videogame/10.png" width="150" align="left" border="0" />
                  </a>I
am <b>a Breakout Bat</b>.<br /><br />
I am an abstract sort of creature, who dislikes any sort of restraint. If you try
to pigeonhole me, I'll break the box, and come back for more. I don't have any particular
ambitions, I just drift, but I am adept at keeping life going along. <a href="http://quiz.ravenblack.net/videogame.pl">What
Video Game Character Are You?</a></p>
              </td>
            </tr>
          </tbody>
        </table>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=9a6d1457-c6c6-4046-ada4-b7a3d333275f" />
      </body>
      <title>I am a video game character...</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,9a6d1457-c6c6-4046-ada4-b7a3d333275f.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/12/03/IAmAVideoGameCharacter.aspx</link>
      <pubDate>Fri, 03 Dec 2004 20:50:08 GMT</pubDate>
      <description>&lt;table border=0&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;
I took a neat quiz today... Drop me a line and let me know what you are.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://quiz.ravenblack.net/videogame.pl"&gt;&lt;img height=80 alt="What Video Game Character Are You? I am a Breakout Bat." src="http://quiz.ravenblack.net/videogame/10.png" width=150 align=left border=0&gt;&lt;/a&gt;I
am &lt;b&gt;a Breakout Bat&lt;/b&gt;.&lt;br&gt;
&lt;br&gt;
I am an abstract sort of creature, who dislikes any sort of restraint. If you try
to pigeonhole me, I'll break the box, and come back for more. I don't have any particular
ambitions, I just drift, but I am adept at keeping life going along. &lt;a href="http://quiz.ravenblack.net/videogame.pl"&gt;What
Video Game Character Are You?&lt;/a&gt; 
&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=9a6d1457-c6c6-4046-ada4-b7a3d333275f" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,9a6d1457-c6c6-4046-ada4-b7a3d333275f.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=6b8c27ef-a811-440a-a930-5bd0c38c3520</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,6b8c27ef-a811-440a-a930-5bd0c38c3520.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,6b8c27ef-a811-440a-a930-5bd0c38c3520.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=6b8c27ef-a811-440a-a930-5bd0c38c3520</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Mac is equal to an infinite load of crap.
</p>
        <p>
Let me elaborate. I'm currently a system admin for a small company. We have a windows
network. It works great. We share files, printers, internet, and email using microsoft
software. (don't even get me started on the monopoly discussion)
</p>
        <p>
So we have a vendor (non-ficticious), and they have this "mac" G4 laptop that they've
brought with to read email. Our laptops connect to a wireless access point that
(until today) used the WEP protocol for security. The 64bit variety with a 10 character
HEX key and, this is where the problem comes in, a Key Index of 2. This was not something
I thought was non-standard. Apparantly to a mac, this is unacceptable. First of all,
they want to use 40bit or 128bit... 64 doesn't fly. Secondly, the software did not
have any (obviously apparant in comparison to windows) place to configure a Key Index.
so... Of course they're a customer so I'm going to bend over and do whatever I can
to accommodate them... We're now using 128bit WPA with a PSK (preshared key). Mac
has an IP address, all is well. 
</p>
        <p>
No wait, theres more. So They have these "special" fedex shipping forms that they
want to give the office manager, so naturally they zip the file (MIME doesn't exist
in Mac-Reality or something so God forbid they should use the 20% of our bandwidth
to send the files unzipped) Would have been fine if somehow the files hadn't had a
pipe, "|" in the file name in the zip file. Apparantly since the pipe is an illegal
character in folders/files, Windows XP zip, Winzip, WinRAR won't make a file with
this name. Consequently, I could find no way to rename files that were already in
an archive either.
</p>
        <p>
So, StuffIT to the rescue (if you could call it that)... This software (that I swear
only Mac people use) did do the job (the windows version) allowing the files to be
"unzipped" and magically the pipes were gone... making me believe that they were just
there as placeholders when the files were added in the first place. So, I give a big
middle finger to both Apple for having worthless WiFi config, and to Alladin Software
for making a worthless piece of software.
</p>
        <p>
For those of you who feel compelled to send me a flame, enjoy yourself. <a href="mailto:jeremy.simmons(at)jeremysimmons(dot)net">jeremy.simmons(at)jeremysimmons(dot)net</a></p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=6b8c27ef-a811-440a-a930-5bd0c38c3520" />
      </body>
      <title>Macs = ((load) X (crap))^&amp;#8734;</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,6b8c27ef-a811-440a-a930-5bd0c38c3520.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/11/19/MacsLoadXCrap8734.aspx</link>
      <pubDate>Fri, 19 Nov 2004 20:08:06 GMT</pubDate>
      <description>&lt;p&gt;
Mac is equal to an infinite load of crap.
&lt;/p&gt;
&lt;p&gt;
Let me elaborate. I'm currently a system admin for a small company. We have a windows
network. It works great. We share files, printers, internet, and email using microsoft
software.&amp;nbsp;(don't even get me started on the monopoly discussion)
&lt;/p&gt;
&lt;p&gt;
So we have a vendor (non-ficticious), and they have this "mac" G4 laptop that they've
brought with to read email.&amp;nbsp;Our laptops connect to a wireless access point that
(until today) used the WEP protocol for security. The 64bit variety with a 10 character
HEX key and, this is where the problem comes in, a Key Index of 2. This was not something
I thought was non-standard. Apparantly to a mac, this is unacceptable. First of all,
they want to use 40bit or 128bit... 64 doesn't fly. Secondly, the software did not
have any (obviously apparant in comparison to windows) place to configure a Key Index.
so... Of course they're a customer so I'm going to bend over and do whatever I can
to accommodate them... We're now using 128bit WPA with a PSK (preshared key). Mac
has an IP address, all is well. 
&lt;/p&gt;
&lt;p&gt;
No wait, theres more. So They have these "special" fedex shipping forms that they
want to give the office manager, so naturally they zip the file (MIME doesn't exist
in Mac-Reality or something so God forbid they should use the 20% of our bandwidth
to send the files unzipped) Would have been fine if somehow the files hadn't had a
pipe, "|" in the file name in the zip file. Apparantly since the pipe is an illegal
character in folders/files, Windows XP zip, Winzip, WinRAR won't make a file with
this name. Consequently, I could find no way to rename files that were already in
an archive either.
&lt;/p&gt;
&lt;p&gt;
So, StuffIT to the rescue (if you could call it that)... This software (that I swear
only Mac people use) did do the job (the windows version) allowing the files to be
"unzipped" and magically the pipes were gone... making me believe that they were just
there as placeholders when the files were added in the first place. So, I give a big
middle finger to both Apple for having worthless WiFi config, and to Alladin Software
for making a worthless piece of software.
&lt;/p&gt;
&lt;p&gt;
For those of you who feel compelled to send me a flame, enjoy yourself. &lt;a href="mailto:jeremy.simmons(at)jeremysimmons(dot)net"&gt;jeremy.simmons(at)jeremysimmons(dot)net&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=6b8c27ef-a811-440a-a930-5bd0c38c3520" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,6b8c27ef-a811-440a-a930-5bd0c38c3520.aspx</comments>
      <category>General</category>
      <category>Work Sucks</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=b66d1e1d-a169-4612-8781-efe6357cbbc5</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,b66d1e1d-a169-4612-8781-efe6357cbbc5.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,b66d1e1d-a169-4612-8781-efe6357cbbc5.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=b66d1e1d-a169-4612-8781-efe6357cbbc5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Have you every heard someone say something like 
</p>
        <p>
"One man with a club is a hooligan. A thousand men with clubs are a regiment."
</p>
        <p>
or maybe
</p>
        <p>
"Kill one man, and you're a murderer; Kill a thousand men and you're a conquerer"
</p>
        <p>
I'm not so sure this is a correct approach to life on any level. Is a man with a club,
still only a hooligan in any amount? Have you not simply identified a group of 1000
hooligan's. On the same tangent, have you not just given that murderer the pardon
for 999 murders, because now you consider him to be a conquerer. 
</p>
        <p>
Take a stand. Speak the truth. A conquerer is no more than a serial or mass murderer,
and a mob is no more than a 'bunch' of hooligans who have mutually accepted eachother's
wrongness.
</p>
        <p>
When you see your fellow man try to excuse their own or another's inadequecy or faults
because they have joined 'mainstream' or 'the norm', call them on it. There are still
absolute truths that dictate a moral society.
</p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=b66d1e1d-a169-4612-8781-efe6357cbbc5" />
      </body>
      <title>A matter of perspective</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,b66d1e1d-a169-4612-8781-efe6357cbbc5.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/11/16/AMatterOfPerspective.aspx</link>
      <pubDate>Tue, 16 Nov 2004 18:21:53 GMT</pubDate>
      <description>&lt;p&gt;
Have you every heard someone say something like 
&lt;/p&gt;
&lt;p&gt;
"One man with a club is a hooligan. A thousand men with clubs are a regiment."
&lt;/p&gt;
&lt;p&gt;
or maybe
&lt;/p&gt;
&lt;p&gt;
"Kill one man, and you're a murderer; Kill a thousand men and you're a conquerer"
&lt;/p&gt;
&lt;p&gt;
I'm not so sure this is a correct approach to life on any level. Is a man with a club,
still only a hooligan in any amount? Have you not simply identified a group of 1000
hooligan's. On the same tangent, have you not just given that murderer the pardon
for 999 murders, because now you consider him to be a conquerer. 
&lt;/p&gt;
&lt;p&gt;
Take a stand. Speak the truth. A conquerer is no more than a serial or mass murderer,
and a mob is no more than a 'bunch' of hooligans who have mutually accepted eachother's
wrongness.
&lt;/p&gt;
&lt;p&gt;
When you see your fellow man try to excuse their own or another's inadequecy or faults
because they have joined 'mainstream' or 'the norm', call them on it. There are still
absolute truths that dictate a moral society.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=b66d1e1d-a169-4612-8781-efe6357cbbc5" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,b66d1e1d-a169-4612-8781-efe6357cbbc5.aspx</comments>
      <category>General</category>
      <category>Politics</category>
    </item>
    <item>
      <trackback:ping>http://www.jeremysimmons.net/blog/Trackback.aspx?guid=579833ff-7e0f-4d4a-9158-19956605b7c8</trackback:ping>
      <pingback:server>http://www.jeremysimmons.net/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.jeremysimmons.net/blog/PermaLink,guid,579833ff-7e0f-4d4a-9158-19956605b7c8.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.jeremysimmons.net/blog/CommentView,guid,579833ff-7e0f-4d4a-9158-19956605b7c8.aspx</wfw:comment>
      <wfw:commentRss>http://www.jeremysimmons.net/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=579833ff-7e0f-4d4a-9158-19956605b7c8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Apparantly if you're going to be any kind of a respectable computer geek these days,
you need something called a Blog. For those of you who don't know what this is, perhaps
the following will be enlightening. I'm probably preaching to the choir here, as I'm
sure anyone reading this is somewhat of a geek already. That said, you can ignore
the definition, the rest of you read closely.
</p>
        <p>
          <b>blog</b>
        </p>
        <p>
n : a shared on-line journal where people can post diary entries about their personal
experiences and hobbies [syn: web log]
</p>
        <p>
So apparantly, if you've ever wanted to peer into my life, or thoughts, or whatever
else you believe I may be thinking about, it's probably going to be here. Check back
often.
</p>
        <img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=579833ff-7e0f-4d4a-9158-19956605b7c8" />
      </body>
      <title>I geek, therefore I blog</title>
      <guid isPermaLink="false">http://www.jeremysimmons.net/blog/PermaLink,guid,579833ff-7e0f-4d4a-9158-19956605b7c8.aspx</guid>
      <link>http://www.jeremysimmons.net/blog/2004/10/06/IGeekThereforeIBlog.aspx</link>
      <pubDate>Wed, 06 Oct 2004 14:17:47 GMT</pubDate>
      <description>&lt;p&gt;
Apparantly if you're going to be any kind of a respectable computer geek these days,
you need something called a Blog. For those of you who don't know what this is, perhaps
the following will be enlightening. I'm probably preaching to the choir here, as I'm
sure anyone reading this is somewhat of a geek already. That said, you can ignore
the definition, the rest of you read closely.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;blog&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
n : a shared on-line journal where people can post diary entries about their personal
experiences and hobbies [syn: web log]
&lt;/p&gt;
&lt;p&gt;
So apparantly, if you've ever wanted to peer into my life, or thoughts, or whatever
else you believe I may be thinking about, it's probably going to be here. Check back
often.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.jeremysimmons.net/blog/aggbug.ashx?id=579833ff-7e0f-4d4a-9158-19956605b7c8" /&gt;</description>
      <comments>http://www.jeremysimmons.net/blog/CommentView,guid,579833ff-7e0f-4d4a-9158-19956605b7c8.aspx</comments>
      <category>General</category>
    </item>
  </channel>
</rss>