metainspector 1.7.1 → 1.8.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -30,6 +30,7 @@ Then you can see the scraped data like this:
30
30
  page.links # array of strings, with every link found on the page
31
31
  page.absolute_links # array of all the links converted to absolute urls
32
32
  page.meta_description # meta description, as string
33
+ page.description # returns the meta description, or the first long paragraph if no meta description is found
33
34
  page.meta_keywords # meta keywords, as string
34
35
  page.image # Most relevant image, if defined with og:image
35
36
  page.images # array of strings, with every img found on the page
@@ -21,7 +21,13 @@ module MetaInspector
21
21
  # Returns the parsed document title, from the content of the <title> tag.
22
22
  # This is not the same as the meta_tite tag
23
23
  def title
24
- @data.title ||= parsed_document.css('title').inner_html rescue nil
24
+ @data.title ||= parsed_document.css('title').inner_html.gsub(/\t|\n|\r/, '') rescue nil
25
+ end
26
+
27
+ # A description getter that first checks for a meta description and if not present will
28
+ # guess by looking grabbing the first paragraph > 120 characters
29
+ def description
30
+ meta_description.nil? ? secondary_description : meta_description
25
31
  end
26
32
 
27
33
  # Returns the parsed document links
@@ -30,16 +36,18 @@ module MetaInspector
30
36
  .map {|link| link.attributes["href"] \
31
37
  .to_s.strip}.uniq) rescue nil
32
38
  end
33
-
39
+
34
40
  def images
35
- @data.images ||= parsed_document.search('//img').map{ |i| i.attributes['src'].value }.uniq
41
+ @data.images ||= parsed_document.search('//img')
42
+ .reject{|i| i.attributes['src'].blank? }
43
+ .map{ |i| i.attributes['src'].value }.uniq
36
44
  end
37
45
 
38
46
  # Returns the links converted to absolute urls
39
47
  def absolute_links
40
48
  @data.absolute_links ||= links.map { |l| absolutify_url(l) }
41
49
  end
42
-
50
+
43
51
  def absolute_images
44
52
  @data.absolute_images ||= images.map{ |i| absolutify_url(i) }
45
53
  end
@@ -135,5 +143,11 @@ module MetaInspector
135
143
  def remove_mailto(links)
136
144
  links.reject {|l| l.index('mailto')}
137
145
  end
146
+
147
+ # Look for the first <p> block with 120 characters or more
148
+ def secondary_description
149
+ (p = parsed_document.search('//p').map(&:text).select{ |p| p.length > 120 }.first).nil? ? '' : p
150
+ end
151
+
138
152
  end
139
153
  end
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  module MetaInspector
4
- VERSION = "1.7.1"
4
+ VERSION = "1.8.2"
5
5
  end
@@ -1,30 +1,25 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "meta_inspector/version"
2
+ require File.expand_path('../lib/meta_inspector/version', __FILE__)
4
3
 
5
- Gem::Specification.new do |s|
6
- s.name = "metainspector"
7
- s.version = MetaInspector::VERSION
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ["Jaime Iniesta"]
10
- s.email = ["jaimeiniesta@gmail.com"]
11
- s.homepage = "https://github.com/jaimeiniesta/metainspector"
12
- s.summary = %q{MetaInspector is a ruby gem for web scraping purposes, that returns a hash with metadata from a given URL}
13
- s.description = %q{MetaInspector lets you scrape a web page and get its title, charset, link and meta tags}
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Jaime Iniesta"]
6
+ gem.email = ["jaimeiniesta@gmail.com"]
7
+ gem.description = %q{MetaInspector lets you scrape a web page and get its title, charset, link and meta tags}
8
+ gem.summary = %q{MetaInspector is a ruby gem for web scraping purposes, that returns a hash with metadata from a given URL}
9
+ gem.homepage = "https://github.com/jaimeiniesta/metainspector"
14
10
 
15
- s.rubyforge_project = "MetaInspector"
11
+ gem.files = `git ls-files`.split("\n")
12
+ gem.test_files = `git ls-files -- {spec}/*`.split("\n")
13
+ gem.name = "metainspector"
14
+ gem.require_paths = ["lib"]
15
+ gem.version = MetaInspector::VERSION
16
16
 
17
- s.files = `git ls-files`.split("\n")
18
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
- s.require_paths = ["lib"]
17
+ gem.add_dependency 'nokogiri', '1.5.0'
18
+ gem.add_dependency 'charguess', '1.3.20110226181011'
19
+ gem.add_dependency 'rash', '0.3.0'
21
20
 
22
- s.add_dependency 'nokogiri', '1.5.0'
23
- s.add_dependency 'charguess', '1.3.20110226181011'
24
- s.add_dependency "rash", "~> 0.3.0"
25
-
26
- s.add_development_dependency 'rspec', '~> 2.6.0'
27
- s.add_development_dependency 'fakeweb', '~> 1.3.0'
28
- s.add_development_dependency 'awesome_print', '~> 0.4.0'
29
- s.add_development_dependency 'rake', '0.9.2'
30
- end
21
+ gem.add_development_dependency 'rspec', '2.6.0'
22
+ gem.add_development_dependency 'fakeweb', '1.3.0'
23
+ gem.add_development_dependency 'awesome_print', '0.4.0'
24
+ gem.add_development_dependency 'rake', '0.9.2'
25
+ end
@@ -0,0 +1,3618 @@
1
+ HTTP/1.1 200 OK
2
+ Date: Mon, 30 May 2011 09:52:44 GMT
3
+ Server: PWS/1.7.2.3
4
+ X-Px: ms mad-agg-n11 ( mad-agg-n12), rf-ms mad-agg-n12 ( origin>CONN)
5
+ Cache-Control: max-age=600
6
+ Expires: Mon, 30 May 2011 10:02:45 GMT
7
+ Age: 0
8
+ Content-Length: 38752
9
+ Content-Type: text/html; charset=utf-8
10
+ Last-Modified: Mon, 30 May 2011 00:36:13 GMT
11
+ Connection: keep-alive
12
+
13
+
14
+ <!DOCTYPE html><html lang="en">
15
+
16
+ <head>
17
+ <script type="text/javascript" >
18
+ document.domain = "guardian.co.uk";
19
+ </script>
20
+ <meta charset="utf-8" />
21
+
22
+ <!------ OAS SETUP begin ------>
23
+ <script type="text/javascript">
24
+ //<![CDATA[
25
+ OAS_url = 'http://oas.guardian.co.uk/RealMedia/ads/';
26
+ OAS_sitepage = "www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups/oas.html";
27
+ OAS_listpos = 'Top,Middle2,Right1,x31,Position4';
28
+
29
+ OAS_query = 'k=startups&k=technology&k=media&k=digital-media&k=techcrunch&k=blogging&cf=digital+media&pid=&ct=article&pt=article&pt=blog&';
30
+ OAS_target = '_blank';
31
+
32
+ OAS_rn = '001234567890';
33
+ OAS_rns = '1234567890';
34
+ OAS_rn = new String (Math.random());
35
+ OAS_rns = OAS_rn.substring (2, 11);
36
+ //]]>
37
+ </script>
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+ <meta http-equiv="Content-Style-Type" content="text/css" />
51
+ <link rel="canonical" href="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups" />
52
+ <meta name="description" content="Despite claiming transparency, TechCrunch readers are not convinced that a 'Habbo Hotel for Facebook' was a deserving winner of a coveted award. By Jemima Kiss" />
53
+
54
+ <meta name="DC.date.issued" content="2011-09-15">
55
+
56
+
57
+ <meta property="og:title" content="More TechCrunch drama as Arrington-backed startup wins blog's contest"/>
58
+ <meta property="og:type" content="article"/>
59
+ <meta property="og:url" content="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups"/>
60
+ <meta property="og:image" content="https://static-secure.guim.co.uk/sys-images/Guardian/Pix/pictures/2011/8/8/1312810126887/gu_192x115.jpg"/>
61
+ <meta property="og:site_name" content="the Guardian"/>
62
+ <meta property="fb:app_id" content="180444840287"/>
63
+ <meta property="og:description" content="Despite claiming transparency, TechCrunch readers are not convinced that a 'Habbo Hotel for Facebook' was a deserving winner of a coveted award. By Jemima Kiss"/>
64
+
65
+ <meta property="article:published_time" content="2011-09-15T13:57:36+01:00" />
66
+ <meta property="article:modified_time" content="2011-09-15T17:55:55+01:00" />
67
+
68
+ <meta property="article:author" content="http://www.guardian.co.uk/profile/jemimakiss" />
69
+
70
+ <meta property="article:tag" content="TechCrunch" />
71
+ <meta property="article:tag" content="Media" />
72
+ <meta property="article:tag" content="Blogging" />
73
+ <meta property="article:tag" content="Digital media" />
74
+ <meta property="article:tag" content="Technology" />
75
+ <meta property="article:tag" content="Technology startups" />
76
+
77
+ <meta property="og:section" content="Media" />
78
+ <meta property="og:language" content="en">
79
+
80
+ <meta name="keywords" content="TechCrunch,Media,Blogging,Digital media,Technology,Technology startups,Media" />
81
+
82
+ <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
83
+
84
+
85
+
86
+
87
+
88
+ <link rel="shorturl" href="http://gu.com/p/32v5a" />
89
+ <title> More TechCrunch drama as Arrington-backed startup wins blog's contest | Media | guardian.co.uk </title>
90
+
91
+
92
+ <link href="http://feeds.guardian.co.uk/theguardian/media/rss" rel="alternate" type="application/rss+xml" title="Media RSS feed" />
93
+ <link href="http://www.guardian.co.uk/media/techcrunch/rss" rel="alternate" type="application/rss+xml" title="TechCrunch RSS feed" />
94
+ <link href="http://www.guardian.co.uk/media/blogging/rss" rel="alternate" type="application/rss+xml" title="Blogging RSS feed" />
95
+ <link href="http://www.guardian.co.uk/media/digital-media/rss" rel="alternate" type="application/rss+xml" title="Digital media RSS feed" />
96
+ <link href="http://feeds.guardian.co.uk/theguardian/technology/rss" rel="alternate" type="application/rss+xml" title="Technology RSS feed" />
97
+ <link href="http://www.guardian.co.uk/technology/startups/rss" rel="alternate" type="application/rss+xml" title="Technology startups RSS feed" />
98
+
99
+
100
+ <link href="http://www.guardian.co.uk/media/pda/rss" rel="alternate" type="application/rss+xml" title="PDA RSS feed" />
101
+
102
+ <script type="text/javascript">
103
+ //<![CDATA[
104
+ if (!commonStaticRoot) {
105
+ var commonStaticRoot = "http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/";
106
+ }
107
+ if (!sectionStaticRoot) {
108
+ var sectionStaticRoot = "http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/media/";
109
+ }
110
+ if (!staticHost) {
111
+ var staticHost="http://www.guardian.co.uk/";
112
+ }
113
+ if (!sitePrefixUrl) {
114
+ var sitePrefixUrl = "http://www.guardian.co.uk";
115
+ }
116
+ //]]>
117
+ </script>
118
+ <link rel="alternate stylesheet" title="No layout" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/no-layout.css" media="screen" class="contrast" id="no-layout-sheet" />
119
+
120
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/article-top.css" media="screen" />
121
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/print.css" media="print" class="contrast" />
122
+
123
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/zones/news/styles/zone-accent.css" media="screen" class="contrast" />
124
+
125
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/base-typography.css" media="screen" />
126
+
127
+
128
+
129
+
130
+ <!--[if ie 7]>
131
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/ie7.css" media="screen" class="ie" />
132
+ <![endif]-->
133
+
134
+ <!--[if ie 8]>
135
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/ie8.css" media="screen" class="ie" />
136
+ <![endif]-->
137
+
138
+ <!--[if lte IE 6]>
139
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/ie-scratch.css" media="screen" class="ie" />
140
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/zones/news/styles/zone-navigation-ie.css" media="screen" class="contrast" />
141
+ <![endif]-->
142
+
143
+ <!--[if lte IE 9]>
144
+ <script src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/external-scripts/html5enable.js"></script>
145
+ <![endif]-->
146
+
147
+ <link rel="stylesheet" type="text/css" href="http://combo.guim.co.uk/32b9600ebe43926107624a816c7870f8566f154f/badge+blog-internal-external-links+blog-navigation+blog-post+blogpost-byline+blogs-calendar+content-actions+default-ad-placeholders+header-local-info+page-toolbox+related-keywords+series-component+top-navigation+top-navigation-drop-down.css" media="screen" />
148
+ <link rel="stylesheet" type="text/css" href="http://combo.guim.co.uk/32b9600ebe43926107624a816c7870f8566f154f/m-324~css/rss-aggregator-promo+m-482~public/css/jobs-box-4+m-661~static/1734/comment-common+m-661~static/1734/comment-counts+m-661~static/1734/comment-list+m-661~static/1734/post-comment+m-661~static/1734/report-abuse+m-963~related-information/static/related-information-7.css" media="screen" />
149
+ <link rel="stylesheet" type="text/css" href="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/styles/article-page-typography.css" media="screen" />
150
+
151
+ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
152
+ <script type="text/javascript">
153
+ if (typeof jQuery == 'undefined') {
154
+ document.write(unescape("%3Cscript src='http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/external-scripts/jquery-1.4.2.min.js' type='text/javascript'%3E%3C/script%3E"));
155
+ }
156
+ </script>
157
+
158
+ <script type="text/javascript" src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/external-scripts/jquery-libraries/jquery.cookie.js"></script>
159
+ <script type="text/javascript" src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/external-scripts/jquery-libraries/jquery.writeCapture-1.0.5-min.js"></script>
160
+
161
+ <script type="text/javascript">
162
+ var jQ = jQuery.noConflict();
163
+ </script>
164
+
165
+ <script type="text/javascript">
166
+ //<![CDATA[
167
+ function insertStyleSheet(href) {
168
+ var styleObject = document.createElement('link');
169
+ styleObject.setAttribute('href', commonStaticRoot + href);
170
+ styleObject.setAttribute('type', 'text/css');
171
+ styleObject.setAttribute('media', 'screen');
172
+ styleObject.setAttribute('rel', 'stylesheet');
173
+ var head = document.getElementsByTagName('head')[0];
174
+ head.appendChild(styleObject);
175
+ }
176
+ insertStyleSheet('styles/js-on.css');
177
+ insertPluckStylesheet = true;
178
+ //]]>
179
+ </script>
180
+ <script src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/scripts/gu-core.js"></script>
181
+ <script type="text/javascript">
182
+ //<![CDATA[
183
+ function init() {
184
+ urlStack.clearUrlStack();
185
+ var signOutLink = document.getElementById("sign-out");
186
+ if (signOutLink) {
187
+ signOutLink.onclick = signOut;
188
+ }
189
+ }
190
+
191
+ guardian.r2.resourceRoot = "http://resource.guim.co.uk/";
192
+ var pageUrl = "http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups";
193
+ var pageSignature = "051c84e655be673661a86ae87a9637fa80bb2efe15b425ed0d94af0a059f194f";
194
+
195
+ var thirdPartyReferralCookieService = new guardian.r2.ThirdPartyReferralCookieService();
196
+ thirdPartyReferralCookieService.setThirdPartyReferralCookie();
197
+
198
+ var urlStack = new UrlStack(".guardian.co.uk");
199
+ var communitiesSite = false;
200
+
201
+
202
+
203
+
204
+ guardian.r2.signInListeners = new guardian.r2.SignInListeners();
205
+ (function () {
206
+ var signInView = new guardian.r2.SignInView("http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/scripts/md5.js", communitiesSite);
207
+ guardian.r2.signInController = new guardian.r2.SignInController(signInView, guardian.r2.signInListeners, "http://www.guardian.co.uk/tools/signin", pageUrl, pageSignature);
208
+
209
+ }) ();
210
+
211
+ (function () {
212
+ var profileLinkView = new guardian.r2.ProfileLinkView();
213
+ profileLinkController = new guardian.r2.ProfileLinkController(profileLinkView, "http://www.guardian.co.uk/discussion/user/");
214
+ }) ();
215
+
216
+ addSafeLoadEvent(init);
217
+ //]]>
218
+ </script>
219
+ <script type="text/javascript" src="http://combo.guim.co.uk/32b9600ebe43926107624a816c7870f8566f154f/common/scripts/convertJSONtoAd+common/scripts/formChecker+common/scripts/glossaryPopupView+common/scripts/sendtoafriend+common/scripts/shareCounts+common/scripts/tweet_button.js"></script>
220
+ <script type="text/javascript" src="http://combo.guim.co.uk/32b9600ebe43926107624a816c7870f8566f154f/m-661~static/1734/comment-formatting+m-661~static/1734/comment-setup+m-661~static/1734/fill-comment-counts+m-661~static/1734/jquery-ui-1.7.3.custom.min+m-661~static/1734/redirect-pluck-permalink.js"></script>
221
+
222
+ </head>
223
+
224
+
225
+
226
+
227
+ <body class=" article blog-post has-badge ">
228
+
229
+ <div id="wrapper">
230
+
231
+
232
+
233
+ <div id="header">
234
+
235
+ <div id="sub-header">
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+ <div id="fake-bar"></div>
245
+ <div class="top-navigation twelve-col initially-off">
246
+
247
+ <div class="user-functions">
248
+ <div id="video-settings">
249
+ <div class="cookied">
250
+ <p class="on"><a class="autoplay-off" href="#skiplinks">Turn autoplay off</a></p>
251
+ <p class="off"><a class="autoplay-on" href="#skiplinks">Turn autoplay on</a></p>
252
+ </div>
253
+ <div class="not-cookied">
254
+ <p>Please activate cookies in order to turn autoplay off</p>
255
+ </div>
256
+ </div>
257
+
258
+ <div id="skiplinks">
259
+ <ul>
260
+ <li><a href="#box" accesskey="s">Jump to content [s]</a></li>
261
+ <li><a href="#start-of-comments" accesskey="c">Jump to comments [c]</a></li>
262
+ <li><a href="#global-nav" accesskey="0">Jump to site navigation [0]</a></li>
263
+ <li><a href="#searchbeta" accesskey="4">Jump to search [4]</a></li>
264
+ <li><a href="http://guardian.co.uk/Users/help/article/0,,933909,00.html" accesskey="8">Terms and conditions [8]</a></li>
265
+ </ul>
266
+ </div>
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+ <div id="edition-selector">
276
+ <div id="drop-down-edition" class="drop-down">
277
+ <h2>Edition: <span class="current-edition">US</span></h2>
278
+ <ul class="initially-off">
279
+ <li><a href="http://www.guardiannews.com/uk-home">UK</a></li>
280
+ </ul>
281
+ </div>
282
+ </div>
283
+
284
+ <div class="user-details">
285
+
286
+
287
+ <span><a class="same-page-login-required" href="http://www.guardian.co.uk/identity/signin?returnUrl=http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups&sig=051c84e655be673661a86ae87a9637fa80bb2efe15b425ed0d94af0a059f194f">Sign in</a></span>
288
+ <span><a href="http://m.guardian.co.uk" class="register-required">Mobile</a></span>
289
+
290
+ </div>
291
+ <div id="drop-down-1" class="drop-down">
292
+ <h2>
293
+
294
+ About us
295
+ </h2>
296
+ <ul class="initially-off">
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+ <li>
305
+
306
+ <a href="http://www.guardian.co.uk/info" class="link-text">About us</a>
307
+ </li>
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+ <li>
317
+
318
+ <a href="http://www.guardian.co.uk/help/contact-us" class="link-text">Contact us</a>
319
+ </li>
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+ <li>
329
+
330
+ <a href="http://www.guardian.co.uk/gnm-press-office" class="link-text">Press office</a>
331
+ </li>
332
+
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+ <li>
341
+
342
+ <a href="http://www.guardian.co.uk/help/terms-of-service" class="link-text">Terms of service</a>
343
+ </li>
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+ <li>
353
+
354
+ <a href="http://www.guardian.co.uk/help/privacy-policy" class="link-text">Privacy policy</a>
355
+ </li>
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+ <li>
365
+
366
+ <a href="http://www.guardian.co.uk/subscription-services" class="link-text">Subscribe</a>
367
+ </li>
368
+
369
+ </ul>
370
+ </div>
371
+ </div>
372
+
373
+ <div class="other-functions">
374
+ <div id="drop-down-3" class="drop-down mirror">
375
+ <h2>
376
+
377
+ Subscribe
378
+ </h2>
379
+ <ul class="initially-off">
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+ <li>
388
+
389
+ <a href="http://www.guardian.co.uk/mobile/iphone/guardian" class="link-text">Guardian iPhone</a>
390
+ </li>
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+ <li>
400
+
401
+ <a href="http://www.amazon.co.uk/The-Guardian-and-the-Observer/dp/B004MME3M8/ref=sr_1_2?ie=UTF8&m=A3TVV12T0I6NSM&s=digital-text&qid=1310129212&sr=1-2" class="link-text">Kindle</a>
402
+ </li>
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+ <li>
412
+
413
+ <a href="http://guardian.newspaperdirect.com/epaper/viewer.aspx" class="link-text">Digital edition</a>
414
+ </li>
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+ <li>
424
+
425
+ <a href="http://www.guardian.co.uk/subscription-services" class="link-text">All our services</a>
426
+ </li>
427
+
428
+ </ul>
429
+ </div>
430
+ </div>
431
+
432
+ </div>
433
+
434
+
435
+ <script type="text/javascript">
436
+ ensurePackage('guardian.r2');
437
+
438
+ guardian.r2.dropDownMenu = function () {
439
+
440
+ // bar set up
441
+ jQ('.top-navigation').show().addClass('top-navigation-js');
442
+ jQ('#fake-bar').remove();
443
+
444
+ // functionality
445
+ jQ('.drop-down').mouseover(function() {
446
+ jQ(this).find('ul').css('display', 'block');
447
+ });
448
+
449
+ jQ('.drop-down').mouseout(function() {
450
+ jQ(this).find('ul').css('display', 'none');
451
+ });
452
+
453
+ };
454
+
455
+ jQ(document).ready(function() {
456
+ var myDropDownMenu = new guardian.r2.dropDownMenu();
457
+ });
458
+ </script>
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+ <div id="Top" class=" hide-on-popup">
467
+
468
+
469
+ <div id="ad-placeholder-Top"></div>
470
+ </div>
471
+
472
+ </div>
473
+
474
+
475
+
476
+
477
+ <div id="guardian-logo">
478
+ <a href="http://www.guardiannews.com"><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/logos/the-guardian/news.gif" width="115" height="22" alt="The Guardian home" /></a>
479
+ </div>
480
+
481
+
482
+
483
+
484
+
485
+ <form id="searchbeta" method="get" action="http://www.guardian.co.uk/search" onsubmit="return searchWeb('http://www.guardian.co.uk/websearch', 'http://www.guardian.co.uk/search', 'http://www.guardian.co.uk/discussion/search/comments/');" >
486
+ <input type="text" name="q" placeholder="Your search terms..."/>
487
+ <select name="section" id="gu-site-search" style="z-index: 0 !important;">
488
+ <option value="" id="search-guardian">The Guardian</option>
489
+ <option value="media" id="search-section" selected="selected">Media</option>
490
+ <option value="search-contributions" id="search-contributions">User comments</option>
491
+ <option value="web" id="search-web">Web</option>
492
+ </select>
493
+ <input type="submit" value="Search" />
494
+ </form>
495
+
496
+
497
+ <div id="zones-nav">
498
+
499
+
500
+ <div id="global-nav">
501
+ <ul>
502
+
503
+ <li class="first news">
504
+ <a href="http://www.guardiannews.com" >News</a>
505
+ </li>
506
+
507
+ <li class="news">
508
+ <a href="http://www.guardian.co.uk/world" >World</a>
509
+ </li>
510
+
511
+ <li class="sport">
512
+ <a href="http://www.guardian.co.uk/sport" >Sports</a>
513
+ </li>
514
+
515
+ <li class="comment">
516
+ <a href="http://www.guardian.co.uk/commentisfree/america" >Comment</a>
517
+ </li>
518
+
519
+ <li class="culture">
520
+ <a href="http://www.guardian.co.uk/culture" >Culture</a>
521
+ </li>
522
+
523
+ <li class="business">
524
+ <a href="http://www.guardian.co.uk/business" >Business</a>
525
+ </li>
526
+
527
+ <li class="environment">
528
+ <a href="http://www.guardian.co.uk/environment" >Environment</a>
529
+ </li>
530
+
531
+ <li class="news">
532
+ <a href="http://www.guardian.co.uk/science" >Science</a>
533
+ </li>
534
+
535
+ <li class="travel">
536
+ <a href="http://www.guardian.co.uk/travel" >Travel</a>
537
+ </li>
538
+
539
+ <li class="news">
540
+ <a href="http://www.guardian.co.uk/technology" >Tech</a>
541
+ </li>
542
+
543
+ <li class="life-and-style">
544
+ <a href="http://www.guardian.co.uk/lifeandstyle" >Life and style</a>
545
+ </li>
546
+
547
+ <li class="global">
548
+ <a href="http://www.guardian.co.uk/mobile/apps" >Mobile</a>
549
+ </li>
550
+
551
+ <li class="last news">
552
+ <a href="http://www.guardian.co.uk/data" >Data</a>
553
+ </li>
554
+ </ul>
555
+ </div>
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+
564
+ <div class="crumb-wrapper">
565
+
566
+ <ul class="crumb-nav">
567
+ <li id="crumb1">
568
+ <a href="http://www.guardiannews.com">News</a>
569
+ </li>
570
+ <li id="crumb2">
571
+ <a href="http://www.guardian.co.uk/media">Media</a>
572
+ </li>
573
+ <li id="crumb3">
574
+ <a href="http://www.guardian.co.uk/media/pda">PDA</a>
575
+ </li>
576
+ </ul>
577
+
578
+
579
+ </div>
580
+
581
+ </div>
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+
590
+
591
+
592
+
593
+
594
+ </div>
595
+
596
+
597
+
598
+ <div id="box" >
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+ <div id="article-header">
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
629
+ <div id="badge-medium">
630
+ <h1> <a href="http://www.guardian.co.uk/media/pda">
631
+ <img src="http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2009/2/26/1235669139363/Badge-PDA-blog-001.jpg" alt="Badge PDA blog" width="620" height="140" class="image-badge" />
632
+ </a>
633
+ </h1>
634
+ </div>
635
+
636
+
637
+
638
+
639
+
640
+ <ul id="blog-nav-top" class="blog-navigation">
641
+ <li class="blog-next">
642
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/15/jemima-kiss" >Next</a>
643
+ </li>
644
+ <li class="blog-previous">
645
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/15/newsbucket" >Previous</a>
646
+ </li>
647
+
648
+ <li class="blog-home">
649
+ <a href="http://www.guardian.co.uk/media/pda" title="">Blog home</a>
650
+ </li>
651
+ </ul>
652
+
653
+
654
+ <div id="main-article-info">
655
+
656
+
657
+
658
+ <h1
659
+ >More TechCrunch drama as Arrington-backed startup wins blog's contest</h1>
660
+
661
+ <p id="stand-first"
662
+ class="stand-first-alone" >Despite claiming transparency, TechCrunch readers are not convinced that a 'Habbo Hotel for Facebook' was a deserving winner of a coveted award</p>
663
+
664
+
665
+ </div>
666
+
667
+ <ul id="content-actions" class="share-links">
668
+
669
+
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+ <li class="share-links">
678
+ <ul>
679
+
680
+
681
+
682
+
683
+ <li class="full-line tweet tweet_button">
684
+ <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://gu.com/p/32v5a/tw" data-via="guardian" data-counturl="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups" data-related="mediaguardian" data-text="More TechCrunch drama as Arrington-backed startup wins blog's contest">Tweet this</a>
685
+ </li>
686
+
687
+ <li class="third-party-tool full-line facebook">
688
+ <iframe src="http://www.facebook.com/plugins/like.php?app_id=178412055558267&amp;href=http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups&amp;send=false&amp;layout=button_count&amp;width=140&amp;show_faces=false&amp;action=recommend&amp;colorscheme=light&amp;font=arial&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:140px; height:21px;" allowTransparency="true"></iframe>
689
+ </li>
690
+
691
+ <li class="third-party-tool last-line reddit">
692
+ <span class="reddit_button">
693
+ <a target="http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;amp;title=" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=">
694
+ <img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_reddit.gif"/>
695
+ </a>
696
+ <a target="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;amp;title=" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=">reddit this</a>
697
+ </span>
698
+ <script type="text/javascript">omnitracker.omniTrackEVarEvent( 12, 16, 'Media: Reddit', 'click', '.reddit a' );</script>
699
+ </li>
700
+ </ul>
701
+ </li>
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
725
+
726
+
727
+ <li class="b3">
728
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups#start-of-comments" class="content-comment-count" short-url="-p-32v5a">Comments (<span class="comment-count-val">&hellip;</span>)</a>
729
+ </li>
730
+ </ul>
731
+
732
+ </div>
733
+
734
+
735
+ <div id="content">
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+ <div id="article-wrapper"
759
+ >
760
+
761
+ <div id="main-content-picture">
762
+ <img src="http://static.guim.co.uk/sys-images/Media/Pix/pictures/2011/9/13/1315898717255/Michael-Arrington-007.jpg" width="460" height="276" alt="Michael Arrington" />
763
+ <div class="caption">Michael Arrington: new spat over TechCrunch</div>
764
+ </div>
765
+
766
+ <div id="article-body-blocks">
767
+ <p>If you were wondering what that rumbling, thunderous sound is, it could be the mighty <a href="http://www.guardian.co.uk/media/techcrunch" title="More from guardian.co.uk on TechCrunch">TechCrunch</a> empire finally crashing to the ground after a company funded by Mike Arrington won TechCrunch Disrupt and in-fighting continued among the blog's staff.</p><p>Last night the TechCrunch Disrupt conference climaxed with the&nbsp; announcement of the winning startup, the company who'd convinced a panel of five TechCrunch Disrupt judges – and Michael Arrington – that it was the most deserving winner among 31 promising but as-yet-unlaunched startups.</p><p>For background, Mike Arrington <a href="http://www.guardian.co.uk/technology/2011/sep/02/techcrunch-eidtor-michael-arrington-steps-down">has been removed</a> as editor of TechCrunch, the tech blog he founded, after a well-documented spat with the <a href="http://www.guardian.co.uk/media/pda/2010/nov/15/digital-media-blogging">site's owners AOL</a>. Head of content Arianna Huffington and chief executive Tim Armstrong finally terminated Arrington after a controversy around whether he could ethically be the editor of an influential tech site and head up an investment fund for those same startups.</p><p>There was some speculation that Arrington might not appear at Disrupt, the conference and startup contest started in 2007; he might graciously shun the limelight and avoid any awkward questions about <a href="http://www.guardian.co.uk/media/pda/2011/sep/07/techcrunch-mike-arrington-aol">Crunchgate</a>. Not so – Arrington opened the conference by talking about the spat and saying he wanted the <a href="http://www.zdnet.com/blog/btl/mike-arrington-addresses-aol-drama-at-start-of-techcrunch-expo/57876">focus to remain</a> on the startups taking the stage.</p><p>So who won the startup battlefield contest? Of seven finalists, <a href="http://techcrunch.com/2011/09/14/and-the-winner-of-techcrunch-disrupt-is-shaker/">overall winner</a> was an Israeli Second Life-meets-social network called <a href="http://www.atshaker.com/">Shaker</a>, with <a href="http://prismskylabs.com/">Prism Skylabs</a> and <a href="http://www.bitcasa.com/">Bitcasa</a> runners-up. And guess who's an investor in Prism Skylabs and Bitcasa, and a "pending investor" in Shaker? None other than Michael Arrington.</p><span class="inline embed embed-media">
768
+ <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="369" width="460"> <embed flashvars="vid=17275877&amp;autoplay=false" allowfullscreen="true" allowscriptaccess="always" src="http://www.ustream.tv/flash/viewer.swf" type="application/x-shockwave-flash" height="296" width="460"> </embed> </object>
769
+ </span><p>Arrington's defence throughout the Crunchgate controversy has been that users would trust him to be transparent and disclose any conflict of interest. Consequently the TechCrunch post announcing the winner (even though Arrington isn't at TechCrunch any more... yet is still at Disrupt?!) includes the disclosure than Arrington is an investor. But is that enough?</p><p>TechCrunch writers Paul Carr and Sarah Lacy were tweeting the downfall, Carr describing newly promoted editor Erick Schonfeld on stage as zapping Carr's "own already limited stocks of charisma".</p><p><a href="https://twitter.com/#%21/sarahcuda/status/114113790093692928">@sarahcuda</a>: "Someone please tell me what the hell Shaker is disrupting?"</p><p><a href="https://twitter.com/#%21/sarahcuda/status/114170437482717185">@sarahcuda</a>: "Can't believe Shaker won. Now I might quit."</p><p><a href="https://twitter.com/#%21/paulcarr/status/114022460495642624">@paulcarr</a>: "Erick wrote that Mike had no input in selecting the final companies. That was untrue. <a href="http://t.co/7nfC6oh">See Mike's comment</a>.... And so <a href="https://twitter.com/#%21/paulcarr/status/114022460495642624">the new culture</a> of honesty and transparency begins."</p><p>(Arrington had explained that he'd talked for over an hour about the finalists, and concluded by saying that he might not disclose investments to TechCrunch in the future. Which could get even more complicated.)</p><p><a href="http://www.flickr.com/photos/techcrunch/6149173782/in/photostream"><img src="http://farm7.static.flickr.com/6075/6149173782_4eb92552a7_z.jpg" width="460" /></a><br /><em>Photo by <a href="http://flickr.com/photos/techcrunch/"><a href="http://www.flickr.com/photos/techcrunch/">TechCrunch</a></a> on Flickr. <a href="http://creativecommons.org/licenses/by/2.0/">Some rights reserved</a></em></p><p>What did TechCrunch readers make of all this? There had been a <a href="http://www.theatlanticwire.com/business/2011/09/techcrunch-promotes-arrington-funded-company-commenters-revolt/42415/">first wave of objection</a> when TechCrunch ran a glowing review of CrunchFund-funded Bitcasa before the winners were announced. "Reads like ad copy, then comes the disclaimer," <a href="https://twitter.com/#%21/ryantate/statuses/113636781970296832">tweeted Valleywag's Ryan Tate</a>, though writer Sarah Perez <a href="https://www.facebook.com/plugins/comments.php?channel_url=http%3A%2F%2Fstatic.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Df35bd6c7b%26origin%3Dhttp%253A%252F%252Ftechcrunch.com%252Ff174f6576%26relation%3Dparent.parent%26transport%3Dpostmessage&amp;fb_comment_id=fbc_10150289656058660_18576290_10150289666938660&amp;href=http%3A%2F%2Ftechcrunch.com%2F2011%2F09%2F12%2Fwith-bitcasa-the-entire-cloud-is-your-hard-drive-for-only-10-per-month%2F&amp;locale=en_US&amp;numposts=25&amp;sdk=joey&amp;width=630#">claimed</a> she didn't know about the investment when she did the interview.</p><p>Reader <a href="http://techcrunch.com/2011/09/14/and-the-winner-of-techcrunch-disrupt-is-shaker/">opinion on Shaker</a> was decidedly split. Though there was lots of support for an <a href="https://www.facebook.com/plugins/comments.php?channel_url=http%3A%2F%2Fstatic.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Df39e73a1a%26origin%3Dhttp%253A%252F%252Ftechcrunch.com%252Ff2429c989%26relation%3Dparent.parent%26transport%3Dpostmessage&amp;href=http%3A%2F%2Ftechcrunch.com%2F2011%2F09%2F14%2Fand-the-winner-of-techcrunch-disrupt-is-shaker%2F&amp;locale=en_US&amp;numposts=25&amp;sdk=joey&amp;width=630#">Israeli success</a>, several commenters dismissed it as <a href="https://www.facebook.com/plugins/comments.php?channel_url=http%3A%2F%2Fstatic.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Df39e73a1a%26origin%3Dhttp%253A%252F%252Ftechcrunch.com%252Ff2429c989%26relation%3Dparent.parent%26transport%3Dpostmessage&amp;href=http%3A%2F%2Ftechcrunch.com%2F2011%2F09%2F14%2Fand-the-winner-of-techcrunch-disrupt-is-shaker%2F&amp;locale=en_US&amp;numposts=25&amp;sdk=joey&amp;width=630#">Habbo Hotel for Facebook</a> and said a virtual bar just <a href="https://www.facebook.com/plugins/comments.php?channel_url=http%3A%2F%2Fstatic.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Df39e73a1a%26origin%3Dhttp%253A%252F%252Ftechcrunch.com%252Ff2429c989%26relation%3Dparent.parent%26transport%3Dpostmessage&amp;href=http%3A%2F%2Ftechcrunch.com%2F2011%2F09%2F14%2Fand-the-winner-of-techcrunch-disrupt-is-shaker%2F&amp;locale=en_US&amp;numposts=25&amp;sdk=joey&amp;width=630#">isn't a disruptive idea</a>.</p><p>The whole episode marks a giant loss in credibility for TechCrunch, a mangled, undignified departure, unprofessional personal scraps between colleagues and a decidedly fetid atmosphere around what has generally been a vibrant, inspiring and powerful brand. Ultimately, whatever the future of the writers and investors involved, this is a real shame for the entrepreneurs who've worked extremely hard to get this far.</p><p>Finalists who aren't apparently funded by CrunchFund, for the record, are healthcare-management tool <a href="https://cakehealth.com/">Cake Health</a>, local food finder <a href="http://www.farmigo.com/">Farmigo</a>, business response service <a href="http://talkto.com/">TalkTo</a> and project organisation tool <a href="https://trello.com/">Trello</a>.</p>
770
+ </div>
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+ </div>
788
+
789
+
790
+
791
+ </div>
792
+
793
+
794
+ <div id="related">
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+ <div class="blog-byline b4">
807
+
808
+
809
+
810
+ <span class="blog-byline-kick">
811
+ Posted by</span>
812
+ <a class='contributor' rel='author' href='http://www.guardian.co.uk/profile/jemimakiss'>
813
+ Jemima Kiss</a>
814
+
815
+ Thursday 15 September 2011
816
+
817
+ <span class="timestamp">08.57 EDT</span>
818
+
819
+ <span class="byline-publication">
820
+ <a href="http://www.guardian.co.uk/">guardian.co.uk</a>
821
+ </span>
822
+
823
+ </div>
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+ <ul id="article-toolbox-side" class="b4">
837
+
838
+
839
+ <li class="printable"><a href="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups/print" rel="nofollow" id="printlink" class="printable rollover" title="Link to a printer-friendly version" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_print.gif" alt="Print this" class="trail-icon" /><span>Printable version</span></a></li>
840
+
841
+ <li><a class="rollover send-email" href="http://www.guardian.co.uk/email/1633834" title="Opens an email form" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_email-friend.gif" alt="" class="trail-icon" /><span>Send to a friend</span></a></li>
842
+
843
+ <li><a class="rollover send-share" href="http://www.guardian.co.uk/share/1633834" title="Opens a share this page in a new window" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_share.gif" alt="" class="trail-icon" /><span>Share</span></a></li>
844
+
845
+ <li><a href="http://www.guardian.co.uk/users/clippings/add?r2PageId=1633834" id="clippable" title="Sends this page to your clippings file" class="rollover anchor-based-login-required package-required-YCLD" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_clip.gif" alt="" class="trail-icon" /><span>Clip</span></a></li>
846
+
847
+ <li><a href="http://www.guardian.co.uk/contactus/1633834" class="rollover contact-link" title="Displays contact data for guardian.co.uk"><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_email-us.gif" alt="" class="trail-icon" /><span>Contact us</span></a></li>
848
+
849
+
850
+ <li class="resize">
851
+
852
+ <img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_font.gif" alt="" class="trail-icon" />
853
+ <a href="/help/accessibility" id="larger-sidebar" title="Increase text size">larger</a> |
854
+ <a href="/help/accessibility" id="smaller-sidebar" title="Decrease text size">smaller</a> </li>
855
+
856
+
857
+
858
+
859
+ </ul>
860
+
861
+
862
+
863
+
864
+ <div class="toolbox-popup" id="send-email-box">
865
+ <div class="send-inner">
866
+ <div class="share-top">
867
+ <h3>Email</h3>
868
+ <span><a class="close-toolbox" href="#send-email">Close</a></span>
869
+ </div>
870
+ <div>
871
+
872
+
873
+ <form method="post" name="emailthis" id="emailthis" action="http://www.guardian.co.uk/email/1633834">
874
+
875
+ <fieldset>
876
+ <div>
877
+ <label for="to">Recipient's email address</label>
878
+ </div>
879
+ <input type="text" name="to" maxlength="64" value="" />
880
+ </fieldset>
881
+ <fieldset>
882
+ <div>
883
+ <label for="name">Your first name</label>
884
+ </div>
885
+ <input type="text" name="firstName" maxlength="64" value="" />
886
+ </fieldset>
887
+ <fieldset>
888
+ <div>
889
+ <label for="name">Your surname</label>
890
+ </div>
891
+ <input type="text" name="surname" maxlength="64" value="" />
892
+ </fieldset>
893
+ <fieldset>
894
+ <div>
895
+ <label for="note">Add a note (optional)</label>
896
+ <br /><span id="warning-side"></span>
897
+ </div>
898
+ <textarea name="note" cols="25" rows="5" onkeyup="formCheckerSide(this,250)"></textarea>
899
+ </fieldset>
900
+ <div class="inputrow">
901
+ <input type="submit" onclick="if(true) {omnitureTrackShareLinks(this, 'Email', true)}" value="Send" />
902
+ </div>
903
+ <p class="ip_logged">Your IP address will be logged</p>
904
+ </form>
905
+ </div>
906
+ </div>
907
+ </div>
908
+
909
+
910
+
911
+ <div class="toolbox-popup" id="send-share-box">
912
+ <div class="send-inner">
913
+ <div class="share-top">
914
+ <h3>Share</h3>
915
+ <span><a class="close-toolbox" href="#send-share-box">Close</a></span>
916
+ </div>
917
+
918
+ <div class="shortlink">
919
+ Short link for this page:
920
+ <a rel="shortlink nofollow" href="http://gu.com/p/32v5a">
921
+ http://gu.com/p/32v5a
922
+ </a>
923
+ </div>
924
+ <ul>
925
+ <li><a class="digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{Digg}" onclick="if(true) {omnitureTrackShareLinks(this, 'Digg');} return false;" >Digg</a></li>
926
+ <li>
927
+ <a class="reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{reddit}" onclick="if(true) {omnitureTrackShareLinks(this, 'Reddit');} return false;" >reddit</a>
928
+ </li>
929
+ <li>
930
+ <a class="google" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{Google Bookmarks}" onclick="if(true) {omnitureTrackShareLinks(this, 'Google Bookmarks');} return false;" >Google Bookmarks</a>
931
+ </li>
932
+ <li>
933
+ <a class="twitter" href="http://twitter.com/home?status=http%3A%2F%2Fgu.com%2Fp%2F32v5a%2Ftw" name="lid={share}{Twitter}" onclick="if(true) {omnitureTrackShareLinks(this, 'Twitter');} return false;" >Twitter</a>
934
+ </li>
935
+ <li>
936
+ <a class="delicious" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{del.icio.us}" onclick="if(true) {omnitureTrackShareLinks(this, 'del.icio.us');} return false;" >del.icio.us</a>
937
+ </li>
938
+ <li>
939
+ <a class="stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" onclick="if(true) {omnitureTrackShareLinks(this, 'Stumbleupon');} return false;" >StumbleUpon</a>
940
+ </li>
941
+ <li>
942
+ <a class="newsvine" href="http://www.newsvine.com/_tools/seed&amp;save?popoff=0&amp;u=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;h=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" onclick="if(true) {omnitureTrackShareLinks(this, 'Newsvine');} return false;" >Newsvine</a>
943
+ </li>
944
+ <li>
945
+ <a class="livejournal" href="http://www.livejournal.com/update.bml?subject=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{livejournal}" onclick="if(true) {omnitureTrackShareLinks(this, 'Livejournal');} return false;" >livejournal</a>
946
+ </li>
947
+ <li>
948
+ <a class="facebook" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{Facebook}" onclick="if(true) {omnitureTrackShareLinks(this, 'Facebook');} return false;" >Facebook</a>
949
+ </li>
950
+ <li>
951
+ <a class="mixx" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{Mixx}" onclick="if(true) {omnitureTrackShareLinks(this, 'Mixx');} return false;" >Mixx it!</a>
952
+ </li>
953
+ </ul>
954
+ <div class="clear"></div>
955
+ </div>
956
+ </div>
957
+
958
+
959
+ <div class="toolbox-popup" id="contact-link-box">
960
+ <div class="send-inner">
961
+ <div class="share-top">
962
+ <h3>Contact us</h3>
963
+ <span><a class="close-toolbox" href="#contact">Close</a></span>
964
+ </div>
965
+
966
+ <div class="col first">
967
+ <ul>
968
+ <li>
969
+
970
+
971
+ Contact the Media editor<br><a href="mailto:editor@mediaguardian.co.uk">editor@mediaguardian.co.uk</a>
972
+ </li>
973
+ <li>
974
+ Report errors or inaccuracies: <a href="mailto:reader@guardian.co.uk">reader@guardian.co.uk</a>
975
+ </li>
976
+ <li>
977
+ Letters for publication should be sent to: <a href="mailto:letters@guardian.co.uk">letters@guardian.co.uk</a>
978
+ </li>
979
+ </ul>
980
+ </div>
981
+ <div class="col">
982
+ <ul>
983
+ <li>
984
+ If you need help using the site: <a href="mailto:userhelp@guardian.co.uk">userhelp@guardian.co.uk</a>
985
+ </li>
986
+ <li>
987
+ Call the main Guardian and Observer switchboard: <br /><span>+44 (0)20 3353 2000</span>
988
+ </li>
989
+ <li>
990
+ <ul>
991
+ <li>
992
+ <a href="http://adinfo-guardian.co.uk/">Advertising guide</a>
993
+ </li>
994
+ <li>
995
+ <a href="http://www.guardian.co.uk/syndication/">License/buy our content</a>
996
+ </li>
997
+ </ul>
998
+ </li>
999
+ </ul>
1000
+ </div>
1001
+ </div>
1002
+ </div>
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+ <div class="related-keywords">
1028
+
1029
+
1030
+ <h4 class="b4 t6"><a href="http://www.guardian.co.uk/media" >Media</a></h4>
1031
+
1032
+ <ul>
1033
+ <li>
1034
+ <a href="http://www.guardian.co.uk/media/techcrunch" rel="tag">TechCrunch</a> &middot; </li>
1035
+ <li>
1036
+ <a href="http://www.guardian.co.uk/media/blogging" rel="tag">Blogging</a> &middot; </li>
1037
+ <li>
1038
+ <a href="http://www.guardian.co.uk/media/digital-media" rel="tag">Digital media</a> </li>
1039
+ </ul>
1040
+
1041
+ <h4 class="b3 t6"><a href="http://www.guardian.co.uk/technology" >Technology</a></h4>
1042
+
1043
+ <ul>
1044
+ <li>
1045
+ <a href="http://www.guardian.co.uk/technology/startups" rel="tag">Technology startups</a> </li>
1046
+ </ul>
1047
+
1048
+
1049
+ <p class="b4 t6">More from <a href="http://www.guardian.co.uk/media/pda" >PDA</a> on</p>
1050
+ <h4 class="b3 t6">Media</h4>
1051
+ <ul>
1052
+ <li>
1053
+ <a href="http://www.guardian.co.uk/media/pda+techcrunch" rel="tag">TechCrunch</a> &middot; </li>
1054
+ <li>
1055
+ <a href="http://www.guardian.co.uk/media/pda+blogging" rel="tag">Blogging</a> &middot; </li>
1056
+ <li>
1057
+ <a href="http://www.guardian.co.uk/media/pda+digital-media" rel="tag">Digital media</a> </li>
1058
+ </ul>
1059
+ <h4 class="b3 t6">Technology</h4>
1060
+ <ul>
1061
+ <li>
1062
+ <a href="http://www.guardian.co.uk/media/pda+technology/startups" rel="tag">Technology startups</a> </li>
1063
+ </ul>
1064
+
1065
+
1066
+ <p class="t6 b4"><a href="http://www.guardian.co.uk/tone/blog" >More blogposts
1067
+ </a></p>
1068
+ <p class="t6 b4"><a href="http://www.guardian.co.uk/tone/news" >More news
1069
+ </a></p>
1070
+
1071
+
1072
+
1073
+ </div>
1074
+
1075
+
1076
+
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+ <div class="related-content">
1096
+
1097
+ <div class="bd">
1098
+ <div class="two-col edge">
1099
+ <p class="b4 t6">See also</p>
1100
+ <ul class="l1d">
1101
+
1102
+ <li>
1103
+ <p class="t6 web-publication-date">21 Feb 2008</p>
1104
+ <p class="t7">
1105
+ <a href="http://www.guardian.co.uk/media/pda/2008/feb/21/haveweallbeentootechcrunc?INTCMP=ILCNETTXT3487">Have we all been too TechCrunched?</a>
1106
+ </p>
1107
+ </li><li>
1108
+ <p class="t6 web-publication-date">6 Oct 2010</p>
1109
+ <p class="t7">
1110
+ <a href="http://www.guardian.co.uk/technology/blog/audio/2010/oct/05/broadband-bt-fibre-calcanis-techcrunch?INTCMP=ILCNETTXT3487">Tech Weekly: Jason Calacanis hits back at TechCrunch, latest Startup Surgery</a>
1111
+ </p>
1112
+ </li><li>
1113
+ <p class="t6 web-publication-date">17 Sep 2007</p>
1114
+ <p class="t7">
1115
+ <a href="http://www.guardian.co.uk/media/2007/sep/17/mondaymediasection.technology?INTCMP=ILCNETTXT3487">The crunch that could leave everyone in credit</a>
1116
+ </p>
1117
+ </li><li>
1118
+ <p class="t6 web-publication-date">5 Oct 2010</p>
1119
+ <p class="t7">
1120
+ <a href="http://www.guardian.co.uk/media/pda/2010/oct/05/jason-calacanis?INTCMP=ILCNETTXT3487">Jason Calacanis: Revenge is a new editorial project to rival TechCrunch</a>
1121
+ </p>
1122
+ </li>
1123
+
1124
+ </ul>
1125
+ </div>
1126
+ </div>
1127
+ </div>
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+ </div>
1144
+
1145
+
1146
+
1147
+
1148
+ <ul id="blog-nav-bottom" class="blog-navigation">
1149
+ <li class="blog-next">
1150
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/15/jemima-kiss" >Next</a>
1151
+ </li>
1152
+ <li class="blog-previous">
1153
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/15/newsbucket" >Previous</a>
1154
+ </li>
1155
+
1156
+ <li class="blog-home">
1157
+ <a href="http://www.guardian.co.uk/media/pda" title="">Blog home</a>
1158
+ </li>
1159
+ </ul>
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+ <ul id="article-toolbox">
1171
+
1172
+
1173
+ <li class="printable"><a href="http://www.guardian.co.uk/media/pda/2011/sep/15/techcrunch-arrington-startups/print" rel="nofollow" id="printlink" class="printable rollover" title="Link to a printer-friendly version" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_print.gif" alt="Print this" class="trail-icon" /><span>Printable version</span></a></li>
1174
+
1175
+ <li><a class="rollover send-email" href="http://www.guardian.co.uk/email/1633834" title="Opens an email form" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_email-friend.gif" alt="" class="trail-icon" /><span>Send to a friend</span></a></li>
1176
+
1177
+ <li><a class="rollover send-share" href="http://www.guardian.co.uk/share/1633834" title="Opens a share this page in a new window" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_share.gif" alt="" class="trail-icon" /><span>Share</span></a></li>
1178
+
1179
+ <li><a href="http://www.guardian.co.uk/users/clippings/add?r2PageId=1633834" id="clippable" title="Sends this page to your clippings file" class="rollover anchor-based-login-required package-required-YCLD" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_clip.gif" alt="" class="trail-icon" /><span>Clip</span></a></li>
1180
+
1181
+ <li><a href="http://www.guardian.co.uk/contactus/1633834" class="rollover contact-link" title="Displays contact data for guardian.co.uk"><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_email-us.gif" alt="" class="trail-icon" /><span>Contact us</span></a></li>
1182
+
1183
+ <li class="article-history"><a href="#" title="View the history of this article" class="rollover history-link" ><img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/icon_history.gif" alt="" class="trail-icon" /><span>Article history</span></a></li>
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+ </ul>
1190
+
1191
+
1192
+
1193
+
1194
+ <div class="toolbox-popup" id="send-email-box">
1195
+ <div class="send-inner">
1196
+ <div class="share-top">
1197
+ <h3>Email</h3>
1198
+ <span><a class="close-toolbox" href="#send-email">Close</a></span>
1199
+ </div>
1200
+ <div>
1201
+
1202
+
1203
+ <form method="post" name="emailthis" id="emailthis" action="http://www.guardian.co.uk/email/1633834">
1204
+
1205
+ <fieldset>
1206
+ <div>
1207
+ <label for="to">Recipient's email address</label>
1208
+ </div>
1209
+ <input type="text" name="to" maxlength="64" value="" />
1210
+ </fieldset>
1211
+ <fieldset>
1212
+ <div>
1213
+ <label for="name">Your first name</label>
1214
+ </div>
1215
+ <input type="text" name="firstName" maxlength="64" value="" />
1216
+ </fieldset>
1217
+ <fieldset>
1218
+ <div>
1219
+ <label for="name">Your surname</label>
1220
+ </div>
1221
+ <input type="text" name="surname" maxlength="64" value="" />
1222
+ </fieldset>
1223
+ <fieldset>
1224
+ <div>
1225
+ <label for="note">Add a note (optional)</label>
1226
+ <br /><span id="warning-side"></span>
1227
+ </div>
1228
+ <textarea name="note" cols="25" rows="5" onkeyup="formCheckerSide(this,250)"></textarea>
1229
+ </fieldset>
1230
+ <div class="inputrow">
1231
+ <input type="submit" onclick="if(true) {omnitureTrackShareLinks(this, 'Email', true)}" value="Send" />
1232
+ </div>
1233
+ <p class="ip_logged">Your IP address will be logged</p>
1234
+ </form>
1235
+ </div>
1236
+ </div>
1237
+ </div>
1238
+
1239
+
1240
+
1241
+ <div class="toolbox-popup" id="send-share-box">
1242
+ <div class="send-inner">
1243
+ <div class="share-top">
1244
+ <h3>Share</h3>
1245
+ <span><a class="close-toolbox" href="#send-share-box">Close</a></span>
1246
+ </div>
1247
+
1248
+ <div class="shortlink">
1249
+ Short link for this page:
1250
+ <a rel="shortlink nofollow" href="http://gu.com/p/32v5a">
1251
+ http://gu.com/p/32v5a
1252
+ </a>
1253
+ </div>
1254
+ <ul>
1255
+ <li><a class="digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{Digg}" onclick="if(true) {omnitureTrackShareLinks(this, 'Digg');} return false;" >Digg</a></li>
1256
+ <li>
1257
+ <a class="reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{reddit}" onclick="if(true) {omnitureTrackShareLinks(this, 'Reddit');} return false;" >reddit</a>
1258
+ </li>
1259
+ <li>
1260
+ <a class="google" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{Google Bookmarks}" onclick="if(true) {omnitureTrackShareLinks(this, 'Google Bookmarks');} return false;" >Google Bookmarks</a>
1261
+ </li>
1262
+ <li>
1263
+ <a class="twitter" href="http://twitter.com/home?status=http%3A%2F%2Fgu.com%2Fp%2F32v5a%2Ftw" name="lid={share}{Twitter}" onclick="if(true) {omnitureTrackShareLinks(this, 'Twitter');} return false;" >Twitter</a>
1264
+ </li>
1265
+ <li>
1266
+ <a class="delicious" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" name="lid={share}{del.icio.us}" onclick="if(true) {omnitureTrackShareLinks(this, 'del.icio.us');} return false;" >del.icio.us</a>
1267
+ </li>
1268
+ <li>
1269
+ <a class="stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;title=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" onclick="if(true) {omnitureTrackShareLinks(this, 'Stumbleupon');} return false;" >StumbleUpon</a>
1270
+ </li>
1271
+ <li>
1272
+ <a class="newsvine" href="http://www.newsvine.com/_tools/seed&amp;save?popoff=0&amp;u=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups&amp;h=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest" onclick="if(true) {omnitureTrackShareLinks(this, 'Newsvine');} return false;" >Newsvine</a>
1273
+ </li>
1274
+ <li>
1275
+ <a class="livejournal" href="http://www.livejournal.com/update.bml?subject=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{livejournal}" onclick="if(true) {omnitureTrackShareLinks(this, 'Livejournal');} return false;" >livejournal</a>
1276
+ </li>
1277
+ <li>
1278
+ <a class="facebook" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{Facebook}" onclick="if(true) {omnitureTrackShareLinks(this, 'Facebook');} return false;" >Facebook</a>
1279
+ </li>
1280
+ <li>
1281
+ <a class="mixx" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.guardian.co.uk%2Fmedia%2Fpda%2F2011%2Fsep%2F15%2Ftechcrunch-arrington-startups" name="lid={share}{Mixx}" onclick="if(true) {omnitureTrackShareLinks(this, 'Mixx');} return false;" >Mixx it!</a>
1282
+ </li>
1283
+ </ul>
1284
+ <div class="clear"></div>
1285
+ </div>
1286
+ </div>
1287
+
1288
+
1289
+ <div class="toolbox-popup" id="contact-link-box">
1290
+ <div class="send-inner">
1291
+ <div class="share-top">
1292
+ <h3>Contact us</h3>
1293
+ <span><a class="close-toolbox" href="#contact">Close</a></span>
1294
+ </div>
1295
+
1296
+ <div class="col first">
1297
+ <ul>
1298
+ <li>
1299
+
1300
+
1301
+ Contact the Media editor<br><a href="mailto:editor@mediaguardian.co.uk">editor@mediaguardian.co.uk</a>
1302
+ </li>
1303
+ <li>
1304
+ Report errors or inaccuracies: <a href="mailto:reader@guardian.co.uk">reader@guardian.co.uk</a>
1305
+ </li>
1306
+ <li>
1307
+ Letters for publication should be sent to: <a href="mailto:letters@guardian.co.uk">letters@guardian.co.uk</a>
1308
+ </li>
1309
+ </ul>
1310
+ </div>
1311
+ <div class="col">
1312
+ <ul>
1313
+ <li>
1314
+ If you need help using the site: <a href="mailto:userhelp@guardian.co.uk">userhelp@guardian.co.uk</a>
1315
+ </li>
1316
+ <li>
1317
+ Call the main Guardian and Observer switchboard: <br /><span>+44 (0)20 3353 2000</span>
1318
+ </li>
1319
+ <li>
1320
+ <ul>
1321
+ <li>
1322
+ <a href="http://adinfo-guardian.co.uk/">Advertising guide</a>
1323
+ </li>
1324
+ <li>
1325
+ <a href="http://www.guardian.co.uk/syndication/">License/buy our content</a>
1326
+ </li>
1327
+ </ul>
1328
+ </li>
1329
+ </ul>
1330
+ </div>
1331
+ </div>
1332
+ </div>
1333
+ <div class="toolbox-popup" id="history-link-box" style="width: 460px">
1334
+ <div class="send-inner">
1335
+ <div class="share-top">
1336
+ <h3>About this article</h3>
1337
+ <span><a class="close-toolbox" href="#history-link-box">Close</a></span>
1338
+ </div>
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+ <div class="section">
1345
+ <h1>More TechCrunch drama as Arrington-backed startup wins blog's contest</h1>
1346
+ This article was published on
1347
+ <a href='http://www.guardian.co.uk/'>guardian.co.uk</a>
1348
+ at <time datetime="2011-09-14T19:00EDT" pubdate>08.57 EDT on Thursday 15 September 2011</time>.
1349
+ It was last modified at <time datetime="2011-09-15T12:55EDT">12.55 EDT on Thursday 15 September 2011</time>.
1350
+ </div>
1351
+ </div>
1352
+ </div>
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+ <div id="Middle2" class=" hide-on-popup">
1381
+
1382
+
1383
+ <div id="ad-placeholder-Middle2"></div>
1384
+ </div>
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+ <div id="advertiser-container">
1401
+
1402
+ <script type="text/javascript">
1403
+
1404
+ google_ad_client = 'ca-guardian_js';
1405
+ google_ad_channel = 'media';
1406
+ </script>
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+ <script>
1421
+
1422
+ google_max_num_ads = '3';
1423
+
1424
+ </script>
1425
+ <div id="google-ads-container" class="eight-col edge component advertiser-links" style="display: none;"></div>
1426
+ <script type="text/javascript">
1427
+ //<![CDATA[
1428
+ if (true) {
1429
+ writeScript("http://pagead2.googlesyndication.com/pagead/show_ads.js", false, function(){});
1430
+ }
1431
+ // ]]>
1432
+ </script>
1433
+
1434
+ </div>
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+ <div class="eight-col discussion content-comment-list">
1462
+ <div class="hd">
1463
+ <!-- ID used for URLs with skiplink -->
1464
+ <h2 id="start-of-comments">Comments in chronological order <span>(Total 3 comments)</span></h2>
1465
+ </div>
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+ <ul class="comment-legend two-col edge b2">
1475
+ <li><img src="http://resource.guim.co.uk/discussion/static/1734/images/icons_staff_16.gif" alt="This symbol indicates that that person is The Guardian's staff" width="16" height="16" />Staff</li>
1476
+ <li><img src="http://resource.guim.co.uk/discussion/static/1734/images/icons_contributor_16.gif" alt="This symbol indicates that that person is a contributor" width="16" height="16" />Contributor</li>
1477
+ </ul>
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+ <div id="discussion-comments">
1489
+
1490
+
1491
+ <ul class="comment b2" id="comment-12423986">
1492
+
1493
+ <li class="comment-author" >
1494
+
1495
+ <div class="badges">
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+ </div>
1503
+ <div class="profile" >
1504
+
1505
+
1506
+
1507
+ <img class="author-profile-picture" src="http://static.guim.co.uk/sys-images/Guardian/Pix/site_furniture/2010/09/01/no-user-image.gif" height="60" width="60" alt="" />
1508
+ <a href="http://www.guardian.co.uk/discussion/user/nomster" title="User profile page">nomster</a>
1509
+
1510
+
1511
+ <p class="date">15 September 2011 7:55PM</p>
1512
+ </div>
1513
+
1514
+ <div class="comment-body">
1515
+
1516
+ <p>If Arrington's long-term aim had been to leave himself and his various ventures with zero credibility, he couldn't have done a better job.</p><p>Congrats.</p>
1517
+
1518
+ </div>
1519
+ </li>
1520
+
1521
+ <li class="comment-tools">
1522
+ <ul>
1523
+ <li class="recomended">
1524
+
1525
+ <a title="Recommend this comment" class="recommend" onclick="recommendComment(12423986);return false;">Recommend?</a>
1526
+
1527
+ (<span class="recommended" id="recommended-count-12423986">14</span>)
1528
+ </li>
1529
+ <li class="abuse-report">
1530
+ <a class="report-abuse " href="http://www.guardian.co.uk/discussion/report-abuse/comment/12423986">
1531
+ Report abuse
1532
+ </a>
1533
+ </li>
1534
+ <li class="clip">
1535
+ <form action="http://www.guardian.co.uk/users/clippings/add" method="get">
1536
+ <input type="hidden" name="microappName" value="discussion-main" />
1537
+ <input type="hidden" name="microappItemId" value="comment-12423986" />
1538
+ <input class="form-based-login-required package-required-RCO" type="submit" value="Clip" title="Add this comment to your profile bookmarks" />
1539
+ </form>
1540
+ </li>
1541
+ <li class="link">|
1542
+ <a href="http://www.guardian.co.uk/discussion/comment-permalink/12423986" title="Permalink to this comment" alt="Permalink to this comment">
1543
+ Link
1544
+ </a>
1545
+ </li>
1546
+ </ul>
1547
+ </li>
1548
+
1549
+ </ul>
1550
+
1551
+ <ul class="comment b2" id="comment-12424220">
1552
+
1553
+ <li class="comment-author" >
1554
+
1555
+ <div class="badges">
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+ </div>
1563
+ <div class="profile" >
1564
+
1565
+
1566
+
1567
+ <img class="author-profile-picture" src="http://static.guim.co.uk/sys-images/Guardian/Pix/site_furniture/2010/09/01/no-user-image.gif" height="60" width="60" alt="" />
1568
+ <a href="http://www.guardian.co.uk/discussion/user/GlennFleishman" title="User profile page">GlennFleishman</a>
1569
+
1570
+
1571
+ <p class="date">15 September 2011 8:20PM</p>
1572
+ </div>
1573
+
1574
+ <div class="comment-body">
1575
+
1576
+ <p>Also, the Bitcasa description reads like a pile of technical nonsense to anyone who understands how such services work. The service only handles "1s and 0s", and apparently has the neat trick of de-duplicating backups across users (that is, only storing a single master copy of, say, a movie or music file) while encrypting all the data on the user's computer before it's transferred over to Bitcasa servers so that the service can't scan the contents of the data. </p><p>Dropbox and SpiderOak are two distinct services that offer separately what Bitcasa is alleged to offer together. Many features are mutually incompatible. And "infinite" storage predicated on an average of 25 GB of unique compressed data per user isn't precisely a business plan.</p><p>(On the flip side, I use CrashPlan for backups, which has an unlimited online storage option with optional private client-side encryption. They don't de-duplicate, but they aren't a sync/cloud service.)</p>
1577
+
1578
+ </div>
1579
+ </li>
1580
+
1581
+ <li class="comment-tools">
1582
+ <ul>
1583
+ <li class="recomended">
1584
+
1585
+ <a title="Recommend this comment" class="recommend" onclick="recommendComment(12424220);return false;">Recommend?</a>
1586
+
1587
+ (<span class="recommended" id="recommended-count-12424220">1</span>)
1588
+ </li>
1589
+ <li class="abuse-report">
1590
+ <a class="report-abuse " href="http://www.guardian.co.uk/discussion/report-abuse/comment/12424220">
1591
+ Report abuse
1592
+ </a>
1593
+ </li>
1594
+ <li class="clip">
1595
+ <form action="http://www.guardian.co.uk/users/clippings/add" method="get">
1596
+ <input type="hidden" name="microappName" value="discussion-main" />
1597
+ <input type="hidden" name="microappItemId" value="comment-12424220" />
1598
+ <input class="form-based-login-required package-required-RCO" type="submit" value="Clip" title="Add this comment to your profile bookmarks" />
1599
+ </form>
1600
+ </li>
1601
+ <li class="link">|
1602
+ <a href="http://www.guardian.co.uk/discussion/comment-permalink/12424220" title="Permalink to this comment" alt="Permalink to this comment">
1603
+ Link
1604
+ </a>
1605
+ </li>
1606
+ </ul>
1607
+ </li>
1608
+
1609
+ </ul>
1610
+
1611
+ <ul class="comment b2" id="comment-12425802">
1612
+
1613
+ <li class="comment-author" id="end-of-comments">
1614
+
1615
+ <div class="badges">
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+ </div>
1623
+ <div class="profile" >
1624
+
1625
+
1626
+
1627
+ <img class="author-profile-picture" src="http://static.guim.co.uk/sys-images/Guardian/Pix/site_furniture/2010/09/01/no-user-image.gif" height="60" width="60" alt="" />
1628
+ <a href="http://www.guardian.co.uk/discussion/user/petedragon" title="User profile page">petedragon</a>
1629
+
1630
+
1631
+ <p class="date">15 September 2011 10:56PM</p>
1632
+ </div>
1633
+
1634
+ <div class="comment-body">
1635
+
1636
+ <p>What amazes me is that Cake didn't win. Not only was it the only pitch that was truly disruptive but it's one I can see the majority of Americans wanting to use. The negative is that it is US only with limited opportunity to go global. </p><p>Bitcasa's only real claim to fame is virtual storage with a predictive pre-fetch that could fairly easily be re-engineered. Not at all disruptive. I'm also surprised that none on the judges asked about bandwidth management - sucking down lots of bits will hit data caps. Help me manage that...</p><p>As for prism - I really don't get the point of that one. Blurry shots of the interior of a cafe as a marketing advantage?</p>
1637
+
1638
+ </div>
1639
+ </li>
1640
+
1641
+ <li class="comment-tools">
1642
+ <ul>
1643
+ <li class="recomended">
1644
+
1645
+ <a title="Recommend this comment" class="recommend" onclick="recommendComment(12425802);return false;">Recommend?</a>
1646
+
1647
+ (<span class="recommended" id="recommended-count-12425802">2</span>)
1648
+ </li>
1649
+ <li class="abuse-report">
1650
+ <a class="report-abuse " href="http://www.guardian.co.uk/discussion/report-abuse/comment/12425802">
1651
+ Report abuse
1652
+ </a>
1653
+ </li>
1654
+ <li class="clip">
1655
+ <form action="http://www.guardian.co.uk/users/clippings/add" method="get">
1656
+ <input type="hidden" name="microappName" value="discussion-main" />
1657
+ <input type="hidden" name="microappItemId" value="comment-12425802" />
1658
+ <input class="form-based-login-required package-required-RCO" type="submit" value="Clip" title="Add this comment to your profile bookmarks" />
1659
+ </form>
1660
+ </li>
1661
+ <li class="link">|
1662
+ <a href="http://www.guardian.co.uk/discussion/comment-permalink/12425802" title="Permalink to this comment" alt="Permalink to this comment">
1663
+ Link
1664
+ </a>
1665
+ </li>
1666
+ </ul>
1667
+ </li>
1668
+
1669
+ </ul>
1670
+
1671
+
1672
+ </div>
1673
+ </div>
1674
+
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+ <p id="post-area">Comments on this page are now closed.</p>
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+ <script type="text/javascript">
1697
+
1698
+ function fix_domain_for_careers(url){
1699
+ var re, fixed_url;
1700
+ var careers_length = "careers".length;
1701
+
1702
+ if (window.location.host.substr(0, careers_length) === "careers") {
1703
+ re = /http:\/\/www\./;
1704
+ fixed_url = url.replace(re, "http://careers.");
1705
+ } else {
1706
+ re = /http:\/\/careers\./;
1707
+ fixed_url = url.replace(re, "http://www.");
1708
+ }
1709
+
1710
+ return fixed_url;
1711
+ }
1712
+
1713
+ jQ(function() {
1714
+ fixPluckCommentUrl('http://www.guardian.co.uk/discussion/api/resolvePluckCommentKey?pluck-comment-keys=&amp;callback=');
1715
+ var loading_box = jQ("<div class='report-form-loading'>Loading</div>");
1716
+
1717
+ jQ('a.report-abuse:not(.no-abuse-popup)').live('click', function(ev) {
1718
+ ev.preventDefault();
1719
+
1720
+ loading_box.dialog({
1721
+ title: "Abuse report",
1722
+ draggable: false,
1723
+ modal: true,
1724
+ width: 400,
1725
+ minHeight: 320,
1726
+ resizable: false,
1727
+ beforeclose: function(event, ui) {
1728
+ var readOnly = jQ('.report-abuse-ajax-readonly').length;
1729
+ if(readOnly == 1) return true;
1730
+
1731
+ var reason = jQ('.report-abuse-ajax-form textarea#id_reason').val();
1732
+ var thanksPage = jQ('.report-form-loading p[data-abuse-report-accepted-for-comment]').length;
1733
+ if (thanksPage == 0) {
1734
+ thanksPage = jQ('.report-form-loading p[data-abuse-report-accepted-for-profile]').length;
1735
+ }
1736
+ if(thanksPage == 0) {
1737
+ if(reason == 0) {
1738
+ return true;
1739
+ } else {
1740
+ return confirm("Closing this window without pressing \"Report\" will result in your words being lost. Are you sure?");
1741
+ }
1742
+ }
1743
+ else {
1744
+ return true;
1745
+ }
1746
+ },
1747
+ close: function(ev, ui) { loading_box.remove(); }
1748
+ });
1749
+
1750
+ abuse_report_url = this.href.replace('report-abuse', 'report-abuse-ajax');
1751
+ abuse_report_url = fix_domain_for_careers(abuse_report_url);
1752
+
1753
+ jQ.ajax({
1754
+ url: abuse_report_url,
1755
+ success: function(data){
1756
+ loading_box.html(data);
1757
+ }
1758
+ });
1759
+ });
1760
+
1761
+ jQ('body').delegate('.report-abuse-ajax-form form', 'submit', function(ev) {
1762
+ ev.preventDefault();
1763
+ var form = jQ(this);
1764
+ var url = fix_domain_for_careers(form.attr('action'));
1765
+ jQ.post(url, form.serialize(), function(html) {
1766
+ form.parents('.ui-dialog-content').html(html);
1767
+ // Has the abuse report been accepted?
1768
+ var el = jQ(html);
1769
+ var comment_id = el.attr('data-abuse-report-accepted-for-comment');
1770
+ var profile_id = el.attr('data-abuse-report-accepted-for-profile');
1771
+ if (comment_id) {
1772
+ jQ('ul#comment-' + comment_id).find('li.abuse-report').remove();
1773
+ } else if (profile_id) {
1774
+ jQ('p.report-abuse').remove();
1775
+ }
1776
+ var is_successful_submission = (comment_id || profile_id);
1777
+ if (is_successful_submission) {
1778
+ window.setTimeout(function() {
1779
+ loading_box.dialog("close");
1780
+ }, 3000);
1781
+ }
1782
+ });
1783
+ });
1784
+
1785
+ //make sure submit button is enabled onReady.
1786
+ jQ('#newcommenting-form input[type=submit]' ).attr('disabled','');
1787
+
1788
+ var newFormURL = window.location.protocol + '//' + window.location.host + window.location.pathname + '?#post-area';
1789
+ jQ('div#login-container form.post-your-comments').attr('action', newFormURL);
1790
+
1791
+ jQ('div#signup-container input').click(function(){
1792
+ urlStack.clearUrlStack();
1793
+ urlStack.pushUrlOntoStack(newFormURL);
1794
+ document.location = 'http://users.guardian.co.uk/signup/tr/1,,-720,00.html';
1795
+ });
1796
+
1797
+
1798
+ jQ('.recomended').show();
1799
+
1800
+ jQ('#newcommenting-form').submit(function(){
1801
+ jQ('input[type=submit]', this).attr('disabled', 'disabled');
1802
+ });
1803
+ }); //end jQ ready
1804
+
1805
+ function openAbuseBox(commentId) {
1806
+ jQ("#abuse-report-comment-id").val(commentId);
1807
+ var loading_box = jQ('<div class="report-form-loading">Loading</div>');
1808
+ loading_box.dialog({
1809
+ title:"Abuse report",
1810
+ draggable: false,
1811
+ modal:true,
1812
+ width:400,
1813
+ minHeight:320,
1814
+ resizable: false,
1815
+ beforeclose: function(event, ui) {
1816
+ var reason = jQ('textarea#id_reason').val();
1817
+ if (reason != "") {
1818
+ return confirm("Closing this window without pressing \"Report\" will result in your words being lost. Are you sure?");
1819
+ } else {
1820
+ return true;
1821
+ }
1822
+ }
1823
+ });
1824
+ }
1825
+
1826
+ function recommendComment(commentId) {
1827
+ var post_url = "http://www.guardian.co.uk/discussion/handlers/recommendComment";
1828
+ post_url = fix_domain_for_careers(post_url);
1829
+
1830
+ jQ.post(post_url, { comment_id: commentId }, function(data) {
1831
+ if (data == "OK") {
1832
+ var span = jQ("#recommended-count-" + commentId);
1833
+ span.prev('a').contents().unwrap();
1834
+ span.text(parseInt(span.text(), 10)+1);
1835
+ }
1836
+ else {
1837
+ var span = jQ("#recommended-count-" + commentId);
1838
+ span.prev('a').contents().unwrap();
1839
+ }
1840
+ });
1841
+ }
1842
+
1843
+ </script>
1844
+
1845
+
1846
+
1847
+
1848
+ </div>
1849
+
1850
+ <div id="promo">
1851
+ <!-- this is the third column -->
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+
1859
+
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+
1866
+
1867
+ <div class="promo-component four-col edge jobs-box">
1868
+ <div class="hd">
1869
+ <a href="http://jobs.guardian.co.uk?INTCMP=JB2_MEDIA">
1870
+ <img src="http://resource.guim.co.uk/global/jobsbox/public/images/guardianjobs.gif" alt="guardian jobs">
1871
+ </a>
1872
+ </div>
1873
+
1874
+
1875
+ <div class="bd">
1876
+ <!--Country code: UK-->
1877
+
1878
+
1879
+ <!-- UK Jobs box version: 2-->
1880
+
1881
+
1882
+ <p class="jobs-categories-overview b2">Find the latest jobs in your sector:</p>
1883
+
1884
+ <ul class="column first">
1885
+ <li class="b3"><a href="http://jobs.guardian.co.uk/arts/?INTCMP=JB2_MEDIA">Arts & heritage</a></li>
1886
+ <li class="b3"><a href="http://jobs.guardian.co.uk/charity/?INTCMP=JB2_MEDIA">Charities</a></li>
1887
+ <li class="b3"><a href="http://jobs.guardian.co.uk/education/?INTCMP=JB2_MEDIA">Education</a></li>
1888
+ <li class="b3"><a href="http://jobs.guardian.co.uk/environment/?INTCMP=JB2_MEDIA">Environment</a></li>
1889
+ <li class="b3"><a href="http://jobs.guardian.co.uk/government/?INTCMP=JB2_MEDIA">Government</a></li>
1890
+ <li class="b3"><a href="http://jobs.guardian.co.uk/graduate/?INTCMP=JB2_MEDIA">Graduate</a></li>
1891
+ </ul>
1892
+ <ul class="column ">
1893
+ <li class="b3"><a href="http://jobs.guardian.co.uk/jobs/health/?INTCMP=JB2_MEDIA">Health</a></li>
1894
+ <li class="b3"><a href="http://jobs.guardian.co.uk/marketing/?INTCMP=JB2_MEDIA">Marketing & PR</a></li>
1895
+ <li class="b3"><a href="http://jobs.guardian.co.uk/media/?INTCMP=JB2_MEDIA">Media</a></li>
1896
+ <li class="b3"><a href="http://jobs.guardian.co.uk/jobs/sales">Sales</a></li>
1897
+ <li class="b3"><a href="http://jobs.guardian.co.uk/jobs/senior-executive/?INTCMP=JB2_MEDIA">Senior executive</a></li>
1898
+ <li class="b3"><a href="http://jobs.guardian.co.uk/social-care/?INTCMP=JB2_MEDIA">Social care</a></li>
1899
+ </ul>
1900
+ <p class="browse-all-jobs b3">
1901
+ <a href="http://jobs.guardian.co.uk?INTCMP=JB2_MEDIA">Browse all jobs</a>
1902
+ </p>
1903
+
1904
+ <form id="search-jobs-form" class="b2" action="http://jobs.guardian.co.uk/searchjobs/?INTCMP=JB2_MEDIA">
1905
+ <fieldset>
1906
+ <input type="text" onfocus="this.value='';" value="media" name="keyword" id="freetext-searchalljobs" class="text plain-search"/>
1907
+ <input type="hidden" value="JB2_MEDIA" name="INTCMP"/>
1908
+ <input type="submit" value="Search" name="go" class="submit"/>
1909
+ </fieldset>
1910
+ </form>
1911
+
1912
+ <div class="featured-job">
1913
+ <a href="http://jobs.guardian.co.uk/job/4349912/online-magazine-editor/" class="featured-image">
1914
+ <img src="http://resource.guim.co.uk/global/jobsbox/thumbnail/19002?u=1722647231" alt=""/>
1915
+ </a>
1916
+ <div>
1917
+ <h4><a href="http://jobs.guardian.co.uk/job/4349912/online-magazine-editor/">Online Magazine Editor</a></h4>
1918
+ <p>Stevenage, Hertfordshire | Negotiable</p>
1919
+ <p><a href="http://jobs.guardian.co.uk/employer/208250/pv-publications-ltd/">PV PUBLICATIONS LTD </a></p>
1920
+ </div>
1921
+ </div>
1922
+
1923
+ </div>
1924
+ </div>
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+
1938
+
1939
+ <div id="Right1" class=" hide-on-popup">
1940
+
1941
+
1942
+ <div id="ad-placeholder-Right1"></div>
1943
+ </div>
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+
1951
+
1952
+
1953
+
1954
+ <div class="promo-component rss-aggregator-promo">
1955
+ <style type="text/css">
1956
+ .promo-component.rss-aggregator-promo h3 {
1957
+ font-family:arial,sans-serif !important;
1958
+ font-size:12px !important;
1959
+ font-weight:bold !important;
1960
+ line-height:15px !important;
1961
+ }
1962
+ .rss-aggregator-promo .hd h3, .rss-aggregator-promo .hd h3 a {
1963
+ color: #CC3300 !important;
1964
+ font-size: 18px !important;
1965
+ line-height: 21px !important;
1966
+ font-family: georgia !important;
1967
+ font-weight: normal !important;
1968
+ }
1969
+ </style>
1970
+
1971
+ <div class="hd">
1972
+ <h3>Latest from the PDA reading list</h3>
1973
+ </div>
1974
+
1975
+ <div class="bd">
1976
+ <ul>
1977
+ <li>
1978
+
1979
+ <ul>
1980
+ <li class="rss-date">15 Sep 2011</li>
1981
+ <li><h3><a href="http://www.techmeme.com/110914/p70#a110914p70">And The Winner Of TechCrunch Disrupt Is...Shaker (Leena Rao/TechCrunch)</a></h3></li>
1982
+ <li>
1983
+ <div class="attribution">
1984
+ <img src="http://www.techmeme.com/favicon.ico" class="favicon-image" width="16" height="16" rel="x8" /> From Techmeme
1985
+ </div>
1986
+ </li>
1987
+ </ul>
1988
+ </li>
1989
+ <li>
1990
+
1991
+ <ul>
1992
+ <li class="rss-date">15 Sep 2011</li>
1993
+ <li><h3><a href="http://www.techmeme.com/110914/p69#a110914p69">AOL to launch NVIBE social network? Domain acquired, trademarks filed (J.B./Fusible.com)</a></h3></li>
1994
+ <li>
1995
+ <div class="attribution">
1996
+ <img src="http://www.techmeme.com/favicon.ico" class="favicon-image" width="16" height="16" rel="x8" /> From Techmeme
1997
+ </div>
1998
+ </li>
1999
+ </ul>
2000
+ </li>
2001
+ <li>
2002
+
2003
+ <ul>
2004
+ <li class="rss-date">15 Sep 2011</li>
2005
+ <li><h3><a href="http://feedproxy.google.com/~r/Techcrunch/~3/GoQ3uxWQbrk/">A Year After “AngelGate”, More Angelic Angels Descend Upon Disrupt</a></h3></li>
2006
+ <li>
2007
+ <div class="attribution">
2008
+ <img src="http://s2.wp.com/wp-content/themes/vip/tctechcrunch2/images/favicon.ico?m=1310283189g" class="favicon-image" width="16" height="16" rel="x8" /> From TechCrunch
2009
+ </div>
2010
+ </li>
2011
+ </ul>
2012
+ </li>
2013
+ <li>
2014
+
2015
+ <ul>
2016
+ <li class="rss-date">15 Sep 2011</li>
2017
+ <li><h3><a href="http://allthingsd.com/20110914/sony-designs-tablet-thats-not-an-ipad-wannabe/">Sony Designs Tablet That's Not an iPad Wannabe</a></h3></li>
2018
+ <li>
2019
+ <div class="attribution">
2020
+ <img src="http://allthingsd.com/favicon.ico" class="favicon-image" width="16" height="16" rel="x8" /> From AllThingsD
2021
+ </div>
2022
+ </li>
2023
+ </ul>
2024
+ </li>
2025
+ <li>
2026
+
2027
+ <ul>
2028
+ <li class="rss-date">15 Sep 2011</li>
2029
+ <li><h3><a href="http://feeds.nytimes.com/click.phdo?i=0d411dbfb3bf79d3cb49d8383b89df01">Should Twitter Be Afraid of Facebook’s Subscribe Feature?</a></h3></li>
2030
+ <li>
2031
+ <div class="attribution">
2032
+ <img src="http://www.nytimes.com/favicon.ico" class="favicon-image" width="16" height="16" rel="x8" /> From NYT &gt; Start-Ups
2033
+ </div>
2034
+ </li>
2035
+ </ul>
2036
+ </li>
2037
+ </ul>
2038
+
2039
+ <p class="ft"></p></div></div>
2040
+
2041
+
2042
+
2043
+
2044
+
2045
+
2046
+
2047
+ <style>
2048
+ .m-zeitgeist .bd { float: left } /* for the IE6 lols */
2049
+ .m-zeitgeist .hd { padding-bottom: 0px; margin-bottom: -12px}
2050
+ .m-zeitgeist .hd h2 { padding-bottom: 12px; }
2051
+ .m-zeitgeist #att-panes { background-color: #fff; float: left; }
2052
+ .m-zeitgeist .att-toggle-pane { min-width:280px; }
2053
+ .m-zeitgeist ol { padding: 0 5px; }
2054
+ .m-zeitgeist #most-zeitgeist ol { padding-left: 0; }
2055
+ .m-zeitgeist .zg-date { color: #D61D00; padding-left:5px; padding-top: 5px; }
2056
+ .m-zeitgeist ol li { clear: both; padding-left: 15px; }
2057
+ .m-zeitgeist div#att-most-viewed ol li.l1,
2058
+ .m-zeitgeist div#att-latest ol li.l1 { padding-bottom: 9px !important; }
2059
+ .m-zeitgeist ol li.footer { clear: both; padding-left: 0px !important; padding-top: 5px !important; }
2060
+ .m-zeitgeist .rank { float: left; margin-left: -15px; }
2061
+ .m-zeitgeist .kicker { font-weight: bold; }
2062
+ .m-zeitgeist ol li.thumb { padding-left: 0; }
2063
+ .m-zeitgeist ol li.thumb .rank { margin-left: 0; }
2064
+ .m-zeitgeist ol li img { float: left; margin: 0 10px 3px 0; }
2065
+
2066
+ .m-zeitgeist #most-zeitgeist ol li { border-top: none; padding: 0; border-top: none; }
2067
+ .m-zeitgeist #most-zeitgeist ol li .zeit-link {background-color: #fff; padding: 5px 0 9px 5px; border-top: 1px dotted #999; margin-bottom: 0px; }
2068
+ .m-zeitgeist #most-zeitgeist ol li.footer { border-top:1px dotted #999; padding: 5px 0 9px 10px; margin-left: 5px }
2069
+ .m-zeitgeist #most-zeitgeist .m-zeigeist ol { padding-left: 0}
2070
+
2071
+ /* zeit-up */
2072
+ .m-zeitgeist #most-zeitgeist .what-is { float: none; padding: 0 3px; vertical-align: middle; cursor: pointer; }
2073
+ .about-zeit { position: relative; }
2074
+ .zeit-popup { position: absolute; display: none; background-color: #dbedf3; color: #333; padding: 6px; width: 200px; }
2075
+
2076
+ .fade-1 { border-left: 5px solid #801100 !important;}
2077
+ .fade-2 { border-left: 5px solid #95382A !important;}
2078
+ .fade-3 { border-left: 5px solid #AA5F54 !important;}
2079
+ .fade-4 { border-left: 5px solid #BF867E !important;}
2080
+ .fade-5 { border-left: 5px solid #D4ADA8 !important;}
2081
+
2082
+ .m-zeitgeist div.hd { padding-bottom: 0; }
2083
+ .m-zeitgeist.most-viewed div.hd { padding-bottom: 7px; }
2084
+
2085
+
2086
+ </style>
2087
+
2088
+ <script type="text/javascript">
2089
+ jQ(function($){$('.about-zeit').each(function(){var distance=-10;var time=250;var hideDelay=500;var hideDelayTimer=null;var beingShown=false;var shown=false;var trigger=$('.what-is',this);var info=$('.zeit-popup',this).css('opacity',0);$([trigger.get(0),info.get(0)]).mouseover(function(){if(hideDelayTimer)clearTimeout(hideDelayTimer);if(beingShown||shown){return;}else{beingShown=true;info.css({top:-97,right:0,display:'block'}).animate({top:'-='+distance+'px',opacity:1},time,'swing',function(){beingShown=false;shown=true;});}return false;}).mouseout(function(){if(hideDelayTimer)clearTimeout(hideDelayTimer);hideDelayTimer=setTimeout(function(){hideDelayTimer=null;info.animate({top:'-='+distance+'px',opacity:0},time,'swing',function(){shown=false;info.css('display','none');});},hideDelay);return false;});});});
2090
+ </script>
2091
+
2092
+ <!------ widget old rhs: media : 2011-09-26 05:40:43.972471 ------>
2093
+ <div class="m-zeitgeist promo-component four-col attention-data">
2094
+
2095
+ <div class="hd">
2096
+ <h3>On Media</h3>
2097
+ </div>
2098
+
2099
+ <div class="bd">
2100
+ <div id="att-toggle">
2101
+ <ul class="tabs">
2102
+ <li>
2103
+ <a class="active" href="#att-most-viewed">Most viewed</a>
2104
+ </li>
2105
+ <li>
2106
+ <a class="inactive" href="#most-zeitgeist">Zeitgeist</a>
2107
+ </li>
2108
+
2109
+ <li>
2110
+ <a class="inactive" href="#att-latest">Latest</a>
2111
+ </li>
2112
+
2113
+ </ul>
2114
+
2115
+ <div id="att-panes">
2116
+ <div class="att-tabs att-toggle-pane" id="att-most-viewed">
2117
+ <p class="b2 zg-date">Last 24 hours</p>
2118
+ <ol>
2119
+
2120
+ <li class="l1 thumb">
2121
+
2122
+
2123
+ <img src="http://static.guim.co.uk/sys-images/Media/Pix/pictures/2011/9/23/1316809068187/Carl-Bernstein-and-Bob-Wo-003.jpg" />
2124
+
2125
+
2126
+ <span class="rank">1.&nbsp;</span>
2127
+
2128
+ <a href="http://www.guardian.co.uk/media/2011/sep/25/carl-bernstein-rupert-murdoch-watergate">Carl Bernstein on Rupert Murdoch's Watergate</a>
2129
+ </li>
2130
+
2131
+ <li class="l1">
2132
+
2133
+ <span class="rank">2. </span>
2134
+
2135
+ <a href="http://www.guardian.co.uk/media/2011/sep/25/mark-thompson-met-guardian-order">Mark Thompson: Met's order to Guardian part of 'disturbing trend'</a>
2136
+ </li>
2137
+
2138
+ <li class="l1">
2139
+
2140
+ <span class="rank">3. </span>
2141
+
2142
+ <a href="http://www.guardian.co.uk/media/organgrinder/2011/sep/25/copyright-term-extended-music-recordings">Who benefits from extending the copyright term for sound recordings?</a>
2143
+ </li>
2144
+
2145
+ <li class="l1">
2146
+
2147
+ <span class="rank">4. </span>
2148
+
2149
+ <a href="http://www.guardian.co.uk/media/2011/sep/23/neil-wallis-revelation-questions-met">Phone-hacking claims mount up at News International</a>
2150
+ </li>
2151
+
2152
+ <li class="l1">
2153
+
2154
+ <span class="rank">5. </span>
2155
+
2156
+ <a href="http://www.guardian.co.uk/media/2011/sep/23/simon-cowell-interview-emma-brockes">Simon says</a>
2157
+ </li>
2158
+
2159
+ <li class="more-most-viewed l1 footer">
2160
+
2161
+ <a href="http://www.guardian.co.uk/most-viewed/media">More most viewed</a>
2162
+
2163
+ </li>
2164
+ </ol>
2165
+ </div>
2166
+
2167
+ <div class="att-tabs att-toggle-pane initially-off" id="most-zeitgeist">
2168
+ <p class="b2 zg-date">Last 24 hours</p>
2169
+ <ol>
2170
+
2171
+ <li class="l1 media fade-1">
2172
+ <div class="zeit-link"><a href="http://www.guardian.co.uk/media/2011/sep/25/mark-thompson-met-guardian-order">Mark Thompson: Met's order to Guardian part of 'disturbing trend'</a></div>
2173
+ </li>
2174
+
2175
+ <li class="l1 media fade-2">
2176
+ <div class="zeit-link"><a href="http://www.guardian.co.uk/media/2011/sep/25/carl-bernstein-rupert-murdoch-watergate">Carl Bernstein on Rupert Murdoch's Watergate</a></div>
2177
+ </li>
2178
+
2179
+ <li class="l1 media fade-3">
2180
+ <div class="zeit-link"><a href="http://www.guardian.co.uk/media/2011/sep/23/neil-wallis-revelation-questions-met">Phone-hacking claims mount up at News International</a></div>
2181
+ </li>
2182
+
2183
+ <li class="l1 media fade-4">
2184
+ <div class="zeit-link"><a href="http://www.guardian.co.uk/media/2011/sep/24/alexander-lebedev-interview">Alexander Lebedev reveals his street fighting past after YouTube brawl</a></div>
2185
+ </li>
2186
+
2187
+ <li class="l1 media fade-5">
2188
+ <div class="zeit-link"><a href="http://www.guardian.co.uk/media/2011/sep/25/radio-four-today-humphreys-lansley">John Humphrys meets his match</a></div>
2189
+ </li>
2190
+
2191
+ <li class="l1 footer about-zeit">
2192
+ <a href="http://www.guardian.co.uk/zeitgeist">More zeitgeist</a>
2193
+ <img class="what-is" alt="What is Zeigeist?" title="" src="http://static.guim.co.uk/microapps/zeitgeist/about-zeitgeist.gif" />
2194
+ <div id="zeit-popup" class="zeit-popup">
2195
+ <strong>What is Zeitgeist?</strong>
2196
+ <p>Zeitgeist is an experiment in showing trending news, topics and articles from the Guardian. Find out more in <a href="http://www.guardian.co.uk/help/insideguardian/2010/feb/03/zeitgeist">our blog post</a>.</p>
2197
+ </div>
2198
+ </li>
2199
+ </ol>
2200
+ </div>
2201
+
2202
+
2203
+ <div class="att-tabs att-toggle-pane initially-off" id="att-latest">
2204
+ <p class="b2 zg-date">Last 24 hours</p>
2205
+ <ol>
2206
+
2207
+ <li class="l1 thumb">
2208
+
2209
+
2210
+ <img src="http://static.guim.co.uk/sys-images/Guardian/About/General/2011/9/25/1316977792001/Mark-Thompson-BBC-directo-003.jpg" />
2211
+
2212
+
2213
+ <span class="rank">1.&nbsp;</span>
2214
+ <a href="http://www.guardian.co.uk/media/2011/sep/25/mark-thompson-met-guardian-order">Mark Thompson: Met's order to Guardian part of 'disturbing trend'</a>
2215
+ </li>
2216
+
2217
+ <li class="l1">
2218
+
2219
+ <span class="rank">2. </span>
2220
+ <a href="http://www.guardian.co.uk/media/mediamonkeyblog/2011/sep/25/media-monkey-diary">Media Monkey's Diary</a>
2221
+ </li>
2222
+
2223
+ <li class="l1">
2224
+
2225
+ <span class="rank">3. </span>
2226
+ <a href="http://www.guardian.co.uk/media/organgrinder/2011/sep/25/copyright-term-extended-music-recordings">Who benefits from extending the copyright term for sound recordings?</a>
2227
+ </li>
2228
+
2229
+ <li class="l1">
2230
+
2231
+ <span class="rank">4. </span>
2232
+ <a href="http://www.guardian.co.uk/media/organgrinder/2011/sep/25/press-reform-redtops-challenge">How do we agree a model of press reform if the redtops won't join in?</a>
2233
+ </li>
2234
+
2235
+ <li class="l1">
2236
+
2237
+ <span class="rank">5. </span>
2238
+ <a href="http://www.guardian.co.uk/media/2011/sep/25/carl-bernstein-rupert-murdoch-watergate">Carl Bernstein on Rupert Murdoch's Watergate</a>
2239
+ </li>
2240
+
2241
+ <li class="more-latest l1 footer">
2242
+ <a href="http://www.guardian.co.uk/media/all">All today&#39;s stories</a>
2243
+ </li>
2244
+ </ol>
2245
+ </div>
2246
+
2247
+
2248
+ </div>
2249
+ </div>
2250
+ </div>
2251
+ </div>
2252
+
2253
+
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+ <div class="simplify-digital-speed-checker">
2260
+ <iframe src="http://www.simplifydigital.co.uk/tools/guardian/articlepages.aspx" width="300" height="400" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
2261
+ </div>
2262
+
2263
+
2264
+
2265
+
2266
+
2267
+
2268
+
2269
+
2270
+
2271
+
2272
+
2273
+
2274
+
2275
+
2276
+
2277
+
2278
+
2279
+ <div class="reader-offers promo-component">
2280
+ <div class="hd">
2281
+ <h3>Bestsellers from the Guardian shop</h3>
2282
+ </div>
2283
+
2284
+ <div class="bd">
2285
+ <ul>
2286
+ <li class="inline-pic"><a href="http://www.guardianoffers.co.uk/mall/productpage.cfm/GuardianOffers/TRUNTCD1B/119269" class="link-image">
2287
+ <img src="http://www.guardianoffers.co.uk/mall/GOTruebellUKLtd/customerimages/products/t_TRUNTCD1B.jpg" alt="Neostar vinyl2CD turntable and accessories" />
2288
+ </a></li>
2289
+
2290
+ <li><p class="t6"><a href="http://www.guardianoffers.co.uk/mall/productpage.cfm/GuardianOffers/TRUNTCD1B/119269">Neostar vinyl2CD turntable and accessories</a></p></li>
2291
+
2292
+ <li><p>No PC needed: play and record vinyl and tapes direct to CD at the touch of a button.</p></li>
2293
+
2294
+ <li><p class="price">From: &pound;6.95</p></li>
2295
+
2296
+ </ul>
2297
+
2298
+ </div>
2299
+ <div class="ft">
2300
+ <ul>
2301
+ <li><a href="http://www.guardianoffers.co.uk/">Shop more reader offers</a></li>
2302
+
2303
+ <li><a href="http://www.guardian.co.uk/lifeandstyle/shopping">See all offers and services from the Guardian</a></li>
2304
+ </ul>
2305
+ </div>
2306
+ </div>
2307
+
2308
+
2309
+
2310
+
2311
+
2312
+
2313
+
2314
+
2315
+
2316
+
2317
+
2318
+
2319
+
2320
+
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+
2328
+
2329
+
2330
+ <div class="blog-related-links">
2331
+
2332
+
2333
+
2334
+
2335
+
2336
+
2337
+
2338
+
2339
+ <div id="internal-links" class=" heading-vertical-links news">
2340
+
2341
+
2342
+
2343
+ <div class="bd">
2344
+ <ul class="two-col last">
2345
+
2346
+ <li class="b2">
2347
+
2348
+
2349
+
2350
+ <h4>
2351
+
2352
+ On this blog
2353
+ </h4>
2354
+
2355
+ </li>
2356
+ <li class="b3">
2357
+
2358
+
2359
+
2360
+
2361
+
2362
+
2363
+
2364
+
2365
+
2366
+
2367
+
2368
+
2369
+
2370
+
2371
+ <p>
2372
+
2373
+ <a href="http://www.guardian.co.uk/media/pda+technology/blogging" class="link-text">Blogging</a>
2374
+ </p>
2375
+
2376
+ </li>
2377
+ <li class="b3">
2378
+
2379
+
2380
+
2381
+
2382
+
2383
+
2384
+
2385
+
2386
+
2387
+
2388
+
2389
+
2390
+
2391
+
2392
+ <p>
2393
+
2394
+ <a href="http://www.guardian.co.uk/media/pda+series/digitaldigest" class="link-text">Digital digest</a>
2395
+ </p>
2396
+
2397
+ </li>
2398
+ <li class="b3">
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+
2405
+
2406
+
2407
+
2408
+
2409
+
2410
+
2411
+
2412
+
2413
+ <p>
2414
+
2415
+ <a href="http://www.guardian.co.uk/media/pda+media/series/elevatorpitch" class="link-text">Elevator Pitch</a>
2416
+ </p>
2417
+
2418
+ </li>
2419
+ <li class="b3">
2420
+
2421
+
2422
+
2423
+
2424
+
2425
+
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+
2432
+
2433
+
2434
+ <p>
2435
+
2436
+ <a href="http://www.guardian.co.uk/media/pda+technology/mobilephones" class="link-text">Mobile</a>
2437
+ </p>
2438
+
2439
+ </li>
2440
+ <li class="b3">
2441
+
2442
+
2443
+
2444
+
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+
2453
+
2454
+
2455
+ <p>
2456
+
2457
+ <a href="http://www.guardian.co.uk/media/pda+music/netmusic" class="link-text">Music</a>
2458
+ </p>
2459
+
2460
+ </li>
2461
+ <li class="b3">
2462
+
2463
+
2464
+
2465
+
2466
+
2467
+
2468
+
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+ <p>
2477
+
2478
+ <a href="http://www.guardian.co.uk/media/pda+digitalmedia" class="link-text">News sites</a>
2479
+ </p>
2480
+
2481
+ </li>
2482
+ <li class="b3">
2483
+
2484
+
2485
+
2486
+
2487
+
2488
+
2489
+
2490
+
2491
+
2492
+
2493
+
2494
+
2495
+
2496
+
2497
+ <p>
2498
+
2499
+ <a href="http://www.guardian.co.uk/media/pda+socialnetworking" class="link-text">Social networking</a>
2500
+ </p>
2501
+
2502
+ </li>
2503
+ <li class="b3">
2504
+
2505
+
2506
+
2507
+
2508
+
2509
+
2510
+
2511
+
2512
+
2513
+
2514
+
2515
+
2516
+
2517
+
2518
+ <p>
2519
+
2520
+ <a href="http://www.guardian.co.uk/media/pda+television" class="link-text">Video &amp; TV</a>
2521
+ </p>
2522
+
2523
+ </li>
2524
+ <li class="b3">
2525
+
2526
+
2527
+
2528
+
2529
+
2530
+
2531
+
2532
+
2533
+
2534
+
2535
+
2536
+
2537
+
2538
+
2539
+ <p>
2540
+
2541
+ <a href="http://www.guardian.co.uk/technology/series/viralvideochart" class="link-text">Viral video chart</a>
2542
+ </p>
2543
+
2544
+ </li>
2545
+ <li class="b3">
2546
+
2547
+
2548
+
2549
+
2550
+
2551
+
2552
+
2553
+
2554
+
2555
+
2556
+
2557
+
2558
+
2559
+
2560
+ <p>
2561
+
2562
+ <a href="http://www.guardian.co.uk/media/pda+technology/internet" class="link-text">Web giants</a>
2563
+ </p>
2564
+
2565
+ </li>
2566
+ </ul>
2567
+ </div>
2568
+ </div>
2569
+
2570
+
2571
+
2572
+
2573
+
2574
+
2575
+
2576
+
2577
+
2578
+
2579
+ </div>
2580
+
2581
+
2582
+
2583
+
2584
+
2585
+
2586
+
2587
+
2588
+
2589
+
2590
+
2591
+
2592
+
2593
+
2594
+
2595
+
2596
+
2597
+
2598
+
2599
+
2600
+
2601
+
2602
+
2603
+
2604
+
2605
+
2606
+
2607
+
2608
+
2609
+
2610
+
2611
+
2612
+ <div class="blogs-calendar component">
2613
+ <h4 class="t6 b2">PDA weekly archives</h4>
2614
+ <div id="calendar-container" class="bd">
2615
+ <table title="Calendar for September" summary="Calendar for September" id="calendar">
2616
+ <thead>
2617
+ <tr>
2618
+ <th colspan="7" scope="col">
2619
+ <strong class="month">Sep 2011</strong>
2620
+ <a title="Previous month" href="http://www.guardian.co.uk/media/pda/2011/aug/29/week" class="previous">
2621
+ <img src="http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/images/calendar/arrow_left.png" alt="Previous" height="18" width="19" />
2622
+ </a>
2623
+
2624
+ </th>
2625
+ </tr>
2626
+ <tr class="month-nav">
2627
+ <th scope="col" title="Monday" class="first">M</th>
2628
+ <th scope="col" title="Tuesday">T</th>
2629
+ <th scope="col" title="Wednesday">W</th>
2630
+ <th scope="col" title="Thursday">T</th>
2631
+ <th scope="col" title="Friday">F</th>
2632
+ <th scope="col" title="Saturday">S</th>
2633
+ <th scope="col" title="Sunday" class="last">S</th>
2634
+ </tr>
2635
+ </thead>
2636
+ <tbody>
2637
+
2638
+ <tr class=" has-links ">
2639
+
2640
+
2641
+ <td class="not-this-month first">29</td>
2642
+
2643
+
2644
+ <td class="not-this-month ">30</td>
2645
+
2646
+
2647
+ <td class="not-this-month ">31</td>
2648
+
2649
+
2650
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/aug/29/week" >1</a></td>
2651
+
2652
+
2653
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/aug/29/week" >2</a></td>
2654
+
2655
+
2656
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/aug/29/week" >3</a></td>
2657
+
2658
+
2659
+ <td class="last" ><a href="http://www.guardian.co.uk/media/pda/2011/aug/29/week" >4</a></td>
2660
+ </tr>
2661
+
2662
+ <tr class=" has-links ">
2663
+
2664
+
2665
+ <td class="first" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >5</a></td>
2666
+
2667
+
2668
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >6</a></td>
2669
+
2670
+
2671
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >7</a></td>
2672
+
2673
+
2674
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >8</a></td>
2675
+
2676
+
2677
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >9</a></td>
2678
+
2679
+
2680
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >10</a></td>
2681
+
2682
+
2683
+ <td class="last" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/05/week" >11</a></td>
2684
+ </tr>
2685
+
2686
+ <tr class=" has-links ">
2687
+
2688
+
2689
+ <td class="first" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >12</a></td>
2690
+
2691
+
2692
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >13</a></td>
2693
+
2694
+
2695
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >14</a></td>
2696
+
2697
+
2698
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" class="today" >15</a></td>
2699
+
2700
+
2701
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >16</a></td>
2702
+
2703
+
2704
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >17</a></td>
2705
+
2706
+
2707
+ <td class="last" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/12/week" >18</a></td>
2708
+ </tr>
2709
+
2710
+ <tr class=" has-links ">
2711
+
2712
+
2713
+ <td class="first" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >19</a></td>
2714
+
2715
+
2716
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >20</a></td>
2717
+
2718
+
2719
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >21</a></td>
2720
+
2721
+
2722
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >22</a></td>
2723
+
2724
+
2725
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >23</a></td>
2726
+
2727
+
2728
+ <td ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >24</a></td>
2729
+
2730
+
2731
+ <td class="last" ><a href="http://www.guardian.co.uk/media/pda/2011/sep/19/week" >25</a></td>
2732
+ </tr>
2733
+
2734
+ <tr class=" ">
2735
+
2736
+
2737
+ <td class="first" >26</td>
2738
+
2739
+
2740
+ <td >27</td>
2741
+
2742
+
2743
+ <td >28</td>
2744
+
2745
+
2746
+ <td >29</td>
2747
+
2748
+
2749
+ <td >30</td>
2750
+
2751
+
2752
+ <td class="not-this-month ">1</td>
2753
+
2754
+
2755
+ <td class="not-this-month last">2</td>
2756
+ </tr>
2757
+ </tbody>
2758
+ </table>
2759
+ </div>
2760
+ </div>
2761
+
2762
+
2763
+
2764
+
2765
+
2766
+
2767
+
2768
+ <style>
2769
+ .m-guardianbookshop .rank { float: left; margin-left: -15px; }
2770
+ .m-guardianbookshop .thumb .rank { margin-left: 0; }
2771
+ .m-guardianbookshop h4 { border-top: none !important; font-weight: bold; margin-left: 5px !important; padding: 5px 0 8px 0 !important; }
2772
+ .m-guardianbookshop .bestsellers { background-color: #fff; padding-bottom: 17px;}
2773
+ .m-guardianbookshop ol { padding: 0 5px; }
2774
+ .m-guardianbookshop .l1 { clear: both; padding-left: 15px; }
2775
+ .m-guardianbookshop .thumb { padding-left: 0; }
2776
+ .m-guardianbookshop .thumb img { float: left; margin: 2px 10px 9px 0;}
2777
+ .m-guardianbookshop .price { display: inline; }
2778
+ .m-guardianbookshop .thumb .price { display: block; }
2779
+ .m-guardianbookshop .rank, .m-guardianbookshop .book-title { font-weight: bold; }
2780
+ .m-guardianbookshop input { border: 1px solid #999; width: 75%; min-height: 16px; margin-top: 8px; padding: 3px 2px;}
2781
+ </style>
2782
+
2783
+ <div class="m-guardianbookshop promo-component">
2784
+ <div class="hd">
2785
+ <h3>
2786
+ <a href="http://www.guardianbookshop.co.uk"><img src="http://resource.guim.co.uk/global/static/proxy?url=http%3A%2F%2Fgu-books.appspot.com%2Fimg%2Flogo-guardian-bookshop.png" alt="Guardian Bookshop" title="" /></a>
2787
+ </h3>
2788
+ </div>
2789
+ <div class="bd">
2790
+ <div class="bestsellers">
2791
+ <h4>This week's bestsellers</h4>
2792
+ <ol>
2793
+
2794
+ <li class="l1 thumb">
2795
+
2796
+
2797
+ <img src="http://resource.guim.co.uk/books/gubookshop/thumbnail/images.bertrams.com/ProductImages/services/GetImage?Source=BERT&amp;Quality=WEB&amp;EAN13=9781408812129&amp;Component=FRONTCOVER" title="River Cottage Veg Every Day!" />
2798
+
2799
+
2800
+ <span class="rank">1.&nbsp;</span>
2801
+ <a href="http://www.guardianbookshop.co.uk/BerteShopWeb/viewProduct.do?ISBN=9781408812129" class="book-title">River Cottage Veg Every Day!</a>
2802
+ <p>
2803
+
2804
+ by Hugh Fearnley-Whittingstall
2805
+
2806
+
2807
+ <span class="price">£25.00</span>
2808
+
2809
+ </p>
2810
+ </li>
2811
+
2812
+ <li class="l1">
2813
+
2814
+ <span class="rank">2.&nbsp;</span>
2815
+ <a href="http://www.guardianbookshop.co.uk/BerteShopWeb/viewProduct.do?ISBN=9780099560630" class="book-title">Life and Fate</a>
2816
+ <p>
2817
+
2818
+ by Vasily Grossman
2819
+
2820
+
2821
+ <span class="price">£9.99</span>
2822
+
2823
+ </p>
2824
+ </li>
2825
+
2826
+ <li class="l1">
2827
+
2828
+ <span class="rank">3.&nbsp;</span>
2829
+ <a href="http://www.guardianbookshop.co.uk/BerteShopWeb/viewProduct.do?ISBN=9780007391431" class="book-title">Short and Sweet</a>
2830
+ <p>
2831
+
2832
+ by Dan Lepard
2833
+
2834
+
2835
+ <span class="price">£25.00</span>
2836
+
2837
+ </p>
2838
+ </li>
2839
+
2840
+ <li class="l1">
2841
+
2842
+ <span class="rank">4.&nbsp;</span>
2843
+ <a href="http://www.guardianbookshop.co.uk/BerteShopWeb/viewProduct.do?ISBN=5038495031389" class="book-title">Romantic Poets Collection</a>
2844
+ <p>
2845
+
2846
+
2847
+ <span class="price">£64.00</span>
2848
+
2849
+ </p>
2850
+ </li>
2851
+
2852
+ <li class="l1">
2853
+
2854
+ <span class="rank">5.&nbsp;</span>
2855
+ <a href="http://www.guardianbookshop.co.uk/BerteShopWeb/viewProduct.do?ISBN=9780099506164" class="book-title">Life and Fate</a>
2856
+ <p>
2857
+
2858
+ by Vasily Grossman
2859
+
2860
+
2861
+ <span class="price">£9.99</span>
2862
+
2863
+ </p>
2864
+ </li>
2865
+
2866
+ </ol>
2867
+ </div>
2868
+ <div class="search">
2869
+ <p>
2870
+ Search the Guardian bookshop
2871
+ </p>
2872
+ <form method="POST" action="http://www.guardianbookshop.co.uk/BerteShopWeb/search.do" name="QuickSearchForm">
2873
+ <input type="text" class="searchBox" value="" name="keyword">
2874
+ <button class="searchBtn" type="submit">
2875
+ <span class="searchText">Search</span>
2876
+ </button>
2877
+ <input type="hidden" value="" name="author">
2878
+ </form>
2879
+ </div>
2880
+ </div>
2881
+ </div>
2882
+
2883
+
2884
+
2885
+
2886
+
2887
+
2888
+
2889
+
2890
+
2891
+
2892
+
2893
+
2894
+
2895
+
2896
+
2897
+
2898
+
2899
+
2900
+ <div class="promo-component json-features x31 four-col" style="display: none;">
2901
+ <div class="hd">
2902
+ <h3>Sponsored feature</h3>
2903
+ </div>
2904
+ <div class="bd inline-pic">
2905
+ <a href="" class="link-image"><img width="130" height="121" alt="" /></a>
2906
+
2907
+
2908
+
2909
+ <div id="x31" class=" hide-on-popup">
2910
+
2911
+
2912
+ <div id="ad-placeholder-x31"></div>
2913
+ </div>
2914
+
2915
+
2916
+ <span class="x31-script-placeholder"></span>
2917
+ <script>
2918
+
2919
+ function showSponsoredFeaturex31(){
2920
+ if (window.sponJSON) {
2921
+ if(typeof(sponJSON) === 'object') {
2922
+ adx31 = sponJSON;
2923
+ var node = jQ('.json-features.x31');
2924
+ convertJSONtoAd(
2925
+ node.find('img:first-child'),
2926
+ node.find('a.t6'),
2927
+ node.find('p:last-child'),
2928
+ adx31,
2929
+ node.find('.hd').children().eq(0),
2930
+ 'x31'
2931
+ );
2932
+ }
2933
+ }
2934
+ }
2935
+
2936
+ jQ(document).ready(function(){
2937
+ jQ('.x31-script-placeholder').writeCapture().replaceWith('<script>showSponsoredFeaturex31()<' + '/script>')
2938
+ })
2939
+
2940
+ </script>
2941
+ <a href="" class="t6"></a>
2942
+ <p></p>
2943
+ </div>
2944
+ </div>
2945
+
2946
+
2947
+
2948
+
2949
+
2950
+
2951
+
2952
+
2953
+
2954
+
2955
+
2956
+
2957
+
2958
+
2959
+
2960
+
2961
+ <div id="Middle2" class=" hide-on-popup">
2962
+
2963
+
2964
+ <div id="ad-placeholder-Middle2"></div>
2965
+ </div>
2966
+
2967
+
2968
+
2969
+
2970
+
2971
+
2972
+
2973
+
2974
+
2975
+
2976
+
2977
+
2978
+
2979
+
2980
+
2981
+
2982
+
2983
+
2984
+
2985
+
2986
+
2987
+
2988
+
2989
+
2990
+
2991
+
2992
+
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+
2999
+
3000
+
3001
+
3002
+
3003
+
3004
+
3005
+
3006
+
3007
+
3008
+
3009
+
3010
+
3011
+
3012
+
3013
+
3014
+
3015
+
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+
3022
+
3023
+
3024
+
3025
+ <div id="Position4" class=" hide-on-popup">
3026
+
3027
+
3028
+ <div id="ad-placeholder-Position4"></div>
3029
+ </div>
3030
+
3031
+
3032
+
3033
+
3034
+
3035
+
3036
+
3037
+
3038
+
3039
+
3040
+
3041
+
3042
+
3043
+
3044
+
3045
+
3046
+
3047
+
3048
+
3049
+
3050
+
3051
+
3052
+
3053
+
3054
+
3055
+
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+
3063
+
3064
+
3065
+
3066
+
3067
+
3068
+
3069
+ </div>
3070
+
3071
+
3072
+
3073
+
3074
+
3075
+
3076
+
3077
+
3078
+
3079
+
3080
+
3081
+
3082
+
3083
+
3084
+
3085
+
3086
+
3087
+ <div class="related-content eight-col component">
3088
+
3089
+ <div class="hd">
3090
+ <h3>Related information</h3>
3091
+ </div>
3092
+ <div class="bd">
3093
+ <div class="two-col">
3094
+
3095
+ <div class="related-keywords">
3096
+ <h4 class="t6 b4"><a href="http://www.guardian.co.uk/technology?INTCMP=ILCNETTXT3487">Technology</a></h4>
3097
+ <ul>
3098
+ <li><a href="http://www.guardian.co.uk/technology/startups?INTCMP=ILCNETTXT3487">Technology startups</a></li>
3099
+ </ul>
3100
+
3101
+ </div><div class="related-keywords">
3102
+ <h4 class="t6 b3"><a href="http://www.guardian.co.uk/media?INTCMP=ILCNETTXT3487">Media</a></h4>
3103
+ <ul>
3104
+ <li><a href="http://www.guardian.co.uk/media/techcrunch?INTCMP=ILCNETTXT3487">TechCrunch</a> &middot; </li><li><a href="http://www.guardian.co.uk/media/blogging?INTCMP=ILCNETTXT3487">Blogging</a> &middot; </li><li><a href="http://www.guardian.co.uk/media/digital-media?INTCMP=ILCNETTXT3487">Digital media</a></li>
3105
+ </ul>
3106
+
3107
+ </div>
3108
+
3109
+ </div>
3110
+
3111
+
3112
+ <div class="two-col">
3113
+ <a href="http://www.guardian.co.uk/media/pda/2011/sep/07/techcrunch-mike-arrington-aol" class="related-content-image">
3114
+ <img alt="The AOL logo. Photograph: AP/Paul Sakuma" src="http://static.guim.co.uk/sys-images/Media/Pix/pictures/2008/03/13/AOL14084.jpg" />
3115
+ </a>
3116
+
3117
+ <p class="t6">
3118
+
3119
+ <a class="related-content-headline" href="http://www.guardian.co.uk/media/pda/2011/sep/07/techcrunch-mike-arrington-aol?INTCMP=ILCNETTXT3487">Does the AOL 'Crunchgate' spat mark the end for TechCrunch?</a>
3120
+ </p>
3121
+
3122
+ <p class="t6 related-content-publication-date">7 Sep 2011</p>
3123
+
3124
+ <p class="related-content-trail-text">Mike Arrington's plans for a venture capital fund have kicked off a giant shit-storm with TechCrunch owners AOL over 'editorial independence' and Arianna Huffington's role. It's showtime. By Jemima Kiss</p>
3125
+
3126
+
3127
+ </div>
3128
+
3129
+ <div class="two-col">
3130
+ <ul class="l1d">
3131
+ <li>
3132
+ <p class="t6 related-content-publication-date">16 Jul 2008</p>
3133
+ <p class="t7">
3134
+ <a class="related-content-headline" href="http://www.guardian.co.uk/technology/blog/2008/jul/16/evtalksabouttwitterandbuy?INTCMP=ILCNETTXT3487">Ev talks about Twitter and buying Summize</a>
3135
+ </p>
3136
+ </li><li>
3137
+ <p class="t6 related-content-publication-date">23 Aug 2006</p>
3138
+ <p class="t7">
3139
+ <a class="related-content-headline" href="http://www.guardian.co.uk/technology/blog/2006/aug/23/bloggingfordo?INTCMP=ILCNETTXT3487">Blogging for Dollars</a>
3140
+ </p>
3141
+ </li><li>
3142
+ <p class="t6 related-content-publication-date">14 Jul 2008</p>
3143
+ <p class="t7">
3144
+ <a class="related-content-headline" href="http://www.guardian.co.uk/media/pda/2008/jul/14/istechcrunchthenexttechbl?INTCMP=ILCNETTXT3487">Is TechCrunch the next tech blog up for sale?</a>
3145
+ </p>
3146
+ </li><li>
3147
+ <p class="t6 related-content-publication-date">9 May 2008</p>
3148
+ <p class="t7">
3149
+ <a class="related-content-headline" href="http://www.guardian.co.uk/media/pda/2008/may/09/techcrunchpartnerswithwashi?INTCMP=ILCNETTXT3487">TechCrunch partners with WashingtonPost.com</a>
3150
+ </p>
3151
+ </li>
3152
+ </ul>
3153
+ </div>
3154
+
3155
+ <div class="two-col edge">
3156
+
3157
+
3158
+ <p class="t6">
3159
+
3160
+ <a class="related-content-headline" href="http://www.guardian.co.uk/technology/pda/2010/sep/29/aol-techcrunch-arrington?INTCMP=ILCNETTXT3487">AOL buys TechCrunch - but can it really contain Mike Arrington?</a>
3161
+ </p>
3162
+
3163
+ <p class="t6 related-content-publication-date">29 Sep 2010</p>
3164
+
3165
+ <p class="related-content-trail-text">Deal goes through for $25m – but can Arrington last three years at the reincarnated AOL? By Jemima Kiss</p>
3166
+
3167
+
3168
+ </div>
3169
+
3170
+
3171
+ </div>
3172
+ </div>
3173
+
3174
+
3175
+
3176
+
3177
+
3178
+
3179
+
3180
+
3181
+
3182
+
3183
+
3184
+
3185
+
3186
+
3187
+
3188
+
3189
+
3190
+
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+
3197
+
3198
+
3199
+
3200
+
3201
+
3202
+
3203
+
3204
+
3205
+
3206
+
3207
+
3208
+
3209
+
3210
+
3211
+
3212
+
3213
+
3214
+
3215
+
3216
+
3217
+
3218
+
3219
+
3220
+
3221
+
3222
+ <div class="crumb-wrapper global">
3223
+
3224
+
3225
+
3226
+ <ul class="crumb-nav">
3227
+ <li id="crumb1"> <span>
3228
+
3229
+ Hot topics
3230
+ </span>
3231
+ </li>
3232
+ </ul>
3233
+
3234
+ <ul class="local-nav">
3235
+ <li
3236
+
3237
+ class='first'
3238
+ >
3239
+ <a href="http://www.guardian.co.uk/media/interactive/2011/jul/25/mediaguardian-100-2011-interactive" >MediaGuardian 100</a>
3240
+ </li>
3241
+ <li
3242
+
3243
+
3244
+ >
3245
+ <a href="http://www.guardian.co.uk/media/privacy" >Privacy &amp; the media</a>
3246
+ </li>
3247
+ <li
3248
+
3249
+
3250
+ >
3251
+ <a href="http://www.guardian.co.uk/media/television" >Television industry</a>
3252
+ </li>
3253
+ <li
3254
+
3255
+
3256
+ >
3257
+ <a href="http://www.guardian.co.uk/media/pressandpublishing" >Newspapers &amp; magazines</a>
3258
+ </li>
3259
+ <li
3260
+
3261
+ class=' last'
3262
+ >
3263
+ <a href="http://www.guardian.co.uk/media/newsinternational" >News International</a>
3264
+ </li>
3265
+ </ul>
3266
+
3267
+ </div>
3268
+
3269
+
3270
+ <div id="footer" class="news footer b4">
3271
+ <ul id="footer-links">
3272
+
3273
+
3274
+
3275
+
3276
+
3277
+
3278
+
3279
+ <li>
3280
+
3281
+ <a href="http://syndication.guardian.co.uk/" class="link-text">License/buy our content</a>
3282
+ </li>
3283
+
3284
+ |
3285
+
3286
+
3287
+
3288
+
3289
+
3290
+
3291
+ <li>
3292
+
3293
+ <a href="http://www.guardian.co.uk/help/privacy-policy" class="link-text">Privacy policy</a>
3294
+ </li>
3295
+
3296
+ |
3297
+
3298
+
3299
+
3300
+
3301
+
3302
+
3303
+ <li>
3304
+
3305
+ <a href="http://www.guardian.co.uk/help/terms-of-service" class="link-text">Terms of service</a>
3306
+ </li>
3307
+
3308
+ |
3309
+
3310
+
3311
+
3312
+
3313
+
3314
+
3315
+ <li>
3316
+
3317
+ <a href="http://www.guardian.co.uk/advertising" class="link-text">US Advertising</a>
3318
+ </li>
3319
+
3320
+ |
3321
+
3322
+
3323
+
3324
+
3325
+
3326
+
3327
+ <li>
3328
+
3329
+ <a href="http://www.guardian.co.uk/index/subjects/a" class="link-text">A - Z index</a>
3330
+ </li>
3331
+
3332
+ |
3333
+
3334
+
3335
+
3336
+
3337
+
3338
+
3339
+ <li>
3340
+
3341
+ <a href="http://www.guardian.co.uk/info" class="link-text">About guardiannews.com</a>
3342
+ </li>
3343
+
3344
+ </ul>
3345
+
3346
+ <ul id="copyright-links">
3347
+ <li>&#169; 2011 Guardian News and Media Limited or its affiliated companies. All rights reserved.</li>
3348
+ </ul>
3349
+ </div>
3350
+
3351
+
3352
+
3353
+
3354
+
3355
+
3356
+
3357
+
3358
+
3359
+
3360
+
3361
+
3362
+
3363
+
3364
+
3365
+ </div>
3366
+
3367
+
3368
+
3369
+ <script id="omnitureGeneratorScript" type="text/javascript">
3370
+ //<![CDATA[
3371
+ if(true) {
3372
+ var s_account="guardiangu-blogs,guardiangu-media,guardiangu-network";
3373
+ writeScript('http://static.guim.co.uk/static/e7518479fc9cdb2d09c922e4732029a07ae2d157/common/scripts/omniture-H.22.2.js', false, function(){});
3374
+ }
3375
+ //]]>
3376
+ </script>
3377
+
3378
+ <script id="omnitureScript" type="text/javascript">
3379
+
3380
+
3381
+ //<![CDATA[
3382
+ if(true) {
3383
+ if (false) {
3384
+ s.pageName = document.title;
3385
+ } else {
3386
+ s.pageName="More TechCrunch drama as Arrington-backed startup wins blog\'s contest:Article:1633834";
3387
+ }
3388
+ s.channel = "Media";
3389
+ s.pageType="";
3390
+ s.server='10';
3391
+ s.prop2='GUID:(none)';
3392
+
3393
+ s['prop3']="GU.co.uk";
3394
+ s['prop4']="TechCrunch,Media,Blogging (Media),Digital media,Technology,Technology startups (Technology)";
3395
+ s['prop5']="Unclassified,Digital Media,Media Weekly,Corporate IT";
3396
+ s['prop6']="Jemima Kiss";
3397
+ s['prop7']="11-Sep-15";
3398
+ s['prop8']="1633834";
3399
+ s['prop9']="Article";
3400
+ s['prop10']="Blogpost,News";
3401
+ s['prop11']="Media";
3402
+ s['prop13']="";
3403
+ s['prop25']="PDA blog";
3404
+ s['prop30']="content";
3405
+
3406
+ s.hier2="GU/Media/blog/PDA";
3407
+ s.events="";
3408
+ s.eVar23="";
3409
+
3410
+ try {
3411
+ if (guardian.r2.OmnitureTrackingOverride) {
3412
+ new guardian.r2.OmnitureTrackingOverride(s);
3413
+ }
3414
+ }
3415
+ catch(err) {
3416
+ }
3417
+
3418
+ if(jQ.cookie("GU_OMNITURE") !== null) {
3419
+ s.events = jQ.cookie("GU_OMNITURE");
3420
+ jQ.cookie("GU_OMNITURE", null, { path: '/', domain: '.guardian.co.uk'});
3421
+ }
3422
+
3423
+ var s_code=s.t();if(s_code)document.write(s_code);
3424
+ }
3425
+ //]]>
3426
+ </script>
3427
+ <noscript id="omnitureNoScript">
3428
+ <div><img alt="" src='http://hits.guardian.co.uk/b/ss/guardiangu-blogs,guardiangu-media,guardiangu-network/1/H.22.2/15186?ns=guardian&pageName=More+TechCrunch+drama+as+Arrington-backed+startup+wins+blog%27s+contest%3AArticle%3A1633834&ch=Media&c3=GU.co.uk&c4=TechCrunch%2CMedia%2CBlogging+%28Media%29%2CDigital+media%2CTechnology%2CTechnology+startups+%28Technology%29&c5=Unclassified%2CDigital+Media%2CMedia+Weekly%2CCorporate+IT&c6=Jemima+Kiss&c7=11-Sep-15&c8=1633834&c9=Article&c10=Blogpost%2CNews&c11=Media&c13=&c25=PDA+blog&c30=content&h2=GU%2FMedia%2Fblog%2FPDA&c2=GUID:(none)' width="1" height="1" /></div>
3429
+ </noscript>
3430
+
3431
+
3432
+ <script id="componentTrackingScript" type="text/javascript">
3433
+ if (true) {
3434
+ jQ(document).ready(function () {
3435
+ jQ('a[data-cpt]').each(
3436
+ function () {
3437
+ jQ(this).click(
3438
+ function () {
3439
+ var cpId = jQ(this).attr('data-cpt').split("-")[1];
3440
+ var currentLink = jQ(this).attr('href');
3441
+
3442
+ if (currentLink.indexOf('intcmp=') == -1) {
3443
+ if(currentLink.indexOf('?') == -1) {
3444
+ var separator = '?'
3445
+ } else {
3446
+ var separator = '&'
3447
+ }
3448
+
3449
+ jQ(this).attr('href', currentLink + separator + "intcmp=" + cpId);
3450
+ }
3451
+ });
3452
+ });
3453
+ });
3454
+ }
3455
+ </script>
3456
+
3457
+ <script type="text/javascript">
3458
+ //<![CDATA[
3459
+ if (false) {
3460
+ // guardian.co.uk Connect Adprobe Tag, MPU [9814], Leaderboard [9815]
3461
+ var wlOrd = new Date().getTime();
3462
+ document.write('<scr' + 'ipt type="text/javascript" src="http://req.connect.wunderloop.net/AP/1566/6033/10343/js?cus=10343,10344&ord=' + wlOrd + '"></sc' + 'ript>');
3463
+ }
3464
+ // ]]>
3465
+ </script>
3466
+
3467
+ <script type="text/javascript">
3468
+ //<![CDATA[
3469
+ if (false) {
3470
+ OAS_query += 'wl10343=' + wl10343camp + '&wl10344=' + wl10344camp + '&';
3471
+ }
3472
+ // ]]>
3473
+ </script>
3474
+
3475
+ <script type="text/javascript">
3476
+ //<![CDATA[
3477
+
3478
+ if(true) {
3479
+ ensurePackage("guardian.r2.revsci");
3480
+
3481
+ guardian.r2.revsci.cookieDomain = '.guardian.co.uk';
3482
+ guardian.r2.revsci.gu_geo_country = 'usa';
3483
+ guardian.r2.revsci.siteName = 'Media';
3484
+ guardian.r2.revsci.commercialFolder = 'Digital+Media'
3485
+
3486
+ addEvent(null, 'load', function () {
3487
+ writeScript('http://js.revsci.net/gateway/gw.js?csid=E05516', true, function() {
3488
+ writeScript('http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/scripts/revsci.js', true, function() {
3489
+ rs_initTracking();
3490
+ })
3491
+ })
3492
+ });
3493
+ }
3494
+
3495
+ // ]]>
3496
+ </script>
3497
+
3498
+ <noscript>
3499
+ <div><img src="http://pix01.revsci.net/E05516/a3/0/0/0/0/0/0/0/0/0/noscript.gif" alt="" /></div>
3500
+ </noscript>
3501
+
3502
+
3503
+
3504
+
3505
+ <script type="text/javascript">
3506
+ //<![CDATA[
3507
+ function OAS_NORMAL(pos) {
3508
+ document.write('<A HREF="' + OAS_url + 'click_nx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + pos + '!' + pos + '?' + OAS_query + '" TARGET=' + OAS_target + '>');
3509
+ document.write('<IMG SRC="' + OAS_url + 'adstream_nx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + pos + '!' + pos + '?' + OAS_query + '" BORDER=0></A>');
3510
+ }
3511
+
3512
+ OAS_version = 11;
3513
+ if ((navigator.userAgent.indexOf('Mozilla/3') != -1) || (navigator.userAgent.indexOf('Mozilla/4.0 WebTV') != -1)) OAS_version = 10;
3514
+
3515
+ if (true) {
3516
+ if (OAS_version >= 11) document.write('<SCR' + 'IPT LANGUAGE=JavaScript1.1 SRC="' + OAS_url + 'adstream_mjx.ads/' + OAS_sitepage + '/1' + OAS_rns + '@' + OAS_listpos + '?' + OAS_query + '"><\/SCRIPT>');
3517
+ }
3518
+
3519
+ function OAS_AD(pos) {
3520
+ if (true) {
3521
+ if (typeof(OAS_RICH) !== 'undefined' && OAS_version >= 11) {
3522
+ OAS_RICH(pos);
3523
+ } else {
3524
+ OAS_NORMAL(pos);
3525
+ }
3526
+ }
3527
+ }
3528
+
3529
+ //]]>
3530
+ </script>
3531
+ <!------ OAS SETUP end ------>
3532
+
3533
+ <div id="ad-temp-Top">
3534
+ <script>
3535
+ //<![CDATA[
3536
+ jQ('#ad-placeholder-Top').writeCapture().replaceWith('<script>OAS_AD("Top")<' + '/script>');
3537
+ //]]>
3538
+ </script>
3539
+ </div>
3540
+ <script>
3541
+ jQ('#ad-temp-Top').hide();
3542
+ </script>
3543
+
3544
+ <div id="ad-temp-Middle2">
3545
+ <script>
3546
+ //<![CDATA[
3547
+ jQ('#ad-placeholder-Middle2').writeCapture().replaceWith('<script>OAS_AD("Middle2")<' + '/script>');
3548
+ //]]>
3549
+ </script>
3550
+ </div>
3551
+ <script>
3552
+ jQ('#ad-temp-Middle2').hide();
3553
+ </script>
3554
+
3555
+ <div id="ad-temp-Right1">
3556
+ <script>
3557
+ //<![CDATA[
3558
+ jQ('#ad-placeholder-Right1').writeCapture().replaceWith('<script>OAS_AD("Right1")<' + '/script>');
3559
+ //]]>
3560
+ </script>
3561
+ </div>
3562
+ <script>
3563
+ jQ('#ad-temp-Right1').hide();
3564
+ </script>
3565
+
3566
+ <div id="ad-temp-x31">
3567
+ <script>
3568
+ //<![CDATA[
3569
+ jQ('#ad-placeholder-x31').writeCapture().replaceWith('<script>OAS_AD("x31")<' + '/script>');
3570
+ //]]>
3571
+ </script>
3572
+ </div>
3573
+ <script>
3574
+ jQ('#ad-temp-x31').hide();
3575
+ </script>
3576
+
3577
+ <div id="ad-temp-Position4">
3578
+ <script>
3579
+ //<![CDATA[
3580
+ jQ('#ad-placeholder-Position4').writeCapture().replaceWith('<script>OAS_AD("Position4")<' + '/script>');
3581
+ //]]>
3582
+ </script>
3583
+ </div>
3584
+ <script>
3585
+ jQ('#ad-temp-Position4').hide();
3586
+ </script>
3587
+
3588
+
3589
+ <script type="text/javascript">
3590
+ ensurePackage("guardian.r2.omniture");
3591
+ guardian.r2.omniture.isAvailable = function(){
3592
+ return true;
3593
+ }
3594
+ </script>
3595
+
3596
+
3597
+
3598
+
3599
+ <span id="Panel_Content" class="initially-off"></span>
3600
+ <script type="text/javascript">
3601
+ // <![CDATA[
3602
+ if(true) {
3603
+ var OAS_taxonomy='&Paneled_Site=guardian.co.uk&Paneled_Section=media';
3604
+ jQ(document).ready(function(){
3605
+ jQ.getScript('http://static.guim.co.uk/static/32b9600ebe43926107624a816c7870f8566f154f/common/scripts/kantarmedia.js');
3606
+ });
3607
+ }
3608
+ // ]]>
3609
+ </script>
3610
+
3611
+
3612
+
3613
+
3614
+
3615
+
3616
+
3617
+ </body>
3618
+ </html>