<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>blog [mike atlas]</title>
	<atom:link href="http://www.mikeatlas.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikeatlas.com/blog</link>
	<description></description>
	<pubDate>Fri, 04 Apr 2008 13:51:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Siamese Mike</title>
		<link>http://www.mikeatlas.com/blog/2008/02/10/siamese-mike/</link>
		<comments>http://www.mikeatlas.com/blog/2008/02/10/siamese-mike/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 00:11:42 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[MassWrestling]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2008/02/10/siamese-mike/</guid>
		<description><![CDATA[Someone&#8217;s got a sense of humor on MassWrestling :)

]]></description>
			<content:encoded><![CDATA[<p>Someone&#8217;s got a sense of humor on MassWrestling :)</p>
<p><img src="http://img528.imageshack.us/img528/6426/picture1rw9.png"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2008/02/10/siamese-mike/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Odyssey Years</title>
		<link>http://www.mikeatlas.com/blog/2007/11/14/the-odyssey-years/</link>
		<comments>http://www.mikeatlas.com/blog/2007/11/14/the-odyssey-years/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 22:46:49 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Introspection]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/11/14/the-odyssey-years/</guid>
		<description><![CDATA[Have you ever thought to yourself, &#8220;what the frig am I doing with my life,&#8221; and not had a good answer? Ever wonder what you&#8217;re going to do with your new degree in sociology? Do you parents and other family members worry about this as well?
The whole notion of graduating from school, getting a job, [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever thought to yourself, &#8220;what the frig am I doing with my life,&#8221; and not had a good answer? Ever wonder what you&#8217;re going to do with your new degree in sociology? Do you parents and other family members worry about this as well?</p>
<p>The whole notion of graduating from school, getting a job, getting married, and settling down after college is outdated, and we&#8217;re the first real generation where the lack of absolute direction is more common to all of us then ever before.</p>
<p>This is only strange, though, when you look at our situation through the lens of decades popular culture and traditional values. Global free trade and the internet has put the world at our fingertips; our parent&#8217;s generation hardly dreamed of trekking through South America with a best friend from Germany that they met in a video game, or doing a year of work in Singapore. The information economy that has replaced manufacturing and traditional labor jobs has given way to jobs where you&#8217;re looked at as a weirdo if you&#8217;re at the company for more than a few years.</p>
<p>Sure, you probably <i>eventually</i> want to settle down and act like boring adults and raise a family, but the gap in the number of years between now and then is far greater than your parents likely had.</p>
<p>I&#8217;ve recently embraced this idea as a manifesto of sorts - embracing the lack of direction, rather than fret over it. There was an op-ed piece recently that has really helped me validate what our generation is experiencing:</p>
<p><a href="http://decenturl.com/iht/odyssey-years">Ed Brooks: The Odyssey Years</a></p>
<p>So to everyone who doesn&#8217;t know where they&#8217;re going or how to go about it, don&#8217;t worry - it&#8217;s par for the course these days. Don&#8217;t let your parents convince you otherwise that your lack of direction will be your downfall. Embrace it and live your life as it comes&#8230;there isn&#8217;t a better time in the world to get out there and get on with your odyssey.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/11/14/the-odyssey-years/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A simple FFT in Python</title>
		<link>http://www.mikeatlas.com/blog/2007/10/09/a-simple-fft-in-python/</link>
		<comments>http://www.mikeatlas.com/blog/2007/10/09/a-simple-fft-in-python/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 23:57:20 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/10/09/a-simple-fft-in-python/</guid>
		<description><![CDATA[I wrote this to check my pen-and-paper FFT (Fast Finite Fourier) problems for my Algorithms and Data homework. It follows a pseudocode implementation given in my textbook, from which I have no idea where it was derived from.

#!/sw/bin/python
i = complex(0,1)
ni = complex(0,-1)

def fft(a,w):
	if (w==1):
		return a
	s =  fft([a[z] for z in range(0,len(a),2)], w**2)
	sp = fft([a[z] [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote this to check my pen-and-paper FFT (Fast Finite Fourier) problems for my Algorithms and Data homework. It follows a pseudocode implementation given in my textbook, from which I have no idea where it was derived from.</p>
<div class="highlight" >
<pre><span style="color: #60a0b0; font-style: italic">#!/sw/bin/python</span>
i <span style="color: #666666">=</span> <span style="color: #007020">complex</span>(<span style="color: #40a070">0</span>,<span style="color: #40a070">1</span>)
ni <span style="color: #666666">=</span> <span style="color: #007020">complex</span>(<span style="color: #40a070">0</span>,<span style="color: #666666">-</span><span style="color: #40a070">1</span>)

<span style="color: #007020; font-weight: bold">def</span> <span style="color: #06287e">fft</span>(a,w):
	<span style="color: #007020; font-weight: bold">if</span> (w<span style="color: #666666">==</span><span style="color: #40a070">1</span>):
		<span style="color: #007020; font-weight: bold">return</span> a
	s <span style="color: #666666">=</span>  fft([a[z] <span style="color: #007020; font-weight: bold">for</span> z <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">0</span>,<span style="color: #007020">len</span>(a),<span style="color: #40a070">2</span>)], w<span style="color: #666666">**</span><span style="color: #40a070">2</span>)
	sp <span style="color: #666666">=</span> fft([a[z] <span style="color: #007020; font-weight: bold">for</span> z <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">1</span>,<span style="color: #007020">len</span>(a),<span style="color: #40a070">2</span>)], w<span style="color: #666666">**</span><span style="color: #40a070">2</span>)
	n <span style="color: #666666">=</span> <span style="color: #007020">len</span>(a)
	r<span style="color: #666666">=</span>[]
	<span style="color: #007020; font-weight: bold">for</span> j <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">0</span>,(n<span style="color: #666666">/</span><span style="color: #40a070">2</span>)):
		r<span style="color: #666666">.</span>insert(j, (s[j] <span style="color: #666666">+</span> (w<span style="color: #666666">**</span>j <span style="color: #666666">*</span> sp[j])))
		r<span style="color: #666666">.</span>insert(j<span style="color: #666666">+</span>(n<span style="color: #666666">/</span><span style="color: #40a070">2</span>), s[j] <span style="color: #666666">-</span> (w<span style="color: #666666">**</span>j <span style="color: #666666">*</span> sp[j]))
	<span style="color: #007020; font-weight: bold">return</span> r

<span style="color: #007020; font-weight: bold">def</span> <span style="color: #06287e">mult</span>(poly1, poly2):
	a<span style="color: #666666">=</span> <span style="color: #007020">len</span>(poly1)
	b<span style="color: #666666">=</span> <span style="color: #007020">len</span>(poly2)
	<span style="color: #007020; font-weight: bold">if</span> a <span style="color: #666666">&gt;</span> b:
		<span style="color: #007020; font-weight: bold">for</span> x <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">0</span>, a<span style="color: #666666">-</span>b):
			poly2<span style="color: #666666">.</span>append(<span style="color: #40a070">0</span>)
	<span style="color: #007020; font-weight: bold">if</span> b <span style="color: #666666">&gt;</span> a:
		<span style="color: #007020; font-weight: bold">for</span> x <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">0</span>, b<span style="color: #666666">-</span>a):
			poly1<span style="color: #666666">.</span>append(<span style="color: #40a070">0</span>)
	fftval1 <span style="color: #666666">=</span> fft(poly1,i)
	fftval2 <span style="color: #666666">=</span> fft(poly2,i)
	multip <span style="color: #666666">=</span> [fftval1[x]<span style="color: #666666">*</span>fftval2[x] <span style="color: #007020; font-weight: bold">for</span> x <span style="color: #007020; font-weight: bold">in</span> <span style="color: #007020">range</span>(<span style="color: #40a070">0</span>,<span style="color: #007020">len</span>(fftval1))]
	inverse <span style="color: #666666">=</span> [ (<span style="color: #40a070">1.0</span><span style="color: #666666">/</span>(<span style="color: #007020">len</span>(multip))<span style="color: #666666">*</span>x)<span style="color: #666666">.</span>real <span style="color: #007020; font-weight: bold">for</span> x <span style="color: #007020; font-weight: bold">in</span> fft(multip,ni)]
	<span style="color: #007020; font-weight: bold">return</span> inverse

<span style="color: #60a0b0; font-style: italic">#test</span>
<span style="color: #007020; font-weight: bold">assert</span> mult([<span style="color: #40a070">1</span>,<span style="color: #40a070">1</span>,<span style="color: #40a070">2</span>,<span style="color: #40a070">0</span>], [<span style="color: #40a070">2</span>,<span style="color: #40a070">3</span>,<span style="color: #40a070">0</span>,<span style="color: #40a070">0</span>]) <span style="color: #666666">==</span> [<span style="color: #40a070">2</span>,<span style="color: #40a070">5</span>,<span style="color: #40a070">7</span>,<span style="color: #40a070">6</span>]
</pre>
</div>
<p>Apparently there is a fully featured FFT library in <a href="http://www.scipy.org/doc/api_docs/scipy.fftpack.html">scipy</a>, so really I am just happy to have something on my own that works for my needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/10/09/a-simple-fft-in-python/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boo to HSBC</title>
		<link>http://www.mikeatlas.com/blog/2007/09/26/boo-to-hsbc/</link>
		<comments>http://www.mikeatlas.com/blog/2007/09/26/boo-to-hsbc/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 00:36:03 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/09/26/boo-to-hsbc/</guid>
		<description><![CDATA[HSBC Direct has adjusted your Online Savings Account interest rate to 4.50% APY.
Adjusted? That&#8217;s just a nice way to say, &#8220;lowered by half a point&#8221;.
Too bad no the other major players (ING) in high yield savings accounts aren&#8217;t offering anything better.
I guess this should have been expected with the fed lowering the interest rate by [...]]]></description>
			<content:encoded><![CDATA[<p><i>HSBC Direct has adjusted your Online Savings Account interest rate to 4.50% APY.</i></p>
<p>Adjusted? That&#8217;s just a nice way to say, &#8220;<i>lowered</i> by half a point&#8221;.</p>
<p>Too bad no the other major players (ING) in high yield savings accounts aren&#8217;t offering anything better.</p>
<p>I guess this should have been expected with <a href="http://www.bloomberg.com/apps/news?pid=20601087&#038;refer=home&#038;sid=aV.iQCJeskKU">the fed lowering the interest rate by half a point</a> 10 days ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/09/26/boo-to-hsbc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Still happy with Apple.</title>
		<link>http://www.mikeatlas.com/blog/2007/09/24/still-happy-with-apple/</link>
		<comments>http://www.mikeatlas.com/blog/2007/09/24/still-happy-with-apple/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 17:25:57 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/09/24/still-happy-with-apple/</guid>
		<description><![CDATA[First, let me preface this that I&#8217;ve wanted a PowerMac (and then subsequently a Macbook Pro) ever since I arrived at college. It&#8217;s clear that they were powerhouse mobile computers, and they were sexy at that.
I finally got myself a MacBook about year ago. It has replaced my PC, which is now in pieces in [...]]]></description>
			<content:encoded><![CDATA[<p>First, let me preface this that I&#8217;ve wanted a PowerMac (and then subsequently a Macbook Pro) ever since I arrived at college. It&#8217;s clear that they were powerhouse mobile computers, and they were sexy at that.</p>
<p>I finally got myself a MacBook about year ago. It has replaced my PC, which is now in pieces in the closet. It&#8217;s totally amazing, and for the few things that I&#8217;ve still needed Windows for, Parallels desktop has filled the void.</p>
<p>A year later, though, I started running into some issues. My Mighty Mouse fell off the coffee table (about 20&#8243;) and broke. That was a quick $70 down the drain. Then the LCD backlight started flickering randomly when on low brightness. And then the power supply refused to charge the battery. And then the top panel that rests over the keyboard started to warp, and it cracked on the edges. </p>
<p>I could not believe all this. So I took it in to the local Genius Bar, and had it serviced. I also brought in my broken Mighty Mouse.</p>
<p>A week later, for the total cost of $0, I have now:</p>
<p>- New keyboard installed, bonus<br />
- New trackpad installed (1 year of finger oil stains gone), bonus<br />
- New keyboard panel installed - replaced cracked edges<br />
- New PMU installed (Power management unit, fixes battery charging issue)<br />
- New MLB installed (Main Logic Board, fixes LCD backlight flicker)<br />
- New Mighty Mouse</p>
<p>I&#8217;m so happy&#8230;my laptop now looks and feels new again for free (one week without the laptop was painful, though). If I choose to sell the laptop, I can now advertise it as being in excellent condition, rather than fair. I wouldn&#8217;t mind upgrading to a Macbook Pro as a graduation present to myself, perhaps.</p>
<p>Cheers, Apple. I&#8217;m still a happy customer now. My faith was shaken in the quality, but the service was exceptional. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/09/24/still-happy-with-apple/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PayPal&#8217;s NVP API - sample Python wrapper</title>
		<link>http://www.mikeatlas.com/blog/2007/09/14/paypals-nvp-api-sample-python-wrapper/</link>
		<comments>http://www.mikeatlas.com/blog/2007/09/14/paypals-nvp-api-sample-python-wrapper/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 19:03:17 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<category><![CDATA[LowSingle]]></category>

		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/09/14/paypals-nvp-api-sample-python-wrapper/</guid>
		<description><![CDATA[I was unable to find any Python samples for using the PayPal NVP API, so I went to work writing a helper class for my needs. Hopefully this should be enough to help get others started at least.
This is not a complete reference! Be sure to understand what this class is doing before you try [...]]]></description>
			<content:encoded><![CDATA[<p>I was unable to find any Python samples for using the PayPal <a href="https://www.paypal.com/IntegrationCenter/ic_nvp.html">NVP API</a>, so I went to work writing a helper class for my needs. Hopefully this should be enough to help get others started at least.</p>
<p>This is not a complete reference! Be sure to understand what this class is doing before you try it on production servers! &#8230;use it at your own peril.</p>
<p><a href="http://python.pastebin.com/f782d48d9">http://python.pastebin.com/f782d48d9</a></p>
<p>Also be sure to check the <a href="https://www.paypal.com/en_US/ebook/PP_NVPAPI_DeveloperGuide/toc.html">complete reference doc</a> for any error codes returned, as the doc is very helpful.</p>
<p><strong>Update April 3rd, 2008:</strong> I&#8217;m pleased to discover that this has made its way around the internet:<br />
<a href="http://iua-share.upf.edu/svn/nightingale/trunk/freesound/utils/paypalwrapper.py">The Freesound Project</a> based out of Belgium is reimplementing their site in Python and they are using my reference.<br />
<a href="http://code.google.com/p/pypaypal/source/browse/trunk/contrib/nvp_wrapper_class_example.py">A Google Code project called PyPayPal</a> is using it as a reference.<br />
<a href="http://svn.gocept.com/repos/gocept/gocept.paypal/trunk/src/gocept/paypal/paypal.py">GoCept</a>, a German based company, seems to have implemented it in their content management system.<br />
<br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/09/14/paypals-nvp-api-sample-python-wrapper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Satan in modern day London?</title>
		<link>http://www.mikeatlas.com/blog/2007/04/10/satan-in-modern-day-london/</link>
		<comments>http://www.mikeatlas.com/blog/2007/04/10/satan-in-modern-day-london/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 14:58:37 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/04/10/satan-in-modern-day-london/</guid>
		<description><![CDATA[For those who have read the book, the recent news article about a cat that rides the bus to the fish market in London is the closest living literary reference that Bulgakov&#8217;s Master and the Margarita characters Behemoth (and Satan) have arrived in London as it could possibly get!



Ivan was so struck by the cat&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>For those who have read the book, the recent news article about <a href="http://www.dailymail.co.uk/pages/live/articles/news/news.html?in_article_id=447527&#038;in_page_id=1770&#038;in_page_id=1770&#038;expand=true">a cat that rides the bus to the fish market in London</a> is the closest living literary reference that Bulgakov&#8217;s <em>Master and the Margarita</em> characters <a href="http://en.wikipedia.org/wiki/The_Master_and_Margarita#Woland_and_his_retinue">Behemoth (and Satan) have arrived in London</a> as it could possibly get!<br />
<center><br />
<img src="http://img101.imageshack.us/img101/3320/travelingcatnti468x376mc3.th.jpg" border="0"/><br />
</center></p>
<blockquote><p>Ivan was so struck by the cat&#8217;s behaviour that he froze  motionless by the <strong>grocery store on the corner</strong>, and here he was struck for a second time, but much more strongly, by  the conductress&#8217;s behaviour. <strong>As soon as she saw the cat getting into the tram-car,</strong> she shouted with a malice that even made her shake: &#8216;No cats allowed! Nobody with cats allowed!&#8217; Neither the conductress nor the passengers were struck by the essence of the matter: not just that a cat was boarding a tram-car, which would have been good enough, but that he was going to pay!</p></blockquote>
<p>from <a href="http://www.lib.ru/BULGAKOW/master97_engl.txt">The Chase, ch4</a></p>
<p>Woland is also described as having two different color eyes!</p>
<blockquote><p>Right eye  black, left - for some reason - green.</p></blockquote>
<p>from <a href="http://www.lib.ru/BULGAKOW/master97_engl.txt">Never Talk with Strangers, ch1</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/04/10/satan-in-modern-day-london/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Transparently outsourcing your RSS feeds to Feedburner</title>
		<link>http://www.mikeatlas.com/blog/2007/03/09/transparently-outsourcing-your-rss-feeds-to-feedburner/</link>
		<comments>http://www.mikeatlas.com/blog/2007/03/09/transparently-outsourcing-your-rss-feeds-to-feedburner/#comments</comments>
		<pubDate>Fri, 09 Mar 2007 17:44:14 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<category><![CDATA[MassWrestling]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/03/09/transparently-outsourcing-your-rss-feeds-to-feedburner/</guid>
		<description><![CDATA[MassWrestling.com gets about 90k requests to its RSS feeds every month, which eats up about 3GB of bandwidth transfers and puts extra load on the web server.
I saw a tip on Coding Horror Blog that it is a great idea to rewrite your RSS feeds to be syndicated by Feedburner. Unfortunately, the example given doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.masswrestling.com">MassWrestling.com</a> gets about 90k requests to its <a href="http://en.wikipedia.org/wiki/RSS_(file_format)">RSS</a> feeds every month, which eats up about 3GB of bandwidth transfers and puts extra load on the web server.</p>
<p>I saw a tip on <a href="http://www.codinghorror.com/blog/archives/000807.html">Coding Horror Blog</a> that it is a great idea to rewrite your RSS feeds to be syndicated by <a href="http://www.feedburner.com">Feedburner</a>. Unfortunately, the example given doesn&#8217;t quite work for MassWrestling.com&#8217;s <a href="http://www.e107.org">e107</a> feed URLs:</p>
<p><a href="http://www.masswrestling.com/cms/e107_plugins/rss_menu/rss.php?forumposts.2"><code>/cms/e107_plugins/rss_menu/rss.php?forumposts.2</code></a></p>
<p>So I spent some time relearning <a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html">Apache&#8217;s mod_rewrite</a>, and came up with the following lines to add to my <code>.htaccess</code> files:<br />
<font size="1"><code><br />
RewriteEngine On<br />
RewriteCond %{HTTP_USER_AGENT} !FeedBurner<br />
RewriteCond %{QUERY_STRING} ^forumposts\.1$<br />
RewriteRule ^rss\.php$ http://feeds.feedburner.com/masswrestling/posts_rss? [R=301]<br />
</code></font><br />
This rewrite sends all requests that are not FeedBurner&#8217;s http agent to Feedburner&#8217;s copy of my feed. The problem was figuring out that the question mark after the <code>rss.php?</code> is actually not matchable in the <code>RewriteRule</code> condition. Instead, you have to match it in a <code>RewriteCond</code> against the <code>%{QUERY_STRING}</code> variable. The replacement pattern requires a question mark at the end of it to ensure that mod_rewrite does not pass on the extra paremeters to the new URL.</p>
<p>So now:</p>
<p><code>rss.php?forumposts.2</code></p>
<p>redirects (301, permanently moved) to:</p>
<p><code>http://feeds.feedburner.com/masswrestling/posts_rss2</code></p>
<p>Let&#8217;s hope it knocks out the extra RSS traffic I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/03/09/transparently-outsourcing-your-rss-feeds-to-feedburner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dilbert fodder post comes true.</title>
		<link>http://www.mikeatlas.com/blog/2007/02/02/dilbert-fodder-post-comes-true/</link>
		<comments>http://www.mikeatlas.com/blog/2007/02/02/dilbert-fodder-post-comes-true/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 18:03:15 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2007/02/02/dilbert-fodder-post-comes-true/</guid>
		<description><![CDATA[Looking back at my post on April 14thth 2006, entitled Dilbert Fodder, I described a short interaction at my last coop job. Did Scott Adams get his idea from my blog post?

]]></description>
			<content:encoded><![CDATA[<p>Looking back at my post on April 14th<sup>th</sup> 2006, entitled <a href="http://www.mikeatlas.com/blog/2006/04/14/dilbert-fodder/">Dilbert Fodder</a>, I described a short interaction at my last coop job. Did Scott Adams get his idea from my blog post?</p>
<p><img src="http://img63.imageshack.us/img63/8485/dilbertve2.gif"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2007/02/02/dilbert-fodder-post-comes-true/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One of the weirdest emails I&#8217;ve ever receieved</title>
		<link>http://www.mikeatlas.com/blog/2006/12/07/one-of-the-weirdest-emails-ive-ever-receieved/</link>
		<comments>http://www.mikeatlas.com/blog/2006/12/07/one-of-the-weirdest-emails-ive-ever-receieved/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 06:28:34 +0000</pubDate>
		<dc:creator>mikeatlas</dc:creator>
		
		<category><![CDATA[MassWrestling]]></category>

		<guid isPermaLink="false">http://www.mikeatlas.com/blog/2006/12/07/one-of-the-weirdest-emails-ive-ever-receieved/</guid>
		<description><![CDATA[I often get random emails from people regarding MassWrestling.com. Sometimes I even get emails regarding the New England Prep School Wrestling website I allow to be hosted for free on our server (NEISWA Site). I don&#8217;t have much to do with the guys who run the NEISWA pages on my server - they run their [...]]]></description>
			<content:encoded><![CDATA[<p>I often get random emails from people regarding MassWrestling.com. Sometimes I even get emails regarding the New England Prep School Wrestling website I allow to be hosted for free on our server (<a href="http://prep.masswrestling.com">NEISWA Site</A>). I don&#8217;t have much to do with the guys who run the NEISWA pages on my server - they run their portion independently.</p>
<p>Anyways, here&#8217;s the strangest email I&#8217;ve ever gotten. I&#8217;ve bolded the outrageous claims. If this person is genuinely telling the truth on all accounts, then I apologize for my insensitivity. But this is just too crazy not to share. </p>
<p><i>Preface: I checked with the Prep administrators, and this person has a penchant for causing all sorts of trouble. <a href="http://disc.server.com/discussion.cgi?disc=90720;article=57489;title=The%20National%20Prep%20Wrestling%20Forum">Check this out for example</a>. Good stuff! </i></p>
<p>=====<br />
Wednesday, 12/6/06<br />
Subject: hi mike; asking for a 2nd chance on NEISWA site</p>
<p>Mike:</p>
<p>Late last year, my computer link-up was blocked from the NEISWA website because of some postings by my 2 nephews. My computer ID number or computer Link (or whatever you call it) was blocked, and that’s where I’ve been: out of touch regarding my grandson’s wrestling progress and his New England wrestling friends/partners.</p>
<p>As my nephews’ havoc caused this rift, I’m asking for a 2nd (and final) chance to be allowed to check the NEISWA site, forums, rankings and such, because it gives me the opportunity to follow my old school (redacted) and my grandson’s current school, along with their competitors.</p>
<p>I’d greatly appreciate the opportunity to link up again with the NEISWA website, as this is his final year in prep school. <b>As I have terminal cancer</b>, I will not likely be able to see or enjoy him at the collegiate level, <b>assuming I’m still alive in 2008</b>. the doctor’s won’t make any promises.</p>
<p>You won’t have to worry about any problems from me, again. My nephews are now (thank God!) away at college, and I won’t be hosting them over Christmas break as I did last year, which is when they raised a ruckus (somehow) on your site. I assure you that you’ll NEVER HAVE A PROBLEM WITH ME ON YOUR NEISWA SITE, ever.</p>
<p>And if you don’t want me to post, I won’t. I just want access to follow my grandson and his team’s progress, and to support the wrestlers and your site for its coverage of the great sport of wrestling.</p>
<p>Please reinstate me/my computer, and lift the “block” to my ID number/or ID link, or whatever it is that cuts off my access to the NEISWA site.</p>
<p>Kindly respond to this email ASAP, as the season’s already started and I feel terrible about not knowing how he’s doing. Thanks for giving me a 2nd chance.</p>
<p>Cordially yours,</p>
<p> [redacted]</p>
<p>ps: Tomorrow’s the 65th anniversary of the Japanese attack on Pearl Harbor. My father was one of the Navy men who survived this sneak attack that forced us into WW 2. many of his buddies/friends died that Sunday morning, died for the freedoms too many Americans take for granted.</p>
<p>I never take my freedoms, especially freedom of speech, for granted. If you’ll be kind enough to “lift the block” on my access to the NEISWA site for just the next four months, <b>I can not express to you how profoundly grateful I’ll be to you, Mike Atlas. Please, from this old man to you—a young, vibrant student at Northeastern University—have a little mercy on my for the “sins” of my irrepressible (and yes, sometimes irresponsible) nephews.</b></p>
<p><b>Do the right thing</b>, and let me follow the last year of my grandson’s New England prep school career on the NEISWA site. thanks again. <b>Godspeed!</b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mikeatlas.com/blog/2006/12/07/one-of-the-weirdest-emails-ive-ever-receieved/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
