<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
   <title>diego&apos;s weblog</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/" />
   <link rel="self" type="application/atom+xml" href="http://blog.diegodoval.com/atom.xml" />
   <id>tag:blog.diegodoval.com,2008://14</id>
   <updated>2008-04-28T13:49:46Z</updated>
   
   <generator uri="http://www.sixapart.com/movabletype/">Movable Type Publishing Platform 4.0</generator>


<entry>
   <title>microhoo: what&apos;s next</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/microhoo_whats_next.html" />
   <id>tag:blog.diegodoval.com,2008://14.3510</id>
   
   <published>2008-04-28T13:33:39Z</published>
   <updated>2008-04-28T13:49:46Z</updated>
   
   <summary>As we wait with baited breath for the next move in the Microsoft/Yahoo saga, Marc just posted a must-read entry on what happens if microsoft goes fully hostile. Meanwhile techcrunch has some speculation. Another interesting question is what exactly is...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>As we wait with baited breath for the next move in the Microsoft/Yahoo saga, Marc just posted a must-read entry on <a href="http://blog.pmarca.com/2008/04/if-microsoft-go.html">what happens if microsoft goes fully hostile</a>. Meanwhile techcrunch <a href="http://www.techcrunch.com/2008/04/28/will-the-microsoft-hammer-fall-this-week/">has some</a> speculation. </p>

<p>Another interesting question is what <i>exactly</i> is Microsoft buying with this, given that many people would leave, many have already left, and there's nearly complete overlap on their technologies and products (see <a href="http://www.techcrunch.com/2008/02/02/microsoft-yahoo-what-will-stay-and-what-will-go/">here</a>) and in most cases full integration (rather than an orderly migration) would be a nightmare that anyone in their right mind would avoid. The easiest would be to just point yahoo.com to live.com, automatically migrate accounts, and you're done. <em>Well, of course, not really, but you get what I'm saying. </em></p>

<p>If so, this would be the most expensive domain name acquisition ever. Business.com for $7.5 million during the bubble? Peanuts, I say. :)</p>]]>
      
   </content>
</entry>

<entry>
   <title>Professor Knuth gets many right, at least one very, very wrong</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/professor_knuth_gets_many_righ.html" />
   <id>tag:blog.diegodoval.com,2008://14.3509</id>
   
   <published>2008-04-27T16:29:07Z</published>
   <updated>2008-04-27T17:00:44Z</updated>
   
   <summary>An interesting interview with Professor Donald Knuth (via slashdot, where the slashdotter writes: &quot;[Knuth] pitches his idea of &quot;literate programming&quot; which I must admit I&apos;ve never heard of but find it intriguing&quot; -- really never &quot;heard&quot; of that? I think...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p><a href="http://www.informit.com/articles/article.aspx?p=1193856">An interesting interview</a> with Professor Donald Knuth (<a href="http://tech.slashdot.org/tech/08/04/26/1627248.shtml">via slashdot</a>, where the slashdotter writes: "[Knuth] pitches his idea of "literate programming" which I must admit I've never heard of but find it intriguing" -- really never "heard" of that? I think it was one of the <i>first</i> things in programming I "heard" of... anyway...). Some interesting comments about various topics, including TeX, which continues to be nearly irreplaceable in some areas (academic papers in particular), but then drops a bomb:<br />
<blockquote><i>I might as well flame a bit about my personal unhappiness with the current trend toward multicore architecture. To me, it looks more or less like the hardware designers have run out of ideas, and that they're trying to pass the blame for the future demise of Moore's Law to the software writers by giving us machines that work faster only on a few key benchmarks! I won't be surprised at all if the whole multithreading idea turns out to be a flop, worse than the "Titanium" approach that was supposed to be so terrific--until it turned out that the wished-for compilers were basically impossible to write.</p>

<p>Let me put it this way: During the past 50 years, I've written well over a thousand programs, many of which have substantial size. I can't think of even five of those programs that would have been enhanced noticeably by parallelism or multithreading. Surely, for example, multiple processors are no help to TeX.</p>

<p>How many programmers do you know who are enthusiastic about these promised machines of the future? I hear almost nothing but grief from software people, although the hardware folks in our department assure me that I'm wrong.</p>

<p>I know that important applications for parallelism exist--rendering graphics, breaking codes, scanning images, simulating physical and biological processes, etc. But all these applications require dedicated code and special-purpose</i></blockquote>First, his mistake of calling <i>Itanium</i> "Titanium" is a clue here. He hasn't kept up with the field. He's mixing up <a href="http://en.wikipedia.org/wiki/Very_long_instruction_word">VLIW</a>, which is what Itanium was based on, with multicore. VLIW is really designed around superpipelining, self-draining pipelines, and other features in processors and may have been left in the dust by Moore's Law and the increased used of Virtual Machines, just as RISC has largely been sidelined. Additionally, many VLIW ideas have found their way into CISC processors. In any case, VLIW is about optimizing flow within a single processor, not many separate processors.</p>

<p>Second, his statement <br />
<blockquote><i>Surely, for example, multiple processors are no help to TeX.</i></blockquote>Is just plain wrong. TeX works by building up pages based on text blocks. A character is a block, which then gets built up into a word, then into a sentence, then to paragraphs. Paragraphs are then put together in pages. There would be a significant advantage to processing the units in different processors and then have them added up later. Granted, the sentences and paragraphs are related to each other and you can have one affect the other, but that means it would be harder to write multithreaded TeX processing, rather than multithreaded being no help at all.</p>

<p>"I hear almost nothing but grief from software people," Knuth says, but this is just because we haven't yet found clean, effective methods to write, test and debug multithreaded software at large scale. This doesn't mean it's bad, it just means we haven't figured out how to use it properly. And, worst case scenario, you can always write your software as services connected through a thin layer of communication (based on anything from IPC to RMI to REST) that can then run as multiple processes happily on a multicore machine. </p>

<p>He also rues that literate programming hasn't been embraced by the millions, but this is also only partly true. Java and other languages have been using Literate Programming concepts for years, and it has been a major advantage in productivity when using good IDEs like IDEA, Netbeans, or Eclipse.</p>

<p>Not that this invalidates anything that Knuth has done. :) <em>The TeXbook </em>and the <em>Art of of Computer Programming</em> are still gems that I end up perusing frequently. They may not be multicore-enabled, but they're still as relevant as ever.</p>]]>
      
   </content>
</entry>

<entry>
   <title>ning news: fast company article, new round, new releases</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/ning_news_fast_company_article.html" />
   <id>tag:blog.diegodoval.com,2008://14.3508</id>
   
   <published>2008-04-19T02:13:52Z</published>
   <updated>2008-04-19T02:34:07Z</updated>
   
   <summary>A few Ning networks, viewed as graphs A couple of Ning-related news/articles hit the interwebs in the last couple of days -- first, there was a Fast Company article, Ning&apos;s Infinite Ambition, that covered viral loops and what is behind...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="ning" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<span class="mt-enclosure mt-enclosure-image"><img alt="ningnetworkgraphs.jpg" src="http://blog.diegodoval.com/images/ningnetworkgraphs.jpg" width="560" height="365" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 5px;"/><p style="text-align: center; display: block; margin: 0 auto 15px;">A few Ning networks, viewed as graphs</p></span>
A couple of Ning-related news/articles hit the interwebs in the last couple of days -- first, there was a Fast Company article, <a href="http://www.fastcompany.com/magazine/125/nings-infinite-ambition.html">Ning's Infinite Ambition</a>, that covered viral loops and what is behind a lot of the recent high-growth Internet sites, and it's definitely worth a read. 

<p>Then today VentureBeat <a href="http://venturebeat.com/2008/04/18/social-network-creator-ning-raising-70m/">broke the news</a> of our recent investment round. Marc <a href="http://blog.pmarca.com/2008/04/ning-news-serie.html">has more details</a>. As he says, VentureBeat found a mandatory SEC filing and put out news that we'd otherwise not have talked about, since there isn't a clear reason to be doing it. The reasons for the round, as Marc says:<blockquote><i>We raised the money to enable us to keep scaling given our accelerating growth (over 230,000 networks on Ning now, growing at over 1,000 per day) and to make sure we have plenty of firepower to survive the oncoming nuclear winter. At current growth rates, we don't need it to get to cash flow positive, but having lived through the last crunch, it's good to be conservative with these things.</i></blockquote><br />
Meanwhile, the rolling train of releases continues apace -- most recently with <a href="http://networkcreators.ning.com/forum/topic/show?id=492224%3ATopic%3A200739">Events and Notes</a>, two features that were very well received. It's really great to see the instant reaction from users as they give instant feedback on both the good and the bad. Meanwhile, the <a href="http://developer.ning.com/">Developer Network</a> keeps growing, with a recent <a href="http://developer.ning.com/wiki/Main_Page">reorganization of docs</a> to improve navigation -- we'll be doing a lot more that in the coming months, as we have been in the past months. </p>

<p>A lot done, still more to do. :-)</p>]]>
      
   </content>
</entry>

<entry>
   <title>summer movie prediction: rockin&apos;!</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/summer-movie-prediction-rockin.html" />
   <id>tag:blog.diegodoval.com,2008://14.3506</id>
   
   <published>2008-04-18T03:34:36Z</published>
   <updated>2008-04-18T14:23:31Z</updated>
   
   <summary> Sometimes it&apos;s hard not to wish that Hollywood would get its act together and produce some actual entertainment instead of drivel, or rather, not hand it out just one movie a year at a time. This year definitely looks...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="media" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p><a href="http://www.apple.com/trailers/paramount/indianajonesandthekingdomofthecrystalskull/"><img alt="indianajonesandthekingdomofthecrystalskull.jpg" src="http://blog.diegodoval.com/images/indianajonesandthekingdomofthecrystalskull.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/paramount/ironman/"><img alt="ironman.jpg" src="http://blog.diegodoval.com/images/ironman.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/wb/thedarkknight/"><img alt="thedarkknight.jpg" src="http://blog.diegodoval.com/images/thedarkknight.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/disney/walle/"><img alt="walle.jpg" src="http://blog.diegodoval.com/images/walle.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/universal/theincrediblehulk/"><img alt="theincrediblehulk.jpg" src="http://blog.diegodoval.com/images/theincrediblehulk.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/independent/righteouskill/"><img alt="righteouskill.jpg" src="http://blog.diegodoval.com/images/righteouskill.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/lions_gate/forbiddenkingdom/"><img alt="forbiddenkingdom.jpg" src="http://blog.diegodoval.com/images/forbiddenkingdom.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/wb/getsmart/"><img alt="getsmart.jpg" src="http://blog.diegodoval.com/images/getsmart.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/lions_gate/bangkokdangerous/"><img alt="bangkokdangerous.jpg" src="http://blog.diegodoval.com/images/bangkokdangerous.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/sony_pictures/hancock/"><img alt="hancock.jpg" src="http://blog.diegodoval.com/images/hancock.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/universal/hellboy2thegoldenarmy/"><img alt="hellboy2thegoldenarmy.jpg" src="http://blog.diegodoval.com/images/hellboy2thegoldenarmy.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a>
<a href="http://www.apple.com/trailers/universal/wanted/"><img alt="wanted.jpg" src="http://blog.diegodoval.com/images/wanted.jpg" width="134" height="193" class="mt-image-left" style="float: left; margin: 0 15px 15px 0;"/></a></p>
<p  style="clear: left">Sometimes it's hard not to wish that Hollywood would get its act together and produce some actual entertainment instead of drivel, or rather, not hand it out just one movie a year at a time. This year definitely looks like an outlier. The list so far:</p>
<ul><li><b>Indiana Jones and the Kingdom of the Crystal Skull</b>. Come on, admit it. You've been waiting for this for the last ten years. Yeah. Me too.</li><li><b>Iron Man</b>. Robert Downey Jr., one of the best actors of his generation, and what looks like a killer action movie.</li><li><b>The Dark Knight</b>. Christian Bale, Heath Ledger, Gary Oldman, Michael Caine, once more directed by Christopher Nolan. After the spectacularly good <i>Batman Begins</i>, I have little doubt this one will be the one that finally, finally, let us Batman fans forget about what Joel Schumacher did to the character with <i>Batman and Robin</i>.<li><b>Wall-e</b>. The latest from Pixar. I'd be surprised if the movie isn't as hilarious as the trailer. Fun to watch for the CG tricks alone.</li><li><b>The Incredible Hulk</b>. Second try at getting the big green man on the big screen. The first try wasn't great but it had some good moments. This time Bruce Banner is Ed Norton, which can summon enough intensity to turn green all by himself (just remember <i>American History X</i>). High hopes for this one.<li><b>Righteous Kill</b>. Al Pacino and Robert DeNiro. Need I say more?</li><li><b>Forbidden Kingdom</b>. Jackie Chan and Jet Li go Kung-Fuing. Much fun is to be had by all.</li><li><b>Get Smart</b>. Part of what was funny about the TV series was the crappy faux-James Bond tech, but this time it looks like the effects make it perhaps a little too slick. Steve Carell definitely looks like the natural heir for the part.</li><li><b>Bangkok Dangerous</b>. Nick Cage tries the long-hair-weirdo-distanced-from-society thing again (last time it was <i>Next</i>), as a professional assassin who apparently grows a conscience. Might be a bomb, but willing to give him the benefit of the doubt.</li><li><b>Hancock</b>. Will Smith goes superhero with an attitude, is (apparently) also a bum. What can possibly go wrong?</li><li><b>Hellboy 2: The Golden Army</b>. After the spectacularly good <i>Hellboy</i>, I hope this one doesn't succumb to sequel-syndrome.</li><li><b>Wanted</b>. Angelina Jolie and Morgan Freeman teach some dude that he can curve the trajectory of bullets. A premise this insane <em>has</em> to lead to a fun movie.</li></ul>]]>
      
   </content>
</entry>

<entry>
   <title>why no one likes internet statistics sites</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/why_no_one_likes_internet_stat.html" />
   <id>tag:blog.diegodoval.com,2008://14.3504</id>
   
   <published>2008-04-17T03:03:19Z</published>
   <updated>2008-04-17T03:09:32Z</updated>
   
   <summary>Alexa just changed their ranking system, Techcrunch has details. (The Alexa page, in typical clueless fashion, is not a permalink, so I won&apos;t bother linking to it). This is good news, but it still doesn&apos;t fix the problem. Why? Alexa,...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Alexa just changed their ranking system, Techcrunch <a href="http://www.techcrunch.com/2008/04/16/alexa-overhauls-ranking-system/">has details</a>. (The Alexa page, in typical clueless fashion, is not a permalink, so I won't bother linking to it). This is good news, but it still doesn't fix the problem. Why?</p>

<p><a href="http://www.alexa.com/">Alexa</a>, <a href="http://www.compete.com/">Compete</a>, <a href="http://www.alexa.com/">Quantcast</a>, <a href="http://www.comscore.com/">Comscore</a>, all have measures of "Rankings" or "Popularity" that put sites relative to others. These rankings, in general are a more-or-less accurate <i>relative</i> description of how a site is doing. </p>

<p>The keyword here, though, is <i>relative</i>, and, more specifically, <i>relative to how the service in question measures other sites</i>. Comparing a Quantcast ranking to a Compete ranking to an Alexa ranking for any given site is useless, and no one even attempts that. </p>

<p>Rankings for each site are widely understood to be relative within its own index, and no one has a problem with that. So far so good. </p>

<p>The real problem start when we put their measures of Visitors (Alexa calls that "Reach" as far as I know) and Visits. So some news publication may take a comscore measurement and say "such and such a site has 1,000,000 visits", inevitably prompting discussion of whether it's true or not and (generally) silent fuming on the part of the site that sees in their logs, every day, different data. </p>

<p><i>This</i> is the problem. The use of a heavily overloaded term like "Visitors" or "Visits" or "Pageviews" or even "Reach" causes the confusion. None of these sites claim that they have the ultimate truth at their disposal, but by using common terms, this is exactly what happens. After all, everyone knows what a 'Visitor' is, right? Well, maybe. Maybe everyone does know what a Visitor or a Visit is, but no one agrees on the definition. </p>

<p>Even if everyone <i>did</i> agree on the definition, you could still lose data unless you're looking at the logfiles for a service. Why? Several reasons, but the three key ones are:<br />
<ol><li>The services extrapolate traffic based on measures they choose. Try a site that has low traffic, and the services give up. "Not enough data." Yep.</li><li>Not only that, the services extrapolate based on <i>previously filtered data</i>. The raw log data for a year for any of the top 1,000 sites can be counted in the petabytes, if not exabytes. None of these services have enough compute power or storage at their disposal  to process that, clearly. So they are pre-filtering information, which is then extrapolated. The prefiltering presumably eliminates bots. What if a new bot shows up? How do they count it?</li><li>Domain mapping. Consider <a href="http://www.ning.com/">Ning</a>. Suppose we agreed on what a pageview or a visit is. Would Alexa or Compete get the right numbers? No. Because they key on domains to define what is traffic to a service. In our case (as in many others) the service allows you to do domain mapping of your site, which means the services think that the traffic is going somewhere else, even though it's going to Ning. That's why I can assert without hesitation that the visits/visitors traffic reported by these services doesn't cover a good portion of the traffic Ning handles, and when on top of that you add uncertainty as to what is a visit, and what is a visitor (is it an IP? a cookie? A combination? What about internet cafes? and so on), then the actual absolute value for those things is pretty much meaningless.</li></ol></p>

<p>Now, what the services do track correctly in a lot of cases is <i>trends</i>, especially over several months (again, in the case of Ning the fact that they miss domain-mapped networks is a big problem, but the data we have for non-domain mapped networks shows similar, and I say again, <i>similar</i> shapes and trajectories). </p>

<p>My take is that if these services stopped calling what they measure "visits" or "visitors" and just said these were some sort of generic "[servicename] traffic measure" or something, then they would get a lot more respect, something they deserve since they do provide a valuable service, and they should get credit for that. </p>]]>
      
   </content>
</entry>

<entry>
   <title>mowser ends</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/04/mowser_ends.html" />
   <id>tag:blog.diegodoval.com,2008://14.3503</id>
   
   <published>2008-04-15T13:53:22Z</published>
   <updated>2008-04-15T14:21:57Z</updated>
   
   <summary>Nothing like some breaking news to awake you from a blog slumber. Russ announced on his blog the end of Mowser. Sad news, and I sympathize. Russ and Mike are buddies so I&apos;ve followed the travails of Mowser closer than,...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="personal" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Nothing like some breaking news to awake you from a blog slumber. Russ announced on his blog <a href="http://www.russellbeattie.com/blog/the-end-of-mowser">the end of Mowser</a>. </p>

<p>Sad news, and I sympathize. Russ and Mike are buddies so I've followed the travails of Mowser closer than, well, almost anybody, so this also is a bit more personal for me. <a href="http://www.dynamicobjects.com/d2r/archives/002993.html">I've been there</a>. My previous startup, clevercactus, also ran out of money after having put everything I had into it, and I experienced something similar (although a bit less drastic) in terms of financial impact. A lot of us are used to abundance and generally have absolutely no idea how stressful it is (to put it mildly) to have to choose what food to buy to avoid breaking the bank. </p>

<p>The good news in all this is that failure is a HUGE learning opportunity, something that isn't said enough. Throughout the process you're consumed by trying to make it work, but once it's done you can look back and find a lot of things to do differently in the future. Yes, in the future -- I don't believe that you can really say that you'd 'do things differently' since generally we make the best decisions we can with the information we have available at the time. Additionally, the next step (after a period of recovery) after having put everything into something that didn't work can actually be very refreshing and lead to amazing opportunities, like it did with me.</p>

<p>There is also some solace to be found in the online response. When you work with a team of a few people or more you can help each other, but when you work on your own or with a partner it's a harder situation, and the online response helps a lot. In the case of mowser, it's been at <a href="http://www.techmeme.com/080414/p132#a080414p132">the top of techmeme</a> for a while now and it's been covered and discussed all over the place, in part because of Russ' statement that 'the mobile web is dead.' (More on that later), but also due to comments of support.</p>

<p>As for Mowser, it's online for the time being and as Mike says <a href="http://www.thisismobility.com/blog/2008/04/14/mowser-firesale-everything-must-go/">they're looking to sell the site or code</a>, which is in my mind a very possible outcome. It would be cool to see it live on in some form.</p>]]>
      
   </content>
</entry>

<entry>
   <title>hny!</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2008/01/hny.html" />
   <id>tag:blog.diegodoval.com,2008://14.3493</id>
   
   <published>2008-01-02T07:33:49Z</published>
   <updated>2008-01-02T07:39:47Z</updated>
   
   <summary>Great day today, outside for a while which was possible thanks to non-freezing weather. Days are already getting a bit longer and the speed of life is picking up, even if imperceptibly. I&apos;ve not been blogging much since I took...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="personal" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Great day today, outside for a while which was possible thanks to non-freezing weather. Days are already getting a bit longer and the speed of life is picking up, even if imperceptibly. I've not been blogging much since I took a vacation last November (and it was much needed rest) but that shouldn't last long. One rule, at least: blogging in new year's is (somehow) good medicine, even if you don't say much. :-)</p>

<p>Have a great 2008!</p>]]>
      
   </content>
</entry>

<entry>
   <title>miker.join(mowser)</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/12/mikerjoinmowser.html" />
   <id>tag:blog.diegodoval.com,2007://14.3491</id>
   
   <published>2007-12-13T16:14:10Z</published>
   <updated>2007-12-13T19:18:03Z</updated>
   
   <summary>You wanted to hire Mike, didn&apos;t you? Well, too late! He&apos;s joined Mowser. Awesome! Btw, I took that picture. I demand royalties. Royalties, I say! Ok, maybe I didn&apos;t take the picture but I take credit anyway since it&apos;s in...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>You wanted <a href="http://blog.diegodoval.com/2007/11/mikes_looking.html">to hire Mike</a>, didn't you? Well, too late! He's <a href="http://www.thisismobility.com/blog/2007/12/12/joining-mowser/">joined Mowser</a>. Awesome! Btw, I took <a href="http://www.russellbeattie.com/blog/miker-joins-mowser">that picture</a>. I demand royalties. Royalties, I say! Ok, maybe I didn't take the picture but I take credit anyway since it's in my house. :)</p>

<p>In celebration of this momentous occasion, I've added a link to the Mowser-powered mobile version of my blog to the left column. And there was much rejoicing.</p>

<p>Paraphrasing Kent Brockman: <i>I, for one, welcome our new mobile overlords.</i> </p>]]>
      
   </content>
</entry>

<entry>
   <title>mike&apos;s looking...</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/mikes_looking.html" />
   <id>tag:blog.diegodoval.com,2007://14.3490</id>
   
   <published>2007-11-29T04:44:46Z</published>
   <updated>2007-11-29T04:51:39Z</updated>
   
   <summary>Mike is leaving AdMob, which means he&apos;s looking for the next cool mobile thing to do. Emphasis on cool. And mobile. In both cases, he knows what he&apos;s talking about. Just call him up. But hurry, there&apos;s only one of...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="personal" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Mike <a href="http://www.thisismobility.com/blog/2007/11/28/leaving-the-mob/">is leaving AdMob</a>, which means he's looking for the next cool mobile thing to do. Emphasis on cool. And mobile. In both cases, he knows what he's talking about. Just call him up. But hurry, there's only one of him! :-)</p>]]>
      
   </content>
</entry>

<entry>
   <title>Kindle, take 3</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/kindle_take_3.html" />
   <id>tag:blog.diegodoval.com,2007://14.3488</id>
   
   <published>2007-11-24T17:09:16Z</published>
   <updated>2007-11-24T17:35:49Z</updated>
   
   <summary>Okay, after some more time with the device, here&apos;s a few more thoughts (Prompted by Kyle, who started asking questions on IM. So it&apos;s really his fault :)). Again, in no particular order... The navigation buttons are really really well...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="books" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Okay, after some more time with the device, here's a few more thoughts (Prompted by <a href="http://www.houseofkyle.com/">Kyle</a>, who started asking questions on IM. So it's really his fault :)). Again, in no particular order...<br />
<ul><li>The navigation buttons are really really well positioned. It's very natural to use one side or the other to navigate forward and back, even if when you first look at it (and even when you first use it) you think "this ain't gonna work." It does work. Very cool</li><li>Newspapers are <i>not</i> good for the Kindle yet. Three big problems: <ol><li>Each day's edition shows up as a new "Book" in the main tab, which sounds great at first, but after the first week half the screen is New York Times editions. Then you have to go into the content manager and start deleting... not great. They should automatically go away, otherwise it's a pain.</li><li>Another problem (less worrisome than the other one) is that with a lot of small articles you have to use the navigation more, which is less than ideal--and there's a dearth of pictures, which makes the newspaper be a little less interesting.</li><li>Finally, the updates. It gets updated with the actual contents of the <i>printed</i> edition. At the beginning of the day. After that, no more updates. Come on! What's the point of the always-on EVDO if you don't get daily updates for the newspapers? Newspapers are real-time these days. This bad mix of digital and meatspace is not great.</li></ol>So, the newspaper subscription is not going to work, I may try it again in the future. On the plus side, you get a 14-day trial, so I can cancel it without harm done to my bank account. :)</li><li>Magazines. Two types here: image-heavy, like <i>Time</i>, which don't really work given the screen and the fact that, well, there are almost no images in the "Kindle edition", and those like <i>The Atlantic</i> which have long articles and few images, which are perfect for the device. <i>The Economist</i> (if it was available) would be another great choice methinks.</li><li>Blogs. No, I didn't even <i>try</i> subscribing to a blog. I will though, just to see what the UI is, but I'm not paying $2 a month to read rants. Sorry. 20 cents a month? Maybe. $2 is too much.</li><li>Power. A final interesting point is that I normally, as I do with the Sony reader, I'd leave this on all the time, since the screen draws no power. However, Amazon has decided to put in a <i>screensaver</i> on the thing, so if you leave it on it <i>does</i> suck the amps, few as they may be. I suppose that it's inevitable given the always-on wireless, but a screensaver? Probably one of those things where you have to <i>pretend</i> that you have a screensaver to avoid support calls from people worried that the display would be "burned" with the current image (not possible with eInk). Anyway. As a result of the screensaver I find myself turning it on and off, which is a bit unnecessary. I haven't charged it in a week, and it still has about half the charge :).</li></ul><br />
Separate from all this, I keep wondering what the best solution is for web navigation. Mowser gets close, but the display is so particular (given the slow refresh time) and the navigation of the device so fascinating (to me, at least) that I keep feeling this cries out for a specific solution. Maybe I'll try to hack something together one of these days.</p>]]>
      
   </content>
</entry>

<entry>
   <title>Kindle, take 2</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/kindle_take_2.html" />
   <id>tag:blog.diegodoval.com,2007://14.3486</id>
   
   <published>2007-11-21T01:18:01Z</published>
   <updated>2007-11-21T01:52:20Z</updated>
   
   <summary>Okay, so after a few hours of playing around with the Kindle here&apos;s some further thoughts on the device, in no particular order. :) The display is clearly better than the one on the Sony Reader PRS-500 (first gen): faster...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="books" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="media" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<span class="mt-enclosure mt-enclosure-image"><img alt="kindle-topleft.jpg" src="http://blog.diegodoval.com/kindle-topleft.jpg" width="285" height="154" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;"/></span>Okay, so after a few hours of playing around with the Kindle here's some further thoughts on the device, in no particular order. :)

<ul><li><strong>The display is clearly better than the one on the Sony Reader PRS-500</strong> (first gen): faster refresh, better contrast. I imagine it is on par with that of the PRS-505.</li><li><strong>The navigation metaphor is <i>really</i> interesting</strong>, and quite unique. There's this metallic-looking strip on the side that identifies lines/paragraphs/sections (depending on context) and that provides visual feedback of operations that take time. In particular, it seems to draw the eye's attention while the page is "flipping" which <a href="http://blog.diegodoval.com/2007/11/why_eink_readers_havent_taken.html">as I mentioned before</a> is slightly distracting at first (but then is not noticeable). The strip is probably quartz-based (like the liquid crystal in digital watches) since it updates too fast to be an eink variant.</li><li><strong>Specifically, the navigation metaphor mixes the physical with the virtual in a strange, but appealing way.</strong> There's the idea of "moving" this almost physical marker (in the form of the metallic strip) to select what you want and then click or press enter to "activate" it depending on context. This is in contrast to the navigation Sony did in their reader, which uses the ink itself to mark selection and is clunky and slow. I don't know yet if the Kindle's navigation is genius or folly yet, but it's definitely original, and it's worked well so far.</li><li><strong>The purchase system is so simple, it's evil. :)</strong> Just click, click, and you're done. The book is there in seconds and you've spent the money (they do have a link in the final page that lets you back out of the transaction if you want, which is great). Between this, the auto-configuration (the device came pre-configured with my account out of the box) and wireless connectivity included and working out of the box, Kindle sets a new bar for out-of-the-box experience, even going beyond iPod (and I don't say that lightly). Great job guys!</li><li><strong>Speaking of out-of-the-box experience</strong> -- <a href="http://www.thisismobility.com/blog/?p=442">Mike was wondering</a> what happens if you buy the device for someone else. Well, by default it's tied to your account, but as soon as you buy it you get access to a page that lets you "unlink" the device and then you'd have to "link it" to the other Amazon account (not sure if "linking" and "unlinking" are the terms Amazon uses, I don't think so :)).</li><li><strong>Also cool is that you can link <i>more than one</i> Kindle to a single Amazon account</strong>, in effect sharing books across them, say for the whole family.</li><li><b>Web navigation is decent, if limited.</b> <a href="http://www.russellbeattie.com/blog/">Russ</a> came over and we geeked out with the device for a bit, looking at the user agent (Mozilla-Compatible, NetFront) and other headers it was sending. Amazon is proxying the content, which isn't a surprise. Net access is fairly fast (and free!), and <a href="http://www.mowser.com/">Mowser</a> works great on it! Faster even though in effect it's going through two proxies (Amazon, then Mowser).</li><li><strong>In Default Mode, the browser ignores CSS/styles,</strong> and it behaves more like a limited-capabilities mobile browser. But turning on Advanced Mode enables them. Oh, and you can turn on Javascript support too! (off by default).</li><li><strong>Emailing content in works really well:</strong> just send an email to your chosen email address for the kindle with an attachment that is the document/images you want to send, and after a few minutes it shows up in the device. It's also available, properly transcoded, in your Amazon online library. Really well done. There's a $0.10 (10 cent) charge to do that, but you can also do the transcoding for free and upload the file manually through USB.</li><li><strong>USB mode is simple:</strong> just plug it in, and it shows up as a disk, disabling any other functions in the device. You can dump PRC, MOBI, TXT, and Amazon's own AZW files (whatever those are). As a quick test I downloaded the PRC version of Cory Doctorow's "<a href="http://craphound.com/down/download.php">Down and Out in the Magic Kingdom</a>" put it in the documents folder, and presto, there it was.</li><li><strong>You can also download the AZW files from Amazon's digital library to your PC</strong> and then manage them from there, adding them/removing them to the device through USB. Very interesting. Amazon is acting as a sort of automatic backup, but in theory you could do away with Amazon completely.</li><li>Oh, and yeah, some of the navigation keys in the border tend to be pressed a bit too often by mistake. Probably something I'll snap out of, but if it was me, I'd make them <i>not</i> go all the way out to the edge, which exposes them more.</li></ul>
Phew! That's it for now. Overall, a great little device, if slightly odd-looking at first, you completely forget about that in 2 minutes. Now to ponder the question of how to automate the process of converting content for it in an easier way...
]]>
      
   </content>
</entry>

<entry>
   <title>Kindle!</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/kindle.html" />
   <id>tag:blog.diegodoval.com,2007://14.3485</id>
   
   <published>2007-11-20T19:22:54Z</published>
   <updated>2007-11-20T19:40:30Z</updated>
   
   <summary>So yesterday morning I ordered a Kindle (as one of my first conscious acts of the day :)) and it arrived a few minutes ago. Lightning Quick Impressions The Packaging is cool, very Apple-like. It&apos;s like a book! Nicely done.The...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="books" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<span class="mt-enclosure mt-enclosure-image"><img alt="ksmall.png" src="http://blog.diegodoval.com/ksmall.png" width="100" height="71" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;"/></span>So yesterday morning I ordered a Kindle (as one of my first conscious acts of the day :)) and it arrived a few minutes ago. 

<p><b>Lightning Quick Impressions</b></p>

<ul><li>The Packaging is cool, very Apple-like. It's like a book! Nicely done.</li><li>The device has charge out of the box. Boot it up, and it already knows my name. Yes, some corner of my mind says that there's privacy concerns in there somewhere, but there's something incredibly cool about opening a box, turning on a device and having it know who you are. I'm sure I'll recover and think it's creepy later. Or maybe not.</li><li>Flip pages. There's seemingly two dozen "next" and "previous" buttons and ways of navigating. I wonder if I'll be hitting them by mistake all the time. That's definitely very much <i>not</i> like Apple.<li>A couple of excerpts and the NYT, which I had configured yesterday, are already in the device, synced. Nice.</li><li>Finally, I go to the "Experimental" menu (the menu bar selector is weird, but cool!) and choose Basic Web Browser. Enter my blog's address. It loads it. Holy moly. Fast. No configuration. Nothing. I have to collect my jaw from the floor. There's something to be said for seamless, and this rivals apple.</li></ul>

<p>More later after I play with it some more! In the meantime, check out the unboxing photos in a slideshow, including the browser pointed at this blog -- powered by a Ning Network i just created. :)<br />
<center><embed class="xg_slideshow" src="http://kindlenet.ning.com/xn_resources/widgets/photo/slideshowplayer/slideshowplayer.swf?v=2.1%3A2099" quality="high" bgcolor="" width="425" height="346" allowFullScreen="true" wmode="transparent" scale="noscale" FlashVars="feed_url=http%3A%2F%2Fkindlenet.ning.com%2Fphoto%2Fphoto%2FslideshowFeedAlbum%3Fid%3D1563107%253AAlbum%253A24%26x%3Doh4GOF6zut6AOiwIXKAu7KQ4ZSSNHiIF%26photo_width%3D425%26photo_height%3D323&config_url=http%3A%2F%2Fkindlenet.ning.com%2Fphoto%2Fphoto%2FshowPlayerConfig%3Fx%3Doh4GOF6zut6AOiwIXKAu7KQ4ZSSNHiIF&backgroundColor=&layout=external_site&slideshow_title=&fullsize_url=http%3A%2F%2Fkindlenet.ning.com%2Fphoto%2Fphoto%2Fslideshow%3Ffeed_url%3Dhttp%253A%252F%252Fkindlenet.ning.com%252Fphoto%252Fphoto%252FslideshowFeedAlbum%253Fid%253D1563107%25253AAlbum%25253A24" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed> <br /><small><a href="http://kindlenet.ning.com/photo/photo">Find more photos like this on <em>Kindle!</em></a></small></center></p>]]>
      
   </content>
</entry>

<entry>
   <title>why eink readers haven&apos;t taken off yet</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/why_eink_readers_havent_taken.html" />
   <id>tag:blog.diegodoval.com,2007://14.3484</id>
   
   <published>2007-11-19T03:02:31Z</published>
   <updated>2007-11-19T17:36:35Z</updated>
   
   <summary>Russ continues in his vein of reviewing products that he hasn&apos;t used based on reviews that others have done and photos from the web :-)), and explains that eink-based ebook readers like the Sony PRS-500 series haven&apos;t taken off because...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Russ continues in his vein of reviewing products that he hasn't used based on reviews that others have done and photos from the web :-)), and explains that eink-based ebook readers like the Sony PRS-500 series haven't taken off <a href="http://www.russellbeattie.com/blog/ebooks-need-more-contrast-to-take-off">because they're not pure black text on white background</a>. </p>

<p>Well.</p>

<p>As it happens, I own -and <i>use</i> although less than I want to, for reasons I'll explain later- a PRS-500 (the first generation, the photo that Russ has in his post is of the PRS-505). </p>

<p>Here's a photo of the PRS-500 next to a paperback book under natural light that I just took a few minutes ago (sorry for the quality, but image sharpness is not the goal here). </p>

<span class="mt-enclosure mt-enclosure-image"><a href="http://blog.diegodoval.com/einkvspaper.html" onclick="window.open('http://blog.diegodoval.com/einkvspaper.html','popup','width=749,height=436,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img alt="einkvspaper-small.png" src="http://blog.diegodoval.com/einkvspaper-small.png" width="375" height="218" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;"/></a></span>

<p>Is the paperback black-on-white? No. <br />
Is the eink display darker than the book? Yes. <br />
But is the difference enough to "turn me off" from reading? Absolutely not. </p>

<p>Keep in mind this is a first-gen device, a year old (it was first shown publicly at CES on January 2006, and released in the Fall), and that the new PRS-505 has more levels of grayscale (8, vs. 4 in the original) and even higher contrast.</p>

<p>The difference is, in fact, negligible. Under direct light, which is how most of us read, there is basically no difference at all. In any case, books are <i>not</i> Black on white -- the best background is a brownish-light-gray and if you pick up any book and look at the background you'll see that they rarely have pure white background (tech and academic books being the main exception).</p>

<p>Another red herring that people that "use" the device for 30 seconds at a store mention is how you can see the screen "flipping" the page, which is definitely a little disconcerting at first. When you're actually reading for extended periods, this becomes completely a non-issue.</p>

<p>So, if not because of the screen, why haven't these readers taken off yet?</p>

<p>First, <i>choice</i> -- there aren't many products like this. There's basically the Sony Reader and I think one more random manufacturer selling one (I seem to remember seeing it, but can't really say for sure, which means I probably made it up). This means there's no competition in the market, and in particular lower volumes for a new technology like eInk which keep component prices high.</p>

<p>Second, <i>price</i>. $300-400 is nothing to sneeze at, but crucially the price of <I>books</i> for these devices is just ridiculous. They cost the same as the physical versions and they come with DRM which limits where you can use them. The book publishers are facing the same problem as the music companies and movie studios and they're reacting the same way, trying to fight digital instead of embracing it (and the lower distribution costs it entails) instead plunging their heads in the sand and hoping that the storm will pass. Yeah, that's not gonna work.  </p>

<p>Finally, <i>uploading arbitrary text content sucks</i>. This one is a bit more subtle and in my mind perhaps the one that gets to be close to a "deal breaker". Say I have a PDF of something that I'd like to throw into the device to read. I have to fight with the software, which in the case of Sony is a pathetic iTunes knock-off that looks as if it was put together by a bunch of 5-year olds with crayons (yeah, it's that bad, also Windows-only), but more importantly, the reader is not smart enough to do the right thing with arbitrary PDF. It scales the PDF down until the whole page is visible, margins and all, which means, in 99% of the cases, that a PDF created for letter-sized paper gets shrunk down to paperback. Not very usable. Exporting the thing as text and then uploading that works marginally better, but you end up with sentences broken in the wrong places as well as a lot of extraneous content such as page headers showing up in the middle of a page (lots of <a href="http://www.gutenberg.org/wiki/Main_Page">Project Gutenberg</a> files are like this). Similarly, converting webpages, etc, is a massive pain. Ideally I'd just take web content and drop it on the device for reading later, but that's not how it works, and it completely gets in the way of me using it more often. (As an aside, being able to take notes is something I find myself wanting to do all the time, I do that with post-its on real books, so a solution for that would be nice as well). </p>

<p>If books where cheaper, and I mean significantly, than they are today, and if taking web/other content to the device was a no-brainer, then we'd be much closer to seeing these portable readers become accepted and used by many more users.</p>]]>
      
   </content>
</entry>

<entry>
   <title>happy birthday Erik!</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/happy_birthday_erik.html" />
   <id>tag:blog.diegodoval.com,2007://14.3482</id>
   
   <published>2007-11-17T17:35:42Z</published>
   <updated>2007-11-17T17:37:57Z</updated>
   
   <summary>As I come out of my self-imposed electronic ban, Happy 40th to Erik! Have a great day!...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="personal" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>As I come out of my self-imposed electronic ban, <a href="http://erik.thauvin.net/blog/news.jsp?date=2007-11-17#471">Happy 40th</a> to Erik! Have a great day!</p>]]>
      
   </content>
</entry>

<entry>
   <title>opensocial: not just about one company</title>
   <link rel="alternate" type="text/html" href="http://blog.diegodoval.com/2007/11/opensocial_not_just_about_one.html" />
   <id>tag:blog.diegodoval.com,2007://14.3481</id>
   
   <published>2007-11-01T16:25:43Z</published>
   <updated>2007-11-01T17:40:45Z</updated>
   
   <summary>Dave comments a bit on OpenSocial, and mentions his concern about Google keeping data locked up. Marc Canter points out (correctly) that user account data would remain on each social network (&apos;container&apos;) that implements opensocial. I&apos;d go a bit further...</summary>
   <author>
      <name></name>
      
   </author>
   
      <category term="ning" scheme="http://www.sixapart.com/ns/types#category" />
   
      <category term="software" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://blog.diegodoval.com/">
      <![CDATA[<p>Dave <a href="http://www.scripting.com/stories/2007/10/31/aBitAboutOpenSocial.html">comments a bit on OpenSocial</a>, and mentions his concern about Google keeping data locked up. Marc Canter <a href="http://blog.broadbandmechanics.com/2007/10/is-google-trying-to-control-users-data-in-opensocial">points out</a> (correctly) that user account data would remain on each social network ('container') that implements opensocial. </p>

<p>I'd go a bit further to point out that very little about this announcement is about open data or not open data. I happen to agree with Dave (and Marc) that data should be open. Just to be clear, I'm not just saying this: at Ning, we've been open on that front (if not great about documenting it fully :)) from day one. Today, you can easily cook up a script to take your personal data and take it with you, re-analyze it, do whatever you want. It's your data after all. Part of the reason we could implement OpenSocial support so quickly is due to the fact that Ning is at the core a very large set of XML/JSON APIs -- the benefits of being open are not always obvious, but this is definitely one of them.</p>

<p>I think Dave was focused on the Data aspects because prior (incorrect) rumors about this announcement implied that Google was going to announce something to gather data from multiple social networks.</p>

<p>But I digress. What I wanted to add to the conversation was that Dave put a quote in there that struck me for how well it applies to OpenSocial. </p>

<p>Quote:<blockquote  class="quoted"><i>How much happier we would be if instead of crippling each other with fear, we competed to empower each others' creativity.</i></blockquote>And that's what OpenSocial is about, at the core--regardless of whether that was the intention all along or not, that's what it's become. A set of common APIs in Javascript, using HTML for display and XML for component wrapping that everyone supports in the same way, with all the benefits that entails. </p>

<p><strong>OpenSocial is much less about Google v. Facebook than the announcement makes it seem.</strong> Everyone focuses on the Facebook angle, but if Google just wanted to take on Facebook, they could have done that, no? Is the Facebook thing a factor? Sure. But instead of joining a Google v. Facebook API deathmatch, Google chose to create and gather support for a set of standards that benefit everyone. They have done a great job of catalyzing the effort and getting it going, but this is now bigger than just one company announcing some APIs. </p>

<p>The main reason this is true: <strong>market forces.</strong></p>

<p>As I said in my <a href="http://blog.diegodoval.com/2007/10/opensocial_standardsbased_apps.html">previous post</a> -- no doubt there will be extensions, but <strong>the nature of this market is such that if you deviate too much developers won't support your platform</strong>. Developers in this market (iLike, Flixster, RockYou, Slide) have little if any direct ties to the container providers (Ning, Orkut, LinkedIn, Facebook), so developers really have the power to maintain things sane, since they will certainly optimize to make as few changes as possible and maximize exposure of their apps. It's been a while since a wholly new, truly competitive market where the users have a lot of "say" in the distribution (which generally happens across notifications and Activity streams) has emerged. </p>

<p><strong>It's one of those rare 'rising tide lifts all boats' situation.</strong> For developers, service providers, and, more importantly, users, who get more choice in terms of what site they use, without having to sacrifice on features.</p>

<p>And I think it's great news. :)</p>]]>
      
   </content>
</entry>

</feed>
