<?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>Flogging English &#187; safari</title>
	<atom:link href="http://floggingenglish.com/tag/safari/feed/" rel="self" type="application/rss+xml" />
	<link>http://floggingenglish.com</link>
	<description>Too close for missiles; switching to guns....</description>
	<lastBuildDate>Thu, 26 Jan 2012 16:01:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Designing mobile websites for the iPhone</title>
		<link>http://floggingenglish.com/2009/10/24/designing-mobile-websites-for-the-iphone/</link>
		<comments>http://floggingenglish.com/2009/10/24/designing-mobile-websites-for-the-iphone/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 14:32:27 +0000</pubDate>
		<dc:creator>retsoced</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mobile Dev]]></category>
		<category><![CDATA[detect mobile]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[mobile design]]></category>
		<category><![CDATA[mobile devices]]></category>
		<category><![CDATA[mobile web site]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://floggingenglish.com/?p=1227</guid>
		<description><![CDATA[Even before I finally had an iPhone magically bestowed upon me (thanks to the fam!), I had a HP iPaq mobile player &#8211; and have been fascinated with designing and building sites for the mobile web. I&#8217;ve been designing and developing websites for more than a decade now, and while I wouldn&#8217;t say it&#8217;s old [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Even before I finally had an iPhone magically bestowed upon me (thanks to the fam!), I had a HP iPaq mobile player &#8211; and have been fascinated with designing and building sites for the mobile web. I&#8217;ve been designing and developing websites for more than a decade now, and while I wouldn&#8217;t say it&#8217;s old hat just yet, I do get into a routine often enough that it gets to be &#8220;been there, done that&#8221;, and can get a little tedious.</p>
<p>Mobile browsers have their own set of problems, and if you thought you had it rough with IE, Opera, Firefox, and Safari, then you&#8217;ve got another think coming my friend. There are so many variables with mobile devices that it is a real challenge to get it right, and it would be damned near impossible to do it across all devices. That being said, if you have a solid understanding of standards oriented design, then you have an excellent start.</p>
<p>Before you start building, the first thing you should do is examine your site analytics to determine who is on your site, what content they are accessing, and with what mobile OS and browsers. If 98% of your site&#8217;s visitors are using Safari on the iPhone/iPod, then why spend a lot of time getting it to look perfect on another device or devices? I&#8217;m not saying ignoring those other devices, but they would not be the primary viewer, so the bulk of the time should be spent developing for the primary target. Analyzing the site&#8217;s statistics will also tell you what content to focus on for the mobile site. Since bandwidth, screen resolution and speed are important on mobile devices, you should trim the fat of your site, and not delivering everything but the kitchen sink; that&#8217;s what your regular site is built for.</p>
<p><a href="http://floggingenglish.com/media/contentMedia//2009/10/iPhone_facebook_notifications.jpg" rel="lightbox[1227]"><img class="alignright size-medium wp-image-1229" title="Facebook app notifications screen" src="http://floggingenglish.com/media/contentMedia//2009/10/iPhone_facebook_notifications-210x300.jpg" alt="Facebook app notifications screen" width="147" height="210" /></a>Once you have determined what platform(s) you are developing for, then you can start in on the design and build.  For the sake of argument, I am going to focus on the iPhone. Keeping in mind that the screen size of the iPhone is 320 x 480 (pixel size), work through the design and make choices based on those dimensions. Be sure to plan for large buttons too, I can&#8217;t tell you how much of a pain it is to hit some of the little text buttons on some sites, and even some iPhone apps. Take for instance this screen shot of the Facebook app, and the little text link you have to hit to view your post when someone comments on it from the update screen &#8211; that&#8217;s something you want to avoid. If you are in need of some inspiration check out <a title="Smashing Magazine" href="http://www.smashingmagazine.com" target="_blank"><strong>Smashing Magazine</strong></a>, they have a truck-load of great information compiled. In specific I recommend these two articles; <a title="Mobile Web Design Trends for 2009" href="http://www.smashingmagazine.com/2009/01/13/mobile-web-design-trends-2009/" target="_blank"><strong>Mobile Web Design Trends for 2009</strong></a> and <a title="Showcase of Designs Optimized for iPhone" href="http://www.smashingmagazine.com/2009/09/27/showcase-of-designs-optimized-for-iphone/" target="_blank"><strong>Showcase of Designs Optimized for iPhone</strong></a>. Now is also the time to decide if you want to support both landscape and portrait modes in your layout.</p>
<p>Let&#8217;s assume you have your layout planned out now, and are ready to start coding.The first thing you should code and implement is a way to determine if your visitor is on a desktop or mobile device, and I have some code that works quite well. In a post from earlier this month, I showed off some code I have been working for <a title="Mobile device detection with .NET C#" href="http://floggingenglish.com/2009/10/03/mobile-device-detection-with-net-c/" target="_blank"><strong>mobile device detection in .net.</strong></a> Of course not everyone is a slave to Microsoft, and I really don&#8217;t use much of it outside of my day job, so having something for a PHP solution would be handy as well. I found some <a href="http://floggingenglish.com/2009/06/18/mobile-device-support-through-javascript-and-css/" target="_blank"><strong>useful PHP and JavaScript code</strong></a> earlier this year as well.</p>
<p>Of course, there are also specific elements you need to add to the head of the page(s) to ensure that your site fits properly within the viewport of the iPhone, otherwise your site will scale by default in Safari, and not look or work as intended. The first meta tag viewport, does just that and ensure a proper fit, while the second simply includes an image for bookmarking.</p>
<pre class="brush: html">&lt;head&gt;
&lt;title&gt;iPhone site | hooray!&lt;/title&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width; initial-scale=1.0; maximum-scale=1.0;&quot; /&gt;
&lt;link rel=&quot;apple-touch-icon&quot; href=&quot;/media/images/site-logo-icon.png&quot;/&gt;
&lt;/head&gt;</pre>
<p>This is the bare minimum, mind you, and there is more that you can code in page if you want deal with orientation as well. Here&#8217;s another great post <a title="How to build a website for iPhone" href="http://www.engageinteractive.co.uk/blog/2008/06/19/tutorial-building-a-website-for-the-iphone/" target="_blank"><strong>from Engage Interactive on building a website for the iPhone.</strong></a> The majority of the site should just be well written, valid code and you will be able to support the iPhone and beyond.</p>
<p>For you WordPress folks out there, <a title="WPTouch" href="http://wordpress.org/extend/plugins/wptouch/" target="_blank"><strong>WPTouch</strong></a>. It&#8217;s a great plugin that transforms your blog into an iPhone application styled site. I&#8217;ve had it running on Flogging English for a few weeks now, and while there are some plugin incompatibilities, it handles that well and I haven&#8217;t had any issues with WPTouch not working.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffloggingenglish.com%2F2009%2F10%2F24%2Fdesigning-mobile-websites-for-the-iphone%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div class="shr-publisher-1227"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://floggingenglish.com/2009/10/24/designing-mobile-websites-for-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 8 Web Standards Support &#8211; exceptional fail</title>
		<link>http://floggingenglish.com/2009/06/21/ie-8-web-standards-support-exceptional-fail/</link>
		<comments>http://floggingenglish.com/2009/06/21/ie-8-web-standards-support-exceptional-fail/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 03:21:05 +0000</pubDate>
		<dc:creator>retsoced</dc:creator>
				<category><![CDATA[Blatherings]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[acid test]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE 8]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[SuperPreview]]></category>
		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://floggingenglish.com/?p=1136</guid>
		<description><![CDATA[IE 8 has been a huge step forward for Microsoft in their browser development, and also a step back. But this latest bit of marketing drivel has to make you stop and go &#8220;hmmmm.&#8221; So IE now supports web standards eh? Does that mean it passes the Acid 3 test? Surely it must, I mean [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://floggingenglish.com/media/contentMedia//2009/06/ie_8_chart.png" rel="lightbox[1136]"><img class="alignright size-medium wp-image-1139" title="ie_8_chart" src="http://floggingenglish.com/media/contentMedia//2009/06/ie_8_chart-273x300.png" alt="ie_8_chart" width="273" height="300" /></a>IE 8 has been a huge step forward for Microsoft in their browser development, and also a step back. But this latest bit of marketing drivel has to make you stop and go &#8220;hmmmm.&#8221;</p>
<p>So IE now supports web standards eh? Does that mean it passes the Acid 3 test? Surely it must, I mean it has a check mark next to the Web Standards bit. Ummm. No. Not so much.</p>
<p>I think the guys on the marketing team for IE 8 need to stop drinking the bujiboo juice and figure out that they still suck in this department. Check out the <a href="http://floggingenglish.com/media/contentMedia//2009/06/ie_8.png" rel="lightbox[1136]"><strong>results for the Acid 3 test</strong></a>. Not even close.</p>
<p>Now, to be fair <a href="http://floggingenglish.com/media/contentMedia//2009/06/opera.png" rel="lightbox[1136]"><strong>Opera only hit an 85/100</strong></a>, and <a href="http://floggingenglish.com/media/contentMedia//2009/06/firefox.png" rel="lightbox[1136]"><strong>Firefox came in at 72/100</strong></a> but both <a href="http://floggingenglish.com/media/contentMedia//2009/06/safari_4.png" rel="lightbox[1136]"><strong>Safari</strong></a> (4 beta) and <a href="http://floggingenglish.com/media/contentMedia//2009/06/scrome.png" rel="lightbox[1136]"><strong>Chrome</strong></a> nailed it with 100/100. I&#8217;ve read that Opera should be at 100/100, but even the latest 9.6 download doesn&#8217;t get any higher for me.</p>
<p>Developers don&#8217;t really need another test to tell them that IE is not all that and a bag of chips, but the average web user doesn&#8217;t know any better. That&#8217;s the real problem; 67% of all of my visitors still use some version of IE, and that means I still have to code for 3 versions of it now. For all my work, I could care less, if you want to use IE 6 you deserve to a get crappy web display &#8211; but from a business sense, IE 6 really can&#8217;t be ignored. Now there&#8217;s IE 7, IE 8, and even IE 7 compatibility mode (which differs from the real IE 7) in IE 8. Great one there Billy.</p>
<p>At least they&#8217;re on board with a new browser test application for Expression Web called SuperPreview, which, while still in beta, makes cross-version testing in IE moderately tolerable.  There&#8217;s an excellent write-up on the <a href="http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx" target="_blank"><strong>Expression Web team Blog</strong></a>, where there is also a <a href="http://download.microsoft.com/download/5/6/8/568F0D28-0434-4794-B7FC-FB293BCC98FB/SuperPreview_Trial_en.exe" target="_blank"><strong>download link</strong></a>.</p>
<p>Now if only we could get the IE team to follow along and play nice&#8230;.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffloggingenglish.com%2F2009%2F06%2F21%2Fie-8-web-standards-support-exceptional-fail%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div class="shr-publisher-1136"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://floggingenglish.com/2009/06/21/ie-8-web-standards-support-exceptional-fail/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mobile device support through JavaScript and CSS</title>
		<link>http://floggingenglish.com/2009/06/18/mobile-device-support-through-javascript-and-css/</link>
		<comments>http://floggingenglish.com/2009/06/18/mobile-device-support-through-javascript-and-css/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:01:54 +0000</pubDate>
		<dc:creator>retsoced</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[media queries]]></category>
		<category><![CDATA[mobile devices]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://floggingenglish.com/?p=1129</guid>
		<description><![CDATA[If you are in the business of designing, building or maintaining a website these days, you should also be concerned with making sure the maximum number of people are able to view the content on those sites. Meaning that if you aren&#8217;t doing something to support mobile web browsing than you are a bit behind [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>If you are in the business of designing, building or maintaining a website these days, you should also be concerned with making sure the maximum number of people are able to view the content on those sites. Meaning that if you aren&#8217;t doing something to support mobile web browsing than you are a bit behind the curve. It&#8217;s really an accessibility issue, not too far off from the ideas implemented in making websites accessible to people with disabilities. We&#8217;re just talking device accessibility, so let&#8217;s take a look at a couple of really simple ways to get this done.</p>
<h3>JavaScript</h3>
<p>If you go the JavaScript route, I found<strong> <a href="http://www.phpdevblog.net/2009/01/detecting-mobile-devices.html" target="_blank">this little gem</a></strong> some time ago, that covers both the client and server side detection using JavaScript and PHP. Here is<a href="http://floggingenglish.com/MobileDetection.html" target="_blank"><strong> an example page</strong></a> of what the output looks like if your detection should fail. If you are on a mobile device, the page redirects you to the root of FloggingEnglish.com. I know some older and low-end devices may not support JavaScript, but since it&#8217;s pretty freakin&#8217; ubiquitous these days, so I think it&#8217;s pretty safe. There are other JavaScript solutions out there, but this is one is clean, simple and easy to update.</p>
<p>This would be a good solution to incorporate into a Flash site as well, especially since the iPhone doesn&#8217;t support Flash yet. I know the iPhone is not the most widely used device, but that doesn&#8217;t mean you shouldn&#8217;t consider that too. With the output from the example you could place special tags or content based on the type of device, offer alternative viewing solutions for your visitors, or simply redirect to a CSS based solution for faster viewing.</p>
<h3>CSS</h3>
<p>Working a well written CSS style layout into your site is always an excellent option whether you&#8217;re primarily concerned about mobile devices or not, but with CSS 3 it&#8217;s becoming easier for developers to target mobile devices accurately and reliably. <a href="http://www.w3.org/TR/css3-mediaqueries/#media0" target="_blank"><strong>Media Queries</strong></a> are relative newcomers to the CSS scene and they are becoming more supported and in the case of Apple, the way they recommend <a title="use media queries to target css for the iPhone" href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariWebContent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html" target="_blank"><strong>you target the iPhone</strong></a>. They are currently Supported by all main stream browsers that are standards compliant, and supposedly IE is even on board with this one, but Opera, Safari and Firefox all support media queries.</p>
<p>So what is it then?</p>
<p style="padding-left: 30px;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;/includes/css/mobile/screen_320.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen and (min-device-width: 320px)&#8221;&gt;</p>
<p>Yup. That&#8217;s it. The above code would target any mobile device where the viewport measures 320px or wider, like the iPhone for example. Granted that&#8217;s a simplistic example, but you get the idea. Dean over at Bushido Designs posted a great article <a href="http://www.bushidodesigns.net/blog/mobile-device-detection-css-without-user-agent/" target="_blank"><strong>Bulletproof Mobile device detection</strong></a>. In fact that example doesn&#8217;t really convey the strengths of media queries and how flexible this method really is. If you take a look at <a href="http://www.w3.org/TR/css3-mediaqueries/#media1" target="_blank"><strong>the W3C recommendation</strong></a>, you will see the following features:</p>
<ul>
<li>width</li>
<li>height</li>
<li>device-width</li>
<li>device-height</li>
<li>orientation</li>
<li>aspect ratio</li>
<li>device-aspect-ratio</li>
<li>color</li>
<li>color-index</li>
<li>monchrome</li>
<li>resolution</li>
<li>scan</li>
<li>grid</li>
</ul>
<p>So you can begin to see the strengths of this method and how it could be the key to blissful mobile CSS support. Using the color feature for example would allow you target a specific stylesheet for devices capable of rendering in color, while using aspect-ration you could target 16:9 devices as well, like the <a href="http://www.us.playstation.com/PSP" target="_blank"><strong>PSP </strong></a>(480 x 272).</p>
<p>Of course none of this would be an issue if Apple and Opera hadn&#8217;t decided to ignore the <a href="http://www.w3.org/TR/CSS2/media.html#media-intro" target="_blank"><strong>handheld media type</strong></a> with their mobile browsers. With the two biggest mobile browsers off the tabel, that pretty much renders the use of handheld useless. A move that is decidedly Microsoft-esque.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffloggingenglish.com%2F2009%2F06%2F18%2Fmobile-device-support-through-javascript-and-css%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div class="shr-publisher-1129"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://floggingenglish.com/2009/06/18/mobile-device-support-through-javascript-and-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The over-reactionary web &#8211; iTunes update hysterics</title>
		<link>http://floggingenglish.com/2008/03/23/the-over-reactionary-web-itunes-update-hysterics/</link>
		<comments>http://floggingenglish.com/2008/03/23/the-over-reactionary-web-itunes-update-hysterics/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 01:26:55 +0000</pubDate>
		<dc:creator>retsoced</dc:creator>
				<category><![CDATA[Blatherings]]></category>
		<category><![CDATA[Op/Ed]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[ludicrous]]></category>
		<category><![CDATA[meh]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.floggingenglish.com/2008/03/23/the-over-reactionary-web-itunes-update-hysterics/</guid>
		<description><![CDATA[The one thing I have come to loath about a (seemingly) good portion of folks who use the web, is the basic principal that every opinion should be taken as fact, any opposing view is a personal assault upon whomever authored or has read the original opinion, and everything is an over-reaction. Just look at [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>The one thing I have come to loath about a (seemingly) good portion of folks who use the web, is the basic principal that every opinion should be taken as fact, any opposing view is a personal assault upon whomever authored or has read the original opinion, and everything is an over-reaction. Just look at any of the community driven <em>news </em>sites, every new product is a <em>something </em>killer, and just about any time [insert your favorite hated company here] releases a new product, service or changes a policy it&#8217;s the end of the world and an inexcusable injustice to the world community.</p>
<p>The latest is an assault on Apple for adding Safari to the <a href="http://www.apple.com/itunes/" target="_blank"><strong>iTunes </strong></a>update application. In efforts to get more folks to try and hopefully like the new Windows version of Safari, Apple has decided to add it to the iTunes updater application, and here&#8217;s the real kicker; they selected it for you by default! <strong>HOW DARE THEY!</strong> They are now acting like Microsoft, this shady underhanded manipulation of the trust of their loyal user base! How dare they make me, deselect a checkbox for a browser I do not want! Well, I never&#8230;..</p>
<p>I hope you&#8217;re catching my sarcasm here, because I&#8217;m laying it on pretty thick. This isn&#8217;t any different than Microsoft adding <a href="http://get.live.com/" target="_blank"><strong>Live Writer, Family Safety, or Spaces</strong></a> to the last Messenger Update I downloaded. When I first started reading headlines about it, I thought for a minute that they were just installing by default in the background without permission &#8211; see; now that would be a bad decision. But instead what I found was that they were simply making people to commit to a positive opt out of the download. This is just one small example among hundreds &#8211; they&#8217;re easy to find.</p>
<p>This <a href="http://john.jubjubs.net/2008/03/21/apple-software-update/" target="_blank"><strong>post on John&#8217;s Blog </strong></a>probably one of the most level-headed posts about it, and I would have to say I agree with what he finally concludes &#8211; but ultimately I don&#8217;t care enough to rant or rave about it. The real biting issue for me is how every post, article, or discussion has to always degrade to how it sucks, or how someone&#8217;s an idiot (or worse) with the consensus finally ending in a string of comments that you wouldn&#8217;t really want your kids to read. </p>
<p>An intelligent argument doesn&#8217;t always have to degrade into a WWE Cage Match.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffloggingenglish.com%2F2008%2F03%2F23%2Fthe-over-reactionary-web-itunes-update-hysterics%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div><div class="shr-publisher-456"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://floggingenglish.com/2008/03/23/the-over-reactionary-web-itunes-update-hysterics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

