<?xml version="1.0"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"><channel><title>Scott Rosenberg's Open Salon Blog</title><description>Words from another yard</description><link>http://open.salon.com/user.php?uid=37</link><lastBuildDate>Wed, 25 Nov 2009 01:11:27 -0500</lastBuildDate><item><title>Levy: &#x201C;Say Everything&#x201D; 2009&#x2019;s &#x201C;best technology-related business book&#x201D;</title><description>&lt;p&gt;Forgive this author a moment of own-horn-tooting.&lt;/p&gt;
&lt;p&gt;It was always flattering and humbling to me to hear &lt;em&gt;Dreaming in Code&lt;/em&gt; spoken of in the same breath as &lt;em&gt;The Soul of a New Machine&lt;/em&gt;. With &lt;em&gt;Say Everything&lt;/em&gt; I also had a model in mind: &lt;a href="http://www.stevenlevy.com/index.php/other-books/hackers"&gt;&lt;em&gt;Hackers&lt;/em&gt;&lt;/a&gt;, Steven Levy&amp;#8217;s groundbreaking and still-valuable account of the pioneering mavericks of hacker culture &amp;#8212; which first taught me, back in the early &amp;#8217;80s, that there was a fascinating and important cultural story brewing in the computer rooms I&amp;#8217;d haunted as a high-school student. In fact, we considered titling the book &lt;em&gt;Bloggers&lt;/em&gt;, partly as homage to Levy&amp;#8217;s work. &lt;/p&gt;
&lt;p&gt;So you can imagine my delight at reading what Levy had to say about &lt;em&gt;Say Everything&lt;/em&gt; in &lt;a href="http://www.strategy-business.com/article/09407g"&gt;an article on the year&amp;#8217;s notable technology books&lt;/a&gt; in &lt;a href="http://www.strategy-business.com/"&gt;Strategy and Business&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;Say Everything&lt;/em&gt; is not only a delightful history of the form but a surprisingly broad account that touches on a number of major issues of the past decade, quietly making a case that blogs now play an indispensable role&amp;#8230;.&lt;/p&gt;
&lt;p&gt;Rosenberg&amp;#8217;s approach is to tell the stories of the storytellers, constructing his brief history of blogging by way of the bloggers themselves. He does this so well that it appears almost serendipitous that each aspect of his subject is almost perfectly embodied by the story of one or two individuals&amp;#8230;.&lt;/p&gt;
&lt;p&gt;Rosenberg is a &lt;em&gt;mensch&lt;/em&gt;, resisting cheap shots even when his subjects behave badly. But he is quick to puncture pretense, whether it comes from the self-importance of bloggers suddenly thrust into the public eye, or the snobbery of mainstream media dismissing citizen postings because their authors lack the training or credentials to participate in a national discussion&amp;#8230;&lt;/p&gt;
&lt;p&gt;Ironically, Rosenberg&amp;#8217;s extended encomium of blogging also turns out to be an implicit defense of another allegedly endangered form: the book. Only by such an extended and well-organized presentation can Rosenberg both give us a comprehensive account of blogging and successfully argue for its importance. The pages of &lt;em&gt;Say Everything&lt;/em&gt; provide not only an expertly curated burst of information, but also entertainment for several evenings. The book provides thought and provocation. It illuminates the deep economic challenges of the Internet. And, as is the case with blog postings, Rosenberg speaks with the clarity and wit of an authentic voice &amp;#8212; even after the highly filtered, far-from-real-time processing of a major publisher. That&amp;#8217;s why I think &lt;em&gt;Say Everything&lt;/em&gt; is the best technology-related business book of the year.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;OK, &amp;lt;/blush&amp;gt;. And thanks!&lt;/p&gt;
</description><link>http://open.salon.com/blog/scott_rosenberg/2009/11/24/levy_say_everything_2009s_best_technology-related_business_book</link><guid>http://open.salon.com/blog/scott_rosenberg/2009/11/24/levy_say_everything_2009s_best_technology-related_business_book</guid><pubDate>Tue, 24 Nov 2009 11:11:19 -0500</pubDate></item><item><title>A geeky problem with Mac scripting</title><description>&lt;p&gt;Here&amp;#8217;s what turns out to be the most intractable problem I&amp;#8217;ve encountered in my move to OSX as my primary work platform:&lt;/p&gt;
&lt;p&gt;For years I used a programmers&amp;#8217; text editor tool in Windows called &lt;a href="http://www.ultraedit.com/"&gt;Ultraedit&lt;/a&gt;. It worked great and allowed me to record macros. The most indispensible one, which I used constantly, was for automating the creation of HTML links. I would store the link-to URL in a clipboard, select some link text and start the macro. The macro would magically surround the link text with the proper HTML code to link it to the URL in the clipboard. &lt;/p&gt;
&lt;p&gt;I achieved this by&lt;br /&gt;
(a) copying the link text to a second clipboard; &lt;br /&gt;
(b) typing the &amp;lt;a href=&amp;#8221;&lt;br /&gt; &lt;br /&gt;
(c) pasting in the URL from the first clipboard; &lt;br /&gt;
(d) closing the tag with &amp;#8220;&amp;gt; &lt;br /&gt;
(e) pasting the link text from clipboard #2; &lt;br /&gt;
(f) ending the link with &amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;It sounds kinda complicated but it worked beautifully, and Ultraedit&amp;#8217;s macro recorder simply &amp;#8220;got it.&amp;#8221; I created the macro years ago, and its keyboard shortcut became hardwired in my memory. &lt;/p&gt;
&lt;p&gt;Now I&amp;#8217;m using TextWrangler and, alas, AppleScript doesn&amp;#8217;t seem to get it at all. The AppleScript recorder seems to grab the actions at too specific a level &amp;#8212; i.e., it doesn&amp;#8217;t capture &amp;#8220;switch to next clipboard&amp;#8221; but records the specific clipboard number; it doesn&amp;#8217;t capture &amp;#8220;current active document&amp;#8221; but records the specific document name that I happen to be using while I&amp;#8217;m recording the script.&lt;/p&gt;
&lt;p&gt;I was gearing myself up to learn enough AppleScript to try to write the script (or edit a recorded script well enough to make it work). Then I discovered that, perhaps thanks to Snow Leopard upgrade, the entire AppleScript recorder in TextWrangler doesn&amp;#8217;t seem to work at all. When I record a script and try to save it I get the following error message: (MacOS Error code: -4960). As far as I can tell, I can&amp;#8217;t save any scripts at all, making any AppleScript solution to this problem seem hopeless. &lt;/p&gt;
&lt;p&gt;I know, I know, if I had learned emacs years ago I wouldn&amp;#8217;t have any of these problems. But I didn&amp;#8217;t. I welcome any tips/suggestions! Is there a text-editor for Mac that will make my life easier? (I used to use the full version of BBEdit, and, back in those days, it wasn&amp;#8217;t any easier to script than Textwrangler.) Is there some obvious solution I&amp;#8217;m missing? &lt;/p&gt;
</description><link>http://open.salon.com/blog/scott_rosenberg/2009/11/22/a_geeky_problem_with_mac_scripting</link><guid>http://open.salon.com/blog/scott_rosenberg/2009/11/22/a_geeky_problem_with_mac_scripting</guid><pubDate>Sun, 22 Nov 2009 11:11:47 -0500</pubDate></item><item><title>Miscellany of the moment</title><description>&lt;ul&gt;
&lt;li&gt;Over at MediaShift&amp;#8217;s Idea Lab blog, where as a Knight News Challenge grantee I&amp;#8217;m posting occasionally, I&amp;#8217;ve published &lt;a href="http://www.pbs.org/idealab/2009/11/how-do-we-categorize-all-journalistic-errors314.html"&gt;a discussion of an interesting problem we&amp;#8217;re grappling&lt;/a&gt; with at MediaBugs: How do you organize a set of categories for all the different kinds of mistakes journalists can make? Do &lt;a href="http://www.pbs.org/idealab/2009/11/how-do-we-categorize-all-journalistic-errors314.html"&gt;weigh in over there&lt;/a&gt; and help us sort out this epistemological puzzle!&lt;/ul&gt;
&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.salon.com/technology/how_the_world_works/2009/11/11/duran_duran_and_the_internet"&gt;Andrew Leonard had a fine take &lt;/a&gt;on &lt;a href="http://news.bbc.co.uk/2/hi/entertainment/8347178.stm"&gt;the Duran Duran guy&amp;#8217;s complaint&lt;/a&gt; that easy access to the musical past devalues the present and inhibits innovation: &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;But rather than worry about whether the Internet is exerting a baleful influence, I think we just need to make our peace with the fact that every new technology creates a different space for cultural practice. Duran Duran without cable television or a high-end production studio is simply unthinkable. Recording technologies enabled the commodification of musical performance on a mass basis. Networked computers have crippled the profitability of that commodification. The adventure is ongoing.&lt;/p&gt;
&lt;p&gt;Perhaps the digitally-enabled overhang of the cultural production of previous generations is a heavy burden. But I guarantee you that those artists who do break free of its restrictions, and can come up with something interesting to say, will be easier to find and easier to enjoy than any pioneers of any previous era were.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="http://www.roughtype.com/archives/2009/11/be_everywhere_n_1.php"&gt;Nick Carr&amp;#8217;s&lt;/a&gt; is worth reading too:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Taylor argues that, when it comes to music or any other form of art, the price of our &amp;#8220;endless present&amp;#8221; is the loss of a certain &amp;#8220;magical power&amp;#8221; that the artist was once able to wield over the audience. I suspect he&amp;#8217;s right.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Carr seems a little bummed about that price, but I&amp;#8217;m more sanguine: Our culture had swung way too far in the direction of artist worship anyway. Less fetishization of the purchased object and the personality who produced it is fine with me. &lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.cjr.org/the_news_frontier/trash_compactor.php?page=all"&gt;Megan Garber&amp;#8217;s piece in CJR&lt;/a&gt; on the &lt;a href="http://www.nytimes.com/2009/11/10/science/10patch.html?_r=1"&gt;Pacific garbage patch story funded by Spot.us and appearing in the NYTimes&lt;/a&gt; sparked an extended debate in the small but vocal world of new-media journalism punditry. The framing of Garber&amp;#8217;s piece, in particular the headline, positioned it as a critique of Spot.us for failing to &amp;#8220;deliver&amp;#8221; a New York Times piece of sufficient quality. But the body of the piece made the far more useful argument that the garbage-patch reporter, &amp;#8220;Garbage Girl&amp;#8221; Lindsey Hoshaw, shone far more brightly in the &lt;a href="http://lindseyhoshaw.wordpress.com/"&gt;daily blog she produced&lt;/a&gt; than in the relatively conventional Times feature. &lt;/p&gt;
&lt;p&gt;To me, it looks like Hoshaw gave the Times what it doubtless asked for in terms of fairly impersonal feature writing. The Times&amp;#8217;s reluctance to capitalize on &amp;#8212; or even link to! &amp;#8212; the blog indicates the limits of its own willingness to embrace new modes of journalism far more than any problems or failures in the Spot.us model.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://lindseyhoshaw.wordpress.com/2009/11/13/from-the-blog-that-beat-the-nyt/"&gt;Hoshaw&amp;#8217;s postmortem&lt;/a&gt; is worth reading in full, but this comment stands out:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;And the most rewarding part of the Spot.us project was getting to meet some of the donors in person before I left, listening to their ideas, writing to them on my blog from the middle of the ocean and emailing them when the story came out to celebrate our success.&lt;/p&gt;
&lt;p&gt;I had images of my readers&#x2019; faces in my mind while I was at sea and it kept me accountable. These were real people not some unimaginable group called &#x201C;the public.&#x201D; I knew their names and I&#x2019;d met with some of them in person. They were tangible and I thought, &#x201C;what would Alex think if he knew I blogged on behalf of the ship or that I wasn&#x2019;t diligent about taking photos at every opportunity?&#x201D;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;(Full disclosure: I was one of many people who kicked in a small donation via Spot.us to fund the garbage story.) &lt;/li&gt;
&lt;/ul&gt;
</description><link>http://open.salon.com/blog/scott_rosenberg/2009/11/13/miscellany_of_the_moment</link><guid>http://open.salon.com/blog/scott_rosenberg/2009/11/13/miscellany_of_the_moment</guid><pubDate>Fri, 13 Nov 2009 11:11:55 -0500</pubDate></item><item><title>The &#x201C;millions of results are useless&#x201D; myth</title><description>&lt;p&gt;While we&amp;#8217;re on the subject of the value of search&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.kqed.org/epArchive/R911111000"&gt;Ken Auletta is on KQED Forum&lt;/a&gt; right now, talking about his new Google book, and I just heard him comment on Google&amp;#8217;s vulnerability to new competitors by hauling out the old complaint that Google&amp;#8217;s provision of millions of results means it&amp;#8217;s doing a poor job of serving it&amp;#8217;s users.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wordyard.com/wp-content/uploads/2009/11/41B7NrA03OL._SS500_-300x300.jpg" alt="41B7NrA03OL._SS500_" title="41B7NrA03OL._SS500_" width="300" height="300" class="alignleft size-medium wp-image-2323" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8220;I searched for &amp;#8216;the real William Shakespeare,&amp;#8217; &amp;#8221; he said (I&amp;#8217;m paraphrasing), &amp;#8220;and I got five million results. That&amp;#8217;s useless.&amp;#8221;&lt;/p&gt;
&lt;p&gt;We hear this one all the time &amp;#8212; and it gets Google&amp;#8217;s value precisely wrong. When Google came along in the late &amp;#8217;90s we already had search engines, like AltaVista, that provided millions of results. Google is the &lt;i&gt;antidote&lt;/i&gt; to the millions-of-results problem. All of Google&amp;#8217;s value &amp;#8212; and the reason that Google originally rose to prominence &amp;#8212; was that it solved this problem, and &lt;a href="http://www.salon.com/21st/rose/1998/12/21straight2.html"&gt;got columnists like me to rave about its value&lt;/a&gt; while it was still a tiny startup company.&lt;/p&gt;
&lt;p&gt;Let&amp;#8217;s do &lt;a href="http://www.google.com/search?rls=en&amp;#038;q=real+william+shakespeare&amp;#038;ie=UTF-8&amp;#038;oe=UTF-8"&gt;that &amp;#8220;real William Shakespeare&amp;#8221; search&lt;/a&gt;. Right now I actually get 15 million results. Who cares? Nobody ever looks past the first, or at most the second or third, page of results. And Google&amp;#8217;s first page of results on this query is not bad at all. Many of the top links are amateur-created content, but most of them provide useful secondary links. As a starting point for Web research it&amp;#8217;s a pretty good tool. If you fine-tune your query to &amp;#8220;Shakespeare authorship debate&amp;#8221; you do even better.&lt;/p&gt;
&lt;p&gt;Yes, it&amp;#8217;s true that the Google search box is less useful with generalized product and commercial  searches (like &amp;#8220;London hotels&amp;#8221;), where the results are laden with ads and fought over by companies armed with SEO tactics. Google has all sorts of flaws. But it&amp;#8217;s time to bury the old &amp;#8220;millions&amp;#8221; complaints. They&amp;#8217;re meaningless. And Auletta&amp;#8217;s willingness to trot them out doesn&amp;#8217;t give me much hope for the value of his new book. &lt;/p&gt;
</description><link>http://open.salon.com/blog/scott_rosenberg/2009/11/11/the_millions_of_results_are_useless_myth</link><guid>http://open.salon.com/blog/scott_rosenberg/2009/11/11/the_millions_of_results_are_useless_myth</guid><pubDate>Wed, 11 Nov 2009 13:11:12 -0500</pubDate></item><item><title>Why &#x201C;junk traffic&#x201D; isn&#x2019;t so junky</title><description>&lt;p&gt;I&amp;#8217;ve been reading &lt;a href="http://www.cjr.org/the_audit/loyal_readers_and_junk_traffic.php#"&gt;Ryan Chittum&amp;#8217;s recent posts at Columbia Journalism Review&lt;/a&gt; about the whole Murdoch/WSJ &amp;#8220;We&amp;#8217;re seceding from Google&amp;#8221; flap. &lt;/p&gt;
&lt;p&gt;Chittum applauds what he sees as  a new appreciation in media circles for the &amp;#8220;loyal readership&amp;#8221; metric as  opposed to the &amp;#8220;total monthly visitors&amp;#8221; tally, and argues, accurately enough, that the core readership &amp;#8212; the fraction of your traffic that represents people who read a lot and keep coming back &amp;#8212; is more valuable and important than the drop-ins, the folks who arrive via a search query, read a page, and then vanish. He airily dismisses the transient visitors as &amp;#8220;junk traffic.&amp;#8221; &lt;/p&gt;
&lt;p&gt;This relative valuation of these two kinds of traffic is pretty obvious, and widely understood in the Web industry.  Chittum concludes that newspapers shouldn&amp;#8217;t be afraid to shut out the search traffic in their effort to convert the loyal readers into paying subscribers (though it&amp;#8217;s not clear from his argument whether he means subscribers in print or on a pay-walled-off Web site).&lt;/p&gt;
&lt;p&gt;There are two big problems with this analysis.&lt;/p&gt;
&lt;p&gt;First, many advertisers, sadly, do not share Chittum&amp;#8217;s perspective. When they evaluate a buy, they are often obsessed with &amp;#8220;reach.&amp;#8221; They want to hit lots of eyeballs. They are far less interested in the repeat visitors. Once they&amp;#8217;ve shown you their ad once, they know that you&amp;#8217;re probably not going to look at it again, even if they were lucky enough to catch your eye on the first exposure. Transient search traffic helps media sites satisfy these advertisers.&lt;/p&gt;
&lt;p&gt;Second, and I think more important, Chittum completely ignores the way &amp;#8220;junk traffic&amp;#8221; visitors provide &lt;a href="http://www.wordyard.com/2009/04/20/should-google-pay-a-tax-to-media-corporations/"&gt;&amp;#8220;qualified leads&amp;#8221;&lt;/a&gt; to a Web site: they expose your site to new eyes and give you a shot, admittedly fleeting, and turning some fraction of them into loyal readers. This is the way sites have always built traffic &amp;#8220;organically.&amp;#8221; In the era of Facebook and Twitter that may be changing, but I&amp;#8217;d argue that the principle still holds whether folks are landing on your article page via Google or a retweet. This is a far better way to expand your traffic base than expensive offline advertising. &lt;/p&gt;
&lt;p&gt;Chittum&amp;#8217;s analysis looks to me like a recipe for stagnation, a method media companies might adopt if they want to harvest cash from their websites to keep their offline products on life support. It&amp;#8217;s this sort of thinking &amp;#8212; &amp;#8220;cash out the potential of the future to prolong the agony of the present&amp;#8221; &amp;#8212; that has dug so much of the media business such a deep hole already. &lt;/p&gt;
</description><link>http://open.salon.com/blog/scott_rosenberg/2009/11/11/why_junk_traffic_isnt_so_junky</link><guid>http://open.salon.com/blog/scott_rosenberg/2009/11/11/why_junk_traffic_isnt_so_junky</guid><pubDate>Wed, 11 Nov 2009 12:11:48 -0500</pubDate></item></channel></rss>



