<?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>blogwaffe &#187; news</title>
	<atom:link href="http://blogwaffe.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogwaffe.com</link>
	<description>Witness the firepower of this fully armed and operational blog station</description>
	<lastBuildDate>Mon, 25 Jul 2011 18:09:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Welcome to Firefox 5.0.1</title>
		<link>http://blogwaffe.com/2011/07/25/welcome-to-firefox-5-0-1/</link>
		<comments>http://blogwaffe.com/2011/07/25/welcome-to-firefox-5-0-1/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 18:09:04 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=869</guid>
		<description><![CDATA[It All Ends Here!]]></description>
			<content:encoded><![CDATA[<p><em>It All Ends Here!</em></p>
<p><a href="http://blogwaffe.com/wp-content/uploads/blogwaffe/2011/07/FF-HP8.png"><img src="http://blogwaffe.com/wp-content/uploads/blogwaffe/2011/07/FF-HP8-300x143.png" alt="" title="FF HP8" width="300" height="143" class="aligncenter size-medium wp-image-870" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2011/07/25/welcome-to-firefox-5-0-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Newtons are Fruit and Cake</title>
		<link>http://blogwaffe.com/2010/04/11/newtons-are-fruit-and-cake/</link>
		<comments>http://blogwaffe.com/2010/04/11/newtons-are-fruit-and-cake/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 20:17:06 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=792</guid>
		<description><![CDATA[Or at least they were. From what I can tell from 13 seconds of research, Newtons started out life as chewy cookies (advertised by a creepy giant dancing fig), then became fruit and cake (advertised by british accented families), and are now back to being &#8220;just cookies&#8221;. Fruit and Cake 4LIFE!]]></description>
			<content:encoded><![CDATA[<p>Or at least they were.</p>
<p><a href="http://blogwaffe.com/wp-content/uploads/blogwaffe/2010/04/Chewy-Cookes-e1271014795534.jpg"><img src="http://blogwaffe.com/wp-content/uploads/blogwaffe/2010/04/Chewy-Cookes-e1271014795534-300x130.jpg" alt="Picture of Fig Newton Packaging - April 2010" title="Chewy Cookes" width="300" height="130" class="aligncenter size-medium wp-image-793" /></a></p>
<p>From what I can tell from 13 seconds of research, Newtons started out life as chewy cookies (advertised by a creepy giant dancing fig), then became fruit and cake (advertised by british accented families), and are now back to being &#8220;just cookies&#8221;.</p>
<p>Fruit and Cake 4LIFE!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2010/04/11/newtons-are-fruit-and-cake/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Open Letter to Web Developers on Percent-Encoding</title>
		<link>http://blogwaffe.com/2010/02/07/an-open-letter-to-web-developers-on-percent-encoding/</link>
		<comments>http://blogwaffe.com/2010/02/07/an-open-letter-to-web-developers-on-percent-encoding/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 10:43:36 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=719</guid>
		<description><![CDATA[Dear web developers, Please understand the difference between the encoding called for in application/x-www-form-urlencoded encoded data [1] and the encoding called for in URIs (and how that encoding applies to URIs in the http/https scheme). In particular, note the difference in how spaces are treated. The former encodes them as +, the later as %20. [...]]]></description>
			<content:encoded><![CDATA[<p>Dear web developers,</p>
<p>Please understand the difference between the encoding called for in <code><a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1">application/x-www-form-urlencoded</a></code> encoded data [<a id="foot-ref-719-1" href="#foot-719-1">1</a>] and the encoding called for in <a href="http://tools.ietf.org/html/rfc3986">URI</a>s (and how that encoding applies to URIs in the http/https scheme).</p>
<p>In particular, note the difference in how spaces are treated.  The former encodes them as <code>+</code>, the later as <code>%20</code>.</p>
<p>Understand also how your web server processes different pieces of URLs.  Pay particular attention to your web server&#8217;s treatment of plus signs.  <a href="http://php.net">PHP</a>, for example, interprets &#8220;<code>$_GET</code>&#8221; data (the data drawn from the query component of the URI) as though it were <code>application/x-www-form-urlencoded</code> and converts those plus signs to spaces [<a id="foot-ref-719-2" href="#foot-719-2">2</a>].</p>
<p>Now that you know that the different encoding methods encode spaces differently and that the different decoding methods decode pluses differently, make sure you&#8217;re being consistent.</p>
<p>Because when I type into your website my email address with its plus sign in it, I expect things to work.</p>
<p>Love,<br />
mdawaffe</p>
<p>[<span id="foot-719-1">1</span>] More details in <a href="http://www.w3.org/TR/html5/">HTML5</a>&#8216;s definition of the <a href="http://www.w3.org/TR/html5/forms.html#application-x-www-form-urlencoded-encoding-algorithm"><code> application/x-www-form-urlencoded</code> encoding algorithm</a>. <a href="#foot-ref-719-1">&#x2191;</a></p>
<p>[<span id="foot-719-2">2</span>] See the difference between <code><a href="http://php.net/manual/function.urlencode.php">urlencode()</a></code>/<code><a href="http://php.net/manual/function.urldecode.php">urldecode()</a></code> and <code><a href="http://php.net/manual/function.rawurlencode.php">rawurlencode()</a></code>/<code><a href="http://php.net/manual/function.rawurldecode.php">rawurldecode()</a></code>.  <code><a href="http://php.net/manual/function.parse-str.php">parse_str()</a></code> uses <code>urldecode()</code>.</p>
<p>Decoding the query component of the URI according to <code>application/x-www-form-urlencoded</code> is the logical thing to do, since the web server can&#8217;t tell the difference between a GET request generated by a form and one that isn&#8217;t (since user agents are not supposed to set a &#8220;<code><a href="http://tools.ietf.org/html/rfc2616#section-14.17">Content-Type</a>: application/x-www-form-urlencoded</code>&#8221; header when <a href="http://www.w3.org/TR/html5/forms.html#submit-mutate-action">submitting a form over http/https via the GET method</a>), but I can&#8217;t tell if converting pluses in the query part of the URI into spaces is <em>required</em>; I can&#8217;t find anything in the definition of the http URI scheme that says that plus signs are &#8220;delimiters&#8221; in the query component of the URI.  So I believe it to be an implementation-specific choice and therefore up for grabs depending on how you power your web server (PHP, ruby, .NET, etc.). <a href="#foot-ref-719-2">&#x2191;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2010/02/07/an-open-letter-to-web-developers-on-percent-encoding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Geocaches in the 2009 Station Fire Burn Path</title>
		<link>http://blogwaffe.com/2009/08/31/geocaches-in-the-2009-station-fire-burn-path/</link>
		<comments>http://blogwaffe.com/2009/08/31/geocaches-in-the-2009-station-fire-burn-path/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 22:13:23 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[geocache]]></category>
		<category><![CDATA[station fire]]></category>
		<category><![CDATA[wildfire]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=634</guid>
		<description><![CDATA[Michelle was off geocaching while I was working on a simple geo visualization project for work and looking up information on the 2009 Station Fire near La Cañada Flintridge and Altadena. Those three actions in confluence got me thinking about how many geocaches have been affected by the fire. Map of geocaches likely affected by [...]]]></description>
			<content:encoded><![CDATA[<p>Michelle was off <a href="http://www.geocaching.com">geocaching</a> while I was working on a simple geo visualization project for work and looking up information on the 2009 Station Fire near La Cañada Flintridge and Altadena.</p>
<p>Those three actions in confluence got me thinking about how many geocaches have been affected by the fire.</p>
<p><a href="http://blogwaffe.com/burned-geocaches/"><img src="http://blogwaffe.com/wp-content/uploads/blogwaffe/2009/08/Geocaches-in-the-2009-Station-Fire.png" alt="Geocaches in the 2009 Station Fire" title="Geocaches in the 2009 Station Fire" width="420" height="422" class="aligncenter size-full wp-image-639" /><br />
Map of geocaches likely affected by the 2009 Station Fire</a>.  (Click for larger, more up-to-date, interactive map.)</p>
<p><a href="http://www.latimes.com/">The Los Angeles Times</a> is providing <a href="http://maps.google.com/maps/ms?ie=UTF8&#038;hl=en&#038;msa=0&#038;msid=117631292961056724014.0004720e21d9cded17ce4&#038;ll=34.341168,-118.164825&#038;spn=0.566957,0.823975&#038;t=p&#038;z=10&#038;source=embed">a frequently updated Google map of local fire information</a> which includes approximate fire perimeter (more precise geometry can be found at <a href="http://www.geomac.gov/">GeoMAC</a> or <a href="http://inciweb.org/incident/1856/">InciWeb</a>).  With that data, it was fairly straightforward to search for all the geocaches affected.  As of today at 2:30pm local time, 228 non-premium geocaches are within the station fire approximate burn area.</p>
<p>Notes for geocachers: The map does not show premium caches, and puzzle caches are assumed to be at their posted coordinates.  Archived caches are not shown (though could, in theory, still be in the burn area), but disabled caches are.</p>
<p>While the map is interesting, the loss of a few hundred geocaches is insignificant compared to the destruction of homes.  More significant still are the lives that have been lost and those that are still at risk.  The fire fighting crews are literally battling the elements to keep us all safe.</p>
<p>I&#8217;m not sure what a community that has lost so little in comparison can do, but perhaps a station fire regrowth and memorial geocache offered in thanks and remembrance would be appropriate?</p>
<p><strong>Update</strong> [2009-09-01]: The LA Times has updated its fire area geometry.  As of 7:53pm local time there are about 180 non-premium geocaches in the burn area.</p>
<p><strong>Update</strong> [2009-09-02]: I&#8217;m now using the same GeoMAC data InciWeb is using for the burn area geometry.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2009/08/31/geocaches-in-the-2009-station-fire-burn-path/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The internet sucks</title>
		<link>http://blogwaffe.com/2009/04/13/the-internet-sucks/</link>
		<comments>http://blogwaffe.com/2009/04/13/the-internet-sucks/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 08:10:34 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=625</guid>
		<description><![CDATA[Every year around this time I think about how much the internet sucks. I access all my financial stuff from each of various institutions online. I access my salary stuff online. I do my taxes online, and I eFile. So when I do my taxes, why do I have to fill in a hundred little [...]]]></description>
			<content:encoded><![CDATA[<p>Every year around this time I think about how much the internet sucks.</p>
<p>I access all my financial stuff from each of various institutions online.  I access my salary stuff online.  I do my taxes online, and I eFile.</p>
<p>So when I do my taxes, why do I have to <em>fill in a hundred little forms all by hand</em> every year?  Why can&#8217;t I just go to the IRS and say: here are the financial institutions I patronize, and here are my places of work, I will now click this button and you will generate my tax forms for me right here and now?</p>
<p>It&#8217;s all online, why can&#8217;t someone aggregate it?</p>
<p>PS: My taxes are simple, other people&#8217;s are more complicated.  I get that.<br />
PPS: Dear implementer of above idea, do it right.  Do not give the IRS (or H&#038;R Block or whomever) my account numbers.  Love, Mike.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2009/04/13/the-internet-sucks/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Keith Olbermann on the Redefinition of Marriage</title>
		<link>http://blogwaffe.com/2008/11/10/keith-olbermann-on-the-redefinition-of-marriage/</link>
		<comments>http://blogwaffe.com/2008/11/10/keith-olbermann-on-the-redefinition-of-marriage/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 04:42:44 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=472</guid>
		<description><![CDATA[If this country hadn&#8217;t re-defined marriage, black people still couldn&#8217;t marry white people. Sixteen states had laws on the books which made that illegal in 1967. 1967. The parents of the President-Elect of the United States couldn&#8217;t have married in nearly one third of the states of the country their son grew up to lead. [...]]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://www.msnbc.msn.com/id/27650743/"><p>
If this country hadn&#8217;t re-defined marriage, black people still couldn&#8217;t marry white people. Sixteen states had laws on the books which made that illegal in 1967. 1967.</p>
<p><strong>The parents of the President-Elect of the United States couldn&#8217;t have married in nearly one third of the states of the country their son grew up to lead.</strong>
</p></blockquote>
<p><a href="http://www.msnbc.msn.com/id/27650743/">msnbc</a> via <a href="http://twitter.com/iammattthomas/status/999858562">@iammattthomas</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2008/11/10/keith-olbermann-on-the-redefinition-of-marriage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rights in California and Florida</title>
		<link>http://blogwaffe.com/2008/11/05/rights-in-california-and-florida/</link>
		<comments>http://blogwaffe.com/2008/11/05/rights-in-california-and-florida/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 18:55:13 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=470</guid>
		<description><![CDATA[I was reading some depressing news about California voters likely banning gay marriage via a constitutional amendment and found a surprising footnote about Florida&#8217;s ballot measures. Among the more unusual measures on this year’s ballots was one in Florida that would repeal an old clause in the state constitution that allows legislators to bar Asian [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading some depressing news about <a href="http://www.nytimes.com/2008/11/06/us/politics/06ballot.html">California voters likely banning gay marriage via a constitutional amendment</a> and found a surprising footnote about Florida&#8217;s ballot measures.</p>
<blockquote cite="http://www.nytimes.com/2008/11/06/us/politics/06ballot.html"><p>
Among the more unusual measures on this year’s ballots was one in Florida that would repeal an old clause in the state constitution that allows legislators to bar Asian immigrants from owning land. The repeal would be symbolic, as equal protection laws would prevent lawmakers from applying the ban. With 78 percent of precincts reporting just before 11 p.m., the vote was close, with 52 percent voting to preserve the clause.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2008/11/05/rights-in-california-and-florida/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>US Men Go One and Two in 100m back, Celebrate with Terrorist Fist Jab</title>
		<link>http://blogwaffe.com/2008/08/12/us-men-go-one-and-two-in-100m-back-celebrate-with-terrorist-fist-jab/</link>
		<comments>http://blogwaffe.com/2008/08/12/us-men-go-one-and-two-in-100m-back-celebrate-with-terrorist-fist-jab/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 23:40:19 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=463</guid>
		<description><![CDATA[Thomas Kienzle/Associated Press via NBCOlympics.com]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.nbcolympics.com/mm/photo/sports/general/19/83/07/198307_m02.jpg" alt="Aaron Peirsol and Matt Grevers of the United States Olympic Swim Team celebrate after earning gold and silver, respectively, in the 100m backstroke" width="100%" /><br />
<cite>Thomas Kienzle/Associated Press via <a href="http://www.nbcolympics.com/">NBCOlympics.com</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2008/08/12/us-men-go-one-and-two-in-100m-back-celebrate-with-terrorist-fist-jab/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Earthquake!</title>
		<link>http://blogwaffe.com/2008/07/29/earthquake/</link>
		<comments>http://blogwaffe.com/2008/07/29/earthquake/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 20:52:16 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[earthquake]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=449</guid>
		<description><![CDATA[We had a 5.4 earthquake here in Southern California today at 11:42 am local time. I was at home on the couch talking to some fellow WordPress folk on IRC [11:42am] mdawaffe_lap: my point was just that since meta_value is so generic, ORDER BY meta_value is trickier than first glance [11:43am] mdawaffe_lap: earthq [11:43am] mdawaffe_lap: [...]]]></description>
			<content:encoded><![CDATA[<p>We had a <a href="http://earthquake.usgs.gov/eqcenter/eqinthenews/2008/ci14383980/">5.4 earthquake</a> here in Southern California today at 11:42 am local time.  I was at home on the couch talking to some fellow WordPress folk on IRC</p>
<pre>
[11:42am] mdawaffe_lap: my point was just that since meta_value is so generic, ORDER BY meta_value is trickier than first glance
[11:43am] mdawaffe_lap: earthq
[11:43am] mdawaffe_lap: big one
[11:43am] mdawaffe_lap: later
</pre>
<p>when the apartment started shaking.  It took me a few seconds to realize what was going on before Michelle and I dove behind the couch.  Our table is from IKEA.  We wordlessly agreed that it might not stand up to having an apartment dropped on top of it.  Though neither would have our backs; as it turns out, later research suggested that the table would have been a better choice after all.</p>
<p>It lasted 12 to 15 seconds.  We went outside afterward and chatted with a couple other people about the quake, but for the most part life seems to have gotten back to normal very quickly for everyone.</p>
<p>It&#8217;s by far the biggest quake I&#8217;ve ever experienced, but not big enough to cause major damage.  Certainly exciting, though.</p>
<h4>More news from Pasadenans</h4>
<p><a href="http://apparenthorizons.com/2008/07/29/my-first-big-one/">Apparent Horizons&#8217; first big one</a> (no crude jokes, please.  Remember, Apparent Horizons is a family place.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2008/07/29/earthquake/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>photomatt wiins tennis</title>
		<link>http://blogwaffe.com/2007/01/25/photomatt-wiins-tennis/</link>
		<comments>http://blogwaffe.com/2007/01/25/photomatt-wiins-tennis/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 07:23:57 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/2007/01/25/429/</guid>
		<description><![CDATA[Live from Mexico Barry organized a Wii tennis tournament for us here at Lapazomattic which Matt won in an exciting but ill-gotten victory :) Three quarters of the way into the bracket, Matt decided the wiinner would earn the honor of having everyone else ping him. So here I am. photomatt wiins tennis. That&#8217;s ok, [...]]]></description>
			<content:encoded><![CDATA[<h4>Live from Mexico</h4>
<p><a href="http://barry.wordpress.com/">Barry</a> organized a Wii tennis tournament for us here at Lapazomattic which <a href="http://photomatt.net/">Matt</a> won in an exciting but ill-gotten victory <code>:)</code>  Three quarters of the way into the bracket, Matt decided the wiinner would earn the honor of having everyone else ping him.</p>
<p>So here I am.  <a href="http://photomatt.net/2007/01/25/wii-tennis/">photomatt wiins tennis</a>.</p>
<p>That&#8217;s ok, though; his regex isn&#8217;t so good.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2007/01/25/photomatt-wiins-tennis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

