<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><description>We blog about faith in life and whatever else is currently making demands on our attention.</description><title>Two Negatives Blog</title><generator>Tumblr (3.0; @vishers)</generator><link>http://blog.twonegatives.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/burningonesblog" /><feedburner:info uri="burningonesblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><item><title>DRY, eCSStender, and CSS3</title><description>&lt;blockquote&gt;
  &lt;p&gt;I think @border-radius was the proverbial “candy” that the forks used to lead us
  back into their clutches. We all wanted them; hell, we’d come up with myriad
  ways to fake rounded corners to realize our design dreams. So when Firefox and
  Safari dangled them in front of our drooling faces, asking only that we add two
  small forks to our code for the privilege, we jumped at the opportunity.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;.this-is-awesome {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
&lt;/code&gt;&lt;/pre&gt;
  
  &lt;p&gt;They were only two small forks, after all, how bad could they be?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;cite&gt;Aaron Gustafson&lt;/cite&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Yes!&lt;/em&gt;  That’s it.  I wouldn’t have been able to put my finger on but something subtle has been bothering me about all the CSS3 hubbub of late and &lt;a href="http://www.webstandards.org/about/members/agustafson/" title="Aaron @ WaSP"&gt;Aaron&lt;/a&gt; has surfaced it nicely for me in his latest &lt;a href="http://www.alistapart.com/" title="A List Apart: For People Who Make Websties"&gt;ALA&lt;/a&gt; article, &lt;a href="http://www.alistapart.com/articles/stop-forking-with-css3/" title="Stop Forking With CSS3 @ ALA"&gt;Stop Forking With CSS3&lt;/a&gt;.  It was all those browser specific styles!  &lt;a href="http://en.wikipedia.org/wiki/DRY" title="Don't Repeate Yourself @ Wikipedia"&gt;DRY&lt;/a&gt; is a principle that extends into every discipline and technology in all areas of software at all times.  Why on earth would we happily (I say &lt;em&gt;happily&lt;/em&gt; because we often have to &lt;em&gt;voluntarily&lt;/em&gt; accept less than ideal solutions in order to get a desired result, but that doesn’t mean we have to like it!) accept a world in which we have to say&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;.this-is-awesome {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;to get a rounded corners.  That’s the opposite of what Standards are supposed to offer us.  I know they’ve never fully delivered, but that doesn’t mean we should stop pushing for it.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.webstandards.org/about/members/agustafson/" title="Aaron @ WaSP"&gt;Aaron&lt;/a&gt; (of &lt;a href="http://www.webstandards.org/" title="The Web Standards Project"&gt;WaSP&lt;/a&gt;, &lt;a href="http://www.alistapart.com/" title="A List Apart: For People Who Make Websties"&gt;ALA&lt;/a&gt;, &lt;a href="http://easy-designs.net/" title="Easy! Designs"&gt;Easy! Designs&lt;/a&gt;, etc.) has put together what looks to be an excellent tool to combat this awful hackery.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Boiled down to its essence, &lt;a href="http://ecsstender.org/" title="eCSStender's Home Page"&gt;eCSStender&lt;/a&gt; (pronounced “extender”) is a
  JavaScript library (akin to jQuery or Prototype) specifically built for working
  with CSS. On its own, eCSStender doesn’t do anything but analyze your
  stylesheets. When powering “extensions,” however, eCSStender allows you to use
  properties such as @border-radius and selectors like @.seven:nth-child(even)
  without having to resort to forks or hacks.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What this allows us to do is to write this &lt;code&gt;* { border-radius: 5px }&lt;/code&gt; and have it &lt;em&gt;just work&lt;/em&gt; in all browsers (or gracefully degrade in browsers that simply &lt;a href="http://feltron.tumblr.com/post/745831161/ie-rendering-of-a-handsome-css3-solar-system" title="IE Rocks!!!"&gt;don’t support border radius&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Interestingly, the library was not originally intended to be used to enable simple CSS3 authoring.  It was actually intended to make it simple to extend CSS with your own custom styles and effects.  The &lt;a href="http://ecsstender.org/demos/physics/" title="A Demo In Physics"&gt;physics demo&lt;/a&gt; that Aaron but together is quite impressive.  I honestly don’t know exactly what I would use it for, but it seems a little like &lt;a href="http://en.wikipedia.org/wiki/LISP" title="LISP @ Wikipedia"&gt;LISP&lt;/a&gt; in that perhaps it would allow you to extend CSS in a domain specific way that would allow for extremely concise expressions of style.  That being said, it’s not the point.  Aaron wanted to make it possible for all of us to participate in the future of CSS by not only telling the W3C what we wanted, but actually showing them.  That alone, is really cool.&lt;/p&gt;

&lt;p&gt;If you’re interested I’d definitely recommend reading &lt;a href="http://www.alistapart.com/articles/stop-forking-with-css3/" title="Stop Forking With CSS3 @ ALA"&gt;the article&lt;/a&gt;.  And in all honesty, all of &lt;a href="http://www.alistapart.com/authors/g/agustafson" title="Aaron Gustafson @ A List Apart"&gt;Aaron’s stuff&lt;/a&gt; is really good.  I especially liked his &lt;a href="http://www.alistapart.com/articles/understandingprogressiveenhancement/" title="Understanding Progressive Enhancement @ ALA.  Part 1 of 3."&gt;progressive enhancement articles&lt;/a&gt;, even though &lt;a href="http://www.alistapart.com/articles/responsive-web-design/" title="Responsive Web Design by Ethan Marcotte"&gt;responsive web design&lt;/a&gt; is all the rage with the kids these days.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="http://en.wikipedia.org/wiki/DRY" title="Don't Repeate Yourself @ Wikipedia"&gt;DRY&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/m6iZhraldNM/772987887</link><guid isPermaLink="false">http://blog.twonegatives.com/post/772987887</guid><pubDate>Mon, 05 Jul 2010 10:48:00 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/772987887</feedburner:origLink></item><item><title>The Limits of Human Cognition</title><description>&lt;p&gt;First, watch this:&lt;/p&gt;

&lt;p&gt;&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/vJG698U2Mvo&amp;hl=en_US&amp;fs=1"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;param name="allowscriptaccess" value="always"&gt;
&lt;embed src="http://www.youtube.com/v/vJG698U2Mvo&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;Seriously, watch it.&lt;/p&gt;

&lt;p&gt;I’ll wait…&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stop Scanning and Watch the Video!!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;OK, so did you notice it?  I always come to these things to late and
don’t get to find out if I really would have noticed it or not.  That
being said, it amazes me that about 50% of people who didn’t know what
the video was about miss the gorilla until they’re told to look at it!&lt;/p&gt;

&lt;p&gt;This video proves it again!&lt;/p&gt;

&lt;p&gt;&lt;object width="640" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/IGQmdoK_ZfY&amp;hl=en_US&amp;fs=1"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;param name="allowscriptaccess" value="always"&gt;
&lt;embed src="http://www.youtube.com/v/IGQmdoK_ZfY&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;Amazing!&lt;/p&gt;

&lt;p&gt;If you’re interested in further exploration of this topic, I’d highly
recommend listening to &lt;a href="http://itc.conversationsnetwork.org/shows/detail4545.html"&gt;Dr. Moira Gunn interviewing Dan
Simons&lt;/a&gt; over at &lt;a href="http://itc.conversationsnetwork.org/"&gt;IT Conversations&lt;/a&gt;.
 Really an incredible episode discussing the limits of human
cognition.&lt;/p&gt;

&lt;p&gt;Also, I just love anything that bashes so called human potential. ^_^&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/cMNT6PKChJc/761848801</link><guid isPermaLink="false">http://blog.twonegatives.com/post/761848801</guid><pubDate>Fri, 02 Jul 2010 11:24:00 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/761848801</feedburner:origLink></item><item><title>thebigcaption:


Please, Do Not Blow the...</title><description>&lt;img src="http://26.media.tumblr.com/tumblr_l42x6nGCcJ1qbs8kyo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://thebigcaption.com/post/702497368/please-do-not-blow-the-vuvuzelas-original" class="tumblr_blog"&gt;thebigcaption&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p class="post-title"&gt;Please, Do Not Blow the Vuvuzelas&lt;/p&gt;
&lt;p class="post-original"&gt;&lt;a href="http://www.boston.com/bigpicture/2010/06/opening_weekend_-_2010_world_c.html#photo9"&gt;original&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;BZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ…&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/wucFzNepncg/709279261</link><guid isPermaLink="false">http://blog.twonegatives.com/post/709279261</guid><pubDate>Thu, 17 Jun 2010 18:07:26 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/709279261</feedburner:origLink></item><item><title>Cooking, The Leidenfrost Effect, and Molten Lead</title><description>&lt;p&gt;Un_freaking_believable!&lt;/p&gt;

&lt;p&gt;So &lt;a href="http://kottke.org/"&gt;Kottke&lt;/a&gt; just &lt;a href="http://kottke.org/10/06/how-to-preheat-a-frying-pan"&gt;pointed over to&lt;/a&gt; &lt;a href="http://kottke.org/10/06/how-to-preheat-a-frying-pan"&gt;this
article&lt;/a&gt; about using the &lt;a href="http://en.wikipedia.org/wiki/Leidenfrost_effect"&gt;Leidenfrost Effect&lt;/a&gt; to
objectively show when your stainless steel cookwark is hot enough to
prevent sticking and why it needs to be that hot in the first place.
I tried it out last night and not only is one of the craziest things
I’ve ever seen when the water instantly balls up and starts flying
around the pan like crazy, but it actually worked (cooked up some
peppers and onions for burritos… &lt;em&gt;so good&lt;/em&gt;).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Then&lt;/em&gt;, he &lt;a href="http://kottke.org/10/06/how-to-stick-your-hand-into-molten-lead"&gt;follows it up&lt;/a&gt; with a link to &lt;a href="http://www.youtube.com/watch?v=UZio0f7fP04&amp;feature=player_embedded"&gt;this
video&lt;/a&gt; of the guys at &lt;a href="http://dsc.discovery.com/tv/mythbusters/"&gt;Myth Busters&lt;/a&gt; &lt;strong&gt;sticking
their hands into molten lead&lt;/strong&gt; using the same Leidenfrost Effect to
ensure that they don’t burn their hands off.&lt;/p&gt;

&lt;p&gt;See it for yourself.  The video automatically jumps to the right time.&lt;/p&gt;

&lt;p&gt;/me shakes head in amazement.&lt;/p&gt;

&lt;p&gt;&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UZio0f7fP04&amp;hl=en_US&amp;fs=1&amp;start=105&amp;"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;param name="allowscriptaccess" value="always"&gt;
&lt;embed src="http://www.youtube.com/v/UZio0f7fP04&amp;hl=en_US&amp;fs=1&amp;start=105&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/C8JW0zUqGAM/700960397</link><guid isPermaLink="false">http://blog.twonegatives.com/post/700960397</guid><pubDate>Tue, 15 Jun 2010 09:33:00 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/700960397</feedburner:origLink></item><item><title>A Brief and Detailed Documentary of The Semantic Web (Web 3.0)</title><description>&lt;p&gt;While I’m with everyone else when I say that the idea of versioning
the web is pretty ridiculous, I’m also a huge fan of the utopia that
the Semantic Web promises.  I think that giving all of the data on the
Web semantic linkages would so change the way we relate to the &lt;em&gt;glut&lt;/em&gt;
of data that we have on our hands as to truly change the world.&lt;/p&gt;

&lt;p&gt;Inigo, I hope we win…&lt;/p&gt;

&lt;p&gt;&lt;object width="400" height="300"&gt;&lt;param name="allowfullscreen" value="true"&gt;
&lt;param name="allowscriptaccess" value="always"&gt;
&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11529540&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1"&gt;
&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=11529540&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://vimeo.com/11529540"&gt;Web 3.0&lt;/a&gt; from &lt;a href="http://vimeo.com/kateray"&gt;Kate Ray&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/qyQA0VERRDg/700915423</link><guid isPermaLink="false">http://blog.twonegatives.com/post/700915423</guid><pubDate>Tue, 15 Jun 2010 09:13:01 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/700915423</feedburner:origLink></item><item><title>We could only hope to be this excited while we’re giving...</title><description>&lt;object width="400" height="251"&gt;&lt;param name="movie" value="http://www.youtube.com/v/-b_BEz_7-kY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/-b_BEz_7-kY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="251" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;We could only hope to be this excited while we’re giving thanks.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=-b_BEz_7-kY&amp;feature=player_embedded"&gt;Crazy Oktoberfest Drummer&lt;/a&gt; (via &lt;a href="http://twentytwowords.com/2010/05/25/o-the-joy-o-the-glee-when-youre-under-the-influence-of-lederhosen/"&gt;22 Words&lt;/a&gt;)&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/lwN_XRGtjnQ/693728837</link><guid isPermaLink="false">http://blog.twonegatives.com/post/693728837</guid><pubDate>Sun, 13 Jun 2010 08:58:50 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/693728837</feedburner:origLink></item><item><title>The Big Caption</title><description>&lt;a href="http://thebigcaption.com/"&gt;The Big Caption&lt;/a&gt;: &lt;p&gt;New from the same kids who put together The Big Picture.  They’re sometimes tasteless but for the most part they’re just hilarious if not biting.&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/jYoPtydQ-80/693718364</link><guid isPermaLink="false">http://blog.twonegatives.com/post/693718364</guid><pubDate>Sun, 13 Jun 2010 08:53:36 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/693718364</feedburner:origLink></item><item><title>“Two of mankind’s great inventions” is truly...</title><description>&lt;object type="application/x-shockwave-flash" width="400" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=11886557&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF"&gt;&lt;param name="quality" value="best" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="scale" value="showAll" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11886557&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF" /&gt;&lt;embed src="http://www.vimeo.com/moogaloop.swf?clip_id=11886557&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;“Two of mankind’s great inventions” is truly the way to describe velcro and the iPad.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.swiss-miss.com/2010/05/ipad-velcro-love.html"&gt;via Swiss Miss&lt;/a&gt;&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/fZVqPRoqd1g/693710349</link><guid isPermaLink="false">http://blog.twonegatives.com/post/693710349</guid><pubDate>Sun, 13 Jun 2010 08:49:41 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/693710349</feedburner:origLink></item><item><title>I thought this was such an inventive rethinking of the concept...</title><description>&lt;object width="400" height="292"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;param name="wmode" value="transparent" /&gt;&lt;param name="bgColor" value="#ffffff" /&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/GaryLauder_2010-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/GaryLauder-2010.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=789&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=gary_lauder_s_new_traffic_sign_take_turns;year=2010;theme=a_taste_of_ted2010;theme=new_on_ted_com;event=TED2010;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" width="400" height="292" allowfullscreen="true" allowscriptaccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/GaryLauder_2010-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/GaryLauder-2010.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=789&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=gary_lauder_s_new_traffic_sign_take_turns;year=2010;theme=a_taste_of_ted2010;theme=new_on_ted_com;event=TED2010;"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;I thought this was such an inventive rethinking of the concept of the stop sign and, really, reflects the way stop signs are used any way.  I like the way it tries to call to the better part of all of us and encourage us to just be civil about it.  So many transportation problems (and problems in general) could be solved if everyone just stopped being evil.&lt;/p&gt;

&lt;p&gt;Unfortunately, the chances of that happening are fully nil.&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/ZN761BuRAWI/693703352</link><guid isPermaLink="false">http://blog.twonegatives.com/post/693703352</guid><pubDate>Sun, 13 Jun 2010 08:46:33 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/693703352</feedburner:origLink></item><item><title>Toddler Mode for iPad via Adaptive Path</title><description>&lt;blockquote&gt;
  &lt;p&gt;This post is a little silly, but for me, it highlights something important about iPad that it seems Apple doesn’t really get. iPad, at least this first version, is built on the model of iPhone. And iPhones are personal devices — it’s reasonable to expect only one person uses an iPhone, and that the design should optimize for that. iPads, at least in my household, and those of folks I talk to, are family devices. They go from person to person in a house. This isn’t typical for most computing devices (except new-fangled set-top boxes for your TV). iPad’s form factor drastically changes the sociality of the device, and I suspect this will prove a rich avenue of exploration.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="http://www.adaptivepath.com/blog/2010/06/11/toddler-mode-for-ipad/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+adaptivepath+%28Adaptive+Path+Blog%29"&gt;Toddler Mode for iPad via Adaptive Path&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is so brilliant. Having watched my daughter play with an iPad for awhile, the most obvious pain point is the fact that toddlers, every once in awhile, just freak out and touch everything they can. Which for certain devices, like the floor, for instance, is perfectly ok, but for an extremely sensitive touch device like the iPad basically makes the iPad do things that the toddler never wanted to do in the first place. Being able to control the interactivity of the device, from how to get to the home page to how to access all of the content, would be a huge win for most parents and make what already captivates children as young as 20 months into something that could productively occupy them for hours.&lt;/p&gt;

&lt;p&gt;As a side note, I do love it whenever apple misses something design wise. It’s some sort of morbid joy that I take in watching someone who does something so well miss it for once. I think Peter nailed it when he said that Apple has thus far overlooked the fact that iPads are probably, at this point, one or two devices per household, max, and maybe only ever reach that level of saturation. These are highly shared devices. Being able to have even something akin to user accounts that allow you to customize app organization, wallpaper, keyboard layout (when is this going to happen, Apple?), would be awesome for anyone who uses this device with other people.&lt;/p&gt;</description><link>http://feedproxy.google.com/~r/burningonesblog/~3/t6NMwSXW3Fs/690195082</link><guid isPermaLink="false">http://blog.twonegatives.com/post/690195082</guid><pubDate>Sat, 12 Jun 2010 07:38:59 -0400</pubDate><feedburner:origLink>http://blog.twonegatives.com/post/690195082</feedburner:origLink></item></channel></rss>
