-
Notifications
You must be signed in to change notification settings - Fork 0
/
TheVerge.txt
2590 lines (1612 loc) · 104 KB
/
TheVerge.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
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
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-us">
<head>
<script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script>
<script type="text/javascript">
var performanceTiming = {};
performanceTiming.firstByte = new Date().getTime();
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=1060">
<title>On The Verge, Episode 011: Oblong's John Underkoffler, RIM's Thorsten Heins, and more! | The Verge</title>
<link rel="alternate" type="application/rss+xml" title="The Verge - All Posts" href="/rss/index.xml" />
<link rel="shortcut icon" href="http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" />
<link rel="apple-touch-icon" href="/images/verge/apple-touch-icon.png" />
<meta name="application-name" content="The Verge" />
<meta name="msapplication-starturl" content="/"/>
<meta content="name=Products; action-uri=/products; icon-uri=http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" name="msapplication-task" />
<meta content="name=Reviews; action-uri=/reviews; icon-uri=http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" name="msapplication-task" />
<meta content="name=Features; action-uri=/features; icon-uri=http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" name="msapplication-task" />
<meta content="name=Show; action-uri=/on-the-verge; icon-uri=http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" name="msapplication-task" />
<meta content="name=Forums; action-uri=/forums; icon-uri=http://cdn2.sbnation.com/images/verge/favicon.vc44a54f.ico" name="msapplication-task" />
<meta name="msapplication-TileColor" content="#666666"/>
<meta name="msapplication-TileImage" content="http://cdn3.sbnation.com/images/verge/windows8-pinned-icon.ve36f4a6.png"/>
<meta name="google-site-verification" content="TYyhlycNMOtUSht2aoB7heWTK8m-H45_YJizKavkO8s" />
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<link href="http://cdn3.sbnation.com/stylesheets/verge.vf4b61c5934136f10.css" media="all" rel="stylesheet" type="text/css" />
<link href="http://cdn3.sbnation.com/stylesheets/verge_print.v0498bf68ae1120eb.css" media="print" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
<script type="text/javascript">
var $j = jQuery.noConflict();
</script>
<script src="http://cdn1.sbnation.com/javascripts/verge_head.vb3482519eb3daf2c.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function() {
performanceTiming.domReady = new Date().getTime();
});
jQuery(window).load(function () {
performanceTiming.windowLoad = new Date().getTime();
});
</script>
<script type="text/javascript" src="http://ox-d.sbnation.com/w/1.0/jstag"></script><script type="text/javascript">
//<![CDATA[
if (typeof(SBN) == "undefined") { SBN = new Object(); }
SBN.OpenX = new OXH();
SBN.OpenX.setAdUnitScopes(null);
SBN.OpenX.setAdUnitGroups({"9986":[96673,96674]});
if (typeof Util === 'object' && Util.UserAgentProfiler) {
SBN.OpenX.setPageScope({
browser_width: Util.UserAgentProfiler.browserWidthForOpenX(),
device_type: Util.UserAgentProfiler.deviceTypeForOpenX()
});
}
SBN.OpenX.addContentTopic(17, 'Interior Page');
SBN.OpenX.addVariable('network', 'verge');
SBN.OpenX.addVariable('entry_type', 'article');
SBN.OpenX.addVariable('entry_group', '51,483');
SBN.OpenX.addVariable('tag', 'oblong,john underkoffler,underkoffler,minority report,iron man,thorsten heins,rim,research in motion,blackberry,blackberry 10,bb10,bb 10,heins,sinofsky,steven sinofsky,forstall,scott forstall');
SBN.Campaigns.Components.logActivation(
3407,
275,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3425,
275,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3473,
289,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3475,
289,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3477,
289,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3479,
289,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3481,
289,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
3823,
321,
'ad-hoc'
);
SBN.Campaigns.Components.logActivation(
4007,
341,
'ad-hoc'
);
SBN.Campaigns.Components.setCustomVarsFromActiveComponents();
SBN.OpenX.setAdUnitsOnPage([96673,252368,96674,252370,277814,277788]);
SBN.OpenX.fetchAds();
//]]>
</script>
<script src="http://cdn0.sbnation.com/javascripts/app/hub_posts.vf763b40.js" type="text/javascript"></script>
<!--[if lte IE 9]>
<link href="http://cdn0.sbnation.com/stylesheets/verge/hacks/ie9-and-under.v9f102dd.css" media="screen" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if lte IE 8]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
document.createElement('hgroup');
</script>
<link href="http://cdn2.sbnation.com/stylesheets/verge/hacks/ie8-and-under.vdf85d1a.css" media="screen" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if lt IE 8]>
<link href="http://cdn1.sbnation.com/stylesheets/verge/hacks/ie7.v7c23801.css" media="screen" rel="stylesheet" type="text/css" />
<![endif]-->
<script type="text/javascript" src="http://fonts.sbnation.com/wvq7oai.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('sub/5676') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&c=20&mc=click&pli=5657216&PluID=0&ord=[timestamp]">'+ '<img src="http://assets.sbnation.com/ads/samsung-CTA.png" />'+ '<img src="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&c=19&mc=imp&pli=5657216&PluID=0&ord=[timestamp]&rtu=-1" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('play-3/3657') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&c=20&mc=click&pli=5657216&PluID=0&ord=[timestamp]">'+ '<img src="http://assets.sbnation.com/ads/samsung-CTA.png" />'+ '<img src="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&c=19&mc=imp&pli=5657216&PluID=0&ord=[timestamp]&rtu=-1" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('galaxy-note-ii-verizon/6261') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://ad.doubleclick.net/click;h=v2|3FF2|0|0|%2a|s;264444405;0-0;0;88608553;31-1|1;51043070|51013158|1;;;pc=[TPAS_ID]%3fhttp://guide.sharethegalaxy.com/note2">'+ '<img src="http://cdn0.sbnation.com/staging/campaigns_images/1946/staging_SamsungSGIII_CHECKOUT_btn.png" />'+ '<img src="http://ad.doubleclick.net/imp;v1;f;264444405;0-0;0;88608553;1|1;51043070|51013158|1;;cs=z;pc=[TPAS_ID];%3fhttp://ad.doubleclick.net/dot.gif?[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('galaxy-note-ii-sprint/6271') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://ad.doubleclick.net/click;h=v2|3FF2|0|0|%2a|s;264444405;0-0;0;88608553;31-1|1;51043070|51013158|1;;;pc=[TPAS_ID]%3fhttp://guide.sharethegalaxy.com/note2">'+ '<img src="http://cdn0.sbnation.com/staging/campaigns_images/1946/staging_SamsungSGIII_CHECKOUT_btn.png" />'+ '<img src="http://ad.doubleclick.net/imp;v1;f;264444405;0-0;0;88608553;1|1;51043070|51013158|1;;cs=z;pc=[TPAS_ID];%3fhttp://ad.doubleclick.net/dot.gif?[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('galaxy-note-ii/6024') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://ad.doubleclick.net/click;h=v2|3FF2|0|0|%2a|s;264444405;0-0;0;88608553;31-1|1;51043070|51013158|1;;;pc=[TPAS_ID]%3fhttp://guide.sharethegalaxy.com/note2">'+ '<img src="http://cdn0.sbnation.com/staging/campaigns_images/1946/staging_SamsungSGIII_CHECKOUT_btn.png" />'+ '<img src="http://ad.doubleclick.net/imp;v1;f;264444405;0-0;0;88608553;1|1;51043070|51013158|1;;cs=z;pc=[TPAS_ID];%3fhttp://ad.doubleclick.net/dot.gif?[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('galaxy-note-ii-at-t/6270') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://ad.doubleclick.net/click;h=v2|3FF2|0|0|%2a|s;264444405;0-0;0;88608553;31-1|1;51043070|51013158|1;;;pc=[TPAS_ID]%3fhttp://guide.sharethegalaxy.com/note2">'+ '<img src="http://cdn0.sbnation.com/staging/campaigns_images/1946/staging_SamsungSGIII_CHECKOUT_btn.png" />'+ '<img src="http://ad.doubleclick.net/imp;v1;f;264444405;0-0;0;88608553;1|1;51043070|51013158|1;;cs=z;pc=[TPAS_ID];%3fhttp://ad.doubleclick.net/dot.gif?[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('galaxy-note-ii-t-mobile/6254') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://ad.doubleclick.net/click;h=v2|3FF2|0|0|%2a|s;264444405;0-0;0;88608553;31-1|1;51043070|51013158|1;;;pc=[TPAS_ID]%3fhttp://guide.sharethegalaxy.com/note2">'+ '<img src="http://cdn0.sbnation.com/staging/campaigns_images/1946/staging_SamsungSGIII_CHECKOUT_btn.png" />'+ '<img src="http://ad.doubleclick.net/imp;v1;f;264444405;0-0;0;88608553;1|1;51043070|51013158|1;;cs=z;pc=[TPAS_ID];%3fhttp://ad.doubleclick.net/dot.gif?[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('ear-force-x41/3367') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://www.turtlebeach.com/bo2">'+ '<img src="http://assets.sbnation.com/ads/samsung-CTA.png" />'+ '<img src="http://altfarm.mediaplex.com/ad/tr/19152-162171-48412-7?mpt=[timestamp]" />'+ '</a></div>');
}
});
</script>
<script type="text/javascript">
jQuery(function(){
if (window.location.href.indexOf('xperia-tablet-s/6022') != -1) {
$j('.product-about').append('<div style="text-align: right; margin-top: 10px; margin-right: 10px;">'+ '<a target="_blank" href="http://clk.atdmt.com/ULA/go/423628875/direct/01/">'+ '<img src="http://assets.sbnation.com/ads/samsung-CTA.png" />'+ '<img src="http://view.atdmt.com/ULA/view/423628875/direct/01/" />'+ '<img src="http://secure-us.imrworldwide.com/cgi-bin/m?ci=mccann-ca&at=view&rt=banner&st=image&ca=l2gmp&cr=423628875_ss&pc=sbnation&ce=siteserve&rnd=[timestamp]" />'+ '</a></div>');
}
});
</script>
<meta name="google-site-verification" content="TYyhlycNMOtUSht2aoB7heWTK8m-H45_YJizKavkO8s" />
<meta name="msvalidate.01" content="D385D0326A3AE144205C298DB34B4E94" />
<META name="y_key" content="0184e2558f89b639" />
<meta name="google-site-verification" content="tDoQLOfV4VmPZrTuSNDQnSyTfhgDRlOMaXgYQ0Bb9Bc" />
<style>
article quote em:before {
content: none;
}
</style>
<meta name="description" content="What a way to end a season! It all starts with news from best actor nominee Joshua Topolsky and best supporting actor nominees Paul Miller and Nilay Patel (also nominated for his role in &quot;Jerk..." />
<link rel="canonical" href="http://www.theverge.com/2012/11/21/3674430/on-the-verge-11-oblong-john-underkoffler-rim-ceo-thorsten-heins" />
<meta property="og:description" content="What a way to end a season! It all starts with news from best actor nominee Joshua Topolsky and best supporting actor nominees Paul Miller and Nilay Patel (also nominated for his role in "Jerk..." />
<meta property="fb:app_id" content="179668695452017" />
<meta property="og:image" content="http://cdn0.sbnation.com/entry_photo_images/7263709/post-still_large_large.jpg" />
<meta property="og:site_name" content="The Verge" />
<meta property="og:title" content="On The Verge, Episode 011: Oblong's John Underkoffler, RIM's Thorsten Heins, and more!" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://www.theverge.com/2012/11/21/3674430/on-the-verge-11-oblong-john-underkoffler-rim-ceo-thorsten-heins" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="http://www.theverge.com/2012/11/21/3674430/on-the-verge-11-oblong-john-underkoffler-rim-ceo-thorsten-heins" />
<meta name="twitter:title" content="On The Verge, Episode 011: Oblong's John Underkoffler, RIM's Thorsten Heins, and more!" />
<meta name="twitter:description" content="What a way to end a season! It all starts with news from best actor nominee Joshua Topolsky and best supporting actor nominees Paul Miller and Nilay Patel (also nominated for his role in "Jerk..." />
<meta name="twitter:image" content="http://cdn0.sbnation.com/entry_photo_images/7263709/post-still_large_large.jpg" />
<meta name="twitter:site" content="verge" />
<meta name="twitter:creator" content="ohnorosco" />
<meta name="sailthru.title" content="On The Verge, Episode 011: Oblong's John Underkoffler, RIM's Thorsten Heins, and more!" />
<meta name="sailthru.tags" content="general,general,the-verge" />
<meta name="sailthru.date" content="2012-11-21" />
<meta name="sailthru.description" content="What a way to end a season! It all starts with news from best actor nominee Joshua Topolsky and best supporting actor nominees Paul Miller and Nilay Patel (also nominated for his role in "Jerk..." />
<link rel="image_src" href="http://cdn0.sbnation.com/entry_photo_images/7263709/post-still_large_large.jpg" type="image/jpeg" data-width="300" data-height="250" />
<script type="text/javascript">
window._umbel = window._umbel || [];
(function() {
var u = document.createElement('script'); u.type = 'text/javascript'; u.async = true;
u.src = document.location.protocol + '//tags.api.umbel.com/lrjhazrpqbgtnrij/w.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(u, s);
var d = new Date();
d.setDate(d.getDate() + 365);
document.cookie = "umbel_api_key=lrjhazrpqbgtnrij; expires=" + d.toUTCString();
})();
</script>
<script>
_umbel.push(['tag', 'profile.tags', 'show:On The Verge']);
</script>
<script>
window.ooyala_player_id = "dcc84e41db014454b08662a766057e2b";
</script>
</head>
<!--[if lt IE 7 ]> <body id="verge" class="ie6 desktop-layout hub-frontpage"> <![endif]-->
<!--[if IE 7 ]> <body id="verge" class="ie7 desktop-layout hub-frontpage"> <![endif]-->
<!--[if IE 8 ]> <body id="verge" class="ie8 desktop-layout hub-frontpage"> <![endif]-->
<!--[if IE 9 ]> <body id="verge" class="ie9 desktop-layout hub-frontpage"> <![endif]-->
<!--[if gt IE 9]> <body id="verge" class="ie10 desktop-layout hub-frontpage"> <![endif]-->
<!--[if !IE]><!--> <body id="verge" class="desktop-layout hub-frontpage" onorientationchange="_gaq.push(['_trackEvent', 'Responsive', 'iOS', 'Orientation', window.orientation]);"> <!--<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26533115-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "7976662" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=7976662&cv=2.0&cj=1" alt=''/>
</noscript>
<div id="super">
<div id="network-bar" class="row clearfix">
<div class="user column grid_2 clearfix not-logged-in">
<div class="tab">
<a href="/login">Log In</a>
or
<a href="/account/setup">Join</a>
</div>
</div>
<div class="breaking-news column grid_7">
<p>
<strong>Big Story:</strong>
<a href="http://www.theverge.com/2012/11/12/3633984/future-of-tv-over-the-top">The War for TV</a>
</p>
</div>
<div class="column grid_3">
</div>
<div id="network-compare">
<a id="comparison-indicator" href="" title="See product comparison">Compare (<em>0</em>)</a>
<a id="clear-comparison-bucket" href="" title="Clear comparison bucket">Clear</a>
</div>
<a id="back-to-top" href="http://www.theverge.com/" title="Back to top"><img alt="Triangle-netbar" src="http://cdn1.sbnation.com/images/verge/triangle-netbar.v48f87cb.png" /></a>
<div id="network-bar-flash">FLASH DANCE!</div>
</div>
<div id="leaderboard_ad" class="leaderboard-ad">
<div id="open_x_ad_unit_96673" class="open_x_ad open_x_leaderboard">
<script type="text/javascript">
SBN.OpenX.isTablet = function(){
var user_agent = navigator.userAgent;
return (/Android(?!.*Mobile)|iPad|PlayBook|Tablet PC 2.0/.test(user_agent));
}
if (SBN.OpenX.isTablet()) {
SBN.OpenX.showAd(252368);
} else {
SBN.OpenX.showAd(96673);
}
</script>
</div>
</div>
<div id="container">
<header class="collapsed clearfix">
<a href="http://www.theverge.com/" class="logo"><img alt="Verge_logo_white_110" height="19" src="http://cdn0.sbnation.com/images/verge/globals/logos/verge_logo_white_110.v5eed864.png" width="110" /></a>
<nav>
<ul class="clearfix" id="nav-list">
<li id="nav-features" class="nav-tab has-dropdown clearfix">
<h2><a href="http://www.theverge.com/features/">Features</a></h2>
<div class="dropdown clearfix single">
<ul class="primary">
<li><a href="http://www.theverge.com/2012/11/21/3673184/war-for-tv-week-front-lines-tv-living-room">A week on the front lines: inside the battle for TV, the living room, and your attention</a></li>
<li><a href="http://www.theverge.com/2012/6/21/3048763/best-smartphone-what-to-buy-us-carriers">The best smartphone: what to buy on every carrier</a></li>
<li><a href="http://www.theverge.com/2012/11/21/3675982/rim-ceo-thorsten-heins-interview-blackberry-10">RIM CEO Thorsten Heins: 'we have this one shot with BlackBerry 10'</a></li>
<li><a href="http://www.theverge.com/2012/11/21/3670894/the-verge-year-one-our-big-stories-may-2012-through-july-2012">The Verge, Year One: our big stories, May 2012 through July 2012</a></li>
<li><a href="http://www.theverge.com/2012/11/20/3671922/windows-1-0-microsoft-history-desktop-gracefully-failed">Revisiting Windows 1.0: how Microsoft’s first desktop gracefully failed</a></li>
<li><a href="http://www.theverge.com/2012/11/20/3669590/ecosystem-microsoft-apple-google-facebook-cold-war">First strike: how tech's superpowers could start an ecosystem war </a></li>
<li><a href="http://www.theverge.com/2012/11/20/3670940/michael-powell-fcc-chariman-cable-companies-mercy-contet">Former FCC Chairman Michael Powell: 'Cable companies are at the mercy of content companies'</a></li>
<li><a href="http://www.theverge.com/2012/11/20/3623050/david-lanham-interview">The Iconfactory's David Lanham on what it takes to build home screen-worthy icons</a></li>
<li><a href="http://www.theverge.com/2012/11/19/3617064/tokyo-designers-week-2012-japan">Japan shows its creative side at Tokyo Designers Week</a></li>
<li><a href="http://www.theverge.com/2012/11/19/3663054/trinity-atomic-bomb-very-large-array-new-mexico">Prometheus in the desert: from atom bombs to radio astronomy, New Mexico's scientific legacy</a></li>
</ul>
</div>
</li>
<li id="nav-reviews" class="nav-tab has-dropdown clearfix">
<h2><a href="http://www.theverge.com/reviews">Reviews</a></h2>
<div class="dropdown clearfix" data-nav-dropdown="">
<ul class="primary">
<li data-flip="3"><a href="/reviews/categories/cellphones/3">Cellphones</a></li>
<li data-flip="8"><a href="/reviews/categories/tablets/8">Tablets</a></li>
<li data-flip="6"><a href="/reviews/categories/laptops/6">Laptops</a></li>
<li data-flip="4"><a href="/reviews/categories/desktops/4">Desktops</a></li>
<li data-flip="2"><a href="/reviews/categories/cameras/2">Cameras</a></li>
<li data-flip="5"><a href="/reviews/categories/e-readers/5">E-readers</a></li>
<li data-flip="12"><a href="/reviews/categories/gaming/12">Gaming</a></li>
<li data-flip="17"><a href="/reviews/categories/home-theater/17">Home Theater</a></li>
<li data-flip="24"><a href="/reviews/categories/headphones-headsets/24">Headphones / Headsets</a></li>
<li data-flip="56"><a href="/reviews/categories/speakers-docks/56">Speakers / Docks</a></li>
<li data-flip="58"><a href="/reviews/categories/input-devices/58">Input Devices</a></li>
<li data-flip="27"><a href="/reviews/categories/misc/27">Misc.</a></li>
</ul>
<div class="secondary" data-flip="3">
<h4>Recent Cellphone Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/11/13/3635280/nokia-lumia-820-review">Nokia Lumia 820 review</a></li>
<li><a href="http://www.theverge.com/2012/11/2/3589280/google-nexus-4-review">Nexus 4 review</a></li>
<li><a href="http://www.theverge.com/2012/11/1/3584486/nokia-lumia-920-review">Nokia Lumia 920 review</a></li>
<li><a href="http://www.theverge.com/2012/10/29/3568152/htc-windows-phone-8x-review">HTC Windows Phone 8X review</a></li>
<li><a href="http://www.theverge.com/2012/10/29/3570494/windows-phone-8-review">Windows Phone 8 review</a></li>
<li><a href="http://www.theverge.com/2012/10/22/3527126/motorola-droid-razr-hd-maxx-hd-review">Motorola Droid RAZR HD and RAZR Maxx HD review</a></li>
<li><a href="http://www.theverge.com/2012/10/15/3506326/lg-optimus-g-review-att-sprint">LG Optimus G review (AT&T and Sprint)</a></li>
<li><a href="http://www.theverge.com/2012/10/8/3464212/samsung-galaxy-note-ii-review">Samsung Galaxy Note II review</a></li>
<li><a href="http://www.theverge.com/2012/9/21/3363238/iphone-5-review">iPhone 5 review</a></li>
<li><a href="http://www.theverge.com/2012/9/17/3333108/lg-intuition-review">LG Intuition review</a></li>
</ul>
<a href="/reviews/categories/cellphones/3" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="8">
<h4>Recent Tablet Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/11/21/3672724/amazon-kindle-fire-hd-8-9-review">Amazon Kindle Fire HD 8.9 review</a></li>
<li><a href="http://www.theverge.com/2012/11/13/3639904/google-nexus-7-with-mobile-data-review">Google Nexus 7 with mobile data review</a></li>
<li><a href="http://www.theverge.com/2012/11/2/3589170/google-nexus-10-review">Google Nexus 10 review</a></li>
<li><a href="http://www.theverge.com/2012/10/30/3576178/apple-ipad-mini-review">iPad mini review</a></li>
<li><a href="http://www.theverge.com/2012/10/30/3571394/barnes-noble-nook-hd-review">Barnes & Noble Nook HD review</a></li>
<li><a href="http://www.theverge.com/2012/10/23/3540550/microsoft-surface-review">Microsoft Surface review</a></li>
<li><a href="http://www.theverge.com/2012/10/23/3536302/asus-vivo-tab-rt-review">Asus Vivo Tab RT review</a></li>
<li><a href="http://www.theverge.com/2012/10/8/3464212/samsung-galaxy-note-ii-review">Samsung Galaxy Note II review</a></li>
<li><a href="http://www.theverge.com/2012/9/30/3433110/amazon-kindle-paperwhite-review">Kindle Paperwhite review</a></li>
<li><a href="http://www.theverge.com/2012/9/24/3333106/sony-xperia-tablet-s-review">Sony Xperia Tablet S review</a></li>
</ul>
<a href="/reviews/categories/tablets/8" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="6">
<h4>Recent Laptop Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/11/20/3655532/acer-aspire-s7-and-dell-xps-12-review">Acer Aspire S7 and Dell XPS 12 review: battle of the transforming 1080p touchscreen ultrabooks</a></li>
<li><a href="http://www.theverge.com/2012/11/9/3615468/lenovo-ideapad-yoga-13-review">Lenovo IdeaPad Yoga 13 review</a></li>
<li><a href="http://www.theverge.com/2012/11/5/3591460/hp-envy-touchsmart-ultrabook-4-review">HP Envy TouchSmart Ultrabook 4 review</a></li>
<li><a href="http://www.theverge.com/2012/11/1/3585082/13-inch-macbook-pro-with-retina-display-review">13-inch MacBook Pro with Retina display review</a></li>
<li><a href="http://www.theverge.com/2012/10/24/3549368/samsung-chromebook-review-series-3">Samsung Chromebook review</a></li>
<li><a href="http://www.theverge.com/2012/10/23/3540550/microsoft-surface-review">Microsoft Surface review</a></li>
<li><a href="http://www.theverge.com/2012/10/23/3536302/asus-vivo-tab-rt-review">Asus Vivo Tab RT review</a></li>
<li><a href="http://www.theverge.com/2012/9/26/3386438/hp-envy-spectre-xt-review">HP Envy Spectre XT review</a></li>
<li><a href="http://www.theverge.com/2012/8/13/3232132/lenovo-thinkpad-x1-carbon-review">Lenovo ThinkPad X1 Carbon review</a></li>
<li><a href="http://www.theverge.com/2012/8/2/3210834/toshiba-satellite-u845w-u845-review">Toshiba Satellite U845W and U845 review</a></li>
</ul>
<a href="/reviews/categories/laptops/6" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="4">
<h4>Recent Desktop Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/5/29/3048298/chromebook-chromebox-chrome-os-review-2012"> New Samsung Chromebook & Chromebox review: Chrome OS grows up</a></li>
<li><a href="http://www.theverge.com/2012/2/3/2768359/alienware-x51-review">Alienware X51 review</a></li>
<li><a href="http://www.theverge.com/2011/11/11/2553266/samsung-series-7-all-in-one-review">Samsung Series 7 all-in-one review</a></li>
<li><a href="http://www.theverge.com/2011/10/23/2508667/mac-mini-review-mid-2011"> Mac mini review (mid 2011) </a></li>
<li><a href="http://www.theverge.com/2011/10/23/2508758/apple-imac-review-mid-2011">Apple iMac review (mid 2011)</a></li>
</ul>
<a href="/reviews/categories/desktops/4" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="2">
<h4>Recent Camera Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/10/10/3481678/apple-ipod-touch-review-2012">Apple iPod touch review (2012)</a></li>
<li><a href="http://www.theverge.com/photography/2012/9/11/3301162/canon-eos-rebel-t4i-review">Canon EOS Rebel T4i review: testing the world's first touchscreen DSLR</a></li>
<li><a href="http://www.theverge.com/2012/7/27/3187725/sony-rx100-review">Sony RX100 review</a></li>
<li><a href="http://www.theverge.com/2012/7/26/3186091/pentax-k-30-review">Pentax K-30 review</a></li>
<li><a href="http://www.theverge.com/2012/7/13/3157492/samsung-nx20-review">Samsung NX20 review</a></li>
<li><a href="http://www.theverge.com/2012/7/10/3141812/pentax-k-01-review">Pentax K-01 review</a></li>
<li><a href="http://www.theverge.com/2012/6/8/3069074/sony-nex-f3-review">Sony NEX-F3 review</a></li>
<li><a href="http://www.theverge.com/2012/5/22/3032377/fujifilm-x-pro1-review">Fujifilm X-Pro1 review</a></li>
<li><a href="http://www.theverge.com/2012/5/1/2990243/olympus-om-d-e-m5-review">Olympus OM-D E-M5 review</a></li>
<li><a href="http://www.theverge.com/2012/4/13/2921671/sony-alpha-slt-a77-review">Sony Alpha SLT-A77 review</a></li>
</ul>
<a href="/reviews/categories/cameras/2" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="5">
<h4>Recent E-reader Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/10/30/3571394/barnes-noble-nook-hd-review">Barnes & Noble Nook HD review</a></li>
<li><a href="http://www.theverge.com/2012/9/30/3433110/amazon-kindle-paperwhite-review">Kindle Paperwhite review</a></li>
<li><a href="http://www.theverge.com/2012/9/3/3288869/sony-reader-prs-t2-review">Sony Reader PRS-T2 review</a></li>
<li><a href="http://www.theverge.com/2012/4/24/2969246/barnes-noble-nook-simple-touch-with-glowlight-review">Barnes & Noble Nook Simple Touch with GlowLight review</a></li>
<li><a href="http://www.theverge.com/2011/11/14/2559732/kindle-touch-review">Kindle Touch review</a></li>
<li><a href="http://www.theverge.com/2011/11/11/2458956/kindle-2011-review">Kindle (2011) review</a></li>
<li><a href="http://www.theverge.com/2011/10/24/2454686/iriver-story-hd-review">iriver Story HD review</a></li>
<li><a href="http://www.theverge.com/2011/10/24/2460695/barnes-noble-nook-review-2011">Barnes & Noble Nook review (2011)</a></li>
</ul>
<a href="/reviews/categories/e-readers/5" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="12">
<h4>Recent Gaming Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/11/18/3658130/nintendo-wii-u-review">Nintendo Wii U review</a></li>
<li><a href="http://www.theverge.com/2012/10/10/3481678/apple-ipod-touch-review-2012">Apple iPod touch review (2012)</a></li>
<li><a href="http://www.theverge.com/2012/2/23/2814926/onlive-universal-wireless-controller-review">OnLive Universal Wireless Controller review</a></li>
<li><a href="http://www.theverge.com/2011/12/21/2648497/sony-playstation-vita-japan-review">Sony PlayStation Vita review</a></li>
<li><a href="http://www.theverge.com/gaming/2011/12/14/2633074/nintendo-3ds-circle-pad-pro-review-japan">Nintendo 3DS Circle Pad Pro review</a></li>
<li><a href="http://www.theverge.com/2011/10/23/2509289/hulu-plus-for-xbox-360-review">Hulu Plus for Xbox 360 review</a></li>
</ul>
<a href="/reviews/categories/gaming/12" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="17">
<h4>Recent Home Theater Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/6/29/3125551/google-nexus-q-review">Google Nexus Q review</a></li>
<li><a href="http://www.theverge.com/2012/6/25/3115296/sony-nsz-gs7-with-google-tv-review">Sony NSZ-GS7 with Google TV review</a></li>
<li><a href="http://www.theverge.com/2012/2/24/2819048/samsung-optical-smart-hub-review">Samsung Optical Smart Hub review</a></li>
</ul>
<a href="/reviews/categories/home-theater/17" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="24">
<h4>Recent Headphones / Headset Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/7/23/3168539/astro-a50-wireless-gaming-headset-review">Astro A50 wireless gaming headset review</a></li>
<li><a href="http://www.theverge.com/2012/2/16/2784159/sync-by-50-wireless-headphones-review">Sync by 50 wireless headphones review</a></li>
</ul>
<a href="/reviews/categories/headphones-headsets/24" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="56">
<h4>Recent Speakers / Dock Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/10/15/3505570/libratone-zipp-review-Jambox-soundlink-AirPlay-PlayDirect">Libratone Zipp review: PlayDirect AirPlay takes on Bluetooth speakers</a></li>
<li><a href="http://www.theverge.com/2012/5/9/3002183/airplay-speaker-review-iphone">The best iPhone speakers: reviewing AirPlay's greatest hits</a></li>
<li><a href="http://www.theverge.com/2012/5/1/2986217/Jawbone-big-jambox-speaker-review">Big Jambox review</a></li>
<li><a href="http://www.theverge.com/2012/1/3/2676099/mini-boombox-review-logitech">Logitech Mini Boombox review</a></li>
<li><a href="http://www.theverge.com/2011/10/15/2485362/jambox-liveaudio-update-is-like-moving-in-stereo">Jawbone Jambox with LiveAudio review</a></li>
<li><a href="http://www.theverge.com/2011/10/12/2481479/sonos-play-3-review">Sonos Play:3 review</a></li>
<li><a href="http://www.theverge.com/2011/10/17/2495197/libratone-live-review">Libratone Live review</a></li>
<li><a href="http://www.theverge.com/2011/10/17/2495252/libratone-lounge-review">Libratone Lounge review</a></li>
</ul>
<a href="/reviews/categories/speakers-docks/56" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="58">
<h4>Recent Input Device Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/8/24/3265121/microsoft-wedge-touch-mouse-and-mobile-keyboard-review">Microsoft Wedge Touch Mouse and Mobile Keyboard review</a></li>
<li><a href="http://www.theverge.com/2012/4/5/2926120/logitech-cube-mouse-review">Logitech Cube Mouse review</a></li>
<li><a href="http://www.theverge.com/2011/11/28/2586419/wacom-inkling-review">Wacom Inkling review</a></li>
</ul>
<a href="/reviews/categories/input-devices/58" class="see-all">See All</a>
</div>
<div class="secondary" data-flip="27">
<h4>Recent Misc. Reviews</h4>
<ul>
<li><a href="http://www.theverge.com/2012/10/10/3481926/apple-ipod-nano-review-2012">Apple iPod nano review (2012)</a></li>
<li><a href="http://www.theverge.com/2012/10/10/3481678/apple-ipod-touch-review-2012">Apple iPod touch review (2012)</a></li>
<li><a href="http://www.theverge.com/2012/8/24/3265121/microsoft-wedge-touch-mouse-and-mobile-keyboard-review">Microsoft Wedge Touch Mouse and Mobile Keyboard review</a></li>
<li><a href="http://www.theverge.com/2012/4/23/2968630/verizon-jetpack-4620l-mobile-hotspot-review">Verizon Jetpack 4620L mobile hotspot review</a></li>
<li><a href="http://www.theverge.com/2012/4/23/2966393/aria-scale-review-fitbit-wi-fi">Fitbit Aria Wi-Fi scale review</a></li>
<li><a href="http://www.theverge.com/2012/4/11/2941982/samsung-galaxy-player-3-6-review">Samsung Galaxy Player 3.6 review</a></li>
<li><a href="http://www.theverge.com/2012/4/5/2910802/pogoplug-series-4-review">Pogoplug Series 4 review</a></li>
<li><a href="http://www.theverge.com/2012/3/8/2853088/nike-fuelband-review">Nike+ FuelBand review</a></li>
<li><a href="http://www.theverge.com/2011/11/21/2553335/samsung-galaxy-player-4-0-5-0-review">Samsung Galaxy Player 4.0 and Galaxy Player 5.0 review</a></li>
<li><a href="http://www.theverge.com/2011/11/13/2557228/playstation-3d-display-review">Sony PlayStation 3D Display review </a></li>
</ul>
<a href="/reviews/categories/misc/27" class="see-all">See All</a>
</div>
</div>
</li>
<li id="nav-products" class="nav-tab has-dropdown clearfix">
<h2><a href="http://www.theverge.com/products">Products</a></h2>
<div class="dropdown clearfix" data-nav-dropdown="">
<ul class="primary">
<li data-flip="3"><a href="http://www.theverge.com/products/categories/cellphones/3">Cellphones</a></li>
<li data-flip="8"><a href="http://www.theverge.com/products/categories/tablets/8">Tablets</a></li>
<li data-flip="6"><a href="http://www.theverge.com/products/categories/laptops/6">Laptops</a></li>
<li data-flip="4"><a href="http://www.theverge.com/products/categories/desktops/4">Desktops</a></li>
<li data-flip="2"><a href="http://www.theverge.com/products/categories/cameras/2">Cameras</a></li>
<li data-flip="5"><a href="http://www.theverge.com/products/categories/e-readers/5">E-readers</a></li>
<li data-flip="12"><a href="http://www.theverge.com/products/categories/gaming/12">Gaming</a></li>
<li data-flip="31"><a href="http://www.theverge.com/products/categories/television/31">Television</a></li>
<li data-flip="17"><a href="http://www.theverge.com/products/categories/home-theater/17">Home Theater</a></li>
<li data-flip="24"><a href="http://www.theverge.com/products/categories/headphones-headsets/24">Headphones / Headsets</a></li>
<li data-flip="56"><a href="http://www.theverge.com/products/categories/speakers-docks/56">Speakers / Docks</a></li>
<li data-flip="58"><a href="http://www.theverge.com/products/categories/input-devices/58">Input Devices</a></li>
<li data-flip="27"><a href="http://www.theverge.com/products/categories/misc/27">Misc.</a></li>
</ul>
<div class="secondary" data-flip="3">
<h4>Recent Cellphones</h4>
<ul>
<li><a href="http://www.theverge.com/products/flash/6327">Flash</a></li>
<li><a href="http://www.theverge.com/products/droid-dna/6312">Droid DNA</a></li>
<li><a href="http://www.theverge.com/products/stratosphere-ii/6311">Stratosphere II</a></li>
<li><a href="http://www.theverge.com/products/mach/6282">Mach</a></li>
<li><a href="http://www.theverge.com/products/electrify-m/6281">Electrify M</a></li>
<li><a href="http://www.theverge.com/products/galaxy-premier/6279">Galaxy Premier</a></li>
<li><a href="http://www.theverge.com/products/spectrum-2/6277">Spectrum 2</a></li>
<li><a href="http://www.theverge.com/products/lumia-822/6276">Lumia 822</a></li>
<li><a href="http://www.theverge.com/products/nexus-4/6274">Nexus 4</a></li>
<li><a href="http://www.theverge.com/products/galaxy-note-ii-sprint/6271">Galaxy Note II (Sprint)</a></li>
</ul>
<a href='http://www.theverge.com/products/categories/cellphones/3' class='see-all'>See All</a>
</div>
<div class="secondary" data-flip="8">
<h4>Recent Tablets</h4>
<ul>
<li><a href="http://www.theverge.com/products/nexus-10/6273">Nexus 10</a></li>
<li><a href="http://www.theverge.com/products/nexus-7-mobile/6272">Nexus 7 + Mobile</a></li>
<li><a href="http://www.theverge.com/products/ipad-4th-generation-wi-fi-lte/6246">iPad (4th generation, Wi-Fi + LTE)</a></li>
<li><a href="http://www.theverge.com/products/ipad-mini-wi-fi-lte/6244">iPad mini (Wi-Fi + LTE)</a></li>
<li><a href="http://www.theverge.com/products/ipad-4th-generation-wi-fi/6243">iPad (4th generation, Wi-Fi)</a></li>
<li><a href="http://www.theverge.com/products/ipad-mini-wi-fi/6237">iPad mini (Wi-Fi)</a></li>
<li><a href="http://www.theverge.com/products/stylistic-q572/6236">Stylistic Q572</a></li>
<li><a href="http://www.theverge.com/products/taichi-21/6213">Taichi 21</a></li>
<li><a href="http://www.theverge.com/products/ideatab-lynx/6193">IdeaTab Lynx</a></li>
<li><a href="http://www.theverge.com/products/elitepad-900/6175">ElitePad 900</a></li>
</ul>
<a href='http://www.theverge.com/products/categories/tablets/8' class='see-all'>See All</a>
</div>
<div class="secondary" data-flip="6">
<h4>Recent Laptops</h4>
<ul>
<li><a href="http://www.theverge.com/products/nomad-15/6313">Nomad 15</a></li>
<li><a href="http://www.theverge.com/products/c7/6310">C7</a></li>
<li><a href="http://www.theverge.com/products/toughbook-c2/6269">Toughbook C2</a></li>
<li><a href="http://www.theverge.com/products/vivobook-s400/6263">VivoBook S400</a></li>
<li><a href="http://www.theverge.com/products/envy-touchsmart-ultrabook-4/6262">Envy TouchSmart Ultrabook 4</a></li>
<li><a href="http://www.theverge.com/products/gx60/6260">GX60</a></li>
<li><a href="http://www.theverge.com/products/xps-13-late-2012/6253">XPS 13 (late 2012)</a></li>
<li><a href="http://www.theverge.com/products/inspiron-15z-late-2012/6252">Inspiron 15z (late 2012)</a></li>
<li><a href="http://www.theverge.com/products/envy-spectre-xt-touchsmart/6248">Envy Spectre XT TouchSmart</a></li>
<li><a href="http://www.theverge.com/products/macbook-pro-with-retina-display-13-inch/6238">MacBook Pro with Retina display (13-inch)</a></li>
</ul>
<a href='http://www.theverge.com/products/categories/laptops/6' class='see-all'>See All</a>
</div>
<div class="secondary" data-flip="4">
<h4>Recent Desktops</h4>
<ul>
<li><a href="http://www.theverge.com/products/ideacentre-q190/6326">IdeaCentre Q190</a></li>
<li><a href="http://www.theverge.com/products/c540/6325">C540</a></li>
<li><a href="http://www.theverge.com/products/c445/6324">C445</a></li>
<li><a href="http://www.theverge.com/products/c440/6323">C440</a></li>
<li><a href="http://www.theverge.com/products/c345/6322">C345</a></li>