<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>This is not a mundane detail, Michael. &#187; www</title>
	<atom:link href="http://blog.mikejestes.com/tag/www/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mikejestes.com</link>
	<description></description>
	<lastBuildDate>Mon, 04 Jul 2011 02:51:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>I need to follow through on more of my goofy ideas</title>
		<link>http://blog.mikejestes.com/2008/10/20/i-need-to-follow-through-on-more-of-my-goofy-ideas/</link>
		<comments>http://blog.mikejestes.com/2008/10/20/i-need-to-follow-through-on-more-of-my-goofy-ideas/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 06:01:53 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/?p=173</guid>
		<description><![CDATA[A few days ago I was explaining to my friend what Twitter is. He thought it sounded similar to a message board I made back in 2001 for my friends to keep in touch after we all left for college. &#8230; <a href="http://blog.mikejestes.com/2008/10/20/i-need-to-follow-through-on-more-of-my-goofy-ideas/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few days ago I was explaining to my friend what Twitter is. He thought it sounded similar to a <a href="http://friends.belchinwaffles.com/">message board</a> I made back in 2001 for my friends to keep in touch after we all left for college. At the time I wasn&#8217;t really familiar with blogging. I believe this was the first real code I wrote in PHP. It definately served it&#8217;s purpose well for a few years. As you can see from <a href="http://friends.belchinwaffles.com/server.php">the stats</a>, usage has died off completely. I think this concept was more along the lines of the blog aggregation &#8220;planets&#8221; (<a href="http://planet.restek.wwu.edu/">ResTek</a>, <a href="http://planet.mozilla.org/">Mozilla</a>, <a href="http://planet.gnome.org/">gnome</a>, etc) of today.</p>
<p>I will now claim that I almost invented Twitter.</p>
<p>Back in 2003, AIM was the hot shit with people living in the dorms. I really liked how much effort people put into their away messages. I remember a peticular away message of mine declaring how awesome last nights party must of been because I woke up and there was a beer bottle in my fish tank.* My idea was to write a script that logged the away messages of everyone I knew and stored them in a DB. I got really tangled up in implementation details. I tried using perl and some module that could connect to AIM. For some reason I thought I needed to use threading in perl. This became a giant nightmare as I knew very little of perl or threading at the time. Needless to say, the script never made it into a cron, and the rest was not history. I can&#8217;t help but wonder what kind of website I would have thrown together once I started gathering data&#8230;</p>
<p>These days I notice that people still put a lot into their status messages on gchat, AIM, etc. And facebook has fully embraced status updates as well. It took me a while to warm up to Twitter, but I&#8217;m really liking it now. How else am I supposed to get updates on what my friends are doing from a hut in some tiny village in Uganda that has no electricity or running water?</p>
<p>* I thought it would be a good addition to the tank so I drunkenly boiled it and placed the sterile bottle in the tank. It was a clear Corona bottle, and actually did work pretty well in a fish tank.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/10/20/i-need-to-follow-through-on-more-of-my-goofy-ideas/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash for mac is bad for your HTTP_HOST</title>
		<link>http://blog.mikejestes.com/2008/04/18/flash-for-mac-is-bad-for-your-http_host/</link>
		<comments>http://blog.mikejestes.com/2008/04/18/flash-for-mac-is-bad-for-your-http_host/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 19:05:02 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/?p=143</guid>
		<description><![CDATA[I&#8217;ve been testing the super awesome swfupload code for some projects at work. I have nice progress bars working and you can queue up multiple files. It&#8217;s sweet. I tested out my code in Opera, Firefox, Safari 3, IE 7, &#8230; <a href="http://blog.mikejestes.com/2008/04/18/flash-for-mac-is-bad-for-your-http_host/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been testing the super awesome <a href="http://swfupload.org/">swfupload</a> code for some projects at work. I have nice progress bars working and you can queue up multiple files. It&#8217;s sweet. I tested out my code in Opera, Firefox, Safari 3, IE 7, etc on Windows and Linux. Working great.</p>
<p>Of course, an hour before an important meeting is when we discover it doesn&#8217;t work on any mac browser. The flash debug output shows our site initialization code is just throwing a fit. No DB access settings can be found. Doesn&#8217;t make any sense why an HTTP request from flash on a mac would break our app.</p>
<p>Here&#8217;s the basics of how our our setup switches dev/production settings:</p>
<pre lang="php">if ($_SERVER['HTTP_HOST'] == 'example.mydesktop') {
    // LOCAL DEV SETTINGS
} else if ($_SERVER['HTTP_HOST'] == 'example.com') {
    // PRODUCTION SITE SETTINGS
}</pre>
<p>It makes considerations for www. etc.  The problem in this case is that flash is adding :80 to the HTTP Host header.  Instead of</p>
<pre>GET /path/to/file HTTP/1.1
Host: example.com</pre>
<p>Flash for mac likes to add</p>
<pre>GET /path/to/file HTTP/1.1
Host: example.com:80</pre>
<p>This will cause &#8216;example.com:80&#8242; to show up in the php $_SERVER['HTTP_HOST'] variable.  You can see how this would break simple host detection.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/04/18/flash-for-mac-is-bad-for-your-http_host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrabble word search</title>
		<link>http://blog.mikejestes.com/2008/04/16/scrabble-word-search/</link>
		<comments>http://blog.mikejestes.com/2008/04/16/scrabble-word-search/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 01:26:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/?p=142</guid>
		<description><![CDATA[While playing scrabulous online recently, I found myself needing a site to search for words that start or end which what I have in my scrabble letters. I didn&#8217;t find anything good so I decided I would write my own. &#8230; <a href="http://blog.mikejestes.com/2008/04/16/scrabble-word-search/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While playing scrabulous online recently, I found myself needing a site to search for words that start or end which what I have in my scrabble letters. I didn&#8217;t find anything good so I decided I would write my own. Not sure how to exactly describe the feature, I decided to call it <a title="Scrabble word search site" href="http://scrabblelookup.com/">scrabble lookup</a>. You search for any part of a word, and it gives you lists of all the words that start with that phrase or end with that phrase. The lists show the length of the word and points earned, assuming no multipliers. It takes into consideration the maximum number of letters in scrabble which means that some words you would need the blank letters to spell.</p>
<p>And yes, there are <a href="http://scrabblelookup.com/word/portion/search/q">words that end in q</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/04/16/scrabble-word-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greasemonkey script for twitter</title>
		<link>http://blog.mikejestes.com/2008/04/06/greasemonkey-script-for-twitter/</link>
		<comments>http://blog.mikejestes.com/2008/04/06/greasemonkey-script-for-twitter/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 03:45:37 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/?p=141</guid>
		<description><![CDATA[A few weeks ago I was thinking about how hilarious it would be to view twitter pages with OMG: prepended to all the messages. I&#8217;ve had a post-it note attached to my monitor ever since that has 3 words: twitter &#8230; <a href="http://blog.mikejestes.com/2008/04/06/greasemonkey-script-for-twitter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I was thinking about how hilarious it would be to view twitter pages with <strong>OMG:</strong> prepended to all the messages. I&#8217;ve had a post-it note attached to my monitor ever since that has 3 words: twitter greasemonkey omg.</p>
<p>I present my first greasemonkey script: <a href="http://mikejestes.com/greasemonkey/twitter.omg.user.js">twitter omg</a>.</p>
<p>To be honest, I&#8217;ve never actually installed greasemonkey before. Writing the script was quite fun. I&#8217;ll be looking for opportunities to make a script that is actually useful&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/04/06/greasemonkey-script-for-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick www. survey</title>
		<link>http://blog.mikejestes.com/2008/03/14/quick-www-survey/</link>
		<comments>http://blog.mikejestes.com/2008/03/14/quick-www-survey/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 00:41:32 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/2008/03/14/quick-www-survey/</guid>
		<description><![CDATA[I&#8217;ve been trying to pay attention to sites that either add a www or remove www from their domain. For example http://www.reddit.com/ turns into http://reddit.com/ or http://cnn.com/ turns into http://www.cnn.com/. I&#8217;ve been defaulting any new domains I setup to remove &#8230; <a href="http://blog.mikejestes.com/2008/03/14/quick-www-survey/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to pay attention to sites that either add a www or remove www from their domain.  For example <a href="http://www.reddit.com/">http://www.reddit.com/</a> turns into http://reddit.com/ or <a href="http://cnn.com/">http://cnn.com/</a> turns into http://www.cnn.com/.</p>
<p>I&#8217;ve been defaulting any new domains I setup to remove the www. Remember, <a href="http://no-www.org/">www. is deprecated</a>.</p>
<p>Here&#8217;s a quick survey of some popular sites:<br />
<center></p>
<table cellpadding="2" cellspacing="2">
<tr>
<td>adobe.com</td>
<td>adds www</td>
</tr>
<tr>
<td>amazon.com</td>
<td>adds www</td>
</tr>
<tr>
<td>bbc.co.uk</td>
<td>adds www</td>
</tr>
<tr>
<td>bloglines.com</td>
<td>adds www</td>
</tr>
<tr>
<td>blogspot.com</td>
<td>adds www</td>
</tr>
<tr>
<td>cnn.com</td>
<td>adds www</td>
</tr>
<tr>
<td>engadget.com</td>
<td>adds www</td>
</tr>
<tr>
<td>facebook.com</td>
<td>adds www</td>
</tr>
<tr>
<td>forbes.com</td>
<td>adds www</td>
</tr>
<tr>
<td>google.com</td>
<td>adds www</td>
</tr>
<tr>
<td>last.fm</td>
<td>adds www</td>
</tr>
<tr>
<td>microsoft.com</td>
<td>adds www</td>
</tr>
<tr>
<td>mozilla.com</td>
<td>adds www</td>
</tr>
<tr>
<td>msnbc.msn.com</td>
<td>adds www</td>
</tr>
<tr>
<td>myspace.com</td>
<td>adds www</td>
</tr>
<tr>
<td>politico.com</td>
<td>adds www</td>
</tr>
<tr>
<td>salon.com</td>
<td>adds www</td>
</tr>
<tr>
<td>techcrunch.com</td>
<td>adds www</td>
</tr>
<tr>
<td>w3.org</td>
<td>adds www</td>
</tr>
<tr>
<td>washingtonpost.com</td>
<td>adds www</td>
</tr>
<tr>
<td>whitehouse.gov</td>
<td>adds www</td>
</tr>
<tr>
<td>wired.com</td>
<td>adds www</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>creativecommons.org</td>
<td>removes www</td>
</tr>
<tr>
<td>digg.com</td>
<td>removes www</td>
</tr>
<tr>
<td>gizmodo.com</td>
<td>removes www</td>
</tr>
<tr>
<td>news.yahoo.com</td>
<td>removes www</td>
</tr>
<tr>
<td>reddit.com</td>
<td>removes www</td>
</tr>
<tr>
<td>slashdot.org</td>
<td>removes www</td>
</tr>
<tr>
<td>tinyurl.com</td>
<td>removes www</td>
</tr>
<tr>
<td>twitter.com</td>
<td>removes www</td>
</tr>
<tr>
<td>wordpress.org</td>
<td>removes www</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>blogger.com</td>
<td>no change</td>
</tr>
<tr>
<td>boingboing.net</td>
<td>no change</td>
</tr>
<tr>
<td>boston.com</td>
<td>no change</td>
</tr>
<tr>
<td>delicious.com</td>
<td>no change</td>
</tr>
<tr>
<td>flickr.com</td>
<td>no change</td>
</tr>
<tr>
<td>geocities.com</td>
<td>no change</td>
</tr>
<tr>
<td>gmail.com</td>
<td>no change</td>
</tr>
<tr>
<td>imdb.com</td>
<td>no change</td>
</tr>
<tr>
<td>nytimes.com</td>
<td>no change</td>
</tr>
<tr>
<td>prweb.com</td>
<td>no change</td>
</tr>
<tr>
<td>technorati.com</td>
<td>no change</td>
</tr>
<tr>
<td>youtube.com</td>
<td>no change</td>
</tr>
</table>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/03/14/quick-www-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Belchin&#8217; Waffles is back!</title>
		<link>http://blog.mikejestes.com/2008/03/11/belchin-waffles-is-back/</link>
		<comments>http://blog.mikejestes.com/2008/03/11/belchin-waffles-is-back/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 02:19:49 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/2008/03/11/belchin-waffles-is-back/</guid>
		<description><![CDATA[It&#8217;s been a year or so since the domains dropped off the face of the Internet (I moved and was too lazy to put them up). They&#8217;re back! The Original Belchin&#8217; Waffles Zine: http://belchinwaffles.com/ Friend message board (the original twitter, &#8230; <a href="http://blog.mikejestes.com/2008/03/11/belchin-waffles-is-back/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a year or so since the domains dropped off the face of the Internet (I moved and was too lazy to put them up). They&#8217;re back!</p>
<p>The Original Belchin&#8217; Waffles Zine: <a href="http://belchinwaffles.com/">http://belchinwaffles.com/</a></p>
<p>Friend message board (the original twitter, lol): <a href="http://friends.belchinwaffles.com/">http://friends.belchinwaffles.com/</a></p>
<p>Douchey party pictures, etc: <a href="http://friends.belchinwaffles.com/gallery/">http://friends.belchinwaffles.com/gallery/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/03/11/belchin-waffles-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 8 Beta</title>
		<link>http://blog.mikejestes.com/2008/03/07/ie-8-beta/</link>
		<comments>http://blog.mikejestes.com/2008/03/07/ie-8-beta/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 23:24:02 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.mikejestes.com/2008/03/07/ie-8-beta/</guid>
		<description><![CDATA[IE 8 beta is out. Looks like they&#8217;re making great strides to improve their support for standards. I love that you can install the beta with out the need to uninstall it when it breaks sites. I&#8217;m hoping they keep &#8230; <a href="http://blog.mikejestes.com/2008/03/07/ie-8-beta/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.mikejestes.com/wp-content/uploads/2008/03/ie8_1.png" title="IE 8 Features"></a></p>
<p style="text-align: center"><a href="http://blog.mikejestes.com/wp-content/uploads/2008/03/ie8_1.png" title="IE 8 Features"><img src="http://blog.mikejestes.com/wp-content/uploads/2008/03/ie8_1.png" alt="IE 8 Features" /></a></p>
<p>IE 8 beta is out. Looks like they&#8217;re making great strides to improve their support for standards. I love that you can install the beta with out the need to uninstall it when it breaks sites. I&#8217;m hoping they keep the Emulate IE7 button for the final release. Or somehow tuck it away in a menu so the option is still there. An amazing feature for web developers would be an additional Emulate IE6 feature. Testing sites in Internet Explorer would be a breeze if that was the case. I haven&#8217;t played with the developer tools much, but I like how much easier they&#8217;re making JS debugging for IE. <a href="http://blogs.msdn.com/ie/archive/2008/03/07/improved-productivity-through-internet-explorer-8-developer-tools.aspx">Here&#8217;s a post</a> from the IE Blog about the new developer tools</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mikejestes.com/2008/03/07/ie-8-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

