-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTNW's Tumblr Hangout Friends.html
2085 lines (1278 loc) · 186 KB
/
TNW's Tumblr Hangout Friends.html
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><script>var __pbpa = true;</script><script>var translated_warning_string = 'Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?';</script><script type="text/javascript" language="javascript" src="https://assets.tumblr.com/assets/scripts/pre_tumblelog.js?_v=b9f848c06fcba7eaf305d4a7cb7a1b98"></script><!DOCTYPE html>
<!--[if IE 8]><html class="lt-ie10 lt-ie9"> <![endif]-->
<!--[if IE 9]><html class="lt-ie10"> <![endif]-->
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
<meta charset="utf-8">
<title>TNW's Tumblr Hangout Friends</title>
<meta name="description" content="There are probably better ways to spend your time!">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#35465D">
<style>figure{margin:0}.tmblr-iframe{position:absolute}.tmblr-iframe.hide{display:none}.tmblr-iframe--amp-cta-button{visibility:hidden;position:fixed;bottom:10px;left:50%;transform:translateX(-50%);z-index:100}.tmblr-iframe--amp-cta-button.tmblr-iframe--loaded{visibility:visible;animation:iframe-app-cta-transition .2s ease-out}</style><link rel="stylesheet" media="screen" href="https://assets.tumblr.com/client/prod/standalone/blog-network-npf/index.build.css?_v=3fc451676906e0ce74d518ae00bb3233"><link rel="shortcut icon" href="https://66.media.tumblr.com/avatar_5700aa3eee54_128.pnj">
<link rel="apple-touch-icon-precomposed" href="https://66.media.tumblr.com/avatar_5700aa3eee54_128.pnj">
<link rel="alternate" type="application/rss+xml" href="https://cc.thenextweb.com/rss">
<link rel="stylesheet" href="https://static.tumblr.com/xu1kvii/TNpppppa3/main-min.css">
<!-- HTML5 Shiv -->
<!--[if lt IE 9]>
<script src="https://static.tumblr.com/hriofhd/Qj0m8pn7q/html5shiv.js"></script>
<![endif]-->
<style>
/* Colors */
body {
background: #FFFFFF;
}
.blog-title {
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif, "Helvetica Neue", HelveticaNeue, Arial, sans-serif;
font-weight: bold;
}
.blog-title a,
.description,
.search-no-results,
.likes-no-likes,
.related-posts-wrapper > h2,
.loader .loader-bar,
.widget-title {
color: #000000;
}
a {
color: #002aff;
}
#pagination a,
.nav-wrapper .nav-item .label {
color: #002aff;
}
#pagination a.next:after {
border-left-color: #002aff;
}
#pagination a.previous:after {
border-right-color: #002aff;
}
.header-image.cover {
background-image: url(https://static.tumblr.com/4bfc425d63e70a92eca78f1880707f26/rpxtflu/J7Wpdi55x/tumblr_static_8co9tw4g6tc04s4o48o40808c_2048_v2.jpg);
}
.user-avatar {
background-color: #FFFFFF;
border-color: #FFFFFF;
}
.avatar-style-square .user-avatar {
-webkit-box-shadow: 0 0 0 4px #FFFFFF;
box-shadow: 0 0 0 4px #FFFFFF;
}
.no-header-image .logo-wrapper,
.contain-header-image .logo-wrapper {
color: #002aff;
}
/* Adjust logo for light accents on light backgrounds */
.light-on-light.no-header-image .logo-wrapper,
.light-on-light.contain-header-image .logo-wrapper {
color: #444;
}
/* Adjust logo for dark accents on dark backgrounds */
.dark-on-dark.no-header-image .logo-wrapper,
.dark-on-dark.contain-header-image .logo-wrapper {
color: #fff;
}
/* Sticky nav colors */
.nav-fixed {
background-color: #FFFFFF;
}
.nav-responsive .inline-nav::after {
background-image: linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255,1) 100%);
background-image: -webkit-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255,1) 100%);
background-image: -moz-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255,1) 100%);
background-image: -ms-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255,1) 100%);
background-image: -o-linear-gradient(left, rgba(255,255,255, 0) 0%, rgba(255,255,255,1) 100%);
}
@media screen and (max-device-width: 568px) {
.header-image.cover {
background-image: url(https://static.tumblr.com/4bfc425d63e70a92eca78f1880707f26/rpxtflu/J7Wpdi55x/tumblr_static_8co9tw4g6tc04s4o48o40808c_640_v2.jpg);
-webkit-background-size: cover;
background-size: cover;
}
.avatar-style-square .user-avatar {
-webkit-box-shadow: 0 0 0 3px #FFFFFF;
-moz-box-shadow: 0 0 0 3px #FFFFFF;
box-shadow: 0 0 0 3px #FFFFFF;
}
}
/* Custom CSS */
</style>
<link rel="alternate" href="android-app://com.tumblr/tumblr/x-callback-url/blog?blogName=thenextweb%26postID=184712835370" /><link rel="alternate" href="ios-app://305343404/tumblr/x-callback-url/blog?blogName=thenextweb&postID=184712835370" /><link rel="alternate" type="application/json+oembed" href="https://www.tumblr.com/oembed/1.0?url=https://cc.thenextweb.com/post/184712835370/httpsthenextwebcomhardfork20190507ftc-bitcoin-8" title="FTC sues entrepreneur who raised $800K for smart backpack – then used it to buy Bitcoin"/><script src="https://assets.tumblr.com/assets/scripts/tumblelog_post_message_queue.js?_v=a8fadfa499d8cb7c3f8eefdf0b1adfdd"></script><!-- BEGIN TUMBLR FACEBOOK OPENGRAPH TAGS --><!-- If you'd like to specify your own Open Graph tags, define the og:url and og:title tags in your theme's HTML. --><!-- Read more: http://ogp.me/ --><meta property="fb:app_id" content="48119224995" /><meta property="og:title" content="TNW's Tumblr Hangout Friends" /><meta property="og:url" content="https://cc.thenextweb.com/?og=1" /><meta property="og:description" content="There are probably better ways to spend your time!" /><meta property="og:type" content="tumblr-feed:tumblelog" /><meta property="og:image" content="https://66.media.tumblr.com/avatar_5700aa3eee54_128.pnj" /><meta property="al:ios:url" content="tumblr://x-callback-url/blog?blogName=thenextweb" /><meta property="al:ios:app_name" content="Tumblr" /><meta property="al:ios:app_store_id" content="305343404" /><meta property="al:android:url" content="tumblr://x-callback-url/blog?blogName=thenextweb" /><meta property="al:android:app_name" content="Tumblr" /><meta property="al:android:package" content="com.tumblr" /><!-- END TUMBLR FACEBOOK OPENGRAPH TAGS --><!-- TWITTER TAGS --><meta charset="utf-8"><meta name="twitter:site" content="tumblr" /><meta name="twitter:card" content="app" /><meta name="twitter:description" content="thenextweb" /><meta name="twitter:title" content="thenextweb" /><meta name="twitter:app:name:iphone" content="Tumblr" /><meta name="twitter:app:name:ipad" content="Tumblr" /><meta name="twitter:app:name:googleplay" content="Tumblr" /><meta name="twitter:app:id:iphone" content="305343404" /><meta name="twitter:app:id:ipad" content="305343404" /><meta name="twitter:app:id:googleplay" content="com.tumblr" /><meta name="twitter:app:url:iphone" content="tumblr://x-callback-url/blog?blogName=thenextweb&referrer=twitter-cards" /><meta name="twitter:app:url:ipad" content="tumblr://x-callback-url/blog?blogName=thenextweb&referrer=twitter-cards" /><meta name="twitter:app:url:googleplay" content="tumblr://x-callback-url/blog?blogName=thenextweb&referrer=twitter-cards" /><!-- GOOGLE CAROUSEL --><script type="application/ld+json">
{"@type":"ItemList","url":"https:\/\/cc.thenextweb.com","itemListElement":[{"@type":"ListItem","position":1,"url":"https:\/\/cc.thenextweb.com\/post\/184720938705\/httpsthenextwebcomscience20190507antimatter-bre"},{"@type":"ListItem","position":2,"url":"https:\/\/cc.thenextweb.com\/post\/184719006950\/httpsthenextwebcomgaming20190507ea-access-ps4-s"},{"@type":"ListItem","position":3,"url":"https:\/\/cc.thenextweb.com\/post\/184719006770\/httpsthenextwebcomgoogle20190507googles-new-ass"},{"@type":"ListItem","position":4,"url":"https:\/\/cc.thenextweb.com\/post\/184718051270\/httpsthenextwebcomplugged20190507google-pixel-3"},{"@type":"ListItem","position":5,"url":"https:\/\/cc.thenextweb.com\/post\/184717688915\/httpsthenextwebcomgaming20190507sonys-proposed"},{"@type":"ListItem","position":6,"url":"https:\/\/cc.thenextweb.com\/post\/184715892830\/httpsthenextwebcomplugged20190507house-of-marle"},{"@type":"ListItem","position":7,"url":"https:\/\/cc.thenextweb.com\/post\/184714789700\/httpsthenextwebcomtnw201920190507earworm-youtub"},{"@type":"ListItem","position":8,"url":"https:\/\/cc.thenextweb.com\/post\/184713921085\/httpsthenextwebcomgoogle20190507how-to-watch-go"},{"@type":"ListItem","position":9,"url":"https:\/\/cc.thenextweb.com\/post\/184713850545\/httpsthenextwebcomeu20190507facebooks-approach"},{"@type":"ListItem","position":10,"url":"https:\/\/cc.thenextweb.com\/post\/184713850515\/httpsthenextwebcomhardfork20190507wechat-update"},{"@type":"ListItem","position":11,"url":"https:\/\/cc.thenextweb.com\/post\/184713481435\/httpsthenextwebcomreinvent-the-future-of-finance20"},{"@type":"ListItem","position":12,"url":"https:\/\/cc.thenextweb.com\/post\/184713223660\/httpsthenextwebcomtnw201920190507tnw2019-daily"},{"@type":"ListItem","position":13,"url":"https:\/\/cc.thenextweb.com\/post\/184713223345\/httpsthenextwebcombusiness201905079-smart-techn"},{"@type":"ListItem","position":14,"url":"https:\/\/cc.thenextweb.com\/post\/184713067680\/httpsthenextwebcomoffers20190507become-an-azure"},{"@type":"ListItem","position":15,"url":"https:\/\/cc.thenextweb.com\/post\/184712835370\/httpsthenextwebcomhardfork20190507ftc-bitcoin-8"}],"@context":"http:\/\/schema.org"}</script><link rel="canonical" href="https://cc.thenextweb.com" /></head>
<body data-urlencoded-name="thenextweb" class="regular index-page contain-header-image display-related-posts">
<div class="app-nag">
<div class="app-nag-header clearfix">
<div class="app-nag-icon">
<div class="app-nag-icon-ios">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1024 1024" enable-background="new 0 0 1024 1024" xml:space="preserve">
<path fill="#36465D" d="M1024,771c0,139.2-113.8,253-253,253H253C113.8,1024,0,910.2,0,771V253C0,113.8,113.8,0,253,0h518 c139.2,0,253,113.8,253,253V771z"/>
<path fill="none" stroke="#FFF100" stroke-width="4" stroke-miterlimit="10" d="M463.9,209.4"/>
<path opacity="0.6" fill="#231F20" d="M628.1,681c8.2,0,17.1-1.2,25.8-3.3V530.3h111.6V401.8h-68.6V473H585.4v162.4 C586,676.3,609.1,681,628.1,681z M654.4,250.5h-68.6v94h68.6V250.5z M754.3,722.9c-12.7,7.1-28.9,12.4-44.3,14.5l11.4,33.8 c-20.5,27-71.4,45.5-118.1,46.3c-1.6,0-3.1,0-4.7,0c0,0,0,0,0,0c-32.5,0-59.5-5.7-81.9-15.3c26.2,40,72.7,72.6,150.5,72.6c0,0,0,0,0,0c1.6,0,3.1,0,4.7,0c46.6-0.8,97.6-19.4,118.1-46.3L754.3,722.9z"/>
<path fill="none" stroke="#FFF100" stroke-width="4" stroke-miterlimit="10" d="M355,359.5"/>
<path fill="#FFFFFF" d="M577.5,830.6c65.1,0,129.7-23.2,151-51.3l4.3-5.6l-40.4-119.7c-0.4-1.1-1.4-1.9-2.6-1.9h-7.6h-3.5l-79.1,0 c-1.2,0-2.3-0.8-2.6-2c-1.1-4-1.7-8.9-1.8-14.9V489c0-1.5,1.2-2.7,2.7-2.7h106.1c1.5,0,2.7-1.2,2.7-2.7V333.8c0-1.5-1.2-2.7-2.7-2.7 H598.4c-1.5,0-2.7-1.2-2.7-2.7V182.5c0-1.5-1.2-2.7-2.7-2.7h-82.6h-28.9h-73.8c-13.3,0-28.5,9.8-30.8,28 c-9.3,75.3-43.8,120.5-108.7,142.2l-7.2,2.4c-1.1,0.4-1.9,1.4-1.9,2.6v128.6c0,1.5,1.2,2.7,2.7,2.7h50.4h0h15.9c0,0,0,120,0,158.3 C328.1,771,415.7,830.6,577.5,830.6z M701.6,769.5c-20.3,19.5-62,34.1-102,34.7c-1.5,0-3,0-4.5,0h0 c-131.5,0-166.6-100.4-166.6-159.7V462.3c0-1.5-1.2-2.7-2.7-2.7h-63.6c-1.5,0-2.7-1.2-2.7-2.7v-83c0-1.1,0.7-2.1,1.7-2.5 c68-26.5,105.9-79,115.9-160.3c0.6-4.5,4.3-4.6,4.3-4.6h84.9c1.5,0,2.7,1.2,2.7,2.7v145.9c0,1.5,1.2,2.7,2.7,2.7h105.7 c1.5,0,2.7,1.2,2.7,2.7v96.4c0,1.5-1.2,2.7-2.7,2.7H571.3c-1.5,0-2.7,1.2-2.7,2.7l0,173.2c0.6,39,19.5,58.8,56.1,58.8 c14.7,0,31.6-3.4,47.1-9.3c1.4-0.6,3,0.2,3.5,1.6l27,80C702.6,767.7,702.4,768.8,701.6,769.5z"/>
<path opacity="0.5" fill="#2D3F54" d="M328.1,528.9h73.8v-40.2c0-1.3-1.1-2.4-2.4-2.4h-71.4V528.9z"/>
</svg>
</div>
<div class="app-nag-icon-android">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1024 1024" enable-background="new 0 0 1024 1024" xml:space="preserve">
<path fill="none" stroke="#FFF100" stroke-width="4" stroke-miterlimit="10" d="M463.9,209.4"></path>
<path opacity="0.5" fill="#231F20" d="M628.1,681c8.2,0,17.1-1.2,25.8-3.3V530.3h111.6V401.8h-68.6V473H585.4v162.4 C586,676.3,609.1,681,628.1,681z M654.4,250.5h-68.6v94h68.6V250.5z M754.3,722.9c-12.7,7.1-28.9,12.4-44.3,14.5l11.4,33.8 c-20.5,27-71.4,45.5-118.1,46.3c-1.6,0-3.1,0-4.7,0c0,0,0,0,0,0c-32.5,0-59.5-5.7-81.9-15.3c26.2,40,72.7,72.6,150.5,72.6c0,0,0,0,0,0c1.6,0,3.1,0,4.7,0c46.6-0.8,97.6-19.4,118.1-46.3L754.3,722.9z"></path>
<path fill="none" stroke="#FFF100" stroke-width="4" stroke-miterlimit="10" d="M355,359.5"></path>
<path fill="#36465D" d="M577.5,830.6c65.1,0,129.7-23.2,151-51.3l4.3-5.6l-40.4-119.7c-0.4-1.1-1.4-1.9-2.6-1.9h-7.6h-3.5l-79.1,0 c-1.2,0-2.3-0.8-2.6-2c-1.1-4-1.7-8.9-1.8-14.9V489c0-1.5,1.2-2.7,2.7-2.7h106.1c1.5,0,2.7-1.2,2.7-2.7V333.8c0-1.5-1.2-2.7-2.7-2.7 H598.4c-1.5,0-2.7-1.2-2.7-2.7V182.5c0-1.5-1.2-2.7-2.7-2.7h-82.6h-28.9h-73.8c-13.3,0-28.5,9.8-30.8,28 c-9.3,75.3-43.8,120.5-108.7,142.2l-7.2,2.4c-1.1,0.4-1.9,1.4-1.9,2.6v128.6c0,1.5,1.2,2.7,2.7,2.7h50.4h0h15.9c0,0,0,120,0,158.3 C328.1,771,415.7,830.6,577.5,830.6z M701.6,769.5c-20.3,19.5-62,34.1-102,34.7c-1.5,0-3,0-4.5,0h0 c-131.5,0-166.6-100.4-166.6-159.7V462.3c0-1.5-1.2-2.7-2.7-2.7h-63.6c-1.5,0-2.7-1.2-2.7-2.7v-83c0-1.1,0.7-2.1,1.7-2.5 c68-26.5,105.9-79,115.9-160.3c0.6-4.5,4.3-4.6,4.3-4.6h84.9c1.5,0,2.7,1.2,2.7,2.7v145.9c0,1.5,1.2,2.7,2.7,2.7h105.7 c1.5,0,2.7,1.2,2.7,2.7v96.4c0,1.5-1.2,2.7-2.7,2.7H571.3c-1.5,0-2.7,1.2-2.7,2.7l0,173.2c0.6,39,19.5,58.8,56.1,58.8 c14.7,0,31.6-3.4,47.1-9.3c1.4-0.6,3,0.2,3.5,1.6l27,80C702.6,767.7,702.4,768.8,701.6,769.5z"></path>
<path opacity="0.5" fill="#2D3F54" d="M328.1,528.9h73.8v-40.2c0-1.3-1.1-2.4-2.4-2.4h-71.4V528.9z"></path>
</svg>
</div>
</div>
<div class="app-nag-ratings">
<svg width="181px" height="30px" viewBox="0 0 181 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15.8,25.2 L6.1,29.8 L7.5,19.2 L0.1,11.4 L10.6,9.5 L15.8,0 L20.9,9.5 L31.4,11.4 L24,19.2 L25.4,29.8 L15.8,25.2 Z" fill="#FFC00E"></path>
<path d="M52.8,25.2 L43.1,29.8 L44.5,19.2 L37.1,11.4 L47.6,9.5 L52.8,0 L57.9,9.5 L68.4,11.4 L61,19.2 L62.4,29.8 L52.8,25.2 Z" fill="#FFC00E"></path>
<path d="M89.8,25.2 L80.1,29.8 L81.5,19.2 L74.1,11.4 L84.6,9.5 L89.8,0 L94.9,9.5 L105.4,11.4 L98,19.2 L99.4,29.8 L89.8,25.2 Z" fill="#FFC00E"></path>
<path d="M126.8,25.2 L117.1,29.8 L118.5,19.2 L111.1,11.4 L121.6,9.5 L126.8,0 L131.9,9.5 L142.4,11.4 L135,19.2 L136.4,29.8 L126.8,25.2 Z" fill="#FFC00E"></path>
<path d="M163.8,25.2 L154.1,29.8 L155.5,19.2 L148.1,11.4 L158.6,9.5 L163.8,0 L168.9,9.5 L179.4,11.4 L172,19.2 L173.4,29.8 L163.8,25.2 Z" fill="#E7E7E7"></path>
<path d="M163.3,25.1 L154.1,29.8 L155.5,19.2 L148.1,11.4 L158.6,9.5 L163.3,0.9 L163.3,25.1 Z" fill="#FFC00E"></path>
</g>
</svg>
<div class="app-nag-ratings-text app-nag-ratings-text-android">
1.5M ratings
</div>
<div class="app-nag-ratings-text app-nag-ratings-text-ios">
277k ratings
</div>
</div>
<div class="app-nag-close-button">
<svg width="15px" height="15px" viewBox="0 0 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12.510351,14.6860639 L0,27.1964147 L2.175713,29.3721278 L14.686064,16.8617771 L27.196415,29.3721278 L29.372128,27.1964147 L16.861777,14.6860639 L29.372128,2.1757132 L27.196415,0 L14.686064,12.5103507 L2.175713,0 L0,2.1757132 L12.510351,14.6860639 L12.510351,14.6860639 Z" fill="#D3D3D3"></path>
</g>
</svg>
</div>
</div>
<div class="app-nag-body">
<h1 class="app-nag-callout">See, that’s what the app is perfect for.</h1>
<a class="app-nag-large-button app-nag-app-store-link button blue">Sounds perfect</a>
<a class="app-nag-large-button app-nag-app-store-deny">Wahhhh, I don’t wanna</a>
</div>
</div>
<section id="page">
<div class="header-wrapper
avatar-hidden
">
<header id="header" class="top-blog-header">
<div class="header-image-wrapper contain">
<a href="/" class="header-image parallax contain" data-bg-image="https://static.tumblr.com/4bfc425d63e70a92eca78f1880707f26/rpxtflu/J7Wpdi55x/tumblr_static_8co9tw4g6tc04s4o48o40808c_2048_v2.jpg">
<img src="https://static.tumblr.com/4bfc425d63e70a92eca78f1880707f26/rpxtflu/J7Wpdi55x/tumblr_static_8co9tw4g6tc04s4o48o40808c_2048_v2.jpg" alt="">
</a>
<div class="loader-bg"></div>
</div>
<div class="blog-title-wrapper content">
<figure class="avatar-wrapper animate">
<a href="/" style="background-image: url(https://66.media.tumblr.com/avatar_5700aa3eee54_128.pnj)" class="user-avatar"><img src="https://66.media.tumblr.com/avatar_5700aa3eee54_128.pnj" alt="" class="print-only invisible"></a>
</figure>
<div class="title-group animate">
<h1 class="blog-title"><a href="/">TNW's Tumblr Hangout Friends</a></h1>
<span class="description">
There are probably better ways to spend your time!
</span>
</div>
</div>
</header>
</div>
<div class="nav-wrapper nav-responsive">
<nav class="nav-menu">
<ul class="inline-nav">
<li class="nav-item nav-item--posts">
<a href="/" class="label current-page">Posts</a>
</li>
<li class="nav-item nav-item--page">
<a href="/main" class="label external-page">The Next Web Home</a>
</li>
<li class="nav-item nav-item--archive">
<a href="/archive" class="label external-page">Archive</a>
</li>
</ul>
</nav>
</div>
<section id="posts" class="content clearfix avatar-hidden show-nav">
<div class="container">
<div class="main">
<article class="photo not-page post-184720938705 " data-post-id="184720938705" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/science/2019/05/07/antimatter-breakthrough-indicates-the-universe-is-hiding-something/"><img src="https://66.media.tumblr.com/dcb1f9e1f8c92eac148d038cfd042a99/tumblr_pr5k3289OL1qejjfeo1_1280.jpg" alt="Antimatter breakthrough indicates the universe is hiding something" width="796" height="401"></a>
</div>
</div>
<figcaption class="caption">
<p>Antimatter breakthrough indicates the universe is hiding something</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<span>
<a href="https://cc.thenextweb.com/post/184720938705/httpsthenextwebcomscience20190507antimatter-bre#notes" class="meta-item post-notes">2 notes</a>
</span>
<a href="https://cc.thenextweb.com/post/184720938705/httpsthenextwebcomscience20190507antimatter-bre" title="1 hour ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184720938705">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184720938705">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184720938705%2Fhttpsthenextwebcomscience20190507antimatter-bre&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20Antimatter%20breakthrough%20indicates%20the%20universe%20is%20hiding%20something%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i2ETRH" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184720938705%2Fhttpsthenextwebcomscience20190507antimatter-bre&media=https://66.media.tumblr.com/dcb1f9e1f8c92eac148d038cfd042a99/tumblr_pr5k3289OL1qejjfeo1_500.jpg" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184720938705%2Fhttpsthenextwebcomscience20190507antimatter-bre" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20Antimatter%20breakthrough%20indicates%20the%20universe%20is%20hiding%20something%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184720938705%2Fhttpsthenextwebcomscience20190507antimatter-bre" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184720938705/httpsthenextwebcomscience20190507antimatter-bre/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184720938705/httpsthenextwebcomscience20190507antimatter-bre" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184720938705/fHhUWsyp" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184720938705" data-blog-name="thenextweb" id="like_button_184720938705"><iframe id="like_iframe_184720938705" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184720938705&color=black&rk=fHhUWsyp" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184720938705"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
<span class="notes-pop-container">
</span>
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184719006950 " data-post-id="184719006950" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/gaming/2019/05/07/ea-access-ps4-sony-xbox-one-finally/"><img src="https://66.media.tumblr.com/1976e0d5879bd2a48dfcef5b20a179e2/tumblr_pr5fhuspCS1qejjfeo1_1280.jpg" alt="Sony offers EA Access to PS4 owners, 5 years after the Xbox One" width="796" height="417"></a>
</div>
</div>
<figcaption class="caption">
<p>Sony offers EA Access to PS4 owners, 5 years after the Xbox One</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<a href="https://cc.thenextweb.com/post/184719006950/httpsthenextwebcomgaming20190507ea-access-ps4-s" title="2 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184719006950">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184719006950">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006950%2Fhttpsthenextwebcomgaming20190507ea-access-ps4-s&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20Sony%20offers%20EA%20Access%20to%20PS4%20owners%2C%205%20years%20after%20the%20Xbox%20One%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i275pc" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006950%2Fhttpsthenextwebcomgaming20190507ea-access-ps4-s&media=https://66.media.tumblr.com/1976e0d5879bd2a48dfcef5b20a179e2/tumblr_pr5fhuspCS1qejjfeo1_500.jpg" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006950%2Fhttpsthenextwebcomgaming20190507ea-access-ps4-s" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20Sony%20offers%20EA%20Access%20to%20PS4%20owners%2C%205%20years%20after%20the%20Xbox%20One%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006950%2Fhttpsthenextwebcomgaming20190507ea-access-ps4-s" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184719006950/httpsthenextwebcomgaming20190507ea-access-ps4-s/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184719006950/httpsthenextwebcomgaming20190507ea-access-ps4-s" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184719006950/BxYPji6z" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184719006950" data-blog-name="thenextweb" id="like_button_184719006950"><iframe id="like_iframe_184719006950" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184719006950&color=black&rk=BxYPji6z" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184719006950"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184719006770 " data-post-id="184719006770" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="800">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/google/2019/05/07/googles-new-assistant-is-so-fast-that-tapping-to-use-your-phone-would-seem-slow/"><img src="https://66.media.tumblr.com/3349d2ce98376fd7594a83867e8dde21/tumblr_pr5fhtYGA21qejjfeo1_1280.png" alt="Google’s new Assistant is so fast that ‘tapping to use your phone would seem slow’" width="800" height="400"></a>
</div>
</div>
<figcaption class="caption">
<p>Google’s new Assistant is so fast that ‘tapping to use your phone would seem slow’</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<span>
<a href="https://cc.thenextweb.com/post/184719006770/httpsthenextwebcomgoogle20190507googles-new-ass#notes" class="meta-item post-notes">1 note</a>
</span>
<a href="https://cc.thenextweb.com/post/184719006770/httpsthenextwebcomgoogle20190507googles-new-ass" title="2 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184719006770">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184719006770">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006770%2Fhttpsthenextwebcomgoogle20190507googles-new-ass&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20Google%E2%80%99s%20new%20Assistant%20is%20so%20fast%20that%20%E2%80%98tapping%20to%20use%20your%20phone%20would%20seem%20slow%E2%80%99%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i275mo" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006770%2Fhttpsthenextwebcomgoogle20190507googles-new-ass&media=https://66.media.tumblr.com/3349d2ce98376fd7594a83867e8dde21/tumblr_pr5fhtYGA21qejjfeo1_500.png" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006770%2Fhttpsthenextwebcomgoogle20190507googles-new-ass" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20Google%E2%80%99s%20new%20Assistant%20is%20so%20fast%20that%20%E2%80%98tapping%20to%20use%20your%20phone%20would%20seem%20slow%E2%80%99%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184719006770%2Fhttpsthenextwebcomgoogle20190507googles-new-ass" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184719006770/httpsthenextwebcomgoogle20190507googles-new-ass/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184719006770/httpsthenextwebcomgoogle20190507googles-new-ass" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184719006770/7KrpYj9W" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184719006770" data-blog-name="thenextweb" id="like_button_184719006770"><iframe id="like_iframe_184719006770" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184719006770&color=black&rk=7KrpYj9W" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184719006770"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
<span class="notes-pop-container">
</span>
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184718051270 " data-post-id="184718051270" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/plugged/2019/05/07/google-pixel-3a-pixel-3a-xl-specs-price/"><img src="https://66.media.tumblr.com/7a8d109cc04a2c7fd206e14f2b061d09/tumblr_pr5d5jExjO1qejjfeo1_1280.jpg" alt="Google launches its cheaper Pixel 3a and 3a XL phones with flagship cameras" width="796" height="418"></a>
</div>
</div>
<figcaption class="caption">
<p>Google launches its cheaper Pixel 3a and 3a XL phones with flagship cameras</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<a href="https://cc.thenextweb.com/post/184718051270/httpsthenextwebcomplugged20190507google-pixel-3" title="3 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184718051270">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184718051270">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184718051270%2Fhttpsthenextwebcomplugged20190507google-pixel-3&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20Google%20launches%20its%20cheaper%20Pixel%203a%20and%203a%20XL%20phones%20with%20flagship%20cameras%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i23SV6" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184718051270%2Fhttpsthenextwebcomplugged20190507google-pixel-3&media=https://66.media.tumblr.com/7a8d109cc04a2c7fd206e14f2b061d09/tumblr_pr5d5jExjO1qejjfeo1_500.jpg" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184718051270%2Fhttpsthenextwebcomplugged20190507google-pixel-3" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20Google%20launches%20its%20cheaper%20Pixel%203a%20and%203a%20XL%20phones%20with%20flagship%20cameras%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184718051270%2Fhttpsthenextwebcomplugged20190507google-pixel-3" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184718051270/httpsthenextwebcomplugged20190507google-pixel-3/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184718051270/httpsthenextwebcomplugged20190507google-pixel-3" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184718051270/1GXthqgi" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184718051270" data-blog-name="thenextweb" id="like_button_184718051270"><iframe id="like_iframe_184718051270" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184718051270&color=black&rk=1GXthqgi" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184718051270"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184717688915 " data-post-id="184717688915" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/gaming/2019/05/07/sonys-proposed-full-body-gyroscope-controller-for-vr-looks-incredibly-fun/"><img src="https://66.media.tumblr.com/74cd7f7558c311a029a1a1dd5c7bd4d1/tumblr_pr5c9hJdYc1qejjfeo1_1280.jpg" alt="Sony’s proposed full-body gyroscope controller for VR looks incredibly fun" width="796" height="447"></a>
</div>
</div>
<figcaption class="caption">
<p>Sony’s proposed full-body gyroscope controller for VR looks incredibly fun</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<a href="https://cc.thenextweb.com/post/184717688915/httpsthenextwebcomgaming20190507sonys-proposed" title="3 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184717688915">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184717688915">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184717688915%2Fhttpsthenextwebcomgaming20190507sonys-proposed&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20Sony%E2%80%99s%20proposed%20full-body%20gyroscope%20controller%20for%20VR%20looks%20incredibly%20fun%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i2241J" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184717688915%2Fhttpsthenextwebcomgaming20190507sonys-proposed&media=https://66.media.tumblr.com/74cd7f7558c311a029a1a1dd5c7bd4d1/tumblr_pr5c9hJdYc1qejjfeo1_500.jpg" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184717688915%2Fhttpsthenextwebcomgaming20190507sonys-proposed" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20Sony%E2%80%99s%20proposed%20full-body%20gyroscope%20controller%20for%20VR%20looks%20incredibly%20fun%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184717688915%2Fhttpsthenextwebcomgaming20190507sonys-proposed" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184717688915/httpsthenextwebcomgaming20190507sonys-proposed/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184717688915/httpsthenextwebcomgaming20190507sonys-proposed" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184717688915/y7goZeGn" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184717688915" data-blog-name="thenextweb" id="like_button_184717688915"><iframe id="like_iframe_184717688915" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184717688915&color=black&rk=y7goZeGn" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184717688915"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184715892830 " data-post-id="184715892830" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/plugged/2019/05/07/house-of-marleys-200-headphones-are-as-comfortable-as-they-are-stylish/"><img src="https://66.media.tumblr.com/c3ddfc9ba71a6a6282b8fb004d944518/tumblr_pr57iffZTf1qejjfeo1_1280.jpg" alt="House of Marley’s $200 headphones are as comfortable as they are stylish" width="796" height="419"></a>
</div>
</div>
<figcaption class="caption">
<p>House of Marley’s $200 headphones are as comfortable as they are stylish</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<a href="https://cc.thenextweb.com/post/184715892830/httpsthenextwebcomplugged20190507house-of-marle" title="5 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184715892830">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184715892830">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184715892830%2Fhttpsthenextwebcomplugged20190507house-of-marle&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20House%20of%20Marley%E2%80%99s%20%24200%20headphones%20are%20as%20comfortable%20as%20they%20are%20stylish%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i1xDXU" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184715892830%2Fhttpsthenextwebcomplugged20190507house-of-marle&media=https://66.media.tumblr.com/c3ddfc9ba71a6a6282b8fb004d944518/tumblr_pr57iffZTf1qejjfeo1_500.jpg" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184715892830%2Fhttpsthenextwebcomplugged20190507house-of-marle" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20House%20of%20Marley%E2%80%99s%20%24200%20headphones%20are%20as%20comfortable%20as%20they%20are%20stylish%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184715892830%2Fhttpsthenextwebcomplugged20190507house-of-marle" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184715892830/httpsthenextwebcomplugged20190507house-of-marle/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184715892830/httpsthenextwebcomplugged20190507house-of-marle" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184715892830/woOXBqvv" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184715892830" data-blog-name="thenextweb" id="like_button_184715892830"><iframe id="like_iframe_184715892830" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184715892830&color=black&rk=woOXBqvv" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184715892830"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184714789700 " data-post-id="184714789700" >
<div class="post-wrapper clearfix">
<header class="post-header">
</header>
<section class="post">
<figure class="post-content high-res with-caption" data-photo-width="796">
<div class="photo-wrapper">
<div class="photo-wrapper-inner">
<a href="https://thenextweb.com/tnw2019/2019/05/07/earworm-youtube-music-dancing-about-architecture/"><img src="https://66.media.tumblr.com/9b92c6d6b29745aa2081afa965c8acc0/tumblr_pr54aoRxPs1qejjfeo1_1280.png" alt="How this music YouTube series succeeds at ‘dancing about architecture’" width="796" height="417"></a>
</div>
</div>
<figcaption class="caption">
<p>How this music YouTube series succeeds at ‘dancing about architecture’</p>
</figcaption>
</figure>
<section class="inline-meta post-extra">
</section>
</section>
<section class="panel">
<footer class="post-footer">
<section class="panel">
<section class="inline-meta date-notes">
<div class="date-note-wrapper">
<a href="https://cc.thenextweb.com/post/184714789700/httpsthenextwebcomtnw201920190507earworm-youtub" title="6 hours ago" class="meta-item post-date">May 7th, 2019</a>
</div>
</section>
<section class="post-controls">
<div class="controls-wrapper">
<div class="control share-control">
<nav class="pop">
<a href="#" class="share selector"></a>
<div class="pop-menu share-menu south" id="share_184714789700">
<ul>
<li class="open-in-app"><a href="#" class="share-item open-in-app" data-post="184714789700">Open in app</a></li>
<li><a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184714789700%2Fhttpsthenextwebcomtnw201920190507earworm-youtub&t=TNW%27s%20Tumblr%20Hangout%20Friends" class="share-item facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/intent/tweet?text=%F0%9F%93%B7%20How%20this%20music%20YouTube%20series%20succeeds%20at%20%E2%80%98dancing%20about%20architecture%E2%80%99%20https%3A%2F%2Ftmblr.co%2FZn8r0y2i1t0D4" class="share-item twitter" target="_blank">Tweet</a></li>
<li><a href="//www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184714789700%2Fhttpsthenextwebcomtnw201920190507earworm-youtub&media=https://66.media.tumblr.com/9b92c6d6b29745aa2081afa965c8acc0/tumblr_pr54aoRxPs1qejjfeo1_500.png" class="share-item pinterest" target="_blank">Pinterest</a></li>
<li><a href="https://reddit.com/submit?url=https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184714789700%2Fhttpsthenextwebcomtnw201920190507earworm-youtub" class="share-item reddit" target="_blank">Reddit</a></li>
<li><a href="mailto:?subject=A%20photo%20from%20TNW%26%23039%3Bs%20Tumblr%20Hangout%20Friends&body=%F0%9F%93%B7%20How%20this%20music%20YouTube%20series%20succeeds%20at%20%E2%80%98dancing%20about%20architecture%E2%80%99%20https%3A%2F%2Fcc.thenextweb.com%2Fpost%2F184714789700%2Fhttpsthenextwebcomtnw201920190507earworm-youtub" class="share-item mail">Mail</a></li>
<li><a href="https://cc.thenextweb.com/post/184714789700/httpsthenextwebcomtnw201920190507earworm-youtub/embed" class="share-item permalink">Embed</a></li>
<li><a href="https://cc.thenextweb.com/post/184714789700/httpsthenextwebcomtnw201920190507earworm-youtub" class="share-item permalink">Permalink <i class="arrow"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="control reblog-control"><a href="https://www.tumblr.com/reblog/184714789700/rMY7zK4y" class="reblog_button"style="display: block;width:24px;height:24px;"><svg width="100%" height="100%" viewBox="0 0 21 21" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000"><path d="M5.01092527,5.99908429 L16.0088498,5.99908429 L16.136,9.508 L20.836,4.752 L16.136,0.083 L16.1360004,3.01110845 L2.09985349,3.01110845 C1.50585349,3.01110845 0.979248041,3.44726568 0.979248041,4.45007306 L0.979248041,10.9999998 L3.98376463,8.30993634 L3.98376463,6.89801007 C3.98376463,6.20867902 4.71892527,5.99908429 5.01092527,5.99908429 Z"></path><path d="M17.1420002,13.2800293 C17.1420002,13.5720293 17.022957,14.0490723 16.730957,14.0490723 L4.92919922,14.0490723 L4.92919922,11 L0.5,15.806 L4.92919922,20.5103758 L5.00469971,16.9990234 L18.9700928,16.9990234 C19.5640928,16.9990234 19.9453125,16.4010001 19.9453125,15.8060001 L19.9453125,9.5324707 L17.142,12.203"></path></svg></a></div>
<div class="control like-control"><div class="like_button" data-post-id="184714789700" data-blog-name="thenextweb" id="like_button_184714789700"><iframe id="like_iframe_184714789700" src="https://assets.tumblr.com/assets/html/like_iframe.html?_v=66c22ab5319d742bca5762b8d18f9d06#name=thenextweb&post_id=184714789700&color=black&rk=rMY7zK4y" scrolling="no" width="24" height="24" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_184714789700"></iframe></div></div>
</div>
</section>
</section>
<section class="inline-meta date-notes">
</section>
</footer>
</section>
</div>
</article>
<article class="photo not-page post-184713921085 " data-post-id="184713921085" >
<div class="post-wrapper clearfix">