<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>Joel Thoms's WebLog</title><description>Joel Thoms</description><language>en-us</language><docs>http://blogs.law.harvard.edu/tech/rss</docs><link>http://joel.net/me/weblog.aspx</link><generator>Joel.Net.WebLogs (http://joel.net/code/weblogs.aspx)</generator><lastBuildDate>Tue, 22 Apr 2008 03:25:48 GMT</lastBuildDate><managingEditor>no-reply@joel.net</managingEditor><webMaster>no-reply@joel.net</webMaster><copyright>Copyright 2004, Joel Thoms</copyright><image><url>http://joel.net/shared/templates/main/images/logo.gif</url><title>joel.net logo</title><link>http://joel.net/me/weblog.aspx</link><width>80</width><height>33</height></image><item><title>My Extremely Thorough Evaluation of FlashFXP</title><description>Well, I think I have finally finished my extremely thorough and complete evaluation of &lt;A href="http://www.inicom.net/pages/en.ffxp-home.php"&gt;FlashFXP&lt;/A&gt; and have decided to purchase the product.&lt;/P&gt;
&lt;P&gt;Thanks for the great tool FlashFXP!&lt;/P&gt;</description><pubDate>Tue, 14 Aug 2007 06:25:34 GMT</pubDate><guid isPermaLink="false">98a7f926-9b57-41a7-8dab-7fb53ff2fc81</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=98a7f926-9b57-41a7-8dab-7fb53ff2fc81</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=98a7f926-9b57-41a7-8dab-7fb53ff2fc81</comments></item><item><title>Simultaneously reading StandardOutput and StandardError from System.Diagnostics.Process</title><description>&lt;P&gt;There are many code samples that show you how to read from either StandardOutput or StandardError.&amp;nbsp; I've also run across a few more complicated code examples that spawn new processes to handle the reading of StandardOutput and StandardError.&lt;/P&gt;
&lt;P&gt;Reading from StandardOut (or StandardError) is simple, all you need to do is set a property and create a simple loop...&lt;BR&gt;&lt;/P&gt;&lt;PRE&gt;proc.StartInfo.RedirectStandardOutput = true;

while (!proc.StandardOutput.EndOfStream) {
  string line = proc.StandardOutput.ReadLine();
  Console.WriteLine("&amp;gt;{0}", line);
}&lt;/PRE&gt;&lt;BR&gt;Reading both is not much more complex.&amp;nbsp; You just have to test EndOfStream on both streams. &lt;PRE&gt;System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.FileName = Environment.CurrentDirectory + @"\" + zipCmd;
proc.StartInfo.Arguments = String.Format("-rSv \"{0}\" .", zipFile);
proc.StartInfo.WorkingDirectory = directory;
proc.Start();

while (!proc.StandardOutput.EndOfStream || !proc.StandardError.EndOfStream) {
  string line;

  if (!proc.StandardOutput.EndOfStream
    &amp;amp;&amp;amp; (line = proc.StandardOutput.ReadLine()) != null) {
    Console.WriteLine("&amp;gt;&amp;gt;{0}", line);
  }
  if (!proc.StandardError.EndOfStream
    &amp;amp;&amp;amp; (line = proc.StandardError.ReadLine()) != null) {
    Console.WriteLine("!!{0}", line);
  }
}
&lt;/PRE&gt;</description><pubDate>Tue, 27 Mar 2007 06:03:45 GMT</pubDate><guid isPermaLink="false">06fa16b4-cbdd-415d-8996-529763ab0534</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=06fa16b4-cbdd-415d-8996-529763ab0534</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=06fa16b4-cbdd-415d-8996-529763ab0534</comments></item><item><title>OptOutPreScreen.com</title><description>&lt;P&gt;Today in my mailbox I received one of those generic "YOU ARE PRE-APPROVED" notices.&amp;nbsp; I get a TON of these every day.&amp;nbsp; I'm currently&amp;nbsp;holding in my hand 3 just from CapitalOne (F CapitalOne btw).&lt;/P&gt;
&lt;P&gt;Well, I actually read one of these instead of feeding it directly into the shredder and I come across this interesting paragraph...&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;You can choose to stop receiving "prescreened" offers of credit from this and other companies by calling toll-free (888-567-8688).&amp;nbsp; See PRESCREEN &amp;amp; OPT-OUT NOTICE included for more information about prescreened offers.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I find the notice...&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;PRESCREEN &amp;amp; OPT-OUT NOTICE: If you do not want to receive prescreened offers of credit from this or any other companies, call the consumer reporting agencies toll free, 1-888-5OPT-OUT (or 1-888-567-8688); or write to one or more such consumer reporting agencies at: TransUnion Opt Out Request, PO Box 505, Woodlyn, PA 19094-0505; Equifax Options, P.O. Box 740123, Atlanta, GA 30374-0123; Experian Marketing, P.O. Box 919, Allen, TX 75013; or visit the following website at &lt;/EM&gt;&lt;A href="http://www.optoutprescreen.com/"&gt;&lt;EM&gt;www.optoutprescreen.com&lt;/EM&gt;&lt;/A&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;So after doing a little digging around, I find &lt;A href="http://www.fraudguides.com/consumer_optoutprescreen.asp"&gt;this website seems to be legit&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Now I wait and see...&lt;/P&gt;</description><pubDate>Sat, 10 Feb 2007 09:41:07 GMT</pubDate><guid isPermaLink="false">2cb750c6-d914-4b9b-b984-2f9f1697a129</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2cb750c6-d914-4b9b-b984-2f9f1697a129</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2cb750c6-d914-4b9b-b984-2f9f1697a129</comments></item><item><title>Default button behavior in ASP.net 2.0</title><description>&lt;P&gt;&lt;B&gt;Simple default button&lt;/B&gt;&lt;BR&gt;Setting a global default button for the page is very simple, all you have to do is add this code to your page... (You can get this working in ASP.net 1.x by changing 'ClientScript' to 'Page') &lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;ClientScript.RegisterHiddenField("__EVENTTARGET", myButton.ClientID);&lt;/FONT&gt; &lt;/P&gt;
&lt;P&gt;Though, this method will not work if you want &lt;I&gt;multiple&lt;/I&gt; default buttons, as the single button event will always be fired.&amp;nbsp; Another caveat of this method is your JavaScript code (onclick, validators, etc) will not be fired and the form will post back to the server.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Multiple default buttons&lt;BR&gt;&lt;/B&gt;&lt;IMG style="MARGIN-BOTTOM: 10px; WIDTH: 283px; MARGIN-RIGHT: 10px; HEIGHT: 46px" height=46 alt=default-bottons.gif hspace=0 src="/shared/WebLogs/FTBGallery/2006/10/default-bottons.gif" width=283 align=left border=0&gt; It's not too much more difficult to implement &lt;I&gt;multiple&lt;/I&gt; default buttons (see figure on the left)&amp;nbsp;using client-side JavaScript.&amp;nbsp; I accomplish this&amp;nbsp;by capturing the carriage return keypress and simulating a button click. Here's the code... &lt;/P&gt;
&lt;P style="TEXT-ALIGN: left"&gt;&lt;FONT face="Courier New"&gt;textBox.Attributes.Add("onKeyPress", "if((event.keyCode||event.which)==13){document.getElementById('" + button.ClientID + "').click();return false;}");&lt;/FONT&gt; &lt;/P&gt;
&lt;P&gt;I've tested this code in both IE and Firefox and it seems to behave ok. I don't really care about the other browsers, but if you do, then &lt;I&gt;you'll&lt;/I&gt; have to test. &lt;/P&gt;
&lt;P&gt;You might also want to read my previous blog on &lt;A href="/me/weblogs_show=e9fd9351-911b-4aff-b18c-debe09ca253b"&gt;Firefox's auto-complete JavaScript bug&lt;/A&gt;. &lt;/P&gt;</description><pubDate>Fri, 20 Oct 2006 12:39:44 GMT</pubDate><guid isPermaLink="false">c83bc282-fbc6-4fd1-93e8-3991b91377e4</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=c83bc282-fbc6-4fd1-93e8-3991b91377e4</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=c83bc282-fbc6-4fd1-93e8-3991b91377e4</comments></item><item><title>Firefox auto-complete javascript bug</title><description>&lt;P&gt;&lt;IMG style="WIDTH: 50px; HEIGHT: 50px" height=50 alt="fire fox" hspace=5 src="/shared/WebLogs/FTBGallery/2006/10/firefox.gif" width=50 align=left vspace=5 border=0&gt; So, after about an hour of trying to debug my JavaScript, I put the code down and decided to ask google.&amp;nbsp; It turns out, the error message below, could be a bug in Firefox's auto-complete feature.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;Error: [Exception... "'Permission denied to get property XULElement.selectedIndex' when calling method: [nsIAutoCompletePopup::selectedIndex]"&amp;nbsp; nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)"&amp;nbsp; location: "JS frame :: &lt;UNKNOWN filename&gt;:: onkeydown :: line 0"&amp;nbsp; data: no]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;I wasn't doing anything complex; all I did was add the &lt;FONT face="Courier New"&gt;OnKeyPress&lt;/FONT&gt; handler to a text box.&lt;/P&gt;
&lt;P&gt;I believe the error is harmless, my code seemed to execute just fine even with the error.&amp;nbsp; But if you find it annoying like I do, you can disable auto-complete by adding &lt;FONT face="Courier New"&gt;autocomplete="off"&lt;/FONT&gt; into your input field.&lt;/P&gt;
&lt;P&gt;After doing a little investigating, it appears the error will occur when you change focus in the&amp;nbsp;&lt;FONT face="Courier New"&gt;OnKeyPress&lt;/FONT&gt; or &lt;FONT face="Courier New"&gt;OnKeyDown&lt;/FONT&gt; events.&amp;nbsp; I'm not sure of what other events are affected.&lt;/P&gt;</description><pubDate>Thu, 19 Oct 2006 10:19:43 GMT</pubDate><guid isPermaLink="false">e9fd9351-911b-4aff-b18c-debe09ca253b</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=e9fd9351-911b-4aff-b18c-debe09ca253b</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=e9fd9351-911b-4aff-b18c-debe09ca253b</comments></item><item><title>Creating a dashed-line border for your controls</title><description>&lt;P&gt;All System.Windows.Forms controls have a BorderStyle property. The choices of which are limited to: None, FixedSingle and Fixed3D.&lt;/P&gt;
&lt;P&gt;Creating a "dashed-line border" requires some customization you'll have to add yourself.&lt;/P&gt;
&lt;P&gt;I've created the following graphics that will create two different dashed border effects.&lt;BR&gt;&lt;A href="/shared/WebLogs/FTBGallery/2006/09/border-a.gif"&gt;&lt;IMG height=50 src="/shared/WebLogs/FTBGallery/2006/09/border-a.gif" width=50 border=0&gt; border-a.gif&lt;/A&gt; (easiest to get working)&lt;BR&gt;&lt;A href="/shared/WebLogs/FTBGallery/2006/09/border-b.gif"&gt;&lt;IMG height=50 src="/shared/WebLogs/FTBGallery/2006/09/border-b.gif" width=50 border=0&gt; border-b.gif&lt;/A&gt; (must be modified if height or width is divisible by 4)&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;Note: border-a.gif works with any height and width. border-b.gif is a little trickier to get working (but I think it looks nicer). The height and width of the container cannot be divisible by 4 or you will get an invisible border on that side. If you cannot adjust the height or width of the container, then you must modify the image. &lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 394px; HEIGHT: 272px" alt="" hspace=4 src="/shared/WebLogs/FTBGallery/2006/09/BorderStyles.gif" align=right vspace=4 border=0&gt; Setting up the new BorderStyle is easist for the PictureBox control. After setting the Image for the PictureBox, set margins = "1, 1, 1, 1" and set the BackgroundImage to be one of the border gif's. &lt;/P&gt;
&lt;P&gt;Other containers like Panels are easy to setup as well. First, set the BackgroundImage of the Panel to be your background graphic of choice. Next, you will need to embed a 2nd Panel overlaying the Panel with the BackgroundImage. This Panel should be at position 1,1 (inside the first Panel) and have a width of Panel1.Width - 2 and a height of Panel2.Height - 2. &lt;/P&gt;
&lt;P&gt;That's all you really have to do to create the dashed-line BorderStyle effect for WinForms.&lt;/P&gt;</description><pubDate>Sat, 23 Sep 2006 12:36:06 GMT</pubDate><guid isPermaLink="false">bcdce966-b4d6-4559-95e3-38b0e498abf8</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=bcdce966-b4d6-4559-95e3-38b0e498abf8</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=bcdce966-b4d6-4559-95e3-38b0e498abf8</comments></item><item><title>Get the calling method name by looking in the StackTrace (C#)</title><description>&lt;p&gt;I needed a way to return the name of the calling method.&amp;nbsp;  I learned this can be done quite easily
with the StackTrace object.&lt;/p&gt;
&lt;p&gt;This is how you get the current method name, or the calling method name...&lt;/p&gt;

&lt;pre&gt;System.Diagnostics.&lt;font color="#2b91af"&gt;StackTrace&lt;/font&gt; stack = &lt;font color="blue"&gt;new&lt;/font&gt; System.Diagnostics.&lt;font color="#2b91af"&gt;StackTrace&lt;/font&gt;();
&lt;font color="blue"&gt;string&lt;/font&gt; currentMethod = stack.GetFrame(0).GetMethod().Name;
&lt;font color="blue"&gt;string&lt;/font&gt; callingMethod = stack.GetFrame(1).GetMethod().Name;&lt;/pre&gt;


I've also wrapped this functionality into an easily callable method.

&lt;pre&gt;&lt;font color="gray"&gt;/// &amp;lt;summary&amp;gt;&lt;/font&gt;&lt;font color="green"&gt;Gets the calling method.&lt;/font&gt;&lt;font color="gray"&gt;&amp;lt;/summary&amp;gt;&lt;/font&gt;
&lt;font color="gray"&gt;/// &amp;lt;remarks&amp;gt;&lt;/font&gt;&lt;font color="green"&gt;There may be a performance impact with using this method.&lt;/font&gt;&lt;font color="gray"&gt;&amp;lt;/remarks&amp;gt;&lt;/font&gt;
&lt;font color="blue"&gt;internal static&lt;/font&gt; System.Reflection.&lt;font color="#2b91af"&gt;MethodBase&lt;/font&gt; GetCallingMethod() {
    System.Diagnostics.&lt;font color="#2b91af"&gt;StackTrace&lt;/font&gt; s = &lt;font color="blue"&gt;new&lt;/font&gt; System.Diagnostics.&lt;font color="#2b91af"&gt;StackTrace&lt;/font&gt;();
    &lt;font color="blue"&gt;return&lt;/font&gt; (s.FrameCount &amp;gt; 1) ? s.GetFrame(2).GetMethod() : &lt;font color="blue"&gt;null&lt;/font&gt;;
}&lt;/pre&gt;
</description><pubDate>Fri, 22 Sep 2006 11:48:45 GMT</pubDate><guid isPermaLink="false">1e70c1cf-16b4-4f5b-9547-03e36c3ace28</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=1e70c1cf-16b4-4f5b-9547-03e36c3ace28</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=1e70c1cf-16b4-4f5b-9547-03e36c3ace28</comments></item><item><title>Using JavaScript to force browsers to obey the CSS max-height Property</title><description>The &lt;a href="http://www.w3schools.com/css/pr_dim_max-height.asp"&gt;CSS max-height Property&lt;/a&gt; has been ignored by browsers for many years.
Fortunately there is a way to hack this W3C "standard" into submission using JavaScript.
&lt;br /&gt;&lt;br /&gt;

Add this JavaScript method to the top of your page...

&lt;pre&gt;&lt;font color="blue"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#a31515"&gt;script&lt;/font&gt;&amp;gt;&lt;/font&gt;
    &lt;font color="blue"&gt;function&lt;/font&gt; ConstrainHeight(e, height) {
        &lt;font color="blue"&gt;if&lt;/font&gt; (height == &lt;font color="blue"&gt;null&lt;/font&gt;) {
            height = (e.style.getPropertyValue == &lt;font color="blue"&gt;null&lt;/font&gt;)
                ? e.style[&lt;font color="#a31515"&gt;"max-height"&lt;/font&gt;]
                : e.style.getPropertyValue(&lt;font color="#a31515"&gt;"max-height"&lt;/font&gt;);
            if (height != &lt;font color="blue"&gt;null&lt;/font&gt; &amp;&amp; height.substring(height.length - 2) == &lt;font color="#a31515"&gt;"px"&lt;/font&gt;)
                height = height.substring(0, height.length - 2);
        }
        &lt;font color="blue"&gt;if&lt;/font&gt; (height != &lt;font color="blue"&gt;null&lt;/font&gt; &amp;&amp; e.scrollHeight &amp;gt; height) e.style.height = height + &lt;font color="#a31515"&gt;"px"&lt;/font&gt;;
    }
&lt;font color="blue"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#a31515"&gt;script&lt;/font&gt;&lt;font color="blue"&gt;&amp;gt;&lt;/font&gt;&lt;/pre&gt;

In addition to adding the 'max-height' property in the style, you'll also have to add 'overflow:auto'.

&lt;pre&gt;&lt;font color="blue"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#a31515"&gt;div&lt;/font&gt; &lt;font color="red"&gt;id&lt;/font&gt;&lt;font color="blue"&gt;="myDiv"&lt;/font&gt; &lt;font color="red"&gt;style&lt;/font&gt;&lt;font color="blue"&gt;="overflow:auto;max-height:50px;"&lt;/font&gt;&lt;font color="blue"&gt;&amp;gt;&lt;/font&gt;
...
&lt;font color="blue"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#a31515"&gt;div&lt;/font&gt;&lt;font color="blue"&gt;&amp;gt;&lt;/font&gt;&lt;/pre&gt;

Last, all you've got to do is call the JavaScript...

&lt;pre&gt;&lt;font color="blue"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#a31515"&gt;script&lt;/font&gt;&lt;/font&gt;&amp;gt;ConstrainHeight(document.getElementById(&lt;font color="#a31515"&gt;'myDiv'&lt;/font&gt;));&lt;font color="blue"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#a31515"&gt;script&lt;/font&gt;&lt;font color="blue"&gt;&amp;gt;&lt;/font&gt;&lt;/pre&gt;

... and the max-height property is now obeyed!</description><pubDate>Thu, 21 Sep 2006 05:27:19 GMT</pubDate><guid isPermaLink="false">f85dae6c-d776-4005-9cdb-f2b706a78af7</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=f85dae6c-d776-4005-9cdb-f2b706a78af7</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=f85dae6c-d776-4005-9cdb-f2b706a78af7</comments></item><item><title>Thomas Jefferson Quotes</title><description>&lt;P&gt;&lt;B&gt;A little rebellion now and then is a good thing.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;God forbid we should ever be twenty years without such a rebellion. The people cannot be all, and always, well informed. The part which is wrong will be discontented, in proportion to the importance of the facts they misconceive. If they remain quiet under such misconceptions, it is lethargy, the forerunner of death to the public liberty. ... And what country can preserve its liberties, if it's rulers are not warned from time to time, that this people preserve the spirit of resistance? Let them take arms. The remedy is to set them right as to the facts, pardon and pacify them. What signify a few lives lost in a century or two? The tree of liberty must be refreshed from time to time, with the blood of patriots and tyrants. It is its natural manure., November 13, 1787, letter to William Stephens Smith, quoted in Padover's Jefferson On Democracy &lt;/P&gt;&lt;B&gt;The democracy will cease to exist when you take away from those who are willing to work and give to those who would not.&lt;/B&gt; &lt;B&gt;A democracy is nothing more than mob rule, where fifty-one percent of the people may take away the rights of the other forty-nine.&lt;/B&gt; 
&lt;P&gt;&lt;B&gt;I, however, place economy among the first and most important republican virtues, and public debt as the greatest of the dangers to be feared.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;I am for a government rigorously frugal and simple. Were we directed from Washington when to sow, when to reap, we should soon want bread. &lt;/P&gt;
&lt;P&gt;I think we have more machinery of government than is necessary, too many parasites living on the labor of the industrious.&lt;/P&gt;
&lt;P&gt;Laws that forbid the carrying of arms... disarm only those who are neither inclined nor determined to commit crimes... Such laws make things worse for the assaulted and better for the assailants; they serve rather to encourage than to prevent homicides, for an unarmed man may be attacked with greater confidence than an armed man. -- in "Commonplace Book," 1774-1776, quoting from On Crimes and Punishment, by criminologist Cesare Beccaria, 1764 &lt;/P&gt;
&lt;P&gt;The glow of one warm thought is to me worth more than money. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Those who don't read the newspapers are better off than those who do insofar as those who know nothing are better off than those whose heads are filled with half-truths and lies. &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;I contemplate with sovereign reverence that act of the whole American people which declared that their legislature should 'make no law respecting an establishment of religion, or prohibiting the free exercise thereof,' thus, building a wall of separation between Church and State., 1802, quoted in Andrew A. Lipscomb's Writings 16:281 &lt;/P&gt;
&lt;P&gt;&lt;B&gt;When all government, in little as in great things, shall be drawn to Washington as the Center of all power, it will render powerless the checks provided of one government on another and will become as venal and oppressive as the government from which we separated., 1821 &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;I know of no safe depository of the ultimate powers of the society but the people themselves; not enlightened enough to exercise their control with wholesome discretion, the remedy is not to take it from them, but to inform their discretion. Enlighten the people generally and tyranny and oppressions of body and mind will vanish like evil spirits at the dawn of day. &lt;/P&gt;
&lt;P&gt;When a man assumes a public trust, he should consider himself as public property. &lt;/P&gt;
&lt;P&gt;The general (federal) government will tend to monarchy, which will fortify itself from day to day, instead of working its own cures. &lt;/P&gt;
&lt;P&gt;Experience hath shown, that even under the best forms [of government] those entrusted with power have, in time, and by slow operations, perverted it into tyranny., Bill for the More General diffusion of Knowledge (1778). &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Government big enough to supply everything you need is big enough to take everything you have .... The course of history shows that as a government grows, liberty decreases.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;If a nation expects to be ignorant and free in a state of civilization, it expects what never was and never will be... if we are to guard against ignorance and remain free, it is the responsibility of every American to be informed. &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;On every question of construction (of the Constitution) let us carry ourselves back to the time when the Constitution was adopted, recollect the spirit manifested in the debates, and instead of trying what meaning may be squeezed out of the text, or invented against it, conform to the probable one in which it was passed., letter to William Johnson, June 12, 1823, The Complete Jefferson, p322. &lt;/P&gt;
&lt;P&gt;Rightful liberty is unobstructed action according to our will within limits drawn around us by the equal rights of others. I do not add 'within the limits of the law', because law is often but the tyrant's will, and always so when it violates the rights of the individual. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;Our peculiar security is in the possession of a written Constitution. Let us not make it a blank paper by construction.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;The law of self-preservation is higher than written law.&lt;/P&gt;
&lt;P&gt;The judiciary of the United States is the subtle corps of sappers and miners constantly working under ground to undermine the foundations of our confederated fabric. They are construing our constitution from a co-ordination of a general and special government to a general and supreme one alone. &lt;/P&gt;
&lt;P&gt;&lt;B&gt;One single object...[will merit] the endless gratitude of the society: that of restraining the judges from usurping legislation.&lt;/B&gt;
&lt;P&gt;
&lt;P&gt;The legitimate powers of government extend to such acts only as they are injurious to others., Notes on the State of Virginia (1781-1785).&lt;/P&gt;
&lt;P&gt;&lt;B&gt;No man has a natural right to commit aggression on the equal rights of another, and this is all from which the laws ought to restrain him. ...the idea is quite unfounded that on entering into society we give up any natural rights., in a letter to Francis W. Gilmor, July 7, 1786&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;I would rather be exposed to the inconveniences attending too much liberty than to those attending too small a degree of it.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;The policy of the American government is to leave its citizens free, neither restraining them nor aiding them in their pursuits.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;To take from one, because it is thought that his own industry and that of his fathers has acquired too much, in order to spare others, who, or whose fathers have not exercised equal industry and skill, is to violate arbitrarily the first principle of association, 'the guarantee to every one of a free exercise of his industry, and the fruits acquired by it.' &lt;/P&gt;
&lt;P&gt;&lt;B&gt;The same prudence which in private life would forbid our paying our own money for unexplained projects, forbids it in the dispensation of the public moneys., 1821 &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;If ever there was a holy war, it was that which saved our liberties and gave us independence. &lt;/P&gt;The moral sense is as much a part of our constitution as that of feeling, seeing, or hearing. </description><pubDate>Fri, 15 Sep 2006 04:17:21 GMT</pubDate><guid isPermaLink="false">8e37e2a3-9803-46fe-90eb-292979d3fb2d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=8e37e2a3-9803-46fe-90eb-292979d3fb2d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=8e37e2a3-9803-46fe-90eb-292979d3fb2d</comments></item><item><title>Akismet .Net 2.0 API moved to CodePlex.com</title><description>&lt;P&gt;&lt;A href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=AkismetApi"&gt;&lt;IMG title="Akismet .Net 2.0 API" height=470 alt="Akismet .Net 2.0 API Screenshot" src="/shared/WebLogs/FTBGallery/2006/09/screenshot.codeplex.akismet.gif" width=600 border=0&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I've moved&amp;nbsp;my Akismet .Net 2.0 API library to CodePlex.com.&amp;nbsp; I've used gotdotnet.com in the past, and it was just a horrible site with way too many issues.&amp;nbsp; Hopefully CodePlex has learned something from their mistakes.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=AkismetApi"&gt;http://www.codeplex.com/Wiki/View.aspx?ProjectName=AkismetApi&lt;/A&gt;&lt;/P&gt;</description><pubDate>Mon, 11 Sep 2006 08:57:09 GMT</pubDate><guid isPermaLink="false">b994d80b-6648-4501-aaef-1af8902d1ca7</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b994d80b-6648-4501-aaef-1af8902d1ca7</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b994d80b-6648-4501-aaef-1af8902d1ca7</comments></item><item><title>RxFind, A Command Line, Regular Expression, Search and Replace Tool</title><description>&lt;H2&gt;Overview&lt;/H2&gt;
&lt;P&gt;Written in C# 2.0, RxFind is a command line tool allowing you to search (and replace) the content of files using Regular Expressions. A must have for every administrator. &lt;/P&gt;
&lt;P&gt;In my 13 meg test file, I was able to search and replace (and create a .bak file) in less than 1 second.&lt;/P&gt;
&lt;H2&gt;Warning&lt;/H2&gt;
&lt;P&gt;This tool loads the file into memory before performing searches. It is untested on large files. You might not be able to use this tool with extremely large files.&lt;/P&gt;
&lt;H2&gt;Features&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;B&gt;Command Line Interface&lt;/B&gt; - Perfect for all your scripting and administration needs. 
&lt;LI&gt;&lt;B&gt;Regular Expressions&lt;/B&gt; - That's right -- Regular Expressions. The most powerful way to search. 
&lt;LI&gt;&lt;B&gt;Search Multiple Files&lt;/B&gt; - Can even traverse subdirectories. 
&lt;DIV style="PADDING-LEFT: 10px"&gt;&lt;FONT face="Courier New"&gt;RxFind code\*.cs /s /p:"Joel Thoms"&lt;/FONT&gt;&lt;BR&gt;will search for the text "Joel Thoms" in all .cs files in the code directory. &lt;/DIV&gt;
&lt;LI&gt;&lt;B&gt;Regex Replace&lt;/B&gt; - Regular Expression replace gives you access to the match patern data. 
&lt;DIV style="PADDING-LEFT: 10px"&gt;&lt;FONT face="Courier New"&gt;RxFind test.txt /p:"Full Name: (?&lt;FIRST&gt;.*?) (?&lt;LAST&gt;.*)" /r:"${last}, ${first}"&lt;/FONT&gt;&lt;BR&gt;will transform this text (from test.txt)...&lt;BR&gt;&lt;FONT face="Courier New"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Full Name: Joel Thoms&lt;/FONT&gt;&lt;BR&gt;into this...&lt;BR&gt;&lt;FONT face="Courier New"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Full Name: Thoms, Joel&lt;/FONT&gt;&lt;BR&gt;&lt;/DIV&gt;
&lt;LI&gt;&lt;B&gt;.Bak Files&lt;/B&gt; - Can create a .bak file of the original (just incase you mess something up) &lt;/LI&gt;&lt;/UL&gt;
&lt;H2&gt;Screenshot&lt;/H2&gt;&lt;IMG height=297 src="/software/images/rxfind.gif" width=600&gt;
&lt;br/&gt;&lt;br/&gt;
&lt;a href="/software/rxfind.aspx"&gt;Download&lt;/a&gt;</description><pubDate>Mon, 11 Sep 2006 09:08:33 GMT</pubDate><guid isPermaLink="false">a2b28c3e-b9e0-4a1c-b8b0-bc04861de251</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a2b28c3e-b9e0-4a1c-b8b0-bc04861de251</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a2b28c3e-b9e0-4a1c-b8b0-bc04861de251</comments></item><item><title>Why I don't like my Sidekick 3 -- The bad Sidekick 3 review.</title><description>&lt;P style="TEXT-ALIGN: center"&gt;&lt;IMG height=350 alt="Sidekick 3" src="/shared/WebLogs/FTBGallery/2006/09/sk3-front-open-tilted.jpg" width=400 border=0&gt;&lt;/P&gt;
&lt;P&gt;There are plenty of Sidekick 3 reviews out there that praise this phone... &lt;I&gt;this review does not&lt;/I&gt;.&lt;/P&gt;
&lt;P&gt;I have previously owned the black and white Sidekick, the Sidekick color as well as the Sidekick 2. I liked all these phones, which is why it was natural for me to "upgrade" to the Sidekick 3. This is the first upgrade that has made me feel as if I had downgraded.&lt;/P&gt;
&lt;P&gt;There are many things that &lt;I&gt;I do like more&lt;/I&gt; about the Sidekick 3 (like the new interface / layout, blue tooth, etc), but again, you can read about these on any other Sidekick 3 review.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;the cons (my dislikes&lt;/B&gt;) 
&lt;UL&gt;&lt;B&gt;1.3 megapixel camera&lt;/B&gt; - The Sidekick 2 camera was &lt;I&gt;terrible&lt;/I&gt;. It was almost a joke to use. The Sidekick 3 was promising an improvement over the old 1.2 megapixel camera, which it did -- Barely. This camera is still very sub-par and not worth using.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;MP3 Player&lt;/B&gt; - YES! So the Sidekick 3 comes with an MP3 player that is actually very usable. Unfortunately, even though you can play MP3's, &lt;I&gt;you cannot use an MP3 as your ringtone&lt;/I&gt;. WHAT!? Apparently this would conflict with T-Mobile's marketing and selling of ringtones for $1.99 in the Sidekick catalog, so they screw the user.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;Sidekick catalog&lt;/B&gt; - The catalog is T-Mobile's way of getting you to spend more $$ on your phone. They sell you ringtones, games, applications, etc. (a lot of which are developed by 3rd party vendors) and this is fine. Though T-Mobile is now claiming the Sidekick 3 catalog is a different catalog from before, so any applications you've purchased on any of your previous Sidekick's &lt;I&gt;will not&lt;/I&gt; roll over onto your new phone. They did not do this with any of their previous Sidekick phones. In addition to charging you again for the items you've previously purchased, there are fewer items in the catalog. Apparently all the 3rd party vendors have to update their applications to work with the Sidekick 3. So now applications that I have purchased like Sudoku or a Clock application is not available anymore.&lt;/UL&gt;
&lt;P style="TEXT-ALIGN: center"&gt;&lt;IMG height=222 alt="Sidekick 3" src="/shared/WebLogs/FTBGallery/2006/09/sk3-front-closed.jpg" width=450 border=0&gt;&lt;/P&gt;
&lt;UL&gt;&lt;B&gt;Alarm Clock&lt;/B&gt; - None of the Sidekick's have an alarm clock. This is the only phone I've ever owned that didn't have such a simple feature. With the other Sidekick's this wasn't much of a problem because you could download (from the catalog) a "Time Traveler" application that came with an alarm. Unfortunately this "Time Traveler" application is not available in the Sidekick 3 catalog. Now I'm charging both my Sidekick 2 and Sidekick 3, so I can use the alarm on the Sidekick 2.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;Bluetooth&lt;/B&gt; - You can use headsets and send vCards, but you can't transfer files, play music over Bluetooth, use the Sidekick 3 as a laptop PC modem or sync with your computer.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;Email&lt;/B&gt; - IMAP is offered on the sidekick (just like all previous phones). Unfortunately It's not true IMAP, it acts exactly like POP. It'll pull all your email down to your phone like it should, but if you remove an email from your server, it doesn't reflect on the phone. It also does not understand IMAP folders. This &lt;EM&gt;should have been fixed&lt;/EM&gt; on this phone, since it is the 4th generation of&amp;nbsp;Sidekick.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;MMS&lt;/B&gt; - Multimedia Messaging Service (MMS) has been around for quite some time. MMS is also known as picture messaging. Most new phones can take pictures which in turn&amp;nbsp;can be&amp;nbsp;sent to your friends via MMS. The Sidekick 3 cannot. Instead of receiving an MMS, you receive an SMS (Simple Messaging System/Short Message System/Text Message) saying you've received a picture and to log into www.tmobilepictures.com to view it. You'd think they'd make a Sidekick friendly version of this site, but it's difficult to use through the phone... so most of the time you end up waiting until you're around a PC to view it. &lt;B&gt;LAME!!!&lt;/B&gt;&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;White list / Black list&lt;/B&gt; - I'm a little disappointed this phone doesn't come with white list / black list capabilities. I would like the ability to block calls (or send to voice mail) from everyone not in my phone's address book.&lt;/UL&gt;
&lt;UL&gt;&lt;B&gt;Buttons&lt;/B&gt; - The side buttons have become significantly more difficult to use. Trying to&amp;nbsp;toggle speaker phone or turn the volume up/down during a call? You're going to have to pull the phone away from your face to look at the buttons. uncool. The keyboard has also been converted from a nice rubber to plastic. The keyboard before was &lt;I&gt;much&lt;/I&gt; nicer.&lt;/UL&gt;
&lt;P&gt;I've been hesitant to buy a Bluetooth headset, because &lt;EM&gt;I keep contemplating going back to my Sidekick 2&lt;/EM&gt;. I guess this is what I get for being an early adopter... and to be honest, if I hadn't previously owned Sidekick's I wouldn't have been as let down.&lt;/P&gt;
&lt;P&gt;The Sidekick 3 is a minor upgrade from the previous version.&amp;nbsp; The hardware has been improved, but it seems like they didn't touch the software at all.&amp;nbsp;This has been a very disappointing upgrade.&lt;/P&gt;</description><pubDate>Wed, 06 Sep 2006 03:27:39 GMT</pubDate><guid isPermaLink="false">0d373b6f-4a0e-4f57-91a2-7a608266606e</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=0d373b6f-4a0e-4f57-91a2-7a608266606e</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=0d373b6f-4a0e-4f57-91a2-7a608266606e</comments></item><item><title>Big O Tires vs. Japanese Business Man</title><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;So I'm sitting in Big O Tires, playing with my DS Lite while I wait for them to do what they do, when this small stereotypical Japanese business man with glasses walks in.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;A lot of people had been walking in and out all morning, so I wasn't really paying that much attention... until I heard the Big O rep exclaim, "There's no way I can honor a lifetime warranty that you bought for forty two dollars over 20 years ago."&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Apparently this man had bought a lifetime alignment warranty for his car 20 years ago and was getting upset that they weren't going to honor it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;The Big O guy says "You have to understand where I'm coming from, Big O is a franchise, these are privately owned.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;This store has changed ownership many times over twenty years.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;We do not sell lifetime warranties any more."&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;After a little back and forth argument, the Japanese business man is starting to get a little upset and says, "Well, who is accountable to the consumer?&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I bought this warranty.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;It says 'lifetime'.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I've never used it and now that I want to, you won't honor it?&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I want to speak to your manager."&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;To which the Big O guy responds back with "Hello Sir, I'm the manager.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;How can I help you?"&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;It was at this point that my internal laughter ceased to be internal.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I probably wasn't helping the situation out, but I was definitely enjoying the show.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;The louder I laughed, the more I tried to concentrate on my DS.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I tried to tone the laughter down to simply a shit eating grin.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;At the end of their conversation they both came to a compromise.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Big O would perform an alignment for free.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Though, because they no longer offer 'lifetime' warranties for alignment, this was a one time deal.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;After the Japanese business man left, the manager looks at me and asks if he was 'fair'.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;We had a small discussion and laughed about it a bit.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;My car was finally done and during checkout, the manager gave me a 25% discount on the price he quoted me... his reason being, 'he made a friend'.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;It's been a very entertaining morning...&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;</description><pubDate>Sat, 12 Aug 2006 07:54:11 GMT</pubDate><guid isPermaLink="false">8eb1f249-c387-4e02-acc0-8732bf221803</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=8eb1f249-c387-4e02-acc0-8732bf221803</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=8eb1f249-c387-4e02-acc0-8732bf221803</comments></item><item><title>Andrew learns an important lesson in hot-linking...</title><description>&lt;P&gt;&lt;IMG height=1036 alt=hotlinking.gif src="/shared/WebLogs/FTBGallery/2006/07/hotlinking.gif" width=529 border=0&gt;&lt;/P&gt;
&lt;P&gt;Found at: &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendid=84891767"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendid=84891767&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Andrew: &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendid=67550914"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendid=67550914&lt;/A&gt;&lt;/P&gt;

&lt;b&gt;Others that have lessons to learn...&lt;/b&gt;&lt;br/&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=84891767"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=84891767&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21402660"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21402660&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8621837"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8621837&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23370122"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23370122&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10514244"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10514244&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49709128"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49709128&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=5163694"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=5163694&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2904470"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2904470&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4335906"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4335906&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=88843627"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=88843627&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11050788"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11050788&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21290044"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21290044&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15564567"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15564567&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2260273"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2260273&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=56008590"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=56008590&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=30018249"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=30018249&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=39542468"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=39542468&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11173618"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11173618&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12417808"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12417808&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8648258"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8648258&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9609703"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9609703&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21654702"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21654702&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7933919"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7933919&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16295642"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16295642&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=81264905"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=81264905&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9854764"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9854764&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12939949"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12939949&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=40777382"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=40777382&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11707168"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11707168&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11506906"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11506906&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6605958"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6605958&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=82434743"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=82434743&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11204007"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11204007&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19926499"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19926499&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1154674"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1154674&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15872316"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15872316&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15489576"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15489576&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55590539"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55590539&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11983495"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11983495&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22969869"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22969869&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55989904"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55989904&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15306769"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15306769&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11617572"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11617572&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15606533"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15606533&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16228090"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16228090&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1565281"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1565281&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4407416"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4407416&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18928806"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18928806&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10103565"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10103565&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12516481"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12516481&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43525781"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43525781&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12329478"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12329478&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3062879"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3062879&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21474459"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21474459&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12016567"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12016567&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3095303"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3095303&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9647323"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9647323&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25260622"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25260622&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17326800"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17326800&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17130082"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17130082&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11510352"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11510352&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=76444449"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=76444449&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8927041"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8927041&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15354663"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15354663&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=46039113"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=46039113&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6949156"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6949156&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://myspace.com/KYTHE15"&gt;http://myspace.com/KYTHE15&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=88382212"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=88382212&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2097457"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2097457&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=35855918"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=35855918&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49502674"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49502674&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3507678"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3507678&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24960452"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24960452&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13530225"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13530225&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3492719"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3492719&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17878688"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17878688&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15922154"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15922154&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8594853"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8594853&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=52286772"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=52286772&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4224949"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4224949&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12784435"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12784435&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3779244"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3779244&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9961944"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9961944&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=62844824"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=62844824&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.partypeeps2000.com/members/9mili_bleu_steel.aspx"&gt;http://www.partypeeps2000.com/members/9mili_bleu_steel.aspx&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=90006166"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=90006166&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8301218"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8301218&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=26687870"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=26687870&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21474695"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21474695&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=46108213"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=46108213&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=34803808"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=34803808&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43180199"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43180199&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18098614"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18098614&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45523168"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45523168&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25827456"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25827456&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54509756"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54509756&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11238847"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11238847&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22192312"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22192312&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24195057"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24195057&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22169100"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22169100&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14777846"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14777846&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19465871"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19465871&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22903581"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22903581&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8928059"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8928059&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/kenn3y"&gt;http://www.myspace.com/kenn3y&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9927136"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9927136&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10438944"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=10438944&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17721073"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17721073&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8465006"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8465006&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18394645"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18394645&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8317854"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8317854&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19411660"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19411660&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43116842"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43116842&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19804127"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19804127&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20799581"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20799581&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25710649"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25710649&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17230536"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17230536&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15632611"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15632611&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19086807"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19086807&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7946788"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7946788&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8943996"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8943996&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25236996"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=25236996&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14623397"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14623397&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12252771"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12252771&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20814836"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20814836&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7182021"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7182021&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54847744"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54847744&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16406225"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16406225&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55676391"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55676391&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55720166"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55720166&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18105955"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18105955&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=31951461"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=31951461&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20096519"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20096519&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19237550"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19237550&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/ramas999"&gt;http://www.myspace.com/ramas999&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11920891"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=11920891&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=50311527"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=50311527&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=40055648"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=40055648&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23999739"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23999739&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18880744"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=18880744&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15142326"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15142326&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21169474"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21169474&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=39275432"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=39275432&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/17791598"&gt;http://www.myspace.com/17791598&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7486849"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7486849&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13501949"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13501949&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9038099"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=9038099&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4094922"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4094922&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8811555"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8811555&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17791598"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17791598&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=37821910"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=37821910&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=32734644"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=32734644&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8192421"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8192421&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45414179"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45414179&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23878389"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=23878389&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20004367"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20004367&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17135801"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=17135801&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3343847"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3343847&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24407277"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=24407277&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8639484"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8639484&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55335940"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55335940&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14057441"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14057441&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20686737"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20686737&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2884301"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2884301&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49282969"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=49282969&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=76569294"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=76569294&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16035591"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=16035591&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21091909"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21091909&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=59436495"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=59436495&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55698292"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55698292&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=66544661"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=66544661&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43866279"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=43866279&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13837167"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=13837167&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/18928806"&gt;http://www.myspace.com/18928806&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/raiderz4life"&gt;http://www.myspace.com/raiderz4life&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7775553"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=7775553&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54586345"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=54586345&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14069813"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=14069813&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2850410"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=2850410&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51266099"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51266099&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=27167027"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=27167027&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=35144094"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=35144094&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20136587"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20136587&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/mikeriede"&gt;http://www.myspace.com/mikeriede&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51165885"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51165885&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=32584378"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=32584378&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.joel.net/EBONICS/store/images/friday.gif"&gt;http://www.joel.net/EBONICS/store/images/friday.gif&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51224085"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=51224085&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21443179"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=21443179&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=70639933"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=70639933&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/daflyestdiva"&gt;http://www.myspace.com/daflyestdiva&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20251860"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=20251860&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12329983"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12329983&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6293688"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6293688&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/oside4life"&gt;http://www.myspace.com/oside4life&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22737429"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22737429&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12957099"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12957099&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://myspace.com/mikeriede"&gt;http://myspace.com/mikeriede&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4992824"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=4992824&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6493689"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6493689&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8095621"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=8095621&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1946200"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=1946200&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/waad_izz_it"&gt;http://www.myspace.com/waad_izz_it&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=69914437"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=69914437&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=79208404"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=79208404&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55697560"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=55697560&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=36574231"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=36574231&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=27574990"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=27574990&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15605105"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=15605105&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.myspace.com/kevincoggin"&gt;http://www.myspace.com/kevincoggin&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12115490"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=12115490&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19897801"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=19897801&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=30069898"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=30069898&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=31989291"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=31989291&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45151826"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=45151826&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22048524"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=22048524&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6735656"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=6735656&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3690605"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3690605&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3690605"&gt;http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=3690605&lt;/a&gt;&lt;br /&gt;</description><pubDate>Fri, 21 Jul 2006 07:05:17 GMT</pubDate><guid isPermaLink="false">aee53ce6-45a4-43cb-b5f1-f433ef3a84b2</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=aee53ce6-45a4-43cb-b5f1-f433ef3a84b2</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=aee53ce6-45a4-43cb-b5f1-f433ef3a84b2</comments></item><item><title>Akismet .Net 2.0 API (anti-comment-spam)</title><description>&lt;P&gt;It looks like spammers are set on ruining the entire internet.&amp;nbsp; Not only do I get 1000's of unwanted emails every day, but now spammers are starting to pollute blog comments.&lt;/P&gt;
&lt;P&gt;Fortunately the guys over at &lt;A href="http://www.akismet.com"&gt;Akismet&lt;/A&gt; have developed an anti-comment-spam web API.&amp;nbsp;&amp;nbsp;There&amp;nbsp;are multiple &lt;A href="http://akismet.com/development/"&gt;libraries&lt;/A&gt; developed for&amp;nbsp;Akismet, though none&amp;nbsp;for .Net.&lt;/P&gt;
&lt;P&gt;Since I am going to be implementing this on Joel.net, I figured I would just wrap it all up into an easy to use library for me and you too!&lt;/P&gt;
&lt;UL class=download&gt;
&lt;LI&gt;&lt;A href="/code/akismet.aspx"&gt;Download source project&lt;/A&gt; &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately Akismet is only installed on my &lt;A href="http://www.joel.net/test.aspx"&gt;new comment system&lt;/A&gt;, so this blog will get a little polluted until I can replace it :/&lt;/P&gt;</description><pubDate>Wed, 07 Jun 2006 06:56:49 GMT</pubDate><guid isPermaLink="false">2cf4c93f-7757-4441-b51d-07665c4c91cc</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2cf4c93f-7757-4441-b51d-07665c4c91cc</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2cf4c93f-7757-4441-b51d-07665c4c91cc</comments></item><item><title>It's been so long since I've gotten a ticket...</title><description>&lt;P&gt;...Until today.&lt;/P&gt;
&lt;P&gt;Normally I can talk my way out of any ticket, but not today.&amp;nbsp; I think I gave the cop too many reasons to give me a ticket.&amp;nbsp; It's hard when your list of violations is this high...&lt;/P&gt;
&lt;P&gt;These were the cops complaints... My registration was expired.&amp;nbsp; The name on my registration wasn't mine.&amp;nbsp; Address on my license was&amp;nbsp;not current.&amp;nbsp; My windows were tinted.&amp;nbsp; No front plate.&amp;nbsp; Expired insurance card.&amp;nbsp; Uggg.&lt;/P&gt;
&lt;P&gt;Well, ok most of these are my fault.&amp;nbsp; I had to pay my DMV registration through my bank (why, I dunno?).&amp;nbsp; Well, that was MONTHS ago and I haven't received my registration back.&amp;nbsp; So, it expired and still shows the previous douche's name.&lt;/P&gt;
&lt;P&gt;My insurance IS valid, just the card is expired.&amp;nbsp; I offered to let him use my cell phone and call my insurance company to verify, he declined.&amp;nbsp; Ok, so I can take care of this one tonight at least.&lt;/P&gt;
&lt;P&gt;I took care of my "address" at the DMV (also months ago), they made me pay $25 and I even took a new picture.&amp;nbsp; Where is my new license with updated info?&amp;nbsp; WHO THE FUCK KNOWS?!&lt;/P&gt;
&lt;P&gt;He can go fuck himself over the no front plate and tinted windows.&amp;nbsp; I'll "fix" these and have CHP sign them off.&amp;nbsp; Then, right back to the way they're supposed to be.&lt;/P&gt;
&lt;P&gt;Well, he only wrote me up for expired registration, tint and plate.&amp;nbsp; Easy to fix, still a pain in my arse (and wallet).&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Update: Apr 26, 2006&lt;/EM&gt;&lt;BR&gt;I went to &lt;A href="http://www.aaa.com"&gt;AAA Automobile Club&lt;/A&gt; to check out my registration problem.&amp;nbsp; Apparently I have paid for everything and my car &lt;EM&gt;should be&lt;/EM&gt; registered.&amp;nbsp; Though there's a hold on my account due to a change I made on the vehicle's registration.&amp;nbsp; Apparently Sacramento is reviewing &lt;EM&gt;god knows what&lt;/EM&gt;.&amp;nbsp; He says there was new activity on my account (though he didn't know what) and said they'd probably send a letter and to call them.&amp;nbsp; Until then I was given temporary registration.&lt;/P&gt;</description><pubDate>Wed, 26 Apr 2006 04:25:52 GMT</pubDate><guid isPermaLink="false">76a1150c-889c-4ec5-9d0e-bf4ec8d6f862</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=76a1150c-889c-4ec5-9d0e-bf4ec8d6f862</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=76a1150c-889c-4ec5-9d0e-bf4ec8d6f862</comments></item><item><title>Preventing hot-linking in asp.net 2.0</title><description>I've had a few problems with people hot-linking to images on my websites, causing me excessive bandwidth usage. MySpace is filled with hot-linkers and has been causing me most of the problems. &lt;BR&gt;&lt;BR&gt;I've been forced to come up with a solution to prevent image hot-linking. &lt;BR&gt;&lt;BR&gt;My solution checks the HTTP_REFERER, if there is no referrer or the referrer comes from a trusted site, then the image is displayed normally. If hot-linking has been detected, I either send them an image of my choice (can be your logo, site banner or an anti-hot-linking image), or you can simply ignore the request. &lt;BR&gt;&lt;BR&gt;To implement this solution, your site will (1) need to be running asp.net 2.0 and (2) have a wildcard mapping pointing to the Asp.net ISAPI 2.0 framework dll (ask your web host, they can usually install this for you). &lt;BR&gt;&lt;BR&gt;Next, add this method to your global.asax file. (This method can be modified to be restricted to certain directories.) 
&lt;DIV class=codeview style="WIDTH: 550px"&gt;&lt;PRE&gt;private bool IgnoreRequest(string path, string http_referer) {
    if (http_referer == null) return false;
    
    string[] allowDomains = new string[] {
        "http://mydeathspace.com",
        "http://www.mydeathspace.com"
    };
    string[] blocks = new string[] { ".gif", ".jpg" };
    StringComparison ignoreCase =
        StringComparison.CurrentCultureIgnoreCase;

    // Allow requests from 'allowDomains'
    foreach (string domain in allowDomains) {
        if (http_referer.StartsWith(domain, ignoreCase)) {
            return false;
        }
    }

    // Check extensions
    foreach (string ext in blocks) {
        if (path.EndsWith(ext, ignoreCase)) return true;
    }

    return false;
}
&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR&gt;Next you access this method inside the Application_BeginRequest event like this... &lt;BR&gt;&lt;BR&gt;
&lt;DIV class=codeview style="WIDTH: 550px"&gt;&lt;PRE&gt;if (IgnoreRequest(Request.Url.LocalPath,
    Request.ServerVariables["HTTP_REFERER"])) {

    throw new Exception("NO HOT-LINKING!");
}
&lt;/PRE&gt;&lt;/DIV&gt;</description><pubDate>Mon, 03 Apr 2006 06:45:04 GMT</pubDate><guid isPermaLink="false">1a2e93ef-2a47-4b38-8930-8fbafcbe4e22</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=1a2e93ef-2a47-4b38-8930-8fbafcbe4e22</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=1a2e93ef-2a47-4b38-8930-8fbafcbe4e22</comments></item><item><title>HOWTO: Download and play (or convert) YouTube.com videos.</title><description>&lt;P&gt;&lt;IMG style="PADDING-RIGHT: 8px; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; PADDING-TOP: 8px" height=48 alt=youtube_logo.gif src="/shared/WebLogs/FTBGallery/2006/03/youtube_logo.gif" width=120 align=left border=0&gt;I use &lt;A href="http://www.xboxmediacenter.com/"&gt;xbox media center&lt;/A&gt; to play videos I download, allowing me to watch them on my tv. I have a problem with most video sites (&lt;A href="http://video.google.com"&gt;Google video&lt;/A&gt; and &lt;A href="http://youtube.com"&gt;YouTube.com&lt;/A&gt;); they convert all the videos from their native format&amp;nbsp;to &lt;A href="http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&amp;amp;file=00000543.html"&gt;flv&lt;/A&gt; format.&lt;/P&gt;
&lt;P&gt;I guess a lot of other people have been having problems with this. After doing some searching again I found out mplayer now supports flv!&amp;nbsp; I also found a lot of neat tools and articles out there...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN class=gen&gt;&lt;B&gt;&lt;A href="http://www.videohelp.com/forum/archive/t259578.html"&gt;How to convert .flv (flash video) to .avi or .mpg&lt;/A&gt;&lt;/B&gt;&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN class=gen&gt;&lt;STRONG&gt;&lt;A href="http://www.mplayerhq.hu/"&gt;mplayer (windows, xbox, mac, etc.)&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt; 
&lt;LI&gt;&lt;SPAN class=gen&gt;&lt;STRONG&gt;&lt;A href="http://www.google.com/search?q=flv+player"&gt;other flv players&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;So, after learning there are all these tools out there I decided to create a little &lt;A href="/code/bookmarklets.aspx"&gt;bookmarklet&lt;/A&gt; to download these videos from &lt;A href="http://youtube.com"&gt;YouTube.com&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Directions:&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Click and hold on the link below, drag the link on the name to your "Links" toolbar in IE or right click on them and select "Add to Favorites...". 
&lt;LI&gt;Now after watching the YouTube.com video you want to download.&amp;nbsp; Just click on the bookmarklet you just added. 
&lt;LI&gt;You'll be prompted to "save as".&amp;nbsp; Create any name you want just be sure to make the file extension .flv. 
&lt;LI&gt;Watch using your favorite &lt;A href="http://www.google.com/search?q=flv+player"&gt;flv player&lt;/A&gt;.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Bookmarklet:&lt;/STRONG&gt; &lt;A href="javascript:document.location='http://keepvid.com/lite/bookmarklet/?url='+escape(window.location);"&gt;YouTube.com (Video Download)&lt;/A&gt;&lt;/P&gt;</description><pubDate>Tue, 21 Mar 2006 01:31:14 GMT</pubDate><guid isPermaLink="false">db1bf3cd-f55b-4f97-8626-1478887a9cf3</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=db1bf3cd-f55b-4f97-8626-1478887a9cf3</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=db1bf3cd-f55b-4f97-8626-1478887a9cf3</comments></item><item><title>Fun 'n games: Grow RPG</title><description>&lt;P&gt;Bored at work? I found this cute little &lt;A href="http://www.eyezmaze.com/grow/RPG"&gt;web game&lt;/A&gt; through &lt;A href="http://lebrilla.com/los"&gt;a friend&lt;/A&gt;.&amp;nbsp; I found it to be very creative and worth spending a&amp;nbsp;little time to check out.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.eyezmaze.com/grow/RPG"&gt;&lt;IMG title="Grow RPG" height=402 alt="Grow RPG" src="/shared/WebLogs/FTBGallery/2006/02/grow-rpg.jpg" width=552 border=0&gt;&lt;/A&gt;&lt;/P&gt;</description><pubDate>Thu, 23 Feb 2006 06:48:24 GMT</pubDate><guid isPermaLink="false">fffbaded-2984-48bd-8b24-9027ef16a907</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=fffbaded-2984-48bd-8b24-9027ef16a907</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=fffbaded-2984-48bd-8b24-9027ef16a907</comments></item><item><title>AJAX-enable your existing Asp.net application in under 30 seconds.</title><description>Lately I've been playing with this neat little AJAX library for Asp.net - &lt;a href="http://anthem-dot-net.sourceforge.net/"&gt;Anthem.net&lt;/a&gt;.  I was amazed at how quick and easy it was to AJAX-enable my existing Asp.net applications using Anthem.net. Anthem.net requries absolutely &lt;eM&gt;zero&lt;/em&gt; JavaScript knowledge.  
&lt;br /&gt;&lt;br /&gt;
Anthem.net works in both 1.1 and 2.0, giving you a hands off aproach to AJAX.  It mimics the functionality of standard server side Asp.net. Anthem.net does allow you full access and control via JavaScript if you need.
&lt;br /&gt;&lt;br /&gt;
Ok, well talk is cheap, so let me show you just how easy it is...&lt;br /&gt; &lt;br /&gt;

&lt;b&gt;Asp.net Example Code&lt;/b&gt;&lt;br /&gt;
&lt;DIV class="codeview" style="width:550px;"&gt;&lt;PRE&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" %&amp;gt;

&amp;lt;script runat="server"&amp;gt;
    protected void SubmitButton_Click(object sender, EventArgs e) {
        lblFullName.Text = (FullName.Text != "") ? FullName.Text : "n/a";
        lblEmailAddress.Text = (EmailAddress.Text != "") ? EmailAddress.Text : "n/a";
        lblMessage.Text = (Message.Text != "") ? Message.Text : "n/a";

        pnlDone.Visible = true;
    }
&amp;lt;/script&amp;gt;

&amp;lt;form id="form1" runat="server"&amp;gt;

    Full Name: &amp;lt;asp:textbox runat="server" id="FullName" /&amp;gt;&amp;lt;br /&amp;gt;
    Email Address: &amp;lt;asp:textbox runat="server" id="EmailAddress" /&amp;gt;&amp;lt;br /&amp;gt;
    Message: &amp;lt;asp:textbox runat="server" id="Message" /&amp;gt;&amp;lt;br /&amp;gt;
    &amp;lt;asp:button runat="server" id="SubmitButton" text="submit" onclick="SubmitButton_Click" /&amp;gt;&amp;lt;br /&amp;gt;
  
  &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;
  
  &amp;lt;asp:Panel id="pnlDone" runat="server" visible="false" cssclass="out"&amp;gt;
    &amp;lt;h3&amp;gt;Thank You!&amp;lt;/h3&amp;gt;
    Full Name: &amp;lt;asp:label runat="server" id="lblFullName" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
    Email Address: &amp;lt;asp:label runat="server" id="lblEmailAddress" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
    Message: &amp;lt;asp:label runat="server" id="lblMessage" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
  &amp;lt;/asp:Panel&amp;gt;

&amp;lt;/form&amp;gt;&lt;/PRE&gt;&lt;/DIV&gt;

&lt;br/&gt;

&lt;b&gt;Anthem.net Example Code&lt;/b&gt;&lt;br /&gt;
&lt;DIV class="codeview" style="width:550px;"&gt;&lt;PRE&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" %&amp;gt;
&amp;lt;%@ Register TagPrefix="anthem" Namespace="Anthem" Assembly="Anthem" %&amp;gt;

&amp;lt;script runat="server"&amp;gt;
    protected void SubmitButton_Click(object sender, EventArgs e) {
        lblFullName.Text = (FullName.Text != "") ? FullName.Text : "n/a";
        lblEmailAddress.Text = (EmailAddress.Text != "") ? EmailAddress.Text : "n/a";
        lblMessage.Text = (Message.Text != "") ? Message.Text : "n/a";

        pnlDone.Visible = true;
        pnlDone.UpdateAfterCallBack = true;
    }
&amp;lt;/script&amp;gt;

&amp;lt;form id="form1" runat="server"&amp;gt;

  Full Name: &amp;lt;asp:textbox runat="server" id="FullName" /&amp;gt;&amp;lt;br /&amp;gt;
  Email Address: &amp;lt;asp:textbox runat="server" id="EmailAddress" /&amp;gt;&amp;lt;br /&amp;gt;
  Message: &amp;lt;asp:textbox runat="server" id="Message" /&amp;gt;&amp;lt;br /&amp;gt;
  &amp;lt;anthem:button runat="server" id="SubmitButton" text="submit" onclick="SubmitButton_Click" /&amp;gt;&amp;lt;br /&amp;gt;  &amp;lt;/div&amp;gt;
  
  &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;
  
  &amp;lt;anthem:Panel id="pnlDone" runat="server" visible="false" cssclass="out"&amp;gt;
    &amp;lt;h3&amp;gt;Thank You!&amp;lt;/h3&amp;gt;
    Full Name: &amp;lt;asp:label runat="server" id="lblFullName" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
    Email Address: &amp;lt;asp:label runat="server" id="lblEmailAddress" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
    Message: &amp;lt;asp:label runat="server" id="lblMessage" font-bold="true" /&amp;gt;&amp;lt;br /&amp;gt;
  &amp;lt;/anthem:Panel&amp;gt;

&amp;lt;/form&amp;gt;&lt;/PRE&gt;&lt;/DIV&gt;

&lt;br/&gt;&lt;br/&gt;
Can you spot the difference?  All I had to do was register the anthem assembly at the top of the page, change the button and panel to anthem button and panels and add one piece of code "pnlDone.UpdateAfterCallBack = true;" to tell the client to update this panel.
&lt;br/&gt;&lt;br/&gt;
Anthem.net allows you to do other neat stuff, there's little documentation so you have to dig through their examples.  Here's a neat little example of how easy it is to push a simple alert box to the client.

&lt;br/&gt;&lt;br/&gt;
&lt;div class="codeview" style="width:550px;"&gt;&lt;pre&gt;Anthem.Manager.AddScriptForClientSideEval("alert('done.')");&lt;/pre&gt;&lt;/div&gt;</description><pubDate>Sun, 12 Feb 2006 07:22:05 GMT</pubDate><guid isPermaLink="false">4595ab29-ae3a-4ef9-a846-a33d057bbf0d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4595ab29-ae3a-4ef9-a846-a33d057bbf0d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4595ab29-ae3a-4ef9-a846-a33d057bbf0d</comments></item><item><title>Joel Thoms -- World Famous!</title><description>&lt;P&gt;That's right, I'm world famous! People have been putting &lt;A HREF="/shared/WebLogs/FTBGallery/2006/01/joel.jpg"&gt;this picture of me&lt;/A&gt; up all over their websites.&lt;/P&gt;
&lt;P&gt;Ok, not really... in reality, I have hidden my picture on their sites and they have absolutely no clue.&amp;nbsp; I can't really say how I did it because then they might figure it out and remove it, and what would be the fun in that?&lt;/P&gt;
&lt;P&gt;People change their sites all the time so they might have removed me. Click around!&amp;nbsp;&amp;nbsp;My picture is&amp;nbsp;usually in the "movies" section below the "friday" movie poster.&lt;/P&gt;
&lt;P&gt;I have been seen on the sites below...&lt;/P&gt;
&lt;DIV style="FONT: bold 14pt/16pt Verdana"&gt;myspace.com users&lt;/DIV&gt;
&lt;DIV style="BORDER-RIGHT: #dddddd 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: #dddddd 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; MARGIN-LEFT: 5px; BORDER-LEFT: #dddddd 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: #dddddd 1px solid; BACKGROUND-COLOR: #f6f6f6"&gt;&lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22741515"&gt;1&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7887698"&gt;2&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7439032"&gt;3&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10692369"&gt;4&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11161808"&gt;5&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17314081"&gt;6&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13442296"&gt;7&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22526634"&gt;8&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9660629"&gt;9&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24896512"&gt;10&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19413994"&gt;11&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30169656"&gt;12&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15306769"&gt;13&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2504638"&gt;14&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=29520074"&gt;15&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13546504"&gt;16&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5008858"&gt;17&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8998257"&gt;18&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4256097"&gt;19&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11050788"&gt;20&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8107833"&gt;21&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21443179"&gt;22&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14449533"&gt;23&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16295642"&gt;24&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4603362"&gt;25&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7226431"&gt;26&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19696779"&gt;27&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21535471"&gt;28&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7602321"&gt;29&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7308710"&gt;30&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18105955"&gt;31&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18928806"&gt;32&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18921449"&gt;33&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8319287"&gt;34&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14057441"&gt;35&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=41853188"&gt;36&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16963958"&gt;37&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15616786"&gt;38&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24829453"&gt;39&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=33773665"&gt;40&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2260273"&gt;41&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6489930"&gt;42&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5866944"&gt;43&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12531806"&gt;44&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30063957"&gt;45&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17854081"&gt;46&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5238862"&gt;47&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11335376"&gt;48&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6904618"&gt;49&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13598194"&gt;50&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25598765"&gt;51&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16412108"&gt;52&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20251860"&gt;53&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15489576"&gt;54&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7152152"&gt;55&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13301007"&gt;56&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4639344"&gt;57&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11204007"&gt;58&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7933919"&gt;59&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1472562"&gt;60&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3195806"&gt;61&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21165824"&gt;62&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16406225"&gt;63&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7486849"&gt;64&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7424501"&gt;65&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9854764"&gt;66&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16834908"&gt;67&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12777399"&gt;68&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1946200"&gt;69&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5820450"&gt;70&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8645915"&gt;71&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=41815995"&gt;72&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22166183"&gt;73&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16227291"&gt;74&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3332508"&gt;75&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4690032"&gt;76&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15639560"&gt;77&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20730756"&gt;78&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14044309"&gt;79&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10700140"&gt;80&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30855203"&gt;81&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=33869771"&gt;82&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15605105"&gt;83&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20227571"&gt;84&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13441074"&gt;85&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25179144"&gt;86&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17791598"&gt;87&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6314498"&gt;88&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4094922"&gt;89&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12846609"&gt;90&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21571066"&gt;91&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26115877"&gt;92&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19440395"&gt;93&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11173618"&gt;94&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15748630"&gt;95&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13050822"&gt;96&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8249301"&gt;97&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8433171"&gt;98&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23878389"&gt;99&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11044541"&gt;100&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22626730"&gt;101&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=28171419"&gt;102&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15568637"&gt;103&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13837167"&gt;104&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15772626"&gt;105&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7578602"&gt;106&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12235141"&gt;107&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12866808"&gt;108&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19237550"&gt;109&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30418283"&gt;110&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23370122"&gt;111&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11606236"&gt;112&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9291685"&gt;113&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11920891"&gt;114&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4616137"&gt;115&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12711626"&gt;116&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3560199"&gt;117&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3474888"&gt;118&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19529558"&gt;119&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23200122"&gt;120&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11034335"&gt;121&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17807418"&gt;122&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8301218"&gt;123&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8916487"&gt;124&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4335906"&gt;125&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=41959305"&gt;126&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5638821"&gt;127&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5102898"&gt;128&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9817701"&gt;129&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19475221"&gt;130&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21238489"&gt;131&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14418920"&gt;132&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24774096"&gt;133&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12350828"&gt;134&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3233176"&gt;135&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24609087"&gt;136&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13742481"&gt;137&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11983495"&gt;138&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=31129474"&gt;139&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8192421"&gt;140&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9511573"&gt;141&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15328587"&gt;142&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16839640"&gt;143&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12900307"&gt;144&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8015579"&gt;145&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25602099"&gt;146&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14994108"&gt;147&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25995147"&gt;148&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23298146"&gt;149&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8943996"&gt;150&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26896541"&gt;151&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8317854"&gt;152&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14425366"&gt;153&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9777217"&gt;154&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6584096"&gt;155&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17284533"&gt;156&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16598528"&gt;157&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6365890"&gt;158&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=28516656"&gt;159&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7181917"&gt;160&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10779325"&gt;161&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7251229"&gt;162&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3065013"&gt;163&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18880744"&gt;164&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8594853"&gt;165&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2675778"&gt;166&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23514887"&gt;167&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9609703"&gt;168&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4503725"&gt;169&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15564567"&gt;170&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=46539"&gt;171&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2738784"&gt;172&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9038099"&gt;173&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11038222"&gt;174&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27690950"&gt;175&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11285891"&gt;176&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11707168"&gt;177&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27206526"&gt;178&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30433145"&gt;179&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5401071"&gt;180&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14334400"&gt;181&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8788389"&gt;182&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14807430"&gt;183&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10231190"&gt;184&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25014190"&gt;185&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2434166"&gt;186&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20019109"&gt;187&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19765542"&gt;188&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12939949"&gt;189&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19339621"&gt;190&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17135801"&gt;191&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7371969"&gt;192&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19945483"&gt;193&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6638705"&gt;194&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6186846"&gt;195&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18968123"&gt;196&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13530225"&gt;197&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30163955"&gt;198&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16799082"&gt;199&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4044216"&gt;200&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20096519"&gt;201&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14511921"&gt;202&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12539785"&gt;203&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2766797"&gt;204&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6949156"&gt;205&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22640276"&gt;206&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2433131"&gt;207&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18605534"&gt;208&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21697175"&gt;209&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22519217"&gt;210&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2603086"&gt;211&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=31114995"&gt;212&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22865922"&gt;213&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12461938"&gt;214&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22123474"&gt;215&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6627826"&gt;216&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14069813"&gt;217&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16035591"&gt;218&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27743403"&gt;219&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8829621"&gt;220&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=40697540"&gt;221&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25662417"&gt;222&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19336408"&gt;223&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1840039"&gt;224&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=33120104"&gt;225&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8212959"&gt;226&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30018249"&gt;227&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3780421"&gt;228&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10937284"&gt;229&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5505463"&gt;230&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15919718"&gt;231&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4250883"&gt;232&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18783080"&gt;233&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17878688"&gt;234&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15795141"&gt;235&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18892274"&gt;236&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24960452"&gt;237&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15178053"&gt;238&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8083663"&gt;239&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15796041"&gt;240&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22562224"&gt;241&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10753238"&gt;242&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23484391"&gt;243&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9054989"&gt;244&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14777846"&gt;245&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12874203"&gt;246&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7293340"&gt;247&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13756440"&gt;248&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3507678"&gt;249&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20625983"&gt;250&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9508024"&gt;251&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22969869"&gt;252&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4017942"&gt;253&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26676795"&gt;254&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15334949"&gt;255&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18282595"&gt;256&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11755800"&gt;257&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21654702"&gt;258&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3492719"&gt;259&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22169100"&gt;260&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1066121"&gt;261&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=88241"&gt;262&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10155573"&gt;263&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11337165"&gt;264&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25507704"&gt;265&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23261081"&gt;266&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21225318"&gt;267&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2850349"&gt;268&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10391407"&gt;269&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5556396"&gt;270&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14354244"&gt;271&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13328217"&gt;272&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13914812"&gt;273&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=613450"&gt;274&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8268865"&gt;275&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30368557"&gt;276&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5979306"&gt;277&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6955263"&gt;278&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7834725"&gt;279&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22082149"&gt;280&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6956671"&gt;281&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24017462"&gt;282&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9651040"&gt;283&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16710979"&gt;284&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12205536"&gt;285&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1522528"&gt;286&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8398103"&gt;287&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11062050"&gt;288&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11583404"&gt;289&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13663137"&gt;290&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5165792"&gt;291&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19138852"&gt;292&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17865874"&gt;293&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25875305"&gt;294&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15576185"&gt;295&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12228144"&gt;296&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=34443787"&gt;297&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9293028"&gt;298&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14287744"&gt;299&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26861766"&gt;300&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17695232"&gt;301&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26511968"&gt;302&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15887372"&gt;303&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1565281"&gt;304&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=171326"&gt;305&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15377052"&gt;306&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10514244"&gt;307&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25397896"&gt;308&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6708805"&gt;309&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13615490"&gt;310&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=26368096"&gt;311&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9412710"&gt;312&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27210617"&gt;313&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25575163"&gt;314&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17129742"&gt;315&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14023585"&gt;316&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2977631"&gt;317&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13482037"&gt;318&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9012043"&gt;319&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19926499"&gt;320&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9576439"&gt;321&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4407416"&gt;322&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6128234"&gt;323&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23608766"&gt;324&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19989309"&gt;325&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19086807"&gt;326&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17142512"&gt;327&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4349786"&gt;328&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18098614"&gt;329&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23579435"&gt;330&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7718288"&gt;331&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19897801"&gt;332&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8488786"&gt;333&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10685702"&gt;334&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2061491"&gt;335&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8928059"&gt;336&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17130082"&gt;337&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20410702"&gt;338&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13501949"&gt;339&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4385422"&gt;340&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19465871"&gt;341&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9919555"&gt;342&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20621637"&gt;343&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9927136"&gt;344&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12148479"&gt;345&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27167027"&gt;346&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20967133"&gt;347&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12572017"&gt;348&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14685515"&gt;349&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25236996"&gt;350&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9122867"&gt;351&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3573605"&gt;352&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5163694"&gt;353&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2288715"&gt;354&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16056015"&gt;355&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23379773"&gt;356&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=37301188"&gt;357&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24766281"&gt;358&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17064547"&gt;359&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4755293"&gt;360&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=37171003"&gt;361&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11334720"&gt;362&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18324554"&gt;363&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27798980"&gt;364&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2856931"&gt;365&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25284261"&gt;366&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4399872"&gt;367&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13779554"&gt;368&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2884301"&gt;369&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13537566"&gt;370&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20329198"&gt;371&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7498151"&gt;372&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14828871"&gt;373&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24406537"&gt;374&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9784237"&gt;375&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14218632"&gt;376&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14877903"&gt;377&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10438944"&gt;378&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17241466"&gt;379&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20660627"&gt;380&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24279198"&gt;381&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2746664"&gt;382&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=41737580"&gt;383&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27686167"&gt;384&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4296369"&gt;385&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11414032"&gt;386&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9363752"&gt;387&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14097936"&gt;388&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6095732"&gt;389&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10799534"&gt;390&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18379717"&gt;391&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11977515"&gt;392&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24504011"&gt;393&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14623397"&gt;394&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14586700"&gt;395&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14508994"&gt;396&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5830009"&gt;397&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14270486"&gt;398&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6547752"&gt;399&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14751465"&gt;400&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13143790"&gt;401&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8542986"&gt;402&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22903581"&gt;403&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14412117"&gt;404&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6703105"&gt;405&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18528477"&gt;406&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=34890342"&gt;407&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19418347"&gt;408&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19578301"&gt;409&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15462077"&gt;410&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30059952"&gt;411&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18666823"&gt;412&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21360927"&gt;413&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9325870"&gt;414&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2240438"&gt;415&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24409719"&gt;416&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9978066"&gt;417&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3467304"&gt;418&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=32551865"&gt;419&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25710649"&gt;420&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30947010"&gt;421&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10284666"&gt;422&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1680550"&gt;423&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8435123"&gt;424&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18423411"&gt;425&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4144717"&gt;426&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3540123"&gt;427&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14514880"&gt;428&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3095303"&gt;429&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=29681443"&gt;430&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9735042"&gt;431&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1747887"&gt;432&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15474145"&gt;433&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21238916"&gt;434&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7935551"&gt;435&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15346197"&gt;436&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11510352"&gt;437&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=29168840"&gt;438&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10781158"&gt;439&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17916615"&gt;440&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11107066"&gt;441&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24314681"&gt;442&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21553401"&gt;443&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20342315"&gt;444&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6900701"&gt;445&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17475937"&gt;446&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22192192"&gt;447&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7208770"&gt;448&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=951040"&gt;449&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14922205"&gt;450&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5062910"&gt;451&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8621837"&gt;452&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=33469852"&gt;453&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17326800"&gt;454&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3888360"&gt;455&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19534067"&gt;456&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12804066"&gt;457&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18394645"&gt;458&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12896914"&gt;459&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21091909"&gt;460&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24918504"&gt;461&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12708466"&gt;462&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21413526"&gt;463&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22835988"&gt;464&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30641978"&gt;465&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=43545862"&gt;466&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20338512"&gt;467&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16079375"&gt;468&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1336891"&gt;469&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3002189"&gt;470&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19628022"&gt;471&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13060021"&gt;472&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3093374"&gt;473&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7524916"&gt;474&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7540578"&gt;475&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=31968510"&gt;476&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18046678"&gt;477&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4502393"&gt;478&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14937060"&gt;479&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8625730"&gt;480&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17164411"&gt;481&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9350082"&gt;482&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2904470"&gt;483&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11968926"&gt;484&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11617572"&gt;485&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21474695"&gt;486&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8639484"&gt;487&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10197527"&gt;488&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12349069"&gt;489&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11742455"&gt;490&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20572549"&gt;491&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1965551"&gt;492&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20275108"&gt;493&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3779244"&gt;494&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15347047"&gt;495&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=31240219"&gt;496&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2505657"&gt;497&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21904997"&gt;498&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12141589"&gt;499&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18168762"&gt;500&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20895778"&gt;501&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22652785"&gt;502&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8335285"&gt;503&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2940624"&gt;504&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23987069"&gt;505&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19600850"&gt;506&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21113026"&gt;507&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12350133"&gt;508&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20846073"&gt;509&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6592123"&gt;510&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=28640055"&gt;511&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8085977"&gt;512&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18902342"&gt;513&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8927041"&gt;514&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17836850"&gt;515&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15103850"&gt;516&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18694921"&gt;517&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15230352"&gt;518&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14954386"&gt;519&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18112960"&gt;520&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12329478"&gt;521&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2459231"&gt;522&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15777941"&gt;523&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16959764"&gt;524&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20829138"&gt;525&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20436852"&gt;526&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4050605"&gt;527&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11296676"&gt;528&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17360530"&gt;529&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1127105"&gt;530&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8508312"&gt;531&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18037002"&gt;532&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27986319"&gt;533&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5163202"&gt;534&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1222694"&gt;535&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16551031"&gt;536&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24407277"&gt;537&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15913941"&gt;538&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16702882"&gt;539&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8648258"&gt;540&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=39081212"&gt;541&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11339876"&gt;542&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22455067"&gt;543&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7775553"&gt;544&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20136587"&gt;545&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=34721529"&gt;546&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14800996"&gt;547&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15865403"&gt;548&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23493284"&gt;549&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8576120"&gt;550&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=32317888"&gt;551&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4127494"&gt;552&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21290044"&gt;553&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1492196"&gt;554&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=15702637"&gt;555&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2983290"&gt;556&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8759743"&gt;557&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8665820"&gt;558&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3019186"&gt;559&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6941341"&gt;560&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13351918"&gt;561&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23646450"&gt;562&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1896359"&gt;563&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9289086"&gt;564&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10056668"&gt;565&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21050706"&gt;566&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14459742"&gt;567&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9959227"&gt;568&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=43866279"&gt;569&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6629005"&gt;570&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3503650"&gt;571&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3952770"&gt;572&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22061026"&gt;573&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17601952"&gt;574&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22737429"&gt;575&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11238847"&gt;576&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20215391"&gt;577&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27086650"&gt;578&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20579491"&gt;579&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4182418"&gt;580&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11262237"&gt;581&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6293688"&gt;582&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=41560953"&gt;583&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24141608"&gt;584&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17698466"&gt;585&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12417808"&gt;586&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5211217"&gt;587&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8990580"&gt;588&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7764715"&gt;589&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24997644"&gt;590&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18231778"&gt;591&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14217716"&gt;592&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4992824"&gt;593&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11167854"&gt;594&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18289307"&gt;595&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2329722"&gt;596&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6344529"&gt;597&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19994282"&gt;598&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7947411"&gt;599&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13720897"&gt;600&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18997483"&gt;601&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11208182"&gt;602&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21729594"&gt;603&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13956972"&gt;604&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8825021"&gt;605&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=18207965"&gt;606&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=4992991"&gt;607&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=7115287"&gt;608&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=38456640"&gt;609&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20979593"&gt;610&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8355970"&gt;611&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6113479"&gt;612&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10149088"&gt;613&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9961944"&gt;614&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=3690605"&gt;615&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=12901598"&gt;616&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23810312"&gt;617&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2169787"&gt;618&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9391989"&gt;619&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25945842"&gt;620&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5556352"&gt;621&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24059066"&gt;622&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9756828"&gt;623&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21086757"&gt;624&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6853954"&gt;625&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19988620"&gt;626&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=27091199"&gt;627&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10923924"&gt;628&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10241954"&gt;629&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21474459"&gt;630&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17128197"&gt;631&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17946339"&gt;632&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20004367"&gt;633&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=23999739"&gt;634&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1468322"&gt;635&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=22935332"&gt;636&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2803499"&gt;637&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=24155721"&gt;638&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=17344380"&gt;639&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6605958"&gt;640&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19575033"&gt;641&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11506906"&gt;642&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19506123"&gt;643&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1154674"&gt;644&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=10422497"&gt;645&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21108244"&gt;646&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=5862042"&gt;647&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8397414"&gt;648&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=19793580"&gt;649&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=11605914"&gt;650&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=16198825"&gt;651&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=6735656"&gt;652&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=9807296"&gt;653&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=30657150"&gt;654&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=1267691"&gt;655&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14212826"&gt;656&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=21986366"&gt;657&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=13596756"&gt;658&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=25218537"&gt;659&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=8827107"&gt;660&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=2578116"&gt;661&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=14872278"&gt;662&lt;/A&gt; &lt;A href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=20220951"&gt;663&lt;/A&gt; &lt;A href="http://www.myspace.com/Dubble_C"&gt;664&lt;/A&gt; &lt;A href="http://www.myspace.com/conrad27"&gt;665&lt;/A&gt; &lt;A href="http://www.myspace.com/yungmonay"&gt;666&lt;/A&gt; &lt;A href="http://www.myspace.com/onxthree"&gt;667&lt;/A&gt; &lt;A href="http://myspace.com/missparris"&gt;668&lt;/A&gt; &lt;A href="http://www.myspace.com/thatboilance"&gt;669&lt;/A&gt; &lt;A href="http://www.myspace.com/hubb32"&gt;670&lt;/A&gt; &lt;A href="http://www.myspace.com/ryannayr"&gt;671&lt;/A&gt; &lt;A href="http://www.myspace.com/sol_siruken"&gt;672&lt;/A&gt; &lt;A href="http://www.myspace.com/mslasha"&gt;673&lt;/A&gt; &lt;A href="http://www.myspace.com/sol_siruken"&gt;674&lt;/A&gt; &lt;A href="http://www.myspace.com/_____victoria_____"&gt;675&lt;/A&gt; &lt;A href="http://www.myspace.com/je"&gt;675&lt;/A&gt; &lt;A href="http://www.myspace.com/guitarshred"&gt;676&lt;/A&gt; &lt;A href="http://www.myspace.com/litlkumie"&gt;677&lt;/A&gt; &lt;A href="http://www.myspace.com/26369390"&gt;678&lt;/A&gt; &lt;A href="http://www.myspace.com/15984092"&gt;679&lt;/A&gt; &lt;A href="http://www.myspace.com/seannitta"&gt;680&lt;/A&gt; &lt;A href="http://www.myspace.com/illlcrazymethod"&gt;681&lt;/A&gt; &lt;A href="http://www.myspace.com/kewlginko"&gt;682&lt;/A&gt; &lt;A href="http://www.myspace.com/blazed_boi06"&gt;683&lt;/A&gt; &lt;A href="http://myspace.com/onxthree"&gt;684&lt;/A&gt; &lt;A href="http://myspace.com/onxthree"&gt;685&lt;/A&gt; &lt;A href="http://myspace.com/voronwe"&gt;686&lt;/A&gt; &lt;A href="http://www.myspace.com/keepinitgangsturr"&gt;687&lt;/A&gt; &lt;A href="http://www.myspace.com/freak_with_a_hanggun"&gt;688&lt;/A&gt; &lt;A href="http://www.myspace.com/brothahmed"&gt;689&lt;/A&gt; &lt;A href="http://www.myspace.com/glossinupmylips"&gt;690&lt;/A&gt; &lt;A href="http://www.myspace.com/22769353"&gt;691&lt;/A&gt; &lt;A href="http://myspace.com/bluntman31"&gt;692&lt;/A&gt; &lt;A href="http://www.myspace.com/mexipinoy51o"&gt;693&lt;/A&gt; &lt;A href="http://myspace.com/je"&gt;694&lt;/A&gt; &lt;A href="http://www.myspace.com/westcoast_nigga"&gt;695&lt;/A&gt; &lt;A href="http://myspace.com/hoesonwheels"&gt;696&lt;/A&gt; &lt;A href="http://www.myspace.com/caliballa"&gt;697&lt;/A&gt; &lt;A href="http://www.myspace.com/dipset8lk"&gt;698&lt;/A&gt; &lt;A href="http://www.myspace.com/okrayc121"&gt;699&lt;/A&gt; &lt;A href="http://www.myspace.com/gregwa"&gt;670&lt;/A&gt; &lt;A href="http://www.myspace.com/7181917"&gt;671&lt;/A&gt; &lt;A href="http://www.myspace.com/lilmamacita_180"&gt;672&lt;/A&gt; &lt;A href="http://www.myspace.com/17791598"&gt;673&lt;/A&gt; &lt;A href="http://myspace.com/hypnotizin_mami"&gt;674&lt;/A&gt; &lt;A href="http://www.myspace.com/bigbootysuzi"&gt;675&lt;/A&gt; &lt;A href="http://www.myspace.com/18928806"&gt;676&lt;/A&gt; &lt;A href="http://www.myspace.com/blackballer"&gt;677&lt;/A&gt; &lt;A href="http://www.myspace.com/african_beauty"&gt;678&lt;/A&gt; &lt;A href="http://www.myspace.com/xrorox"&gt;679&lt;/A&gt; &lt;A href="http://www.myspace.com/extremewng21"&gt;680&lt;/A&gt; &lt;A href="http://www.myspace.com/VORONWE"&gt;681&lt;/A&gt; &lt;A href="http://www.myspace.com/vicch3stnut"&gt;682&lt;/A&gt; &lt;A href="http://www.myspace.com/rollorollo69"&gt;683&lt;/A&gt; &lt;A href="http://myspace.com/allforyougirl13"&gt;684&lt;/A&gt; &lt;A href="http://www.myspace.com/ilikeeggsandbacon"&gt;685&lt;/A&gt; &lt;A href="http://www.myspace.com/Eastsidepimpn324"&gt;686&lt;/A&gt; &lt;A href="http://www.myspace.com/bigb0886"&gt;687&lt;/A&gt; &lt;A href="http://www.myspace.com/shawnstr8outofredhook"&gt;688&lt;/A&gt; &lt;A href="http://www.myspace.com/youknowmee"&gt;689&lt;/A&gt; &lt;A href="http://www.myspace.com/sebastian978"&gt;690&lt;/A&gt; &lt;A href="http://www.myspace.com/djlillex"&gt;691&lt;/A&gt; &lt;A href="http://www.myspace.com/sebastian978"&gt;692&lt;/A&gt; &lt;A href="http://www.myspace.com/djlillex"&gt;693&lt;/A&gt; &lt;A href="http://www.myspace.com/sammi4rmwv"&gt;694&lt;/A&gt; &lt;A href="http://www.myspace.com/cedjohnson"&gt;695&lt;/A&gt; &lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="FONT: bold 14pt/16pt Verdana"&gt;nexopia.com users&lt;/DIV&gt;
&lt;DIV style="BORDER-RIGHT: #dddddd 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: #dddddd 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; MARGIN-LEFT: 5px; BORDER-LEFT: #dddddd 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: #dddddd 1px solid; BACKGROUND-COLOR: #f6f6f6"&gt;&lt;A href="http://www.nexopia.com/profile.php?uid=709872"&gt;1&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=276555"&gt;2&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=502528"&gt;3&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=425174"&gt;4&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=921733"&gt;5&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=649217"&gt;6&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=817673"&gt;7&lt;/A&gt; &lt;A href="http://plus.www.nexopia.com/profile.php?uid=276555"&gt;8&lt;/A&gt; &lt;A href="http://www.nexopia.com/profile.php?uid=payneissweet"&gt;9&lt;/A&gt; &lt;/DIV&gt;&lt;BR&gt;
&lt;DIV style="FONT: bold 14pt/16pt Verdana"&gt;partypeeps2000.com users&lt;/DIV&gt;
&lt;DIV style="BORDER-RIGHT: #dddddd 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: #dddddd 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; MARGIN-LEFT: 5px; BORDER-LEFT: #dddddd 1px solid; PADDING-TOP: 4px; BORDER-BOTTOM: #dddddd 1px solid; BACKGROUND-COLOR: #f6f6f6"&gt;&lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?user=9mili_bleu_steel"&gt;1&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?nAccountID=117398"&gt;2&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?nAccountID=549682"&gt;3&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?nAccountID=594271"&gt;4&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?nAccountID=123814"&gt;5&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?user=Tkd_"&gt;6&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?user=kingsupreme"&gt;7&lt;/A&gt; &lt;A href="http://www.partypeeps2000.com/asp/AccountInfo.asp?user=J-Daliano"&gt;8&lt;/A&gt; &lt;/DIV&gt;</description><pubDate>Sun, 12 Feb 2006 10:34:14 GMT</pubDate><guid isPermaLink="false">81a483b5-f4d1-4e14-8eec-35671093bf2e</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=81a483b5-f4d1-4e14-8eec-35671093bf2e</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=81a483b5-f4d1-4e14-8eec-35671093bf2e</comments></item><item><title>http://www.speechtones.com</title><description>&lt;P&gt;&lt;A href="http://lebrilla.com/los"&gt;Carlos&lt;/A&gt; just launched &lt;A href="http://www.speechtones.com/"&gt;http://www.speechtones.com/&lt;/A&gt;.&amp;nbsp; It's a cool service that lets you create custom voice tones for your phone.&amp;nbsp; &lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;Unfortunately&lt;/SPAN&gt;, this doesn't work with sidekick 2.&lt;/P&gt;
&lt;P&gt;If you don't have a sidekick 2, you should check it out.&amp;nbsp; You can also &lt;A href="http://www.speechtones.com/contest.aspx"&gt;win a new razr phone&lt;/A&gt;.&lt;/P&gt;</description><pubDate>Fri, 16 Dec 2005 11:23:02 GMT</pubDate><guid isPermaLink="false">3fb31e22-87ef-4b37-bd93-98d66600162f</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=3fb31e22-87ef-4b37-bd93-98d66600162f</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=3fb31e22-87ef-4b37-bd93-98d66600162f</comments></item><item><title>Another Toy: 1995 Honda CBR900RR</title><description>&lt;P&gt;So who wants to get their motorcycle license with me?&lt;/P&gt;
&lt;P&gt;&lt;IMG height=448 alt=1994.honda.cbr900rr..jpg src="/shared/WebLogs/FTBGallery/2005/12/1995.honda.cbr900rr.jpg" width=600 border=0&gt;&lt;/P&gt;</description><pubDate>Tue, 13 Dec 2005 05:17:16 GMT</pubDate><guid isPermaLink="false">7989ad93-346f-4166-b2f8-02c567417d92</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=7989ad93-346f-4166-b2f8-02c567417d92</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=7989ad93-346f-4166-b2f8-02c567417d92</comments></item><item><title>Repost: Sorting Methods in ASP.NET Web Service Test Page</title><description>This is one of the more difficult things to find in Google, so I'm reposting this on my blog so I can find it easier. 
&lt;BLOCKQUOTE style="background-color:#eeeeee;border: #dddddd solid 1px;padding:4px;"&gt;
&lt;P&gt;I got tired of trying to locate a specific method on my web service test page, so I did a google search and as usual found &lt;A href="http://www.dotnet247.com/247reference/msgs/49/247802.aspx"&gt;the same question&lt;/A&gt;, but no complete answer. &lt;A href="http://weblogs.asp.net/jan"&gt;Jan Tielen&lt;/A&gt; pointed me to DefaultWsdlHelpGenerator.aspx, which is the file that is used for testing, but after that I was on my own.&lt;/P&gt;
&lt;P&gt;Long story short, here's how to solve the problem: 
&lt;OL&gt;
&lt;LI&gt;Open the DefaultWsdlHelpGenerator.aspx file - on my computer it is at C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\DefaultWsdlHelpGenerator.aspx - in your favorite editor. You may want to create a backup first. 
&lt;LI&gt;Locate the Page_Load event handler. If this file hasn't been edited before (and you're running .NET 1.1) this should start on line 1243 
&lt;LI&gt;Scroll down to line 1285, which should look like this: &lt;PRE class=codeview style="width:auto;"&gt;Hashtable methodsTable = new Hashtable();&lt;/PRE&gt;
&lt;LI&gt;Comment out this line and replace it with the following: &lt;PRE class=codeview style="width:auto;"&gt;SortedList methodsTable = new SortedList();&lt;/PRE&gt;
&lt;LI&gt;Save and refresh your web service test page. &lt;/LI&gt;&lt;/OL&gt;Now why doesn't it come like this in the first place? &lt;/BLOCKQUOTE&gt;Original Article: &lt;A href="http://blahblahg.blogspot.com/2004/08/sorting-methods-in-aspnet-web-service.html"&gt;http://blahblahg.blogspot.com/2004/08/sorting-methods-in-aspnet-web-service.html&lt;/A&gt;</description><pubDate>Wed, 07 Dec 2005 02:10:49 GMT</pubDate><guid isPermaLink="false">6342c0a9-aa25-42fd-99a1-95954188a7d2</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6342c0a9-aa25-42fd-99a1-95954188a7d2</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6342c0a9-aa25-42fd-99a1-95954188a7d2</comments></item><item><title>New Toy: 2002 BMW M3</title><description>&lt;P&gt;Ok, well a 2002 isn't exactly &lt;EM&gt;new...&lt;/EM&gt;&amp;nbsp; but hey,&amp;nbsp;it's new to me.&amp;nbsp; I've wanted an M3 for quite some time now, but they've been a little too pricey.&amp;nbsp; Fortunately the&amp;nbsp;older M3's&amp;nbsp;have dropped enough in price to make them affordable.&lt;/P&gt;
&lt;P&gt;I did check out the 2005's and found there is almost no difference between the 2002's and the 2005's.&amp;nbsp; The 2005's have a really cool competition package (for an additional 4k), but they'll both do a &lt;A href="http://www.albeedigital.com/supercoupe/articles/0-60times.html"&gt;4.7 0-60&lt;/A&gt;&amp;nbsp;and &lt;A href="http://www.albeedigital.com/supercoupe/articles/0-60times.html"&gt;13.4 in the quarter&lt;/A&gt;. (though after driving the firebird I would like it to be a little faster).&lt;/P&gt;
&lt;P&gt;What does this mean?&amp;nbsp; It means the firebird gets turned into a drift car.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=422 alt=2002.bmw.m3.jpg src="/shared/WebLogs/FTBGallery/2005/11/2002.bmw.m3.jpg" width=600 border=0&gt;&lt;/P&gt;</description><pubDate>Sat, 19 Nov 2005 07:00:00 GMT</pubDate><guid isPermaLink="false">f7246895-e79d-4856-8df6-acd4d7abd500</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=f7246895-e79d-4856-8df6-acd4d7abd500</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=f7246895-e79d-4856-8df6-acd4d7abd500</comments></item><item><title>.net Database Utility Library</title><description>&lt;P&gt;Accessing your database&amp;nbsp;can be a very repetitive task. This Database Utility class can help reduce a lot of the repetitious code.&lt;/P&gt;
&lt;P&gt;I have been using this Database Utility library for some time now.&amp;nbsp; I use it in every project that accesses a Sql database.&amp;nbsp; I was finally able to spend some time to properly package and document it for your use.&lt;/P&gt;
&lt;P&gt;&lt;A href="/software/databaseutility.aspx"&gt;DatabaseUtility Library v1.1.0&lt;/A&gt;&lt;/P&gt;</description><pubDate>Mon, 31 Oct 2005 08:09:21 GMT</pubDate><guid isPermaLink="false">a1597e92-5814-4368-9161-f3de130b82dd</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a1597e92-5814-4368-9161-f3de130b82dd</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a1597e92-5814-4368-9161-f3de130b82dd</comments></item><item><title>Loan Price vs. Cost</title><description>&lt;P&gt;Lately, I've been thinking about buying a new car, which probably means I'd get an auto loan. Since I started thinking about this, I have been trying to calculate exactly what the loan would cost me. Then I started to realize the "price" of the loan is drastically different than the "cost" of the loan. &lt;/P&gt;
&lt;P&gt;I currently use &lt;A href="http://emigrantdirect.com"&gt;EmigrantDirect.com&lt;/A&gt; as my savings account (4.00%). If I got a loan, I would have to withdraw from savings; the money I would spend towards the loan payments would no longer be going into my savings account, therefore no longer earning interest. &lt;/P&gt;
&lt;P&gt;I began to wonder if the loss of interest be significant. That is why I created&amp;nbsp;a &lt;A href="/code/price_vs_cost.aspx"&gt;"Price vs. Cost" Calculator&lt;/A&gt;. This calculator will show you exactly what your loss will be if you chose to make payments towards a car instead of putting that money into your savings account.&lt;/P&gt;
&lt;P&gt;Example: A loan of &lt;B&gt;$30,000.00&lt;/B&gt;&amp;nbsp;(5 years @ 5.95) will end up costing you a total of&amp;nbsp;&lt;B&gt;$38,228.63.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Another thing I learned from this tool, is increasing your downpayment to decrease your monthly payment will only &lt;EM&gt;very slightly&lt;/EM&gt; decrease your total cost.&lt;/P&gt;
&lt;P&gt;&lt;A href="/code/price_vs_cost.aspx"&gt;Go to "Price vs. Cost" Calculator...&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;</description><pubDate>Sat, 01 Oct 2005 12:22:35 GMT</pubDate><guid isPermaLink="false">676f5142-0cf4-48c6-88ec-9fbc5f68da98</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=676f5142-0cf4-48c6-88ec-9fbc5f68da98</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=676f5142-0cf4-48c6-88ec-9fbc5f68da98</comments></item><item><title>Cost me a little over $52 to fill up today.</title><description>&lt;P&gt;&lt;IMG style="WIDTH: 198px; HEIGHT: 230px" height=230 alt="Gas costs an arm and a leg" hspace=5 src="/shared/WebLogs/FTBGallery/2005/09/gas_arm_leg.jpg" width=198 align=left border=0&gt;Today it cost me a little over $52 to put 16.2 gallons into Pepe, my little mule.&lt;/P&gt;
&lt;P&gt;With these gas prices, you'd think&amp;nbsp;people would&amp;nbsp;start carpooling or&amp;nbsp;drive less --&amp;nbsp;doesn't look that way.&amp;nbsp; No one seems to care enough to reduce their driving&amp;nbsp;or gas consumption (myself included).&lt;/P&gt;
&lt;P&gt;I wonder how high gas prices have to go before people turn in their SUV's and change their driving habits.&lt;/P&gt;
&lt;P&gt;Translation: Get the F*** off my road!&lt;/P&gt;
&lt;P&gt;My car has about 350hp and is rated 17/28 mpg (though I get about 22 the way I drive).&amp;nbsp; It's a little over 5 years old now, and I'm surprised to find there has been almost no advancement in improving gas mileage (dodge charger is a good example of this).&lt;/P&gt;
&lt;P&gt;Is it&amp;nbsp;crazy we're now paying over three dollars a gallon?&amp;nbsp; Or is it crazy we used fill up for less than twenty bucks?&lt;/P&gt;</description><pubDate>Wed, 07 Sep 2005 05:12:35 GMT</pubDate><guid isPermaLink="false">082fd2c7-edf9-4d60-8dd6-26d788521805</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=082fd2c7-edf9-4d60-8dd6-26d788521805</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=082fd2c7-edf9-4d60-8dd6-26d788521805</comments></item><item><title>Template Engine and Shaolin Soccer</title><description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;Hey Joel, I used your template code in a project (with permission) and since &lt;A href="http://www.amazon.com/exec/obidos/tg/detail/-/B000286RNY/qid=1123285152/sr=8-1/ref=pd_bbs_sbs_1/104-6776876-6816715?v=glance&amp;amp;s=dvd&amp;amp;n=507846"&gt;this&lt;/A&gt; was on your &lt;A href="http://www.amazon.com/gp/registry/registry.html/103-7466951-6859041?id=1XWYHMV0Y5WUL"&gt;wish list&lt;/A&gt; and it is a truly excellent movie, have fun.&amp;nbsp; thanks, Ravi&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, this is a great movie!&lt;/P&gt;
&lt;P&gt;Thanks a bunch&amp;nbsp;Ravi!&amp;nbsp; (good timing too --&amp;nbsp;came on my birthday!)&lt;/P&gt;</description><pubDate>Fri, 05 Aug 2005 11:36:24 GMT</pubDate><guid isPermaLink="false">34c8a14d-bd6b-4ba7-ae51-f89a6f82f8a8</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=34c8a14d-bd6b-4ba7-ae51-f89a6f82f8a8</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=34c8a14d-bd6b-4ba7-ae51-f89a6f82f8a8</comments></item><item><title>KNAC and Heavy Metal</title><description>&lt;P&gt;My cousin Matt calls me and tells me he is in town touring with his &lt;A href="http://www.elctrikchair.com/"&gt;metal band&lt;/A&gt;.&amp;nbsp; Unfortunately I had to work, so I did miss their show, but I was able to hang out with them afterwards.&lt;/P&gt;
&lt;P&gt;It was really nice seeing my cousin.&amp;nbsp; He's lived in Colorado&amp;nbsp;for the past 15 years I think this is only the 2nd time I've seen him since he moved.&amp;nbsp; When he lived down here we both used to hang out all the time; we were both metal heads.&lt;/P&gt;
&lt;P&gt;Seeing them last night made me wonder what made me stop listening to metal.&amp;nbsp; Then I realized it was when &lt;A href="http://knac.com"&gt;KNAC&lt;/A&gt; went off the air.&amp;nbsp; It also didn't take too long for MTV to cut Head Bangers Ball.&lt;/P&gt;
&lt;P&gt;If KNAC didn't die and MTV didn't cut Head Bangers Ball, what kind of music would I be listening to today?&lt;/P&gt;
&lt;P&gt;KNAC did come back on the internet, but far too late.&lt;/P&gt;
&lt;P&gt;Also,&amp;nbsp;I JUST FOUND OUT&amp;nbsp;there will be no more Pantera because one of their members was &lt;A href="http://www.mtv.com/news/articles/1494653/12092004/pantera.jhtml"&gt;SHOT DEAD ON STAGE&lt;/A&gt;.&amp;nbsp; This happened only a few months ago, but I never heard about it.&lt;/P&gt;</description><pubDate>Sat, 30 Jul 2005 01:49:00 GMT</pubDate><guid isPermaLink="false">6c815fed-4304-4217-8ac3-750b81d01766</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6c815fed-4304-4217-8ac3-750b81d01766</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6c815fed-4304-4217-8ac3-750b81d01766</comments></item><item><title>Gone to Hawaii.  See you guys later.</title><description>&lt;P&gt;&lt;IMG title=Hawaii height=300 alt=Hawaii hspace=5 src="/shared/WebLogs/FTBGallery/2005/07/hawaii.jpg" width=199 align=left vspace=5 border=0&gt;Well, Tomorrow I'm off to Hawaii.&lt;/P&gt;
&lt;P&gt;Of course I'm going with &lt;A href="http://jamiesan.com"&gt;Jamie&lt;/A&gt;&amp;nbsp;-- one of her good&amp;nbsp;friends from highschool is getting married.&lt;/P&gt;
&lt;P&gt;Gonna be gone for 10 days.&amp;nbsp; Should be a nice getaway.&lt;/P&gt;</description><pubDate>Fri, 15 Jul 2005 06:20:21 GMT</pubDate><guid isPermaLink="false">3e077020-19cf-4369-8fad-37acbd640ea3</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=3e077020-19cf-4369-8fad-37acbd640ea3</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=3e077020-19cf-4369-8fad-37acbd640ea3</comments></item><item><title>My car turned 100,000 today.</title><description>&lt;P&gt;Well, on my way home from work, my car turned the big 100k!&lt;/P&gt;
&lt;P&gt;&lt;IMG title="Joel's 1999 Pontiac Firebird Transam" style="WIDTH: 500px; HEIGHT: 328px" height=328 alt="Joel's 1999 Pontiac Firebird Transam" hspace=5 src="/shared/WebLogs/FTBGallery/2005/07/1999.transam.jpg" width=500 vspace=5 border=0&gt;&lt;/P&gt;
&lt;P&gt;I'll probably&amp;nbsp;be driving this a little longer,&amp;nbsp;as&amp;nbsp;there are no cars worth buying in 2006...&amp;nbsp; I'm not holding my breath for 2007 either.&lt;/P&gt;</description><pubDate>Thu, 14 Jul 2005 05:08:42 GMT</pubDate><guid isPermaLink="false">2da90831-d4e6-46a0-8156-a81105b62303</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2da90831-d4e6-46a0-8156-a81105b62303</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2da90831-d4e6-46a0-8156-a81105b62303</comments></item><item><title>There really is No Free Lunch.</title><description>&lt;P&gt;There's a site I found, &lt;A href="http://www.livescience.com/"&gt;LiveScience.com&lt;/A&gt;, which has a bunch of great&amp;nbsp;articles worth reading.&amp;nbsp;One of the interesting articles&amp;nbsp;I ran into talks about &lt;A href="http://www.livescience.com/environment/041109_wind_mills.html"&gt;the negative impact&amp;nbsp;windmills have on the planet&lt;/A&gt;&amp;nbsp;-- Yah, windmills.&lt;/P&gt;
&lt;P&gt;&lt;IMG title=Windmills height=110 alt=Windmills hspace=5 src="/shared/WebLogs/FTBGallery/2005/07/wind_mills.jpg" width=163 align=left border=0&gt;I previously thought something like a windmill would have zero impact on the environment.&amp;nbsp; Though I guess&amp;nbsp;&lt;EM&gt;everything&lt;/EM&gt; has an impact and it becomes more &lt;SPAN style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;noticeable &lt;/SPAN&gt;when done on a large scale.&amp;nbsp; The impact &lt;EM&gt;is less&lt;/EM&gt; than burning fossil fuels, but &lt;EM&gt;it is negative&lt;/EM&gt; none the less.&lt;/P&gt;
&lt;P&gt;Reading this reminded me of an article &lt;A href="http://plaice.org/"&gt;Sean&lt;/A&gt; found about &lt;A href="http://www.wired.com/wired/archive/13.06/craven.html?pg=1&amp;amp;topic=craven&amp;amp;topic_set="&gt;generating energy from cold sea water&lt;/A&gt;.&amp;nbsp;&amp;nbsp;The article talks about&amp;nbsp;all the positive possibilities of using cold sea water at&amp;nbsp;very little&amp;nbsp;cost; things like air conditioning, energy,&amp;nbsp;crop watering, faster crop growth and&amp;nbsp;fresh drinking water.&lt;/P&gt;
&lt;P&gt;Though, like the Windmills, this is not a &lt;EM&gt;zero&lt;/EM&gt; impact design.&amp;nbsp; If this were to be done in a larger scale it would cause a warming of the oceans and cause a dryer local&amp;nbsp;climate when "sweating" is used to produce fresh water.&lt;/P&gt;
&lt;P&gt;It makes me think &lt;EM&gt;there is no single design&lt;/EM&gt; that is capable of supplying enough energy for us humans, there are far too many of us.&amp;nbsp; We will probably need&amp;nbsp;multiple types of systems to keep the specific negative impacts of each design lower.&lt;/P&gt;
&lt;P&gt;It's a good thing the population is &lt;EM&gt;only&lt;/EM&gt; going to increase by 40% by 2050. *insert sarcasm here*&lt;/P&gt;</description><pubDate>Wed, 06 Jul 2005 10:43:10 GMT</pubDate><guid isPermaLink="false">aec29e93-bc1e-4fc7-a9ac-64fadb4112ec</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=aec29e93-bc1e-4fc7-a9ac-64fadb4112ec</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=aec29e93-bc1e-4fc7-a9ac-64fadb4112ec</comments></item><item><title>Opera says Firefox usage numbers are inflated.</title><description>&lt;P&gt;I caught an interesting article on &lt;A href="http://www.zdnet.com/"&gt;ZDNet&lt;/A&gt;; &lt;a href="http://www.opera.com/"&gt;Opera&lt;/a&gt; is saying &lt;A href="http://news.zdnet.co.uk/0,39020330,39204643,00.htm"&gt;Firefox market share numbers are inflated&lt;/A&gt; because of their &lt;A href="http://news.zdnet.co.uk/internet/0,39020369,39193410,00.htm"&gt;Google pre-caching&lt;/A&gt;, which comes enabled by default.&lt;/P&gt;
&lt;P&gt;The pre-caching, when you search google,&amp;nbsp;downloads the first few results before you click on them.&amp;nbsp; This helps speed up the page load time, if you click on a link that has already been pre-cached.&lt;/P&gt;
&lt;P&gt;&lt;IMG title="Web Browser Market Pie Chart" style="WIDTH: 471px; HEIGHT: 190px" height=190 alt="Web Browser Market Pie Chart" hspace=5 src="/shared/WebLogs/FTBGallery/2005/06/browser-market.gif" width=471 align=right vspace=5 border=0&gt;It's a great for faster browsing, though some do not like this feature as it may set off firewall alarms without your knowledge of any wrong doing.&amp;nbsp; It's also possible to visit illegal sites accidentally this way.&amp;nbsp; You'll also use more bandwidth and receive cookies for sites you have not visited.&lt;/P&gt;
&lt;P&gt;The Firefox browser market has been increasing lately, though how much of this is increase is due to pre-caching?&lt;/P&gt;
&lt;P&gt;note: browser market&amp;nbsp;statistics come from &lt;A href="http://www.zdnet.com"&gt;ZDNet&lt;/A&gt; and&amp;nbsp;&lt;A href="http://www.onestat.com/"&gt;OneStat.com&lt;/A&gt;.&lt;/P&gt;</description><pubDate>Wed, 29 Jun 2005 09:59:40 GMT</pubDate><guid isPermaLink="false">6fd29f54-7e79-412b-aa5c-6108dac81cde</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6fd29f54-7e79-412b-aa5c-6108dac81cde</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6fd29f54-7e79-412b-aa5c-6108dac81cde</comments></item><item><title>Complacent With Mediocrity</title><description>&lt;P&gt;On a large project I am currently working on, I have been having difficulties trying to convince "the powers that be" to spend more time and resources on creating a better and more usable UI (this would include better graphics, navigation, copy and the overall general functionality). &lt;/P&gt;
&lt;P&gt;Though our application has very rich and working functionality (this alone puts us ahead of our competitors), &lt;EM&gt;I&lt;/EM&gt; believe our interface is still lacking. Because the interface is the sole thing the customer sees, it becomes a direct reflection of our software as a whole as well as a reflection of our company as a whole. Because we are a cutting edge technology company, I believe this holds even more true for us.&lt;/P&gt;
&lt;P&gt;I recently signed up with &lt;A href="http://www.emigrant-direct.com/"&gt;Emigrant Direct&lt;/A&gt;, who has got to have the number one &lt;EM&gt;worst website&lt;/EM&gt; (after signup) I have ever seen. I hesitated for a few weeks before transferring them any money and I contemplated going with &lt;A href="http://www.ing.com/"&gt;ING&lt;/A&gt; instead, even though Emigrant Direct&amp;nbsp;offers a&amp;nbsp;much better return. This hesitation came solely from my impressions of their UI. After I spent a little more time researching Emigrant Direct, I decided to take the leap and transfer my money (though I did not transfer as much money as I had originally intended to). &lt;/P&gt;
&lt;P&gt;Every time I bring up the subject, I am hammered with reasons why we should not "waste our time" on these improvements. The typical responses I receive are "&lt;EM&gt;I&lt;/EM&gt; think our application is good", "Our application is better than our competitors", and "No one has complained about our application, so it must be good". &lt;/P&gt;
&lt;P&gt;It seems like this time I am the odd man out, the majority of the company feels our application is good. Though I will agree with them that our application is "good", I believe it should be &lt;U&gt;great&lt;/U&gt;! &lt;/P&gt;
&lt;P&gt;It is true that no one has complained about our application, but not receiving complaints is &lt;EM&gt;not&lt;/EM&gt; a gauge of how good our application is. People will only complain when the application is less than "usable". &lt;/P&gt;
&lt;P&gt;I have created a little graph that ranges from Crap to Kick-Ass. Right in the center is "Usable"; "Usable" is neither good nor bad. Anything in between "Usable" and Kick-Ass will not generate any complaints, which is why we have not received any complaints about our application. Though as you can see, we have not just a little, but &lt;EM&gt;a lot of room&lt;/EM&gt; for improvement. &lt;/P&gt;
&lt;P&gt;&lt;IMG title="Competitor Application Comparison" height=153 alt="Competitor Application Comparison" src="/shared/WebLogs/FTBGallery/2005/06/competitors.applications.gif" width=450 border=0&gt; &lt;/P&gt;
&lt;P&gt;One of my biggest problems is our customers; constantly send us praise telling us how much better our application is in comparison to our competitors.&amp;nbsp; Unfortunately the company sees this as a big indicator of how good our application is.&amp;nbsp; Though as you can see from the graph I created, yes we are better than our competitors, but we are still far from Kick-Ass.&lt;/P&gt;
&lt;P&gt;For me this seems to be a very common problem.&amp;nbsp; I have run into this problem on many different projects in many different companies. It seems like everyone is complacent with mediocrity.&lt;/P&gt;</description><pubDate>Fri, 10 Jun 2005 10:25:49 GMT</pubDate><guid isPermaLink="false">bf6c92e0-7513-4a78-ad3c-aa69aaa3a473</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=bf6c92e0-7513-4a78-ad3c-aa69aaa3a473</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=bf6c92e0-7513-4a78-ad3c-aa69aaa3a473</comments></item><item><title>DynoJet Dyno Runs</title><description>&lt;P&gt;It looks like I finally fixed my air/fuel ratio problem.&amp;nbsp; I am no longer running too lean.&amp;nbsp; Now if I could only fix my wheel hop problem...&lt;/P&gt;
&lt;P&gt;&lt;IMG title="1999 Transam Dyno Chart" height=501 alt="1999 Transam Dyno Chart" src="/shared/WebLogs/FTBGallery/2005/05/dynochart.jpg" width=600 border=0&gt;&lt;/P&gt;
&lt;P&gt;note: these numbers are rated at the wheels and not at the motor.&lt;/P&gt;
&lt;P&gt;update: I forgot to mention... I found a place that will weigh your car for $3.00.&amp;nbsp; My car weighs 3490 lbs (1/4 tank of gas) -- That's about 100-200 lbs lighter than I expected.&lt;/P&gt;
&lt;P&gt;update #2: For those of you not familiar with rear wheel horsepower, the new 400hp C6 Corvette has about 330-340 rear wheel horsepower.&lt;/P&gt;</description><pubDate>Tue, 31 May 2005 06:54:25 GMT</pubDate><guid isPermaLink="false">2f1df5fb-54fa-4442-8568-2c0dfbb23f78</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2f1df5fb-54fa-4442-8568-2c0dfbb23f78</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2f1df5fb-54fa-4442-8568-2c0dfbb23f78</comments></item><item><title>Horsepower vs Weight vs Cost.</title><description>&lt;P&gt;The other day my friend &lt;A href="http://plaice.org/"&gt;Sean&lt;/A&gt; and I had a discussion about the horsepower to weight ratio of a vehicle. This conversation started when comparing the Lotus Elise (has low horsepower, but is as light as a feather) to the Honda s2000 (has higher horse power, but also has more weight). &lt;/P&gt;
&lt;P&gt;This conversation got me to thinking about how to calculate what the best horsepower to weight ratio for the price of the vehicle would be. I call the&amp;nbsp;result Acceleration Cost.&lt;BR&gt;&lt;STRONG&gt;Formula: Acceleration Cost&amp;nbsp;= cost / (hp / weight) &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Best Performance: &lt;A href="http://www.chevrolet.com/corvettez06"&gt;Chevrolet Corvette z06&lt;/A&gt;&lt;BR&gt;Best Acceleration Cost: &lt;A href="http://www.nissanusa.com/vehicles/ModelHomePage/0,,120017,00.html"&gt;Nissan&amp;nbsp;350z&lt;/A&gt;&lt;BR&gt;Joel's Pick: &lt;A href="http://www.pontiac.com/gto/index.jsp?brand=home"&gt;Pontiac GTO&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;One thing to keep in mind about the price of the vehicle -- The vehicle price is &lt;EM&gt;Base MSRP&lt;/EM&gt; with no options. Some cars will require a big bump in price from adding options, others will require almost no price change. &lt;/P&gt;
&lt;P&gt;*sorted by hp / weight ratio &lt;BR&gt;
&lt;TABLE cellSpacing=0 cellPadding=3 border=1&gt;
&lt;TBODY&gt;
&lt;TR bgColor=#c0c0c0&gt;
&lt;TH&gt;Vehicle&lt;/TH&gt;
&lt;TH&gt;Weight&lt;/TH&gt;
&lt;TH&gt;HP&lt;/TH&gt;
&lt;TH&gt;Base MSRP&lt;/TH&gt;
&lt;TH&gt;*hp / weight*&lt;/TH&gt;
&lt;TH&gt;Acceleration Cost&lt;/TH&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Corvette C6 z06&lt;/TD&gt;
&lt;TD align=right&gt;3130&lt;/TD&gt;
&lt;TD align=right&gt;505&lt;/TD&gt;
&lt;TD align=right&gt;$65,500&lt;/TD&gt;
&lt;TD align=right&gt;1:06.26&lt;/TD&gt;
&lt;TD align=right&gt;$405,970&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Corvette C6&lt;/TD&gt;
&lt;TD align=right&gt;3180&lt;/TD&gt;
&lt;TD align=right&gt;400&lt;/TD&gt;
&lt;TD align=right&gt;$44,500&lt;/TD&gt;
&lt;TD align=right&gt;1:07.95&lt;/TD&gt;
&lt;TD align=right&gt;$353,775&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;GTO&lt;/TD&gt;
&lt;TD align=right&gt;3725&lt;/TD&gt;
&lt;TD align=right&gt;400&lt;/TD&gt;
&lt;TD align=right&gt;$33,000&lt;/TD&gt;
&lt;TD align=right&gt;1:09.31&lt;/TD&gt;
&lt;TD align=right&gt;$307,312&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;My Car (99 T/A moded)&lt;/TD&gt;
&lt;TD align=right&gt;3575&lt;/TD&gt;
&lt;TD align=right&gt;365&lt;/TD&gt;
&lt;TD align=right&gt;n/a&lt;/TD&gt;
&lt;TD align=right&gt;1:9.78&lt;/TD&gt;
&lt;TD align=right&gt;n/a&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BMW M3 Coupe&lt;/TD&gt;
&lt;TD align=right&gt;3415&lt;/TD&gt;
&lt;TD align=right&gt;333&lt;/TD&gt;
&lt;TD align=right&gt;$47,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.25&lt;/TD&gt;
&lt;TD align=right&gt;$481,996&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Lotus Elise&lt;/TD&gt;
&lt;TD align=right&gt;1975&lt;/TD&gt;
&lt;TD align=right&gt;190&lt;/TD&gt;
&lt;TD align=right&gt;$42,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.39&lt;/TD&gt;
&lt;TD align=right&gt;$437,500&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Subaru Impreza WRX sti&lt;/TD&gt;
&lt;TD align=right&gt;3298&lt;/TD&gt;
&lt;TD align=right&gt;300&lt;/TD&gt;
&lt;TD align=right&gt;$32,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.99&lt;/TD&gt;
&lt;TD align=right&gt;$351,786&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Nissan 350z&lt;/TD&gt;
&lt;TD align=right&gt;3200&lt;/TD&gt;
&lt;TD align=right&gt;287&lt;/TD&gt;
&lt;TD align=right&gt;$26,700&lt;/TD&gt;
&lt;TD align=right&gt;1:11.15&lt;/TD&gt;
&lt;TD align=right&gt;$293,522&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Audi s4&lt;/TD&gt;
&lt;TD align=right&gt;3900&lt;/TD&gt;
&lt;TD align=right&gt;340&lt;/TD&gt;
&lt;TD align=right&gt;$47,000&lt;/TD&gt;
&lt;TD align=right&gt;1:11.47&lt;/TD&gt;
&lt;TD align=right&gt;$539,117&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BMW 545i&lt;/TD&gt;
&lt;TD align=right&gt;3800&lt;/TD&gt;
&lt;TD align=right&gt;325&lt;/TD&gt;
&lt;TD align=right&gt;$55,800&lt;/TD&gt;
&lt;TD align=right&gt;1:11.69&lt;/TD&gt;
&lt;TD align=right&gt;$652,430&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Honda s2000&lt;/TD&gt;
&lt;TD align=right&gt;2835&lt;/TD&gt;
&lt;TD align=right&gt;240&lt;/TD&gt;
&lt;TD align=right&gt;$33,000&lt;/TD&gt;
&lt;TD align=right&gt;1:11.81&lt;/TD&gt;
&lt;TD align=right&gt;$389,812&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Lancer Evo VIII&lt;/TD&gt;
&lt;TD align=right&gt;3263&lt;/TD&gt;
&lt;TD align=right&gt;276&lt;/TD&gt;
&lt;TD align=right&gt;$35,500&lt;/TD&gt;
&lt;TD align=right&gt;1:11.82&lt;/TD&gt;
&lt;TD align=right&gt;$419,697&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Mustang Coupe GT&lt;/TD&gt;
&lt;TD align=right&gt;3560&lt;/TD&gt;
&lt;TD align=right&gt;300&lt;/TD&gt;
&lt;TD align=right&gt;$25,600&lt;/TD&gt;
&lt;TD align=right&gt;1:11.86&lt;/TD&gt;
&lt;TD align=right&gt;$303,786&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Infinity G35&lt;/TD&gt;
&lt;TD align=right&gt;3500&lt;/TD&gt;
&lt;TD align=right&gt;280&lt;/TD&gt;
&lt;TD align=right&gt;$32,500&lt;/TD&gt;
&lt;TD align=right&gt;1:12.50&lt;/TD&gt;
&lt;TD align=right&gt;$406,250&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Mazda rx8&lt;/TD&gt;
&lt;TD align=right&gt;3053&lt;/TD&gt;
&lt;TD align=right&gt;238&lt;/TD&gt;
&lt;TD align=right&gt;$27,400&lt;/TD&gt;
&lt;TD align=right&gt;1:12.82&lt;/TD&gt;
&lt;TD align=right&gt;$351,479&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Acura RSX-S&lt;/TD&gt;
&lt;TD align=right&gt;2750&lt;/TD&gt;
&lt;TD align=right&gt;210&lt;/TD&gt;
&lt;TD align=right&gt;$23,670&lt;/TD&gt;
&lt;TD align=right&gt;1:13.09&lt;/TD&gt;
&lt;TD align=right&gt;$309,964&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Pontiac Solstice&lt;/TD&gt;
&lt;TD align=right&gt;2860&lt;/TD&gt;
&lt;TD align=right&gt;177&lt;/TD&gt;
&lt;TD align=right&gt;$20,000&lt;/TD&gt;
&lt;TD align=right&gt;1:16.15&lt;/TD&gt;
&lt;TD align=right&gt;$323,163&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;*sorted by acceleration cost. &lt;BR&gt;
&lt;TABLE cellSpacing=0 cellPadding=3 border=1&gt;
&lt;TBODY&gt;
&lt;TR bgColor=#c0c0c0&gt;
&lt;TH&gt;Vehicle&lt;/TH&gt;
&lt;TH&gt;Weight&lt;/TH&gt;
&lt;TH&gt;HP&lt;/TH&gt;
&lt;TH&gt;Base MSRP&lt;/TH&gt;
&lt;TH&gt;hp / weight&lt;/TH&gt;
&lt;TH&gt;*Acceleration Cost*&lt;/TH&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Nissan 350z&lt;/TD&gt;
&lt;TD align=right&gt;3200&lt;/TD&gt;
&lt;TD align=right&gt;287&lt;/TD&gt;
&lt;TD align=right&gt;$26,700&lt;/TD&gt;
&lt;TD align=right&gt;1:11.15&lt;/TD&gt;
&lt;TD align=right&gt;$293,522&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Mustang Coupe GT&lt;/TD&gt;
&lt;TD align=right&gt;3560&lt;/TD&gt;
&lt;TD align=right&gt;300&lt;/TD&gt;
&lt;TD align=right&gt;$25,600&lt;/TD&gt;
&lt;TD align=right&gt;1:11.86&lt;/TD&gt;
&lt;TD align=right&gt;$303,786&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;GTO&lt;/TD&gt;
&lt;TD align=right&gt;3725&lt;/TD&gt;
&lt;TD align=right&gt;400&lt;/TD&gt;
&lt;TD align=right&gt;$33,000&lt;/TD&gt;
&lt;TD align=right&gt;1:09.31&lt;/TD&gt;
&lt;TD align=right&gt;$307,312&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Acura RSX-S&lt;/TD&gt;
&lt;TD align=right&gt;2750&lt;/TD&gt;
&lt;TD align=right&gt;210&lt;/TD&gt;
&lt;TD align=right&gt;$23,670&lt;/TD&gt;
&lt;TD align=right&gt;1:13.09&lt;/TD&gt;
&lt;TD align=right&gt;$309,964&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Pontiac Solstice&lt;/TD&gt;
&lt;TD align=right&gt;2860&lt;/TD&gt;
&lt;TD align=right&gt;177&lt;/TD&gt;
&lt;TD align=right&gt;$20,000&lt;/TD&gt;
&lt;TD align=right&gt;1:16.15&lt;/TD&gt;
&lt;TD align=right&gt;$323,163&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Corvette C6&lt;/TD&gt;
&lt;TD align=right&gt;3180&lt;/TD&gt;
&lt;TD align=right&gt;400&lt;/TD&gt;
&lt;TD align=right&gt;$44,500&lt;/TD&gt;
&lt;TD align=right&gt;1:07.95&lt;/TD&gt;
&lt;TD align=right&gt;$353,775&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Mazda rx8&lt;/TD&gt;
&lt;TD align=right&gt;3053&lt;/TD&gt;
&lt;TD align=right&gt;238&lt;/TD&gt;
&lt;TD align=right&gt;$27,400&lt;/TD&gt;
&lt;TD align=right&gt;1:12.82&lt;/TD&gt;
&lt;TD align=right&gt;$351,479&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Subaru Impreza WRX sti&lt;/TD&gt;
&lt;TD align=right&gt;3298&lt;/TD&gt;
&lt;TD align=right&gt;300&lt;/TD&gt;
&lt;TD align=right&gt;$32,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.99&lt;/TD&gt;
&lt;TD align=right&gt;$351,786&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Honda s2000&lt;/TD&gt;
&lt;TD align=right&gt;2835&lt;/TD&gt;
&lt;TD align=right&gt;240&lt;/TD&gt;
&lt;TD align=right&gt;$33,000&lt;/TD&gt;
&lt;TD align=right&gt;1:11.81&lt;/TD&gt;
&lt;TD align=right&gt;$389,812&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Corvette C6 z06&lt;/TD&gt;
&lt;TD align=right&gt;3130&lt;/TD&gt;
&lt;TD align=right&gt;505&lt;/TD&gt;
&lt;TD align=right&gt;$65,500&lt;/TD&gt;
&lt;TD align=right&gt;1:06.26&lt;/TD&gt;
&lt;TD align=right&gt;$405,970&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Infinity G35&lt;/TD&gt;
&lt;TD align=right&gt;3500&lt;/TD&gt;
&lt;TD align=right&gt;280&lt;/TD&gt;
&lt;TD align=right&gt;$32,500&lt;/TD&gt;
&lt;TD align=right&gt;1:12.50&lt;/TD&gt;
&lt;TD align=right&gt;$406,250&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Lancer Evo VIII&lt;/TD&gt;
&lt;TD align=right&gt;3263&lt;/TD&gt;
&lt;TD align=right&gt;276&lt;/TD&gt;
&lt;TD align=right&gt;$35,500&lt;/TD&gt;
&lt;TD align=right&gt;1:11.82&lt;/TD&gt;
&lt;TD align=right&gt;$419,697&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Lotus Elise&lt;/TD&gt;
&lt;TD align=right&gt;1975&lt;/TD&gt;
&lt;TD align=right&gt;190&lt;/TD&gt;
&lt;TD align=right&gt;$42,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.39&lt;/TD&gt;
&lt;TD align=right&gt;$437,500&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BMW M3 Coupe&lt;/TD&gt;
&lt;TD align=right&gt;3415&lt;/TD&gt;
&lt;TD align=right&gt;333&lt;/TD&gt;
&lt;TD align=right&gt;$47,000&lt;/TD&gt;
&lt;TD align=right&gt;1:10.25&lt;/TD&gt;
&lt;TD align=right&gt;$481,996&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Audi s4&lt;/TD&gt;
&lt;TD align=right&gt;3900&lt;/TD&gt;
&lt;TD align=right&gt;340&lt;/TD&gt;
&lt;TD align=right&gt;$47,000&lt;/TD&gt;
&lt;TD align=right&gt;1:11.47&lt;/TD&gt;
&lt;TD align=right&gt;$539,117&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BMW 545i&lt;/TD&gt;
&lt;TD align=right&gt;3800&lt;/TD&gt;
&lt;TD align=right&gt;325&lt;/TD&gt;
&lt;TD align=right&gt;$55,800&lt;/TD&gt;
&lt;TD align=right&gt;1:11.69&lt;/TD&gt;
&lt;TD align=right&gt;$652,430&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;</description><pubDate>Sat, 14 May 2005 05:50:39 GMT</pubDate><guid isPermaLink="false">b994422c-87cd-4378-97d1-208683026988</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b994422c-87cd-4378-97d1-208683026988</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b994422c-87cd-4378-97d1-208683026988</comments></item><item><title>Welcome to Dell Chat.  May I punch your balls?</title><description>&lt;P&gt;Talking with Dell Support has got to be one of the most mind numbing excercises I have ever gone through.&amp;nbsp; I have only&amp;nbsp;gone through dell support twice.&amp;nbsp; Both times I got that sick feeling in my stomach, like I've just been punched in my balls.&amp;nbsp; I believe their strategy is to&amp;nbsp;send you into loops and to bore you&amp;nbsp;until you just give up or kill yourself. &amp;nbsp;I am now 5% dumber for having talked with them...&lt;/P&gt;
&lt;P&gt;The following is 43 minutes of my life that I can never get back...&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#000000&gt;&lt;STRONG&gt;Welcome to Dell Chat. Please wait for an available agent. You will be notified when your chat is accepted by an agent.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR&gt;{Joel Thoms 2:05:06 AM} Unable to scan over network with windows xp (and firewall disabled)&amp;nbsp; &lt;BR&gt;{Joel Thoms 2:05:37 AM} Unable to scan over network with windows xp (and firewall disabled)&amp;nbsp; &lt;BR&gt;&lt;FONT color=#808080&gt;&lt;FONT color=#000000&gt;&lt;STRONG&gt;The session has been accepted.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;/FONT&gt;&amp;nbsp;&lt;BR&gt;&lt;FONT color=#0000ff&gt;{Sashi 2:06:22 AM}&lt;/FONT&gt; Thank you for contacting Dell Consumer Technical Chat Support for Desktop, Printers and Electronics &amp;amp; Accessories. My name is Shashi. Please give me a minute to review your question and in the mean time can you please verify the system shipping address and the telephone number.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:06:51 AM}&lt;/FONT&gt; shipping address is ****. phone number is&amp;nbsp;****&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Sashi 2:07:26 AM}&lt;/FONT&gt; Thank you for the information.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Sashi 2:08:02 AM}&lt;/FONT&gt; since when are you facing the problem with.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:08:42 AM}&lt;/FONT&gt; Installed printer this week. I am able to scan from computer connected to printer. But unable to scan over network. I can printer over network, but not scan.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:09:07 AM}&lt;/FONT&gt; I found one article on support.dell.com, but it talks about windows firewall. I have disabled it on the server and client. I am still unable to scan.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Sashi 2:10:12 AM}&lt;/FONT&gt; Is there any hardware or software changes done in the printer recently?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:10:34 AM}&lt;/FONT&gt; no changes. the printer is new&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:10:48 AM}&lt;/FONT&gt; when i open the All-In-One Center on client machine and click "Preview Now". i get "Scan Was Not Successful"&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:11:09 AM}&lt;/FONT&gt; but it does work when I try it on the server. Just the clients are not working.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Sashi 2:11:37 AM}&lt;/FONT&gt; Please let me know the exact error you are getting.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Joel Thoms 2:12:27 AM}&lt;/FONT&gt; it's a popup box. it says "Scan Was Not Successful" and says try these solutions... "make sure the all-in-one is powered on" "disconnect and reconnect the usb cable" "disconnect and reconnect the all-in-ones power cable" "restart your computer"&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:12:47 AM}&lt;/FONT&gt; i have tried them all. and it still will only work from server, but not client.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:12:59 AM}&lt;/FONT&gt; okay.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:13:08 AM}&lt;/FONT&gt; Please allow me couple of minutes to retrieve some necessary information in order to assist you better&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:13:19 AM}&lt;/FONT&gt; ok&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:17:19 AM}&lt;/FONT&gt; Thank you for being online. Please let me know if you have uninstalled windows xp service pack2 firewall.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:17:57 AM}&lt;/FONT&gt; yes. firewall is disabled on both server and client machine. I also rebooted after I disabled firewall.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:20:48 AM}&lt;/FONT&gt; If i am correct the printer is not able to download the fax application.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:21:38 AM}&lt;/FONT&gt; Please correct me if i am wrong.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:22:13 AM}&lt;/FONT&gt; I think it should. The instruction manual has a section called "Scanning to Your Computer Over a Network."&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:22:33 AM}&lt;/FONT&gt; but this section does not help. and the Troubleshooting section also does not help.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:23:17 AM}&lt;/FONT&gt; Please Check to see if any system is wirelessly connected to the access point. &lt;/P&gt;
&lt;P&gt;Check to see if any system will associate to the base station, access point, or residential gateway in use.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:24:11 AM}&lt;/FONT&gt; No wireless. Printer is connected to server via USB. Server is connected to router via LAN. Client is also connected to router via LAN.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:24:21 AM}&lt;/FONT&gt; Printing works, but scanning does not.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:25:23 AM}&lt;/FONT&gt; Please let me know if you have installed the norton security cenre in the system.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:26:03 AM}&lt;/FONT&gt; No anti-virus is installed&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:27:01 AM}&lt;/FONT&gt; Are you using the built in windows firewalls.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:27:56 AM}&lt;/FONT&gt; windows firewalls are disabled on both server and client.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:30:16 AM}&lt;/FONT&gt; Please allow me a minute to research on this issue.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:30:20 AM}&lt;/FONT&gt; ok&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:34:21 AM}&lt;/FONT&gt; Thank you for being online.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:35:08 AM}&lt;/FONT&gt; I would suggest you to install the default windows firewall to resolve the issue.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:35:42 AM}&lt;/FONT&gt; install on both client and server?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:35:50 AM}&lt;/FONT&gt; Yes.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:36:30 AM}&lt;/FONT&gt; I am very sorry for that You need to install it on the client side.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:36:59 AM}&lt;/FONT&gt; ok. i enabled windows firewall on both client and server. same problem.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:37:26 AM}&lt;/FONT&gt; Ok, I installed windows firewall on both client and server. same problem.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#808080&gt;&lt;FONT color=#000000&gt;&lt;STRONG&gt;The visitor has ended the chat session.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;/FONT&gt;&amp;nbsp;&lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:38:16 AM}&lt;/FONT&gt; Please let me know if you are using the print server.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:38:52 AM}&lt;/FONT&gt; Please let me know if you are receiving my message?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:38:58 AM}&lt;/FONT&gt; Unable to scan over network with windows xp (and firewall disabled)&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:39:17 AM}&lt;/FONT&gt; ok. i am back.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:39:23 AM}&lt;/FONT&gt; Please let me know if you are using the bprint server.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:39:31 AM}&lt;/FONT&gt; chat was acting weird.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:39:31 AM}&lt;/FONT&gt; *print&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:39:53 AM}&lt;/FONT&gt; yes. print server is windows xp with printer connected via USB cable.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:40:49 AM}&lt;/FONT&gt; The faxing feature of this printer is not compatible with print server.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:41:36 AM}&lt;/FONT&gt; *scanning.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:42:00 AM}&lt;/FONT&gt; do i need to buy something for scanning to work over the network?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:43:00 AM}&lt;/FONT&gt; No .&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:43:55 AM}&lt;/FONT&gt; You need to use the printer in a normal way.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:44:52 AM}&lt;/FONT&gt; ok thank you.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:44:52 AM}&lt;/FONT&gt; I would advice you to install the firewall as the system may get effected with virus.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:45:09 AM}&lt;/FONT&gt; Have I been able to answer the query to your satisfaction?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:45:26 AM}&lt;/FONT&gt; I will continue to play with it. Maybe I can figure it out.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:45:45 AM}&lt;/FONT&gt; Is there any other technical issue I may assist you with?&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:45:55 AM}&lt;/FONT&gt; no. thank you for your time.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:46:25 AM}&lt;/FONT&gt; Please stay online with me while I give you the case number. This case number will have all the steps, which we have done today. So that whenever you need to contact us again for the same issue, you just need to mention the case number to the next technician and do not have to repeat all trouble shooting steps undertaken.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:46:39 AM}&lt;/FONT&gt; ok&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:47:16 AM}&lt;/FONT&gt; The case number is 100689137.&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:47:40 AM}&lt;/FONT&gt; thank you&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:47:48 AM}&lt;/FONT&gt; Thank you for visiting Dell Technical Support online chat and allowing me the opportunity to assist you. Please feel free to visit us again at &lt;A href="http://support.dell.com/support/topics/global.aspx/support/en/chat?c=us&amp;amp;cs=19&amp;amp;l=e"&gt;http://support.dell.com/support/topics/global.aspx/support/en/chat?c=us&amp;amp;cs=19&amp;amp;l=e&lt;/A&gt;&amp;nbsp; &lt;BR&gt;&lt;FONT color=#0000ff&gt;{Joel Thoms 2:48:13 AM}&lt;/FONT&gt; thank you. goodbye&amp;nbsp; &lt;BR&gt;&lt;FONT color=#ff0000&gt;{Sashi 2:48:30 AM}&lt;/FONT&gt; same to you.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;I was going to ask what "&lt;EM&gt;You need to use the printer in a normal way.&lt;/EM&gt;" means, but I was afraid my brain was going to fucking explode.&lt;/P&gt;
&lt;P&gt;I guess my setup might be kinda abnormal -- I do have the Dell AIO 962 (printer)&amp;nbsp;connected via USB to my Dell PowerEdge 400sc which is connected via rj45 to my Dell TrueMobile 3200 router.&amp;nbsp; I can see where my Dell Inspiron 9300, which is also connected via rj45 to my Dell TrueMobile 3200 might have some FUCKING PROBLEMS?!&amp;nbsp; AAAARRRrrrrrggggggggggggggg...&lt;/P&gt;</description><pubDate>Fri, 06 May 2005 08:36:50 GMT</pubDate><guid isPermaLink="false">c4412833-fec2-43b1-b06b-503db04bec63</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=c4412833-fec2-43b1-b06b-503db04bec63</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=c4412833-fec2-43b1-b06b-503db04bec63</comments></item><item><title>$750 discount = new laptop.</title><description>Well, I missed the original $750 discount (off laptops $1499 and up), but today &lt;A href="http://dell.com"&gt;Dell&lt;/A&gt; released another one -- &lt;A href="http://www.fatwallet.com/store.php?store=208"&gt;$750 discount&lt;/A&gt; (off laptops $2000 and up).&lt;BR&gt;&lt;BR&gt;Thank you Dell!&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;IMG style="WIDTH: 562px; HEIGHT: 1225px" height=1225 alt="Laptop Ordered From Dell.com" hspace=0 src="/shared/WebLogs/FTBGallery/2005/04/dell%20order.gif" width=562 border=0&gt;</description><pubDate>Fri, 15 Apr 2005 10:21:53 GMT</pubDate><guid isPermaLink="false">ed0e49ce-4b33-48b1-a636-1745f70ca985</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=ed0e49ce-4b33-48b1-a636-1745f70ca985</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=ed0e49ce-4b33-48b1-a636-1745f70ca985</comments></item><item><title>It's 6:20am and my alarm clock isn't working...</title><description>&lt;P&gt;My alarm clock has been taunting me for years -- occasionally the alarm will not go off.&amp;nbsp; This had been happening so infrequently, at first, I thought&amp;nbsp;it might be&amp;nbsp;&lt;EM&gt;me&lt;/EM&gt; that was going&amp;nbsp;insane.&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;started to perform thorough inspections of the clock after each "incident".&amp;nbsp; I made sure I didn't mix up my am's and pm's.&amp;nbsp; I double checked to see if the right alarm was set.&amp;nbsp; I also looked at all the LEDs to make sure the proper ones were lit up.&lt;/P&gt;
&lt;P&gt;Well, this time it was critical that I woke at&amp;nbsp;6:00am.&amp;nbsp; There was a major &lt;A href="http://www.dell.com"&gt;Dell&lt;/A&gt; coupon, $750 discount on laptops, and it was limited to the first 10k uses.&amp;nbsp; I set the alarm for 5:45am... When I finally wake and look at the clock I see it's&amp;nbsp;6:20am, 35 minutes past the&amp;nbsp;alarm (yes, I missed the dell deal).&amp;nbsp; I&amp;nbsp;decide it's now time to "fix" the alarm clock once and for all.&lt;/P&gt;
&lt;P&gt;I guess this will be the last time the alarm doesn't work.&amp;nbsp; Problem solved.&amp;nbsp; Going back to sleep.&lt;/P&gt;
&lt;P&gt;&lt;IMG title="Retired Sony Alarm Clock" style="WIDTH: 400px; HEIGHT: 297px" height=297 alt="Retired Sony Alarm Clock" hspace=0 src="/shared/WebLogs/FTBGallery/2005/04/photo%2026.jpg" width=400 border=0&gt;&lt;/P&gt;
&lt;P&gt;This isn't the first alarm clock that has had this problem --&amp;nbsp;they have&amp;nbsp;also been fixed.&lt;/P&gt;</description><pubDate>Wed, 13 Apr 2005 11:42:38 GMT</pubDate><guid isPermaLink="false">906a12d1-8cf3-454f-a25e-ad642cb9fc97</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=906a12d1-8cf3-454f-a25e-ad642cb9fc97</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=906a12d1-8cf3-454f-a25e-ad642cb9fc97</comments></item><item><title>WasArrested.com mentioned on GoDaddy.com's new radio show.</title><description>&lt;P&gt;&lt;A href="http://godaddy.com"&gt;GoDaddy.com&lt;/A&gt;&amp;nbsp;has a new &lt;A href="http://godaddy.com/gdshop/radio.asp"&gt;internet radio show &lt;/A&gt;(they also offer podcast downloads).&amp;nbsp; I got an anonymous email yesterday from someone saying they&amp;nbsp;found&amp;nbsp;&lt;A href="http://wasarrested.com"&gt;WasArrested.com&lt;/A&gt; from their podcast.&lt;/P&gt;
&lt;P&gt;The mention is small and was on the&lt;A href="http://a1848.g.akamai.net/7/1848/13927/v001/godaddysof1.download.akamai.com/13755/radio_2005_04_06.mp3"&gt; April 6th show &lt;/A&gt;at aproximately 58:45, near the very end of the show.&lt;/P&gt;
&lt;P&gt;Maybe someday I'll do something more with the site.&lt;/P&gt;</description><pubDate>Tue, 12 Apr 2005 01:05:17 GMT</pubDate><guid isPermaLink="false">ca01b71e-280b-41c4-9325-cfef378382b1</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=ca01b71e-280b-41c4-9325-cfef378382b1</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=ca01b71e-280b-41c4-9325-cfef378382b1</comments></item><item><title>Holy Bank Fees!</title><description>&lt;P&gt;So I'm going through all my 2003 bank statements and credit card statements.&amp;nbsp; From wellsfargo, I had charges totaling $218.15 (this number includes late fees, account maint. costs and&amp;nbsp;also includes the $1.50 non-wells atms charge me).&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;was thinking&amp;nbsp;about that&amp;nbsp;wasted $200 I could have had, if I had just used wellsfargo atms and never overdrafted my account --&amp;nbsp;until I totalled up my credit card fees...&lt;/P&gt;
&lt;P&gt;Late Payments + Interest = $3247.84.&amp;nbsp; What a waste of fucking dough.&lt;/P&gt;</description><pubDate>Sun, 10 Apr 2005 01:41:38 GMT</pubDate><guid isPermaLink="false">a99c7ddc-0242-4b9c-99b7-356ea31a53cb</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a99c7ddc-0242-4b9c-99b7-356ea31a53cb</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a99c7ddc-0242-4b9c-99b7-356ea31a53cb</comments></item><item><title>Credit Card Over-Payment Experiment</title><description>&lt;P&gt;After paying off a credit card, they usually&amp;nbsp;stop&amp;nbsp;sending you those&amp;nbsp;little monthly statements.&amp;nbsp; I think they do this to save money or something, but it makes me forget all about the card.&amp;nbsp; I usually leave&amp;nbsp;em tucked in a drawer and if I don't get my monthly statement, the only time I'm reminded I have the card is when it expires and they send a new one in the mail.&lt;/P&gt;
&lt;P&gt;Since my credit card company decided to waste my time and send me a bill for exactly one dollar (if I didn't pay I'm sure they'd give me a huge penalty),&amp;nbsp;I decided I would experiment and pay them $1.01 -- over-paying my&amp;nbsp;bill by exactly one cent, just to see what would happen.&amp;nbsp; Would they send me a check for a penny?&amp;nbsp; Would they keep sending me my statements?&lt;/P&gt;
&lt;P&gt;So far I've been receiving my monthly statements with a balance of exactly -$0.01... up until this month when I found a strange transaction on my statement, "BALANCE REMOVED DUE TO 3 MOS INACTIVITY".&lt;/P&gt;
&lt;P&gt;Experiment Conclusion: Those fuckers stole my goddamn penny!!!&lt;/P&gt;</description><pubDate>Fri, 08 Apr 2005 09:03:54 GMT</pubDate><guid isPermaLink="false">272e2241-522b-428e-a874-86a93bde9df2</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=272e2241-522b-428e-a874-86a93bde9df2</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=272e2241-522b-428e-a874-86a93bde9df2</comments></item><item><title>Thanks Cox!</title><description>&lt;P&gt;I came home tonight and&amp;nbsp;pluged in my laptop&amp;nbsp;- no internet.&amp;nbsp; I silently cursed at&amp;nbsp;cox while I load up my router status page.&amp;nbsp;Cox has assigned me an internal ip and no dns information&amp;nbsp;--&amp;nbsp;this is usually a sign&amp;nbsp;that cox is doing maintanence, which has been&amp;nbsp;the norm&amp;nbsp;for them&amp;nbsp;around this time (midnight).&lt;/P&gt;
&lt;P&gt;After I reboot my cable modem and&amp;nbsp;renew the dhcp on my router (first thing tech support makes you do) I get a real IP and dns info. YES!&amp;nbsp;So&amp;nbsp;I attempt to pull up a webpage and I get a nice message telling me to contact customer service - grrr.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first&amp;nbsp;thought that ran through my head&amp;nbsp;was my two friends,&amp;nbsp;&lt;A href="http://emule.tk/"&gt;eMule&lt;/A&gt; and &lt;A href="http://azureus.sourceforge.net/"&gt;Azureus&lt;/A&gt;&amp;nbsp;&lt;IMG height=18 alt=blushing.gif src="/shared/WebLogs/FTBGallery/2005/04/blushing.gif" width=18 border=0&gt;.&amp;nbsp; Maybe they were naughty while I was away?&amp;nbsp; Azureus has been downloading random tv shows not specified in my regex --&amp;nbsp;piece of&amp;nbsp;shit application.&lt;/P&gt;
&lt;P&gt;I phoned customer service and was&amp;nbsp;&lt;EM&gt;actually&amp;nbsp;relieved&lt;/EM&gt; to find out&amp;nbsp;my internet was disabled due to lack of payment -- oopsie.&amp;nbsp;On the downside, the tech-monkey&amp;nbsp;also tells me,&amp;nbsp;"You must call back tomorrow. You cannot pay over the phone, the billing department has gone home."&lt;/P&gt;
&lt;P&gt;Now... #1.&amp;nbsp; Why didn't the "call customer service" page provide me with a link to pay my bill online?&amp;nbsp; #2. Why is there no option for me to pay over the phone?!&lt;/P&gt;
&lt;P&gt;In spite of cox, I&amp;nbsp;was able&amp;nbsp;to get my internet back tonight.&amp;nbsp; I hopped onto my neighbors network (thanks gyz1010!), went to &lt;A href="http://cox.com/"&gt;cox.com&lt;/A&gt;&amp;nbsp;and paid online -- internet was restored instantly.&lt;/P&gt;
&lt;P&gt;Thanks Cox!&lt;/P&gt;</description><pubDate>Wed, 06 Apr 2005 09:01:56 GMT</pubDate><guid isPermaLink="false">83933b88-57f3-4a92-92de-575fb35f8354</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=83933b88-57f3-4a92-92de-575fb35f8354</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=83933b88-57f3-4a92-92de-575fb35f8354</comments></item><item><title>Created new template for Joel.Net</title><description>&lt;P&gt;I seem to get tired of the templates I create for my site very quickly. The last template I got tired of pretty quick. &lt;/P&gt;
&lt;P&gt;My templates seem to get more simple each time I redesign. Less graphics, simple colors. I think I like this one. It's not perfect, but I think I only need some minor tweaks to get it to where I'll like it. &lt;/P&gt;
&lt;P&gt;If you have any suggestions or input, I'd like to hear it... &lt;/P&gt;</description><pubDate>Thu, 31 Mar 2005 08:08:30 GMT</pubDate><guid isPermaLink="false">67c39141-ac0a-43c2-ac37-5fc2a91907e7</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=67c39141-ac0a-43c2-ac37-5fc2a91907e7</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=67c39141-ac0a-43c2-ac37-5fc2a91907e7</comments></item><item><title>GAlert, the GMail Notifier</title><description>&lt;A HREF="/software/galert.aspx"&gt;GAlert - GMail Notifier&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;&lt;IMG height=100 src="/software/images/galert-skin-zim.gif" width=243 align=right&gt; GAlert monitors your GMail account and notifies you of new incoming emails. Of course &lt;A href="http://google.com/"&gt;Google&lt;/A&gt; also has their &lt;A href="http://toolbar.google.com/gmail-helper"&gt;GMail Notifier&lt;/A&gt;, but theirs isn't skinable like this one...</description><pubDate>Fri, 25 Mar 2005 06:21:28 GMT</pubDate><guid isPermaLink="false">024ad946-eee1-4612-b959-6f4892725c3d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=024ad946-eee1-4612-b959-6f4892725c3d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=024ad946-eee1-4612-b959-6f4892725c3d</comments></item><item><title>Men more likely to be geniuses.</title><description>Men are more likely to be geniuses. Though, men are also more likely to be retards. &lt;BR&gt;&lt;BR&gt;&lt;A href="http://news.bbc.co.uk/2/hi/science/nature/4355355.stm"&gt;link&lt;/A&gt;</description><pubDate>Thu, 17 Mar 2005 04:44:11 GMT</pubDate><guid isPermaLink="false">ee3f823a-9fe6-49a4-9bb5-d6fe8d692a1d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=ee3f823a-9fe6-49a4-9bb5-d6fe8d692a1d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=ee3f823a-9fe6-49a4-9bb5-d6fe8d692a1d</comments></item><item><title>Is tap water safer than bottled water?</title><description>I just finished watching a video from &lt;A href="http://pbs.org/"&gt;PBS.org&lt;/A&gt; about the bottled water industry and &lt;A href="http://www.pbs.org/pov/borders/2004/water/water_bottle.html"&gt;misconceptions about our tap water&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;Here are some facts from the &lt;A href="http://www.pbs.org/pov/borders/2004/water/water_bottle.html"&gt;website/video&lt;/A&gt;... &lt;BR&gt;&lt;BR&gt;&lt;A href="http://www.pbs.org/pov/borders/2004/water/water_bottle.html"&gt;&lt;IMG title="Water pouring from tap into glass." height=137 alt="Water pouring from tap into glass." hspace=10 src="/shared/WebLogs/FTBGallery/2005/03/water_bottle_pic1.jpg" width=94 align=right border=0&gt;&lt;/A&gt; 
&lt;UL&gt;
&lt;LI&gt;47% of bottled water drinkers admit to having a "concern over tap water quality". 
&lt;LI&gt;Out of 100 bottled waters tested 1/3 failed to meet tap waters cleanliness standards. 
&lt;LI&gt;&lt;SPAN class=story1&gt;Americans spend $7.7 billion dollars a year on bottled water.&lt;/SPAN&gt; 
&lt;LI&gt;We shell out $11,000 a minute for bottled water. 
&lt;LI&gt;Bottled water costs ~1,000x more than tap water. 
&lt;LI&gt;Bottled water costs 3x more than gasoline. 
&lt;LI&gt;NYC tap water is some of the safest water&amp;nbsp;in the world, it has also finalized in national taste tests. 
&lt;LI&gt;A small&amp;nbsp;fraction of the money we spend on bottled water would be enough to fix out entire nations water supply.&lt;/LI&gt;&lt;/UL&gt;So why do we drink bottled water over tap? Simple answer: because that is what is marketed to us. &lt;BR&gt;&lt;BR&gt;At my last place I would refill my water bottles with tap (charcoal filtered). Since I moved - no more charcoal filter, no more refills. At first try, I wasn't too fond of the taste of my tap water - I thought it tasted a lot like &lt;A href="http://www.arrowheadwater.com/"&gt;arrowhead water&lt;/A&gt;&amp;nbsp;(yuck). But after dropping a few cubes in my glass, I find the water is much more tasty cold.&amp;nbsp; I will try to drink more tap water.&lt;BR&gt;&lt;BR&gt;When I do buy bottled water, I always try to buy &lt;A href="http://www.dasani.com/"&gt;Dasani&lt;/A&gt; - I believe it's the best tasting water out there (they add minerals to improve the taste).&lt;BR&gt;&lt;BR&gt;Edit: Found&amp;nbsp;&lt;A href="http://www.pbs.org/pov/borders/2004/water/water_disposable.html"&gt;quite a&amp;nbsp;funny story &lt;/A&gt;about a subversive man called Jon Cotner who refuses to buy bottled water and continues to refil the same bottle over and over.&amp;nbsp; He gives a few stories about the many pressures from society to stop drinking tap and buy bottled water.&lt;BR&gt;&lt;BR&gt;
&lt;em&gt;UPDATE:&lt;/em&gt; If you are using reusable water bottles, be sure to wash them or risk &lt;A href="http://www.cbc.ca/stories/2002/10/10/Consumers/waterbottles_021010"&gt;the dangers of bacteria&lt;/A&gt;. And for the love of god, &lt;a href="http://www.mercola.com/2004/apr/7/nalgene_water.htm"&gt;DO NOT BUY Nalgene water bottles&lt;/a&gt;.</description><pubDate>Thu, 17 Mar 2005 12:39:18 GMT</pubDate><guid isPermaLink="false">d2f733fb-0855-4a1a-bf7a-1720f939c3fe</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d2f733fb-0855-4a1a-bf7a-1720f939c3fe</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d2f733fb-0855-4a1a-bf7a-1720f939c3fe</comments></item><item><title>Akira Kurosawa's Ikiru</title><description>&lt;A href="http://www.amazon.com/exec/obidos/ASIN/B00005JLMU/qid%3D1110952285/sr%3D11-1/ref%3Dsr%5F11%5F1/102-2446714-4355303"&gt;&lt;IMG title="Akira Kurosawa's Ikiru" height=247 alt="Akira Kurosawa's Ikiru" hspace=10 src="/shared/WebLogs/FTBGallery/2005/03/ikiru.jpg" width=175 align=right border=0&gt;&lt;/A&gt;I added another movie to the top of my favorites list, &lt;A href="http://www.amazon.com/exec/obidos/ASIN/B00005JLMU/qid%3D1110952285/sr%3D11-1/ref%3Dsr%5F11%5F1/102-2446714-4355303"&gt;IKIRU&lt;/A&gt;. I watched this last night and immediately fell in love with it. &lt;BR&gt;&lt;BR&gt;Ikiru is another &lt;A href="http://us.imdb.com/name/nm0000041/"&gt;Akira Kurosawa&lt;/A&gt; film, though unlike the other Akira Kurosawa films I've seen, this one has no Samurai in it. Ikiru is an OLD black and white from 1952, but even&amp;nbsp;today it's still such an incredible movie. &lt;BR&gt;&lt;BR&gt;Ikiru is movie about an old man (Watanabe) who lives his&amp;nbsp;entire life doing nothing, not "living life", just passing time. After a visit to the doctor he learns that&amp;nbsp;he is dying from stomach cancer and only has 6 months left to live. It's at that moment Watanabe truly starts to live. He then spends his remaining days trying to find happiness and &lt;EM&gt;live life&lt;/EM&gt;. &lt;BR&gt;&lt;BR&gt;This is such a great film, I had to own it, so&amp;nbsp;I hopped onto &lt;A href="http://amazon.com/"&gt;Amazon.com&lt;/A&gt; and bought it immediately. I think I'll wait for &lt;EM&gt;my&lt;/EM&gt; DVD to arrive&amp;nbsp;before watching the commentary.&lt;BR&gt;&lt;BR&gt;One thing I've learned from watching this film is that I really haven't watched enough Akira Kurosawa films.&amp;nbsp; It's a shame nobody (in America) knows his name.&amp;nbsp; He is truly one of the greatest film makers of all time.</description><pubDate>Wed, 16 Mar 2005 12:49:36 GMT</pubDate><guid isPermaLink="false">b6b44f92-6a70-4bed-93ba-e679a93bd300</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b6b44f92-6a70-4bed-93ba-e679a93bd300</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b6b44f92-6a70-4bed-93ba-e679a93bd300</comments></item><item><title>I found the secret ingredient in Febreze!</title><description>&lt;P&gt;&lt;A href="http://www.homemadesimple.com/febreze/index.shtml"&gt;&lt;IMG title="Febreze Air Effects - Meadows &amp;amp; Rain" height=160 alt="Febreze Air Effects - Meadows &amp;amp; Rain" src="/shared/WebLogs/FTBGallery/2005/03/bottle_meadows.jpg" width=116 align=left vspace=10 border=0&gt;&lt;/A&gt;So I was reading the ingredients of one of my new favorite products, &lt;A href="http://www.homemadesimple.com/febreze/index.shtml"&gt;Febreze&lt;/A&gt; --&amp;nbsp;I was curious and&amp;nbsp;wanted to know what their odor eliminator was.&lt;BR&gt;&lt;BR&gt;Here are the ingredients right off the can...&lt;BR&gt;&lt;EM&gt;&lt;STRONG&gt;INGREDIENTS:&lt;/STRONG&gt; Odor eliminator, water, fragrance, non-flammable natural propellant, quality control ingredients.&lt;BR&gt;&lt;/EM&gt;&lt;BR&gt;Ahhhh Ha! It must be the &lt;EM&gt;Odor Eliminator&lt;/EM&gt;.&amp;nbsp; I'm so glad they listed the ingredients!&amp;nbsp; I think the only real ingredient on the can is &lt;EM&gt;water&lt;/EM&gt;.&amp;nbsp; I bet they had at least 2 meetings about other (even more vague) names for water they could put on the can instead.&lt;BR&gt;&lt;BR&gt;I should write them and suggest they add "Love" as an ingredient.&lt;/P&gt;</description><pubDate>Thu, 10 Mar 2005 05:31:53 GMT</pubDate><guid isPermaLink="false">6e27dd0e-484f-442f-9bbd-380c05b1a7a6</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6e27dd0e-484f-442f-9bbd-380c05b1a7a6</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6e27dd0e-484f-442f-9bbd-380c05b1a7a6</comments></item><item><title>Soda drinkers are retards...</title><description>Is this what retard soda drinkers believe?&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Myth:&lt;/STRONG&gt; &lt;A href="http://www.nerdygirl.com/sodascience.php"&gt;Tapping on a soda can will reduce foaming&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;I do like the Hypothesis from her page...&lt;BR&gt;&lt;EM&gt;"Tapping the soda can does nothing. If a shaken soda can does not foam over, it is because enough time has passed for the soda inside to settle itself -- this has nothing to do with whether or not some loser tapped on the can."&lt;/EM&gt;</description><pubDate>Thu, 03 Mar 2005 10:33:08 GMT</pubDate><guid isPermaLink="false">789ff363-cf3e-43ba-b593-3e04e6355c4f</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=789ff363-cf3e-43ba-b593-3e04e6355c4f</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=789ff363-cf3e-43ba-b593-3e04e6355c4f</comments></item><item><title>Holy Time Cube Crap!</title><description>Holy crap, who seriously took the time to add this to &lt;A href="http://en.wikipedia.org"&gt;Wikipedia&lt;/A&gt;? &lt;BR&gt;&lt;BR&gt;&lt;A href="http://en.wikipedia.org/wiki/Time_Cube"&gt;&lt;IMG title="wiki pedia - time cube" style="WIDTH: 486px; HEIGHT: 249px" height=249 alt="wiki pedia - time cube" hspace=10 src="/shared/WebLogs/FTBGallery/2005/03/timecube.gif" width=486 border=0&gt;&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;And who took the time to quote &lt;A href="http://en.wikiquote.org/wiki/Gene_Ray"&gt;Gene Ray&lt;/A&gt; on &lt;A href="http://en.wikiquote.org"&gt;Wikiquote&lt;/A&gt;? &lt;BR&gt;&lt;BR&gt;&lt;A href="http://www.geocities.com/fuhkyu2000/insanity/04.html"&gt;This guy&lt;/A&gt; writes Gene Ray a long ass letter telling him his website is a pile of shit. Gene Ray replies to his email with one line "My Time is too important to waste with such a stupid ass. - GR". Now that's a quality response. &lt;BR&gt;&lt;BR&gt;I kind of like &lt;A href="http://epi.is-a-geek.net/antitimecube.html"&gt;This guys version&lt;/A&gt; of the "Time Cube" because he included a "Wake up and pee" time.</description><pubDate>Thu, 03 Mar 2005 10:05:15 GMT</pubDate><guid isPermaLink="false">025794d2-56c9-46b4-9b0b-9891cb3fc66d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=025794d2-56c9-46b4-9b0b-9891cb3fc66d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=025794d2-56c9-46b4-9b0b-9891cb3fc66d</comments></item><item><title>Ran, Ran, Ran!</title><description>&lt;A href="http://www.amazon.com/exec/obidos/tg/detail/-/B00008973Q/qid=1109757368/sr=8-5/ref=sr_8_xs_ap_i5_xgl74/103-8418108-7555806?v=glance&amp;amp;s=dvd&amp;amp;n=507846"&gt;&lt;IMG title="Akira Kurosawa's Ran" style="WIDTH: 175px; HEIGHT: 248px" height=248 alt="Akira Kurosawa's Ran" hspace=10 src="/shared/WebLogs/FTBGallery/2005/03/ran.jpg" width=175 align=left border=0&gt;&lt;/A&gt; So for the past 3 nights I've watched &lt;A href="http://www.amazon.com/exec/obidos/tg/detail/-/B00008973Q/qid=1109757368/sr=8-5/ref=sr_8_xs_ap_i5_xgl74/103-8418108-7555806?v=glance&amp;amp;s=dvd&amp;amp;n=507846"&gt;Ran (Masterworks Edition)&lt;/A&gt;. Ok, it's not as crazy as it sounds. The first night I saw Ran for the 2nd time. The other two nights I was watching the commentaries. &lt;BR&gt;&lt;BR&gt;Ran is Akira Kurosawa's version of Shakespeare's King Lear. Akira Kurosawa is one of the greatest directors of all time and Ran is one of his best works. &lt;BR&gt;&lt;BR&gt;The film was released in 1985 and I've seen the non-MasterWorks version. The MasterWorks version is beautiful, you would think it was filmed yesterday with the latest technologies. The clarity and color was greatly improved. In the special features on the DVD, they show some before and afters of the film processing - it's freaking magic. Watching with the added clarity, color and sound - I was definitely more involved in the film this time around. &lt;BR&gt;&lt;BR&gt;The audio commentaries are done by &lt;A href="http://us.imdb.com/name/nm1169352/"&gt;Stephen Prince&lt;/A&gt; and &lt;A href="http://us.imdb.com/name/nm0342013/"&gt;Peter Grilli&lt;/A&gt;. The Stephen Prince commentary was great. He gave a ton of insight into &lt;A href="http://us.imdb.com/name/nm0000041/"&gt;Akira Kurosawa&lt;/A&gt;, the film, actors, added a lot more explanation, meaning and depth to the film. He had a lot to say and ended up talking non-stop through the whole movie. &lt;BR&gt;&lt;BR&gt;I would recommend skipping the commentary by Peter Grilli. Peter mostly talks about behind the scenes action a lot of talk about editing and doesn't provide as much insight as Stephen Prince. &lt;BR&gt;&lt;BR&gt;This item has been on my &lt;A href="http://www.amazon.com/gp/registry/registry.html/103-7466951-6859041?id=1XWYHMV0Y5WUL"&gt;Wish List&lt;/A&gt; for a while now. I would have bought it if I didn't just watch it 3x in a row. I probably wont view this movie again until I show it to someone. I definitely plan to own this one. &lt;BR&gt;&lt;BR&gt;I would recommend&amp;nbsp;checking this flick out - &lt;A href="http://www.blockbuster.com/homepages/LoadBlockbusterHomepage.action"&gt;Blockbuster&lt;/A&gt; should have it or you can always &lt;A href="http://www.netflix.com/"&gt;Netflix&lt;/A&gt; it.&lt;BR&gt;&lt;BR&gt;You can also buy this for me off my wish list and I'll be your best friend ;)</description><pubDate>Wed, 02 Mar 2005 10:11:39 GMT</pubDate><guid isPermaLink="false">664eea9e-ebbf-4f96-a11a-dc607cf746a9</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=664eea9e-ebbf-4f96-a11a-dc607cf746a9</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=664eea9e-ebbf-4f96-a11a-dc607cf746a9</comments></item><item><title>HOWTO: Prevent VisualStudio.net from modifying your code.</title><description>VisualStudio.net (VS.NET) likes to mess with your code. And about 100% of people who use it hate this feature. It attempts to make everything pretty, but in the end it just jumbles everything up (most-likely in the way you don't want it). &lt;BR&gt;&lt;BR&gt;Below are some simple ways to prevent VS.NET from scrambling your code... &lt;BR&gt;&lt;BR&gt;&lt;B&gt;Turn off auto-formatting...&lt;/B&gt; 
&lt;UL&gt;
&lt;LI&gt;Go to Tools &amp;gt;&amp;gt; Options. 
&lt;LI&gt;Navigate to Text Editor &amp;gt;&amp;gt; HTML/XML &amp;gt;&amp;gt; Format. 
&lt;LI&gt;Uncheck Everything under "Apply Automatic Formatting" and "Automatic Formatting Options".&lt;/LI&gt;&lt;/UL&gt;&lt;B&gt;Start in HTML mode...&lt;/B&gt; 
&lt;UL&gt;
&lt;LI&gt;Go to Tools &amp;gt;&amp;gt; Options. 
&lt;LI&gt;Navigate to HTML Designer &amp;gt;&amp;gt; General. 
&lt;LI&gt;Change all views to "HTML View".&lt;/LI&gt;&lt;/UL&gt;&lt;BR&gt;note: Because VS.NET 2002/2003 is the devil (VS.NET 2005 will obey properly - thank god) it will STILL reformat your code if you switch between "Design" and "HTML" mode.</description><pubDate>Fri, 25 Feb 2005 03:43:49 GMT</pubDate><guid isPermaLink="false">ce4d8332-8548-49f4-ab46-bc10ab392def</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=ce4d8332-8548-49f4-ab46-bc10ab392def</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=ce4d8332-8548-49f4-ab46-bc10ab392def</comments></item><item><title>Fucking laptop</title><description>My piece of crap laptop is giving me the shits. Today for no reason, my laptop touch pad seems to have generated a dead spot.&amp;nbsp; Fortunately it's only&amp;nbsp;right in the fucking middle of the pad. &lt;BR&gt;&lt;BR&gt;At first I thought maybe windows was freaking out, so I rebooted about 10 times --&amp;nbsp;Still no workie.&lt;BR&gt;&lt;BR&gt;Then, for no apparent reason (about 20 min after reboot) it decided to start working again. I'll take this as a sign.&lt;BR&gt;&lt;BR&gt;Guess I'll be ordering a new toy tonight.</description><pubDate>Fri, 25 Feb 2005 02:19:10 GMT</pubDate><guid isPermaLink="false">6f4b2c1d-3fb4-40d0-bf79-f17c1eebcd9c</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6f4b2c1d-3fb4-40d0-bf79-f17c1eebcd9c</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6f4b2c1d-3fb4-40d0-bf79-f17c1eebcd9c</comments></item><item><title>Glue removed from Thai monk's eye </title><description>&lt;FONT size=2&gt;&lt;STRONG&gt;An elderly Thai monk who mistook a tube of superglue for eye drops can see again after doctors unglued one eye.&lt;/STRONG&gt; &lt;/FONT&gt;
&lt;BR&gt;&lt;BR&gt;Phra Kru Prapatworakhun, 81, had been unable to see for nearly a week after applying the superglue, which he found in his temple's medicine cabinet. 
&lt;BR&gt;&lt;BR&gt;Doctors used acetone solvent to remove the glue from one eye and said it was unharmed, the Nation newspaper reports. 
&lt;BR&gt;&lt;BR&gt;An operation on the second eye, which is still tightly sealed, is scheduled for Thursday. 
&lt;BR&gt;&lt;BR&gt;Phra Kru Prapatworakhun, the abbot of a temple in Muang Angthong district, north of Bangkok, said he had a severe itch in his eyes on 17 February. 
&lt;BR&gt;&lt;BR&gt;"I squeezed several drops on the floor and saw a clear liquid, so I put four drops into each eye. In about a minute, my eyes felt cold and then sealed closed," the monk told the Nation. 
&lt;BR&gt;&lt;BR&gt;Another monk suggested he use thinners to get rid of the glue. But that only caused a searing pain, he said.
&lt;BR&gt;&lt;BR&gt;
&lt;A href="http://news.bbc.co.uk/2/hi/asia-pacific/4289777.stm"&gt;link&lt;/A&gt;</description><pubDate>Thu, 24 Feb 2005 01:40:11 GMT</pubDate><guid isPermaLink="false">4b44f5b3-a631-4cb7-a1d9-3ee0711b1033</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4b44f5b3-a631-4cb7-a1d9-3ee0711b1033</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4b44f5b3-a631-4cb7-a1d9-3ee0711b1033</comments></item><item><title>4 story Super Mario mural made with post-it notes.</title><description>This has got to be one of the coolest things I've seen in a while...&lt;BR&gt;&lt;BR&gt;&lt;IMG title="4 story super mario mural made with post-it notes" height=800 alt="4 story super mario mural made with post-it notes" src="/shared/WebLogs/FTBGallery/2005/02/super%20mario.jpg" width=600 border=0&gt;&amp;nbsp;&lt;BR&gt;&lt;B&gt;Total Number of Post-its®&lt;/B&gt;&lt;BR&gt;~3800&lt;BR&gt;&lt;B&gt;Total People&lt;/B&gt;&lt;BR&gt;12&lt;BR&gt;&lt;B&gt;Total Time&lt;/B&gt;&lt;BR&gt;1.5 hours&lt;BR&gt;
&lt;BR&gt;
&lt;A href="http://www.yikes.com/~pengo/8bit/"&gt;link&lt;/A&gt;</description><pubDate>Thu, 24 Feb 2005 01:33:25 GMT</pubDate><guid isPermaLink="false">b0bde6f0-d862-455d-91a9-9bcf3e4a9cd2</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b0bde6f0-d862-455d-91a9-9bcf3e4a9cd2</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b0bde6f0-d862-455d-91a9-9bcf3e4a9cd2</comments></item><item><title>Warning: Do not install Trillian 3.</title><description>Ok, I've been testing out &lt;A href="http://trillian.cc/"&gt;Trillian 3&lt;/A&gt;... and after evaluating the product for a little over a month, I've come to the conclusion that it sucks. &lt;BR&gt;&lt;BR&gt;Trillian 3 uses about 25M of memory (compared to v2, which uses a little over 6M). Trillian 3 is also very CPU intensive, I've popped open my task manager a few times to see Trillian 3 sucking up about 70%+ of my processor. I never saw this with 2. &lt;BR&gt;&lt;BR&gt;So far (after browsing the forums) I have found only one reason to upgrade to Trillian 3. There's a bug in Trillian 2 with MSN - occasionally MSN messages you send will not be received, and you will not be notified. This bug was fixed in 3, but not in 2. &lt;BR&gt;&lt;BR&gt;I'd still rather use Trillian 2.</description><pubDate>Tue, 22 Feb 2005 10:40:36 GMT</pubDate><guid isPermaLink="false">2d63fdb1-cfea-4200-a3cf-f14169d92f3a</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2d63fdb1-cfea-4200-a3cf-f14169d92f3a</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2d63fdb1-cfea-4200-a3cf-f14169d92f3a</comments></item><item><title>Did you miss this weeks raunchies moment on TV?</title><description>&lt;IMG title="Surreal Life 4" style="WIDTH: 190px; HEIGHT: 69px" height=69 alt="Surreal Life 4" hspace=5 src="/shared/WebLogs/FTBGallery/2005/02/surreallife4.jpg" width=190 align=left vspace=5 border=0&gt; Did you miss this weeks raunchiest moment on TV? Don't worry because now &lt;A href="http://www.parentstv.org/" rel=nofolow&gt;The Parents Television Council&lt;/A&gt; (the ones who battle television indecency) have started an archive of "The Worst TV Clip of the Week".&lt;BR&gt;&lt;BR&gt;Their strategy to reduce indecency is to&amp;nbsp;catalog&amp;nbsp;TV's raunchiest moments and archive them on their website for everyone to see. Ingenious! &lt;BR&gt;&lt;BR&gt;I'll be checking back weekly!</description><pubDate>Fri, 18 Feb 2005 05:28:40 GMT</pubDate><guid isPermaLink="false">b66d1ebb-489a-4c72-a77d-20d1fa1d47ba</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b66d1ebb-489a-4c72-a77d-20d1fa1d47ba</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b66d1ebb-489a-4c72-a77d-20d1fa1d47ba</comments></item><item><title>Glasses</title><description>Ok, so recently I made an appointment with the optometrist. I've been having issues with slight vision blurring at night. Turns out I'm a little &lt;A href="http://en.wikipedia.org/wiki/Nearsightedness"&gt;nearsighted&lt;/A&gt; and need &lt;EM&gt;GLASSES&lt;/EM&gt;. &lt;BR&gt;&lt;BR&gt;After trying on every pair of glasses in the store, I found two that I liked (And yes, &lt;A href="http://jamiesan.com/blog/"&gt;Jamie&lt;/A&gt; helped pick them out). Couldn't really decide which ones I liked better, so I got both of them. &lt;BR&gt;&lt;BR&gt;I never thought my eyes were bad, but when I put my glasses on everything becomes much more clear. I had thought my TV was a little blurry... maybe it was a little too big (72"), maybe it was because it was an older projector (&lt;A href="http://www.projectorcentral.com/Epson-PowerLite_710c.htm"&gt;Epson 710c&lt;/A&gt;). Apparently it was just my damn eyes. On the bright side, wearing my glasses is like an upgrade to my TV. It's like a difference of &lt;A href="http://en.wikipedia.org/wiki/Component_video"&gt;Component&lt;/A&gt; compared to &lt;A href="http://en.wikipedia.org/wiki/Svideo"&gt;S-Video&lt;/A&gt;. The projector looks damn nice now. &lt;BR&gt;&lt;BR&gt;
&lt;TABLE border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD align=middle&gt;
&lt;DIV style="BORDER-RIGHT: #555555 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #555555 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; MARGIN: 1px; BORDER-LEFT: #555555 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #555555 1px solid"&gt;&lt;A HREF="/shared/WebLogs/FTBGallery/2005/02/joel-no-glasses.jpg" target=_blank&gt;&lt;IMG title="Joel Thoms - No Glasses" height=230 alt="Joel Thoms - No Glasses" src="/shared/WebLogs/FTBGallery/2005/02/joel-no-glasses_thumb.jpg" width=175 border=0&gt; &lt;BR&gt;No Glasses &lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;
&lt;TD align=middle&gt;
&lt;DIV style="BORDER-RIGHT: #555555 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #555555 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; MARGIN: 1px; BORDER-LEFT: #555555 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #555555 1px solid"&gt;&lt;A HREF="/shared/WebLogs/FTBGallery/2005/02/joel-glasses-3.jpg" target=_blank&gt;&lt;IMG title="Joel Thoms - Glasses Style - A" height=230 alt="Joel Thoms - Glasses Style - A" src="/shared/WebLogs/FTBGallery/2005/02/joel-glasses-3_thumb.jpg" width=175 border=0&gt; &lt;BR&gt;Glasses Style - A &lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;
&lt;TD align=middle&gt;
&lt;DIV style="BORDER-RIGHT: #555555 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #555555 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; MARGIN: 1px; BORDER-LEFT: #555555 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #555555 1px solid"&gt;&lt;A HREF="/shared/WebLogs/FTBGallery/2005/02/joel-glasses-2.jpg" target=_blank&gt;&lt;IMG title="Joel Thoms - Glasses Style - B" height=230 alt="Joel Thoms - Glasses Style - B" src="/shared/WebLogs/FTBGallery/2005/02/joel-glasses-2_thumb.jpg" width=175 border=0&gt; &lt;BR&gt;Glasses Style - B &lt;/A&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;Click thumbnails for larger image. Leave a comment and let me know which ones you like best and what you like or don't like about them.</description><pubDate>Wed, 16 Feb 2005 07:51:02 GMT</pubDate><guid isPermaLink="false">4b4dfb17-e1a7-4d36-b425-7f3a50765f48</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4b4dfb17-e1a7-4d36-b425-7f3a50765f48</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4b4dfb17-e1a7-4d36-b425-7f3a50765f48</comments></item><item><title>Ex-coworker marries Russian-mail-order-bride.</title><description>&lt;IMG title="aaron &amp;amp; irina" style="WIDTH: 153px; HEIGHT: 119px" height=119 alt="aaron &amp;amp; irina" hspace=10 src="/shared/WebLogs/FTBGallery/2005/02/aaron_irina.jpg" width=153 align=left border=0&gt;So I get an IM from an old co-worker telling me Aaron got married to a Russian-mail-order-bride and sends me a link to &lt;A href="http://www.elenasmodels.com/testimonials.htm#story12"&gt;his testimonial&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;I've&amp;nbsp;heard a few people joking about ordering a mail-order-bride, I've even seen them do it on &lt;A href="http://imdb.com/title/tt0382501"&gt;Bam's show&lt;/A&gt;, but I've never known anyone to really be serious about it.&lt;BR&gt;&lt;BR&gt;Well, from what it looks like my ex-coworker was. strange... (of course he also owns a tractor he someday aspires to fix up.)&lt;BR&gt;&lt;BR&gt;Where do you register for your mail-order-bride and yourself? &lt;A href="http://amazon.com"&gt;Amazon.com&lt;/A&gt;!</description><pubDate>Sat, 12 Feb 2005 02:41:14 GMT</pubDate><guid isPermaLink="false">a9eecb42-000b-4b42-80db-558f252daa94</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a9eecb42-000b-4b42-80db-558f252daa94</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a9eecb42-000b-4b42-80db-558f252daa94</comments></item><item><title>Netflix vs. Blockbuster</title><description>&lt;A href="http://www.netflix.com"&gt;Netflix&lt;/A&gt;: $17.99/m - 3 rentals&lt;BR&gt;&lt;A href="http://www.blockbuster.com"&gt;Blockbuster&lt;/A&gt;: $14.99/m - 3 rentals (+2 in-store rentals a month)&lt;BR&gt;&lt;BR&gt;So I signed up for blockbuster.com's 1 month free trial (use code: &lt;B&gt;ff456&lt;/B&gt;). I'm going to compare blockbuster's service to netflix's. $14.99 is definately a much better price... plus you get 2 in-store rentals a month. I hear Walmart has an online rental service too, but I refuse to patronize Walmart.</description><pubDate>Wed, 09 Feb 2005 07:13:41 GMT</pubDate><guid isPermaLink="false">83137353-2751-49b8-bb85-6053b8c8f22e</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=83137353-2751-49b8-bb85-6053b8c8f22e</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=83137353-2751-49b8-bb85-6053b8c8f22e</comments></item><item><title>Jessica Alba, where are you?</title><description>&lt;IMG title="jessica alba 2003" height=509 alt="jessica alba 2003" hspace=10 src="/shared/WebLogs/FTBGallery/2005/02/jessica%20alba%202003.jpg" width=244 align=left border=0&gt;Dammit - why did they ever cancel &lt;A href="http://us.imdb.com/title/tt0235326/"&gt;Dark Angel&lt;/A&gt;?&amp;nbsp; And why isn't &lt;A href="http://us.imdb.com/name/nm0004695/"&gt;Jessica Alba&lt;/A&gt; in more movies and TV shows?&lt;BR&gt;&lt;BR&gt;And yes, I saw &lt;A href="http://us.imdb.com/title/tt0322589/"&gt;Honey&lt;/A&gt;.</description><pubDate>Fri, 04 Feb 2005 07:17:06 GMT</pubDate><guid isPermaLink="false">3eecb78a-4e5a-4e0f-bee6-cb04c1556c56</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=3eecb78a-4e5a-4e0f-bee6-cb04c1556c56</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=3eecb78a-4e5a-4e0f-bee6-cb04c1556c56</comments></item><item><title>8.5 hours of moving.</title><description>I spent 16 hours the day before packing and still didn't finish. I was able to get 2 hours of sleep before the movers showed up. It took 2 movers and me 8 and a half hours to move all the shit. &lt;BR&gt;&lt;BR&gt;I came to realize one thing - I have a lot of crap! &lt;BR&gt;&lt;BR&gt;I gave the movers a lot of the crap. I gave away 1 ikea table, it was actually a decent table (for ikea) - new it was around $200. I also gave away a 13" TV, some wood drawers that you set your bed on and 3 wheel/pedal sets for driving games. &lt;BR&gt;&lt;BR&gt;I also gave my mom one 15" crt, one 19" crt a printer and my old water bed I no longer use. &lt;BR&gt;&lt;BR&gt;After I unpack, it's going to be time to sell a lot more crap on ebay. &lt;BR&gt;&lt;BR&gt;During the move I had left my wallet out on the counter. I had thought of a funny joke to play on the movers (by funny, I mean cruel) - and no I didn't do it. At the end of the move I would tell them that someone had taken the money I was going to use&amp;nbsp;for a&amp;nbsp;tip and tell them that they hadn't stolen from me, but their partner. It would have been funny for 2 reasons: I would not have to tip them and they both would have thought the other one took the money. &lt;BR&gt;&lt;BR&gt;Yes, sometimes even I wonder what's wrong with my brains. hehe </description><pubDate>Wed, 02 Feb 2005 11:23:51 GMT</pubDate><guid isPermaLink="false">730c5fc2-35ee-4c08-9466-6f3c3991f9d3</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=730c5fc2-35ee-4c08-9466-6f3c3991f9d3</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=730c5fc2-35ee-4c08-9466-6f3c3991f9d3</comments></item><item><title>What do you get when you mix alcohol, tomato sauce, fish sauce and vinegar?</title><description>I'm not sure either, but I do know the smell is beyond horrible! &lt;BR&gt;&lt;BR&gt;Moving sucks. So I've decided the food isn't coming with me. I've done my best to eat everything in the fridge, it's almost empty. Still a few things I need to throw out. This means everything goes down the drain.&lt;BR&gt;&lt;BR&gt;I felt like an alcoholic pouring a dozen bottles of&amp;nbsp;booze down the drain. Two of them were still sealed. It was a shame, had to pop them open just to pour them out. &lt;BR&gt;&lt;BR&gt;I've poured so much crap down the drain, I hope it doesn't throw up.</description><pubDate>Tue, 01 Feb 2005 02:26:55 GMT</pubDate><guid isPermaLink="false">57172bae-793c-4bcb-baff-2b0acd3878cb</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=57172bae-793c-4bcb-baff-2b0acd3878cb</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=57172bae-793c-4bcb-baff-2b0acd3878cb</comments></item><item><title>How do you go to work when your car looks like this?</title><description>&lt;IMG title="ice car - 20 jan 05" height=336 alt="ice car - 20 jan 05" src="/shared/WebLogs/FTBGallery/2005/01/ice%20car%20-%2020janv%2005.jpg" width=445 border=0&gt;
&lt;BR&gt;&lt;BR&gt;
&lt;A href="http://www.skyandsummit.com/Glacegeneve/index.html"&gt;link&lt;/A&gt;</description><pubDate>Fri, 28 Jan 2005 10:16:42 GMT</pubDate><guid isPermaLink="false">f0101329-a76a-4b99-8a74-a1495ea92893</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=f0101329-a76a-4b99-8a74-a1495ea92893</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=f0101329-a76a-4b99-8a74-a1495ea92893</comments></item><item><title>A warning about MSXML2.XMLHTTP and caching...</title><description>I ran into a little problem with the &lt;CODE&gt;&lt;B&gt;MSXML2.XMLHTTP&lt;/B&gt;&lt;/CODE&gt; object today. It appears to be caching the request, even when there is a new version available on the server. I couldn't find any options to turn the caching off. &lt;BR&gt;&lt;BR&gt;After swapping all &lt;CODE&gt;&lt;B&gt;MSXML2.XMLHTTP&lt;/B&gt;&lt;/CODE&gt; references to &lt;CODE&gt;&lt;B&gt;MSXML2.ServerXMLHTTP&lt;/B&gt;&lt;/CODE&gt;, things started working like normal. &lt;BR&gt;&lt;BR&gt;I've ran into too many problems with &lt;CODE&gt;&lt;B&gt;MSXML2.XMLHTTP&lt;/B&gt;&lt;/CODE&gt; object. This one was most-likey due to &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/caching.asp"&gt;WinINet's Caching&lt;/A&gt;. &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/about_wininet.asp"&gt;WinINet&lt;/A&gt; is a horrible control. I don't know why it's still being used...</description><pubDate>Tue, 25 Jan 2005 10:05:31 GMT</pubDate><guid isPermaLink="false">911f2c2f-1494-4a75-891a-9326c824761f</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=911f2c2f-1494-4a75-891a-9326c824761f</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=911f2c2f-1494-4a75-891a-9326c824761f</comments></item><item><title>So... how many billiseconds are in a second?</title><description>I was playing around with the &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemdatasqltypessqldatetimeclasstopic.asp"&gt;SqlDateTime&lt;/A&gt; object when &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/vcovrautomaticstatementcompletion.asp"&gt;IntelliSense&lt;/A&gt; popped up this dialog... &lt;BR&gt;&lt;BR&gt;&lt;IMG height=68 alt=billisecond src="/shared/WebLogs/FTBGallery/2005/01/bilisecond.gif" width=702 border=0&gt; &lt;BR&gt;&lt;BR&gt;I paused for a second before I figured out what a &lt;EM&gt;billisecond&lt;/EM&gt; was. Nice typo.</description><pubDate>Tue, 25 Jan 2005 02:51:55 GMT</pubDate><guid isPermaLink="false">78bc953f-df10-405c-8cfa-4ba7692e21e6</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=78bc953f-df10-405c-8cfa-4ba7692e21e6</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=78bc953f-df10-405c-8cfa-4ba7692e21e6</comments></item><item><title>WTF is wrong with forum users?</title><description>Since I started using the Internet, I have been able answer almost all questions myself. The Internet has been a great resource for me. Though, now I have become troubled. When I cannot find my answers, I usually post my question in a related forum. After receiving what I can only describe as many "borderline incompetent" replies to the majority of my questions, I began to ask myself, "WHY!?"&lt;BR&gt;&lt;BR&gt;How many times have you seen someone ask a legitimate question to receive a reply of "&lt;A href="http://www.googlism.com/what_is/i/i_don't_know/"&gt;I don't know&lt;/A&gt;". Some forums have more flames than actual posts. Are people too concerned with answering as many questions as possible simply to get their ranking up? Are they not actually reading the whole post before they reply?&lt;BR&gt;&lt;BR&gt;The last ignorant reply I received infuriated me, so I re-posted &lt;A href="http://answers.google.com/answers/threadview?id=445749"&gt;my question&lt;/A&gt; on &lt;A href="http://answers.google.com/"&gt;Google Answers&lt;/A&gt;, but you already know what happened...&lt;BR&gt;&lt;BR&gt;After a little self reflection trying to figure out if the problem was &lt;EM&gt;me&lt;/EM&gt; or &lt;EM&gt;my questions&lt;/EM&gt;, I came to a catch-22 realization. If I make my questions &lt;EM&gt;too simple&lt;/EM&gt;, I will receive a simple-minded reply. If I elaborate &lt;EM&gt;too much&lt;/EM&gt;, my question will go unread.&lt;BR&gt;&lt;BR&gt;After a review of my unsatisfied questions I have filed them into these categories: didn't read question, asked why, answered it myself, unanswered, gave me an answer I previously said I didn't want.&lt;BR&gt;&lt;BR&gt;Here are some of my previously asked questions: &lt;A href="http://answers.google.com/answers/threadview?id=445749"&gt;1&lt;/A&gt; &lt;A href="http://www.teamxecuter.com/index.php?name=Forums&amp;amp;file=viewtopic&amp;amp;p=140213"&gt;2&lt;/A&gt; &lt;A href="http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&amp;amp;PostID=762031"&gt;3&lt;/A&gt; &lt;A href="http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&amp;amp;PostID=744011"&gt;4&lt;/A&gt; &lt;A href="http://mailman.powerdns.com/pipermail/pdns-users/2003-March/000091.html"&gt;5&lt;/A&gt; &lt;A href="http://www.mail-archive.com/vchkpw@inter7.com/msg05430.html"&gt;6&lt;/A&gt; &lt;A href="http://dbforums.com/t656959.html"&gt;7&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;note: &lt;A href="http://jamiesan.com"&gt;Jamie&lt;/A&gt; recently pointed me to a new promising forum, moderated with an iron fist -- &lt;A href="http://thelatestmemo.com/"&gt;The Latest Memo&lt;/A&gt;.</description><pubDate>Sat, 22 Jan 2005 01:42:27 GMT</pubDate><guid isPermaLink="false">6d56a8d2-f836-4bf2-8a16-0c80315ebf88</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6d56a8d2-f836-4bf2-8a16-0c80315ebf88</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6d56a8d2-f836-4bf2-8a16-0c80315ebf88</comments></item><item><title>TV on demand. I want it now!</title><description>Today I was browsing around &lt;A href="http://sho.com"&gt;Shotime's Website&lt;/A&gt; and saw they have something called &lt;A href="http://www.sho.com/site/ondemand/"&gt;Shotime On Demand&lt;/A&gt;.  Seems like a great idea.  They give you the ability to watch any of their available shows whenever you want.
&lt;BR&gt;&lt;BR&gt;
Unfortunately it's only available for cable (I have satelite) and not available in my area.  Oh well.  Guess I'll just have to wait.</description><pubDate>Sat, 22 Jan 2005 12:21:32 GMT</pubDate><guid isPermaLink="false">ec970c1c-a811-4516-bbf5-a004a4e56b0e</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=ec970c1c-a811-4516-bbf5-a004a4e56b0e</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=ec970c1c-a811-4516-bbf5-a004a4e56b0e</comments></item><item><title>Luck</title><description>"Most people have little idea how much they secretly bank on luck -- hard luck to justify past failures, good luck to bring future successes. How many people drift through life simply waiting for the breaks, for that moment when a lucky lottery number brings riches and dizzying spell of fame. If you approach life this way, says Hinduism, you misjudge your position pathetically. Breaks have nothing to do with protracted levels of happiness, nor do they happen by chance. We live in a world in which there is no chance or accident. Those words are simply covers for ignorance." - The World's Religions</description><pubDate>Fri, 21 Jan 2005 12:43:49 GMT</pubDate><guid isPermaLink="false">485ddb16-bdec-4115-90e3-b9d9ae300669</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=485ddb16-bdec-4115-90e3-b9d9ae300669</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=485ddb16-bdec-4115-90e3-b9d9ae300669</comments></item><item><title>Goodbye Google Desktop. Goodbye Lookout. Hello Yahoo! Desktop.</title><description>I finally uninstalled &lt;A href="http://desktop.google.com/"&gt;Google Desktop&lt;/A&gt; and &lt;A href="http://www.lookoutsoft.com/Lookout/"&gt;Lookout&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;I've had them both installed for some time now. And I wasn't really using either that much. I never used Google Desktop. It didn't index any files I wanted to search. The only use I found for Google Desktop was indexing my emails, but I used Lookout for that. &lt;BR&gt;&lt;BR&gt;The interface to lookout was a little clumsy, it wasn't horrible, but it could have been better. &lt;BR&gt;&lt;BR&gt;Since I&amp;nbsp;found &lt;A href="http://desktop.yahoo.com/"&gt;Yahoo! Desktop Search&lt;/A&gt;, I no longer have a need for Google Desktop or Lookout. I was surprised to find Yahoo! Desktop Search is re-branded &lt;A href="http://x1.com/"&gt;X1&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;For those of you that don't know X1, it's a great search tool with incredibly fast searches. Unfortunately X1 is not free, though Yahoo! Desktop Search will do all I need.</description><pubDate>Sat, 15 Jan 2005 02:31:31 GMT</pubDate><guid isPermaLink="false">9e871c04-ef1d-4fe2-b901-37afd83ef9b1</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=9e871c04-ef1d-4fe2-b901-37afd83ef9b1</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=9e871c04-ef1d-4fe2-b901-37afd83ef9b1</comments></item><item><title>Down with the penny!</title><description>&lt;IMG style="WIDTH: 140px; HEIGHT: 105px" height=105 alt="no more pennies" hspace=10 src="/shared/WebLogs/FTBGallery/2005/01/penny.01.jpg" width=140 align=right border=0&gt; Ok, so I've hated the penny for some time now.&amp;nbsp; Here's a list of reasons why I hate the penny...&lt;BR&gt;&lt;BR&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;STRONG&gt;The penny is worthless&lt;/STRONG&gt;.&amp;nbsp; You can't find anything under a quarter in price anymore. 
&lt;LI&gt;You &lt;STRONG&gt;can't even&amp;nbsp;use the penny&lt;/STRONG&gt; in many places (eg. vending machines, toll booths, etc.). 
&lt;LI&gt;&lt;STRONG&gt;Pennies slow down transactions&lt;/STRONG&gt; (people must wait while they count their pennies) 
&lt;LI&gt;The penny is just more &lt;STRONG&gt;filthy change&lt;/STRONG&gt; in your pocket. 
&lt;LI&gt;The penny (even more so than other change) makes your hands smell like &lt;STRONG&gt;filthy ass change&lt;/STRONG&gt;.&lt;/LI&gt;&lt;/OL&gt;So today &lt;EM&gt;I begin my protest against the penny&lt;/EM&gt;. I drove through Del Taco, my meal&amp;nbsp;totals $4.21, and I cant figure out what is worse: A. I must carry&amp;nbsp;pennies&amp;nbsp;at all times just in case&amp;nbsp;the transaction requires a penny, or B. I give them a nickel and receive in return 4 filthy ass pennies in return. So I made a decision to no longer acknowledge pennies when requested. &lt;BR&gt;&lt;BR&gt;I hand the man $4.20 and await his response. He will either ask if I have a penny, use a penny from somewhere else or deny my payment. Well, actually... he&amp;nbsp;ended up not&amp;nbsp;giving 2 craps about&amp;nbsp;the penny, didn't ask for one, didn't look at me, just took my money and gave me my food. &lt;BR&gt;&lt;BR&gt;I am phasing out the penny in my life.&lt;BR&gt;&lt;BR&gt;p.s. I'm not the only one who hates pennies. &lt;A href="http://money.cnn.com/2002/04/11/pf/q_pennies/"&gt;Dumping the penny&lt;/A&gt; has been in and out of the news many times.</description><pubDate>Thu, 06 Jan 2005 01:33:09 GMT</pubDate><guid isPermaLink="false">2c311f84-056f-4bb3-b190-d6ca4ca94c86</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=2c311f84-056f-4bb3-b190-d6ca4ca94c86</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=2c311f84-056f-4bb3-b190-d6ca4ca94c86</comments></item><item><title>Economy survey phone call</title><description>So I got a call today asking if I had time to do a phone survey about the state of the economy. Of course I had time! &lt;BR&gt;&lt;BR&gt;Unfortunately they were not interested in my opinion because I do not have over $500k in stocks, investments or cash. &lt;BR&gt;&lt;BR&gt;I guess I'll have to wait until next year ;) hehe&lt;BR&gt;&lt;BR&gt;note: if you don't know why I was so eager to share my opinion on the economy, read my previous blog post.</description><pubDate>Fri, 17 Dec 2004 03:39:05 GMT</pubDate><guid isPermaLink="false">6a785f84-6f7d-45a6-b85d-92b2054fc3e9</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=6a785f84-6f7d-45a6-b85d-92b2054fc3e9</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=6a785f84-6f7d-45a6-b85d-92b2054fc3e9</comments></item><item><title>US has a 90% Chance of Economic Doom.</title><description>&lt;IMG style="MARGIN: 5px" height=184 alt=_40510857_dollar_euro1011_gra203.gif src="/shared/WebLogs/FTBGallery/2004/11/_40510857_dollar_euro1011_gra203.gif" width=203 align=right border=0&gt;There have been a lot of economic forecasts floating around the news lately; &lt;EM&gt;very few&lt;/EM&gt; of them seem to have a positive outlook on the future. Morgan Stanley's (investment banking giant) chief economist, Stephen Roach is giving us a &lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=55356"&gt;10% chance of getting through this OK&lt;/A&gt;, citing &lt;STRONG&gt;our record US trade deficit being the cause&lt;/STRONG&gt;. &lt;BR&gt;&lt;BR&gt;From 1992 and 1997, &lt;A href="http://www.freetrade.org/pubs/pas/tpa-002.html"&gt;the US trade deficit almost tripled&lt;/A&gt;. In 2002 the US trade deficit hit a record $418 billion; only to be outdone &lt;STRONG&gt;in 2003 when we hit &lt;EM&gt;another record&lt;/EM&gt; &lt;/STRONG&gt;&lt;A href="http://www.cbsnews.com/stories/2004/02/13/national/main600034.shtml"&gt;&lt;STRONG&gt;deficit of $489.4 billion&lt;/STRONG&gt;.&lt;/A&gt; Thats a &lt;EM&gt;17.1% increase&lt;/EM&gt; in just one year. &lt;BR&gt;&lt;BR&gt;Stephen Roach argues &lt;STRONG&gt;the dollar will &lt;EM&gt;continue to fall&lt;/EM&gt; as a result of the U.S trade deficit, thus creating inflation&lt;/STRONG&gt;. To combat inflation, &lt;A href="http://www.reuters.com/newsArticle.jhtml?type=businessNews&amp;amp;storyID=6978489&amp;amp;src=rss/businessNews"&gt;the Federal Reserve will be forced to &lt;STRONG&gt;raise interest rates&lt;/STRONG&gt;, higher and sooner&lt;/A&gt; than we or they would&amp;nbsp;like. We've already seen the &lt;A href="http://www.cbsnews.com/stories/2004/09/21/national/main644702.shtml"&gt;Feds increase rates 4 times this year&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;Unfortunately the boost to the dollar from the Fed is &lt;A href="http://www.reuters.com/newsArticle.jhtml?type=businessNews&amp;amp;storyID=7067966&amp;amp;pageNumber=1"&gt;only a short term boost&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;In-debt Americans will be hurt most by this. Since the majority of us are in debt, &lt;STRONG&gt;the effect will not only be nation-wide, but global&lt;/STRONG&gt;, effecting the non-in-debt as well. The effects of this are &lt;A href="http://news.bbc.co.uk/1/hi/business/4042451.stm"&gt;already hurting &lt;EM&gt;other&lt;/EM&gt; nations&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;Americans are going deeper and deeper into debt, as a result &lt;EM&gt;bankruptcy&amp;nbsp;is on the rise&lt;/EM&gt;.&amp;nbsp; Bankruptcy law currently protects your pensions, 401(k)s, social security and a few others.&amp;nbsp;Because of this increase in bankruptcy, the&amp;nbsp;&lt;A href="http://story.news.yahoo.com/news?tmpl=story2&amp;amp;u=/ap/20041202/ap_on_go_su_co/scotus_bankruptcy"&gt;Supreme Court&amp;nbsp;is now deciding if they can seize these assets &lt;/A&gt;and how much of it to seize.&lt;BR&gt;&lt;BR&gt;
&lt;TABLE style="BORDER-RIGHT: darkslategray 2px dashed; BORDER-TOP: darkslategray 2px dashed; MARGIN: 5px; BORDER-LEFT: darkslategray 2px dashed; WIDTH: 200px; BORDER-BOTTOM: darkslategray 2px dashed" align=left border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;A style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none" href="http://www.fool.com/ccc/secrets/secrets01.htm"&gt;&lt;STRONG&gt;"A long time ago, we were a nation of cash-rich, house-poor people. Then, we became house rich and cash poor. Today, we're a nation that's credit dependent and cash broke."&lt;/STRONG&gt;&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;A href="http://www.reuters.com/newsArticle.jhtml?type=businessNews&amp;amp;storyID=6981311&amp;amp;src=rss/businessNews"&gt;&lt;STRONG&gt;Mortgage rates are &lt;EM&gt;now&lt;/EM&gt; on the rise&lt;/STRONG&gt;&lt;/A&gt;. Mortgage owners with variable interest rates &lt;EM&gt;will be affected greatly&lt;/EM&gt;. Unfortunately close to &lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=55356"&gt;&lt;STRONG&gt;half of all new mortgages have a variable interest rate&lt;/STRONG&gt;&lt;/A&gt;. This will cause a greater increase of foreclosures. &lt;BR&gt;&lt;BR&gt;Foreclosures have already been on the rise for some time now. In some Counties &lt;A href="http://www.larimer.org/compass/bankruptcy_ec_ind.htm"&gt;there has been a &lt;STRONG&gt;100%+ increase in foreclosures in 2003&lt;/STRONG&gt;&lt;/A&gt;, when compared to 2002. &lt;A href="http://www.inman.com/inmannews.aspx?ID=43811"&gt;Foreclosures increases have also been predicted for California and Nevada through 2005&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;
&lt;TABLE style="BORDER-RIGHT: darkslategray 2px dashed; BORDER-TOP: darkslategray 2px dashed; MARGIN: 5px; BORDER-LEFT: darkslategray 2px dashed; WIDTH: 250px; BORDER-BOTTOM: darkslategray 2px dashed" align=right border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;A style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none" href="http://www.inman.com/inmannews.aspx?ID=43811"&gt;&lt;STRONG&gt;Lexis McGee, foreclosures.com, said her company has always seen a correlation between rising interest rates and rising levels of foreclosure activity.&lt;/STRONG&gt;&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;As interest rates rise, &lt;STRONG&gt;the prices of housing will fall&lt;/STRONG&gt;, causing almost half of home owners (variable rates) &lt;EM&gt;payments to increase&lt;/EM&gt; at the same time they'll find themselves &lt;EM&gt;owing more&lt;/EM&gt; than their house is worth. &lt;BR&gt;&lt;BR&gt;&lt;B&gt;Foreclosure News:&lt;/B&gt; &lt;A href="http://www.foreclosures.com/pages/News_Archive.asp"&gt;foreclosures.com&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;Housing hit an all time high in June for most communities. Though &lt;STRONG&gt;housing has started a decline&lt;/STRONG&gt; or what is being called a &lt;A href="http://www.bizjournals.com/sacramento/stories/2004/08/23/daily15.html"&gt;"cooling"&lt;/A&gt; or &lt;A href="http://www.freep.com/news/nw/bubble12_20040312.htm"&gt;"cool-down"&lt;/A&gt;. This can already be seen in &lt;A href="http://www.bizjournals.com/sacramento/stories/2004/08/23/daily15.html"&gt;California&lt;/A&gt; and &lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=55589"&gt;Boston&lt;/A&gt;&amp;nbsp;as well as&amp;nbsp;other areas. Meanwhile Scott Van Voorhis is predicting a &lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=49568&amp;amp;format="&gt;&lt;STRONG&gt;Crash in the Condo market&lt;/STRONG&gt;&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;Condo prices over the past year rose more than 14 percent - more than 10 percent faster than single -family home prices.&lt;BR&gt;&lt;BR&gt;"That's a sign that we ought to start looking very closely at this housing market," said Harvard University housing expert Nicholas Retsinas. "That may be a sign that the &lt;EM&gt;slowing may be sooner than we think&lt;/EM&gt;." &lt;BR&gt;&lt;BR&gt;Also related,&amp;nbsp;&lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=56336"&gt;share value&amp;nbsp;of the largest US homebuilders has declined&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;
&lt;TABLE style="BORDER-RIGHT: darkslategray 2px dashed; BORDER-TOP: darkslategray 2px dashed; MARGIN: 5px; BORDER-LEFT: darkslategray 2px dashed; WIDTH: 200px; BORDER-BOTTOM: darkslategray 2px dashed" align=left border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;A style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; FONT-WEIGHT: bold; BORDER-LEFT: medium none; BORDER-BOTTOM: medium none" href="http://news.bbc.co.uk/2/hi/business/4055891.stm"&gt;The greenback's decline is largely the result of &lt;EM&gt;massive twin deficits&lt;/EM&gt; - both in the federal budget, and in the current account which measures the difference between the flow of money in and out of the US.&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;Global worries about the size of the US trade gap cause the &lt;STRONG&gt;US dollar to hit a &lt;/STRONG&gt;&lt;A href="http://news.bbc.co.uk/2/hi/business/4037903.stm"&gt;&lt;STRONG&gt;record low against the euro&lt;/STRONG&gt;&lt;/A&gt;. It doesn't help that our Federal Reserve chairman, &lt;A href="http://news.bbc.co.uk/2/hi/business/4037903.stm"&gt;Alan Greenspan &lt;EM&gt;announced&lt;/EM&gt; &lt;STRONG&gt;the gap was unsustainable&lt;/STRONG&gt;&lt;/A&gt;. It probably also doesn't help that the Chinese central banker has made comments stating &lt;A href="http://www.reuters.com/newsArticle.jhtml?type=businessNews&amp;amp;storyID=6946082&amp;amp;src=rss/businessNews"&gt;&lt;STRONG&gt;China would be reducing dollar assets in its reserves&lt;/STRONG&gt;&lt;/A&gt;. Though he later retracted his comment, he will probably &lt;EM&gt;still reduce the dollar&lt;/EM&gt; asset.&amp;nbsp;European Central Bank chief Jean-Claude Trichet reiterated concerns that &lt;A href="http://news.bbc.co.uk/2/hi/business/4055891.stm"&gt;the sliding dollar was "unwelcome" for the European economy&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;Even though the &lt;A href="http://news.bbc.co.uk/2/hi/business/4044133.stm"&gt;US dollar has "bounced back"&lt;/A&gt; from the record low, many still have &lt;STRONG&gt;a negative outlook towards the future of the dollar&lt;/STRONG&gt; and &lt;EM&gt;expect it to fall farther&lt;/EM&gt;. &lt;A href="http://news.bbc.co.uk/2/hi/business/4044133.stm"&gt;[1]&lt;/A&gt; &lt;A href="http://www.reuters.com/newsArticle.jhtml?type=businessNews&amp;amp;storyID=6946082&amp;amp;src=rss/businessNews"&gt;[2]&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;Effects from the drop in the US dollar can already be seen in a &lt;A href="http://story.news.yahoo.com/news?tmpl=story2&amp;amp;u=/ap/20041130/ap_on_bi_st_ma_re/wall_street"&gt;drop in the DOW&lt;/A&gt;. Though &lt;A href="http://business.bostonherald.com/businessNews/view.bg?articleid=56336"&gt;S&amp;amp;P Drops&lt;/A&gt; may be mostly due to Wal-Mart (thanks Wal-Mart). &lt;BR&gt;&lt;BR&gt;With a national debt of &lt;A href="http://www.publicdebt.treas.gov/opd/opdpenny.htm"&gt;$7.5+ trillion dollars&lt;/A&gt;, &lt;A href="http://www.brillig.com/debt_clock/"&gt;&lt;STRONG&gt;$25,535.54&amp;nbsp;of debt for &lt;EM&gt;each&lt;/EM&gt; American citizen&lt;/STRONG&gt;&lt;/A&gt;, (and growing fast) and our record breaking trade deficit, it's hard to see the light at the end of the tunnel. &lt;BR&gt;&lt;BR&gt;So what is "our great leader", President Bush, doing about this? &lt;A href="http://www.cbsnews.com/stories/2004/03/12/politics/main605544.shtml"&gt;He sends in a $2.4 trillion dollar budget&lt;/A&gt; and &lt;A href="http://www.cbsnews.com/stories/2004/11/20/politics/main656797.shtml"&gt;&lt;STRONG&gt;HE RAISES OUR NATIONAL DEBT LIMIT&lt;/STRONG&gt;&lt;/A&gt;. Apparently our problem is not that we owe too much, our problem is OUR LIMITS ARE NOT HIGH ENOUGH. I wonder why we have a national debt limit, if &lt;A href="http://slate.msn.com/id/2109203/"&gt;we're able to breach the limit without any problems&lt;/A&gt;.&amp;nbsp; I guess it's more of a suggestion than a "limit".&lt;BR&gt;&lt;BR&gt;Our budget is still&amp;nbsp;bloated and contains many&amp;nbsp;&lt;STRONG&gt;"pet projects" that &lt;/STRONG&gt;&lt;A href="http://story.news.yahoo.com/news?tmpl=story2&amp;amp;u=/latimests/20041124/ts_latimes/petprojectsunleashedinspendingbill"&gt;&lt;STRONG&gt;total more than $15.8 billion&lt;/STRONG&gt;&lt;/A&gt;. They found $250,000 for the Country Music Hall of Fame in Nashville, $1 million for the B.B. King Museum in Indianola, Miss., and $75,000 for the Paper Industry International Hall of Fame in Appleton, Wis. &lt;BR&gt;&lt;BR&gt;Bush is also asking congress for &lt;EM&gt;an additional $87 billion dollars&lt;/EM&gt; to "continue the fight on terrorism in Iraq". &lt;EM&gt;So far&lt;/EM&gt;, it is&amp;nbsp;estimated this &lt;STRONG&gt;"war on terrorism" will end up costing the US &lt;/STRONG&gt;&lt;A href="http://www.crunchweb.net/87billion/"&gt;&lt;STRONG&gt;$191 billion dollars&lt;/STRONG&gt;&lt;/A&gt;. This site has a javascript counter of &lt;A href="http://costofwar.com"&gt;how much the war is currently costing us&lt;/A&gt;.&amp;nbsp; You can also find out how much it is costing your State, or even County. Check out &lt;A href="http://www.crunchweb.net/87billion/"&gt;this link&lt;/A&gt;, they provide a cute visualization of $191 billion dollars.&lt;BR&gt;&lt;BR&gt;As if we have any problems getting into debt ourselves, the laziness of the Bush administration has also allowed a violation the laws of The World Trade Organization, &lt;A href="http://story.news.yahoo.com/news?tmpl=story2&amp;amp;u=/nm/20041126/ts_nm/trade_wto_sanctions_dc"&gt;&lt;STRONG&gt;costing us an &lt;EM&gt;initial&lt;/EM&gt; $150 million&lt;/STRONG&gt;&lt;/A&gt;. &lt;A href="http://news.bbc.co.uk/2/hi/business/4045979.stm"&gt;[2]&lt;/A&gt; This is like a $150 million dollar parking ticket, Bush being our driver, unfortunately we will all have to pay for it. &lt;BR&gt;&lt;BR&gt;It seems that Bush wants to spend more money than he is allowed, so where will he find all the money for this? Easy! &lt;STRONG&gt;Bush will just&amp;nbsp;&lt;/STRONG&gt;&lt;A href="http://www.reuters.com/newsArticle.jhtml?type=domesticNews&amp;amp;storyID=6933798&amp;amp;src=rss/domesticNews"&gt;&lt;STRONG&gt;borrow from social security&lt;/STRONG&gt;&lt;/A&gt;! He doesn't have to run for re-election, so what does he care. &lt;BR&gt;&lt;BR&gt;Maybe &lt;A href="http://www.freep.com/news/politics/taxgrid23e_20041023.htm"&gt;we would have been better off with John Kerry&lt;/A&gt;. It's a shame and very apparent that our voting system does not work. &lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;Great Links about our National Debt:&lt;/STRONG&gt; &lt;A href="http://www.brillig.com/debt_clock"&gt;http://www.brillig.com/debt_clock&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;
&lt;TABLE style="BORDER-RIGHT: darkslategray 2px dashed; BORDER-TOP: darkslategray 2px dashed; MARGIN: 5px; BORDER-LEFT: darkslategray 2px dashed; WIDTH: 200px; BORDER-BOTTOM: darkslategray 2px dashed" align=left border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;A style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; FONT-WEIGHT: bold; BORDER-BOTTOM: medium none; BORDER-: medium none" href="http://news.bbc.co.uk/1/hi/business/3701042.stm"&gt;"In plain English, deficits have to be financed by borrowing and large scale debt, with the risk of &lt;EM&gt;large-scale default&lt;/EM&gt; and large-scale disruption and pain."&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;I'm still having troubles finding economic reports stating "everything is OK". Even &lt;A href="http://news.bbc.co.uk/1/hi/business/3701042.stm"&gt;reports like this&lt;/A&gt;, which suggest growth is strong, leave suggestion that &lt;STRONG&gt;it will not last&lt;/STRONG&gt;. &lt;BR&gt;&lt;BR&gt;Don't skip by that "large-scale default" too quickly. By default, he means failure to pay or bankrupcy. And large-scale could potentially include the US banks or the US itself. He's saying, if trends continue, the US may have to declare bankrupcy. This most-likely&amp;nbsp;will not&amp;nbsp;happen, but that doesn't mean that it couldn't happen.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;STRONG&gt;My suggestions:&lt;/STRONG&gt; Read all the links in this article. Do your own research. Sell your house &lt;EM&gt;or&lt;/EM&gt; refinance with a fixed rate. Pay off all debt. Start saving for our future recession.</description><pubDate>Tue, 30 Nov 2004 06:40:43 GMT</pubDate><guid isPermaLink="false">d7e95fe2-ebad-4244-aabb-a7da94618ec6</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d7e95fe2-ebad-4244-aabb-a7da94618ec6</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d7e95fe2-ebad-4244-aabb-a7da94618ec6</comments></item><item><title>Constricting your anus will "Good-bye" depression?</title><description>&lt;DIV style="HEIGHT: 208px"&gt;&lt;A href="http://www.target.com/gp/detail.html/sr=8-1/qid=1101113469/ref=sr_8_1/602-0278933-0594273?%5Fencoding=UTF8&amp;amp;asin=0595094724"&gt;&lt;IMG title="How to Good-Bye Depression: If You Constrict Anus 100 Times Everyday." height=208 alt="How to Good-Bye Depression: If You Constrict Anus 100 Times Everyday." hspace=10 src="/shared/WebLogs/FTBGallery/2004/11/0595094724.01._AA260_SCLZZZZZZZ_.jpg" width=171 align=left border=1&gt;&lt;/A&gt;I saw this on Target's website.&lt;BR&gt;&lt;BR&gt;If you can't read it, it says "&lt;STRONG&gt;How to Good-Bye Depression: If You Constrict Anus 100 Times Everyday.&lt;/STRONG&gt; Malarkey? or Effective way?"&lt;BR&gt;&lt;BR&gt;Scroll down and read the comments, they're great.&lt;BR&gt;&lt;BR&gt;Click on the image to go directly to the &lt;A href="http://www.target.com/gp/detail.html/sr=8-1/qid=1101113469/ref=sr_8_1/602-0278933-0594273?%5Fencoding=UTF8&amp;amp;asin=0595094724"&gt;Target URL&lt;/A&gt;. &lt;BR&gt;&lt;BR&gt;You can also &lt;A href="http://www.amazon.com/exec/obidos/tg/detail/-/0595094724/qid=1101363268/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/002-6533620-1198432?v=glance&amp;amp;s=books&amp;amp;n=507846"&gt;read comments&lt;/A&gt; on this book at amazon.com.&lt;BR&gt;&lt;BR&gt;Guess what &lt;EM&gt;you're&lt;/EM&gt; getting for XMas?? &lt;/DIV&gt;</description><pubDate>Wed, 24 Nov 2004 08:10:08 GMT</pubDate><guid isPermaLink="false">34ed5c41-1e50-40f5-9981-cd4c570141d6</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=34ed5c41-1e50-40f5-9981-cd4c570141d6</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=34ed5c41-1e50-40f5-9981-cd4c570141d6</comments></item><item><title>Humans and Monkeys</title><description>&lt;IMG title="vintage poster of a monkey drinking alcohol" height=200 alt="vintage poster of a monkey drinking alcohol" hspace=5 src="/shared/WebLogs/FTBGallery/2004/11/monkey.jpg" width=141 align=right vspace=5 border=0&gt;So I'm watching the Discovery Science Channel right now and a great show called Weird Nature is on. They're showing these Verbit Monkeys on an Island in Saint Kitts in the Caribbean. These monkeys acquired a taste for alcohol by eating fermented sugar cane left in the field. Our taste for alcohol began when we searched the forest for ripe fermenting fruit. &lt;BR&gt;&lt;BR&gt;These monkeys have now learned to snatch drinks up from local bars on the beach. They even snatch the drinks right next to people laying out on the beach. &lt;BR&gt;&lt;BR&gt;Some of the monkeys favor soft drinks over alcohol. The percentage of monkeys and humans that avoid alcohol is the same. Most of the monkeys (like humans) drink in moderation. Also like humans (the same percentage)&amp;nbsp;12% of the monkeys drink regularly and 5% drink to the last drop.&lt;BR&gt;&lt;BR&gt;"&lt;EM&gt;This similarity between us suggests that a taste for alcohol is determined principally by our genes&lt;/EM&gt;." - Discovery Channel&lt;BR&gt;&lt;BR&gt;I mostly find this interesting because I believe&amp;nbsp;humans are in less control of their actions and thought then they believe.&amp;nbsp; A lot more of&amp;nbsp;who we are, what we say and what we do&amp;nbsp;is reactionary, preprogrammed by our genes and environment, than we'd like to believe.</description><pubDate>Mon, 22 Nov 2004 08:10:56 GMT</pubDate><guid isPermaLink="false">4b29ea21-19d7-4488-98cd-f7672a6cdd59</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4b29ea21-19d7-4488-98cd-f7672a6cdd59</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4b29ea21-19d7-4488-98cd-f7672a6cdd59</comments></item><item><title>My unhappy Sears experience.</title><description>It felt strange walking through Sears today, and no, not because of the &lt;A href="http://story.news.yahoo.com/news?tmpl=story2&amp;amp;u=/nm/20041117/bs_nm/retail_sears_kmart_dc"&gt;Sears-KMart merge&lt;/A&gt;. Because I was one of about 3 total people in Sears that &lt;EM&gt;was not Mexican&lt;/EM&gt;.&lt;BR&gt;&lt;BR&gt;&lt;EM&gt;I was not happy&lt;/EM&gt; with my overall Sears experience. There were new glass walls around the electronics section. I'm guessing they have had a problem with shoplifting since there was only one entrance. That single entrance also had an anti-theft system you had to walk through. It felt like the devil-company Walmart, cheap.&lt;BR&gt;&lt;BR&gt;After telling me they do not carry air conditioning filters, one of the very few non-Mexican people, helped me check out. He was what appeared to be a 65 year old white male. I always wonder about older people working crap jobs. Does this man not have a single skill that can help land him a better job than a Sears salesman?&amp;nbsp; I can only hope he's just trying to get some extra holiday cash and working there after work - most-likely not.</description><pubDate>Sun, 21 Nov 2004 03:44:09 GMT</pubDate><guid isPermaLink="false">4777b638-b587-40fc-a1f1-5f17308857de</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4777b638-b587-40fc-a1f1-5f17308857de</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4777b638-b587-40fc-a1f1-5f17308857de</comments></item><item><title>Sell your soul for $750,000 a month</title><description>Spamming is the most despicable job on the planet. If you are a spammer, you are less than shit. &lt;br /&gt;&lt;br /&gt;I'm glad to see a high profile spammer being taken down. It looks like he's facing &lt;em&gt;nine years&lt;/em&gt; in a federal-pound-me-in-the-ass-prison. Does it make me a bad person if I hope he's beaten up? &lt;br /&gt;&lt;br /&gt;One thing I can't believe is that he made up to 750k/month. Holy crap that is a lot of money. Would you be a spammer for 750k/month? I think most of us would say yes.&amp;nbsp; See you in hell.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.cnn.com/2004/TECH/internet/11/14/inside.spamming.ap/index.html"&gt;Source&lt;/a&gt;</description><pubDate>Thu, 18 Nov 2004 08:14:20 GMT</pubDate><guid isPermaLink="false">05f44143-2a0d-4abb-b8df-6e07baeb0ca6</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=05f44143-2a0d-4abb-b8df-6e07baeb0ca6</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=05f44143-2a0d-4abb-b8df-6e07baeb0ca6</comments></item><item><title>Thanks for the free shit Marlboro!</title><description>First a little back-story... I was in Vegas with a few friends when we were approached by a Marlboro employee. We were offered free Zippo lighters, which we took. In exchange they took our personal information off of our license. (Side note: It is a copper Zippo... I fucking hate copper.&amp;nbsp; The goddamn thing smells like a penny... grrrrr)&lt;br /&gt;&lt;br /&gt;Of course, a few weeks later I started getting crap in the mail from Marlboro. They send me something at least every other week. I've been getting this crap for over a year now. I recently started opening and checking out what the hell they are sending me. In the packages I've gotten cookbooks, which actually contain some pretty good recipes, Tickets for races (I checked the race tracks website and the tickets were selling for $75 each), and a bunch of other crap. &lt;br /&gt;&lt;br /&gt;But just recently I got a master card debit card with $10 on it. I'm starting to wonder what was in the packages that I didn't open. &lt;br /&gt;&lt;br /&gt;I'm not a smoker and never have been. &lt;br /&gt;&lt;br /&gt;Marlboro, fuck you (&amp;lt;--this applies to smokers too), but thanks for the free shit!</description><pubDate>Thu, 18 Nov 2004 07:02:09 GMT</pubDate><guid isPermaLink="false">f78fe4a5-edb3-405d-b90a-e27a3b585137</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=f78fe4a5-edb3-405d-b90a-e27a3b585137</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=f78fe4a5-edb3-405d-b90a-e27a3b585137</comments></item><item><title>India may power Google's instant messenger</title><description>It looks like &lt;a href="http://google.com/"&gt;Google&lt;/a&gt; is now working on an instant messenger. Sounds interesting. Unfortunately I currently run 4 chat protocols, I hope this wont add a 5th. &lt;br /&gt;&lt;br /&gt;On the brighter side... the Indian company, &lt;a href="http://www.geodesiconline.com/"&gt;Geodesic&lt;/a&gt;, already has an IM product, &lt;a href="http://www.geodesiconline.com/htm/products/products.htm"&gt;Mundu&lt;/a&gt;. &lt;a href="http://www.geodesiconline.com/htm/products/products.htm"&gt;Mundu &lt;/a&gt;supports &lt;a href="http://www.geodesiconline.com/htm/products/products.htm"&gt;Mundu&lt;/a&gt;, AIM, ICQ, MSN &amp;amp; Yahoo.&amp;nbsp; &lt;a href="http://www.geodesiconline.com/htm/products/products.htm"&gt;Mundu &lt;/a&gt;is also cross platform and runs on some mobile devices. &amp;nbsp;I wonder how it compares to &lt;a href="http://trillian.cc/"&gt;Trillian&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;a href=""&gt;Source: moneycentral.com&lt;/a&gt;</description><pubDate>Thu, 11 Nov 2004 10:34:33 GMT</pubDate><guid isPermaLink="false">9fb69820-1d96-4fdb-a801-928d1fb3930b</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=9fb69820-1d96-4fdb-a801-928d1fb3930b</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=9fb69820-1d96-4fdb-a801-928d1fb3930b</comments></item><item><title>http://www.humandescent.com/</title><description>&lt;a href="http://www.humandescent.com/"&gt;http://www.humandescent.com/&lt;/a&gt; A picture's worth a thousand words. I can't even describe the weird photos on that site. gotta check it out.</description><pubDate>Tue, 26 Oct 2004 01:19:08 GMT</pubDate><guid isPermaLink="false">67d33a97-d5e8-42f2-b9c8-00dcfad69688</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=67d33a97-d5e8-42f2-b9c8-00dcfad69688</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=67d33a97-d5e8-42f2-b9c8-00dcfad69688</comments></item><item><title>Evolution (Devolution) of communication</title><description>in person, standard mail, telephone, email, instant messaging, sms (text messaging), weblog. each step, less interaction and more impersonal. What great technology will come next?</description><pubDate>Tue, 26 Oct 2004 12:48:36 GMT</pubDate><guid isPermaLink="false">279e3ab5-dfee-4240-9dc9-ea0cecb3c42a</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=279e3ab5-dfee-4240-9dc9-ea0cecb3c42a</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=279e3ab5-dfee-4240-9dc9-ea0cecb3c42a</comments></item><item><title>Plato</title><description>"Poverty consists, not in the decrease of one's possessions, but in the increase of one's greed." -- Plato</description><pubDate>Mon, 25 Oct 2004 12:54:37 GMT</pubDate><guid isPermaLink="false">b7d8e6b3-ed2c-4189-9e9a-2340937a91f3</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b7d8e6b3-ed2c-4189-9e9a-2340937a91f3</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b7d8e6b3-ed2c-4189-9e9a-2340937a91f3</comments></item><item><title>Wish I had a carpool partner</title><description>Sometimes I wish I had a carpool partner. Then I wouldn't feel so guilty when I drive to work in the carpool lane.</description><pubDate>Thu, 07 Oct 2004 10:32:48 GMT</pubDate><guid isPermaLink="false">bb09aeb1-77f3-447f-8c82-8c90d96702e9</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=bb09aeb1-77f3-447f-8c82-8c90d96702e9</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=bb09aeb1-77f3-447f-8c82-8c90d96702e9</comments></item><item><title>Going big!</title><description>At work, I was headed to our one-at-a-time restoom arriving at the same time as a co-worker. He simply looked at me and asked "Big or small?", to which I replied "Big." He then curteously told me "I need to go big too, you can go first."&lt;br /&gt;&lt;br /&gt; The next time I'm at the drive through for Wendy's and I'm prompted with "Would you like to go big?", I'll think of my co-worker.</description><pubDate>Thu, 07 Oct 2004 03:30:20 GMT</pubDate><guid isPermaLink="false">26dbb1b9-bd6b-4eab-a859-4833309218a8</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=26dbb1b9-bd6b-4eab-a859-4833309218a8</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=26dbb1b9-bd6b-4eab-a859-4833309218a8</comments></item><item><title>GMail Atom feed</title><description>Well, I logged into GMail and noticed an 'Atom' button on the left side navigation. I was very excited to find out they have an Atom feed.&lt;BR&gt;&lt;BR&gt;Though, it looks like not everyone has this Atom feed. Maybe they haven't done a full release yet?&lt;BR&gt;&lt;BR&gt;Login to gmail and go to the following URL to see if you have access to the feed.&lt;BR&gt;&lt;BR&gt;&lt;A href="https://gmail.google.com/gmail/feed/atom"&gt;https://gmail.google.com/gmail/feed/atom&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;Haha. this is really funny.&amp;nbsp; The feed cannot be used in any news reader.&amp;nbsp; It is password protected, but after you enter in your user/pass, you are not logged into google or sent the atom xml data.&amp;nbsp; You are redirected to googles main page to login.&amp;nbsp; -- oops google.</description><pubDate>Mon, 04 Oct 2004 10:53:28 GMT</pubDate><guid isPermaLink="false">70a020eb-54c6-44c6-8fe2-ea97a48181d0</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=70a020eb-54c6-44c6-8fe2-ea97a48181d0</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=70a020eb-54c6-44c6-8fe2-ea97a48181d0</comments></item><item><title>Just got my T-Mobile Sidekick II</title><description>&lt;img height="125" src="/toys/images/sidekick2.jpg" width="129" align="right" /&gt;I just got my T-Mobile Sidekick II. I was starting to hate my Color Sidekick, glad I have the new one :) &lt;br /&gt;&lt;br /&gt;&lt;a href="/toys/sidekick2.aspx"&gt;More About It&lt;/a&gt;</description><pubDate>Sat, 02 Oct 2004 01:46:22 GMT</pubDate><guid isPermaLink="false">d64bbad6-56e3-4c8d-940c-40925d737b9d</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d64bbad6-56e3-4c8d-940c-40925d737b9d</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d64bbad6-56e3-4c8d-940c-40925d737b9d</comments></item><item><title>Jesus wants you to save, Refinance now the Christian way</title><description>I keep getting these goddamn emails over and over asking me to refinance my house. These kind of spams are pretty common, but what makes this one different is they're saying JESUS wants me to refinance! WTF?!&lt;br /&gt;&lt;br /&gt;And yes, the subject of the email was&amp;nbsp;"Jesus wants you to save, Refinance now the Christian way".&lt;br /&gt;&lt;br /&gt;Their site is ChristianMortgageUSA.com "Your Lending Advisor With Biblical Values".&lt;br /&gt;&lt;br /&gt;I wish they had enough Christian values to STOP FUCKING SPAMMING ME!&lt;br /&gt;&lt;br /&gt;If jesus had an email address this company would have been turned into a pilar of salt.&lt;br /&gt;&lt;br /&gt;I can only pray they go to hell.</description><pubDate>Wed, 22 Sep 2004 11:06:07 GMT</pubDate><guid isPermaLink="false">e20ab9e9-c0be-4b3d-b7a3-9a3f968b66da</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=e20ab9e9-c0be-4b3d-b7a3-9a3f968b66da</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=e20ab9e9-c0be-4b3d-b7a3-9a3f968b66da</comments></item><item><title>No more car payments!</title><description>Thank god. My car is finally paid off. I couldn't take it anymore. I got a late notice from GMAC and sent them 3 months worth of payments. I am free!!! from my car payment at least... now just gotta take care of the rest of the debt.</description><pubDate>Fri, 17 Sep 2004 01:23:57 GMT</pubDate><guid isPermaLink="false">b77f4c63-6881-48be-82e5-75cb04c04f46</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=b77f4c63-6881-48be-82e5-75cb04c04f46</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=b77f4c63-6881-48be-82e5-75cb04c04f46</comments></item><item><title>Gas station fires are caused by women, not cellphones</title><description>78% of gas station fires are caused by women.&amp;nbsp;Apparently most gas station fires are caused by static electricity. Women are 6 times more likely to get back into the car after starting the pumping of gas. The entering and exiting the vehicle causes a buildup of static electricity. When they finally go to remove the pump from the gas tank the static electricity discharge from their hands to the pump handle causes the gas to ignite.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://urbanlegends.about.com/library/blgas-static-fires2.htm"&gt;source&lt;/a&gt;</description><pubDate>Sat, 11 Sep 2004 12:05:28 GMT</pubDate><guid isPermaLink="false">3d8b85df-d2f5-4d2a-8443-598f7bbd676a</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=3d8b85df-d2f5-4d2a-8443-598f7bbd676a</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=3d8b85df-d2f5-4d2a-8443-598f7bbd676a</comments></item><item><title>110 miles to and from work</title><description>I got gas right before I left for work and set my trip meter. When I got home it was at 110 - kill me.</description><pubDate>Fri, 10 Sep 2004 12:21:58 GMT</pubDate><guid isPermaLink="false">eee576ce-c8c5-4684-ad8c-4f417e6e4e9e</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=eee576ce-c8c5-4684-ad8c-4f417e6e4e9e</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=eee576ce-c8c5-4684-ad8c-4f417e6e4e9e</comments></item><item><title>Was it hot today?</title><description>I saw on the news it got into the tripple digits. I was inside all day with the air conditioning on -- suckers.</description><pubDate>Tue, 07 Sep 2004 11:01:28 GMT</pubDate><guid isPermaLink="false">d92081c4-88fc-429b-bec7-80be5f302b14</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d92081c4-88fc-429b-bec7-80be5f302b14</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d92081c4-88fc-429b-bec7-80be5f302b14</comments></item><item><title>Fun with Google</title><description>Every now and then it's fun to play with google. You search for weird things to see what google thinks of your search. &lt;br /&gt;&lt;br /&gt; Well I google'd &lt;a href="http://images.google.com/images?hl=en&amp;lr=&amp;ie=UTF-8&amp;q=fo+shizzle+my+nizzle"&gt;fo shizzle my nizzle&lt;/a&gt; using &lt;a href="http://images.google.com/"&gt;google images&lt;/a&gt;. Of course snoop dog is the #1 image, but collen powell is #2.&lt;br /&gt;&lt;br /&gt; fo shizzel my nizzle.</description><pubDate>Thu, 02 Sep 2004 09:31:58 GMT</pubDate><guid isPermaLink="false">a9f57a71-49d7-48e3-8f6d-437bb28afff8</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a9f57a71-49d7-48e3-8f6d-437bb28afff8</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a9f57a71-49d7-48e3-8f6d-437bb28afff8</comments></item><item><title>Go Formula Drift!</title><description>Just got back from the &lt;a href="http://formulad.com/"&gt;Formula Drift&lt;/a&gt;. Was a really good event, I had a lot of fun. The crowd was a lot quieter than the previous events though. &lt;br /&gt;&lt;br /&gt;The &lt;a href="http://formulad.com/"&gt;forumad.com site&lt;/a&gt; is a little confusing though. I was upset when they eliminated sam. In my opinion, Sam was the best driver there; he was also driving the best car, a dodge viper. Anyway... under latest news it says "Congrats to Sam Hubinette for winning the first ever FD championship!". &lt;br /&gt;&lt;br /&gt;Did he win? Are we talking about the same event I was at? &lt;br /&gt;&lt;br /&gt; I think maybe he didn't win the event I was at, but won the FormulaD from points.&lt;br /&gt;&lt;br /&gt; ...I'm now on a quest to turn my car into a drift car.</description><pubDate>Wed, 01 Sep 2004 02:04:47 GMT</pubDate><guid isPermaLink="false">d3178acd-48c9-429f-ad2a-4797e788f7a5</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d3178acd-48c9-429f-ad2a-4797e788f7a5</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d3178acd-48c9-429f-ad2a-4797e788f7a5</comments></item><item><title>$600 for two tires</title><description>Well, I finally went back to get &lt;a href="http://www.bfgoodrichtires.com/bfgapp/catalog/tires/gforcetakd.jsp"&gt;my tires&lt;/a&gt;. I'm now $600 poorer. Slowly all my tires seem to have needed replacing. These were the last 2 tires. I now have a completely new set of tires on my car. Those last two tires lasted about 50-60k miles. It's incredible since those tires are only rated for around 15-20k miles. They were all replaced because of road hazards or uneven wear from the car. The last tire still had enough tread on it to be legal. These are damn good tires. Too bad they're so expensive.</description><pubDate>Fri, 27 Aug 2004 01:45:50 GMT</pubDate><guid isPermaLink="false">d2f25c87-60d4-4889-9127-95290d526592</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=d2f25c87-60d4-4889-9127-95290d526592</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=d2f25c87-60d4-4889-9127-95290d526592</comments></item><item><title>Longest tire change ever!</title><description>Ok, so I take my car today down to &lt;a href="http://tires.com"&gt;America's Tire Co.&lt;/a&gt; One of my tires failed and needed to be replaced. When I called and was told they had my tire in stock. There were 3 cars in front of me, so I took off to get some food. When I got back, I saw my car was still there, so I sat and waited. After 2 hours had passed and my car still wasn't done, I went to find out what was going on. Aparently the computer lsited my tire as being in stock, but they couldnt find it. &lt;br /&gt;&lt;br /&gt;They gave me a spare tire to ride around on until they could order a new tire for me. By the time I got out of there, 3 hours have passed. Jesus kill me!</description><pubDate>Wed, 18 Aug 2004 01:47:01 GMT</pubDate><guid isPermaLink="false">c72d981e-e02d-41bb-8c6e-e939e3332d54</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=c72d981e-e02d-41bb-8c6e-e939e3332d54</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=c72d981e-e02d-41bb-8c6e-e939e3332d54</comments></item><item><title>Time to close my E*TRADE account</title><description>Let me preface this by saying I haven't logged into my E*TRADE account in about 4 years. I put some money in and ignored it...&lt;br /&gt; &lt;br /&gt; Because I haven't logged into E*TRADE in so long, I had to guess my user id / pass. I tried to use their 'lost password' page, but that requires me to know my user id. When I went to the 'lost user id' page, it asks for my account number. If you don't know your account number, you get sent back to the 'lost user id' page. Long story short, I kept typing in user id's and passwords until it let me in.&lt;br /&gt; &lt;br /&gt; After I log in, I find that in my portfolio I have a (-200.00) cash balance. I think to myself that this is a little strange and after an email to them, I find out E*TRADE now charges a $25 quarterly account maintenance fee, that’s $100 / year.&lt;br /&gt; &lt;br /&gt; I guess this is a new thing, to me at least; I haven't logged on in a long, long time.&lt;br /&gt; &lt;br /&gt; My account isn't making me any money. The funds I have are just sitting there, which I was fine with before, but now they are quickly dwindling because of this $100/y account fee. Time to close account!&lt;br /&gt; &lt;br /&gt; So I issue a 'sell' on Friday and have to wait until Monday for the sell order to go through. After it does, I found out I have to wait 10 days before I can access this money. It's available right away to stuff into another stock, but I have to wait 10 days to withdraw my funds.&lt;br /&gt; &lt;br /&gt; A check is currently being sent to me. Once the check is cached, my account will be canceled.&lt;br /&gt; &lt;br /&gt; This has been a long and tedious process..</description><pubDate>Wed, 04 Aug 2004 11:42:31 GMT</pubDate><guid isPermaLink="false">3b06817e-928b-47a2-a868-64ee0bf489fa</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=3b06817e-928b-47a2-a868-64ee0bf489fa</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=3b06817e-928b-47a2-a868-64ee0bf489fa</comments></item><item><title>LA drivers are assholes</title><description>Ya, so LA drivers are all assholes. &lt;br /&gt;&lt;br /&gt;I have this special driving move I use when I want to change lanes and the person in the next lane speeds up to prevent me from changing lanes. &lt;br /&gt;&lt;br /&gt;I speed up so I'm side by side with the car in front of the A-hole that won’t let me over. I slowly decelerate until my front tire is next to the cars rear tire. I start to creep into the lane until my front bumper clears the other cars rear bumper. Finally, I slow my deceleration and stay about a foot behind the car while I keep moving all the way into the lane. &lt;br /&gt;&lt;br /&gt;This technique always works because you will be closer to the car in front. The driver can either hit you or back away. It's a real A-hole move to do, and they'll get pissed off, but I take pleasure in pissing them off if they're going to be jerks about letting&amp;nbsp;me change lanes. &lt;br /&gt;&lt;br /&gt;Well, anyway, I was driving up in LA, trying to merge over to the left lane. All the cars were trying to merge over to the right to get off at LAX. Some jerk-off sped up to block me. I mean WTF... he's trying to get over to the right... I’m trying to get 2 lanes past him to the left, but he still felt the need to try to block me. So I did my A-hole lane change move and I guess he got really pissed off because instead of backing off like every other car does he moves over more to the left and speeds up. We are now&amp;nbsp;driving side by side, both of us within the boundaries of the single lane. What a shit bag. &lt;br /&gt;&lt;br /&gt;I slowed, let him&amp;nbsp;take the front position and&amp;nbsp;moved in behind him, merged one more to the left and increased my speed by about 30 mph and took off. &lt;br /&gt;&lt;br /&gt;I hope it was worth it A-hole.</description><pubDate>Mon, 02 Aug 2004 07:57:44 GMT</pubDate><guid isPermaLink="false">4b6cf36c-09ad-4174-961e-ccfa27f529b4</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=4b6cf36c-09ad-4174-961e-ccfa27f529b4</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=4b6cf36c-09ad-4174-961e-ccfa27f529b4</comments></item><item><title>Coercion - why we listen to what "they" say</title><description>I picked up a new book, &lt;a href="http://www.amazon.com/exec/obidos/tg/detail/-/157322829X/qid=1091020572/sr=8-1/ref=pd_ka_1/103-7466951-6859041?v=glance&amp;amp;s=books&amp;amp;n=507846"&gt;Coercion&lt;/a&gt;.&amp;nbsp; So far it's a pretty good book.&amp;nbsp; It talks about the ways the media,&amp;nbsp;sales, and retail personel&amp;nbsp;manipulate us without us being the wiser.&lt;br /&gt;&lt;br /&gt;In the section I just finished reading, a retired auto salesman is describing to the author a popular&amp;nbsp;way to&amp;nbsp;break through the buyers defenses and make them more responsive to coercion. &lt;blockquote&gt;&lt;font face="Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;As Miller explained, "Somewhere during that demo drive, while you're making your trial close -- not asking for the sale yet -- you ask him, in these exact words, 'Is this the type of vehicle you would like to own?' It happens.&amp;nbsp; And anyone will tell you this, the vacuum cleaner salesman, the carpet salesman - the customer has a split second of insanity.&amp;nbsp; The mind goes blank, the body paralyzes, the eyes get glassy, dilated.&amp;nbsp; And you'd be surprised how many people have an accident at just that moment!&amp;nbsp; Ask any car dealer.&amp;nbsp; We always joke about it."&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;How could a single question provoke such an extreme response?&amp;nbsp; Partly because it relies on disassociation.&amp;nbsp; The customer is already in a vehicle, being asked to imagine himself owning the same type of vehicle.&amp;nbsp; It's the same as if I asked you if this is the kind of book you can imagine yourself reading.&amp;nbsp; Your current situation is reframed in fantasy.&amp;nbsp; It creates a momentary confusion, or disassociation, from the activity you're involved in.&amp;nbsp; That's why so many drivers crash.&amp;nbsp; They are no longer just driving the car but imagining themselves driving the car.&amp;nbsp; It is a momtary loss of awareness, during which the customer's defense mechanisms and rational processes are disabled.&lt;/font&gt; &lt;/blockquote&gt;So far I think the book is great and would recomment it to everyone. I'll let you know more as I read on.</description><pubDate>Wed, 28 Jul 2004 01:13:55 GMT</pubDate><guid isPermaLink="false">a0339cd3-e55c-4b55-a18b-0fc0ec55e4b1</guid><link>http://joel.net/me/weblog.aspx?weblogs_show=a0339cd3-e55c-4b55-a18b-0fc0ec55e4b1</link><comments>http://joel.net/me/weblog.aspx?weblogs_show=a0339cd3-e55c-4b55-a18b-0fc0ec55e4b1</comments></item></channel></rss>