forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflavorwire.com2.html
More file actions
1355 lines (1161 loc) · 92.4 KB
/
Copy pathflavorwire.com2.html
File metadata and controls
1355 lines (1161 loc) · 92.4 KB
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 public>
<!--[if lt IE 7]> <html lang="en-us" class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en-us" class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en-us" class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-us"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="google-site-verification" content="OLJHupaM3Ydfn1f812vitE49YM4Oc-7uZRMrJBtF9kQ" />
<title>2014: The Year the Outrage Machine Started Eating the Real World – Flavorwire</title>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="description" content="If you're inclined to believe #slatepitches, then 2014 was the Year Of Outrage. The Internet's favorite shrine to contrarianism published an interactive calendar earlier this month wherein one can track, day by day, the things about which we ("we" being liberal American adults on the Internet, bas..." />
<meta name="keywords" content="buzz, pop culture, bill cosby, gamergate, justine sacco, outrage, r. kelly" />
<meta name="p:domain_verify" content="d14fb4bfdccbc45ec9b9cf467123426d" />
<script src='//r-login.wordpress.com/remote-login.php?action=js&host=flavorwire.com&id=43719139&t=1420285698&back=http%3A%2F%2Fflavorwire.com%2F495418%2F2014-the-year-the-outrage-machine-started-eating-the-real-world' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<link rel="dns-prefetch" href="//connect.facebook.net" />
<link rel="alternate" type="application/rss+xml" title="Flavorwire » Feed" href="http://flavorwire.com/feed" />
<link rel="alternate" type="application/rss+xml" title="Flavorwire » Comments Feed" href="http://flavorwire.com/comments/feed" />
<link rel="alternate" type="application/rss+xml" title="Flavorwire » 2014: The Year the Outrage Machine Started Eating the Real World Comments Feed" href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world/feed" />
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
/* ]]> */
</script>
<link rel='stylesheet' id='all-css-0' href='https://s0.wp.com/_static/??-eJx9UNFuwjAM/CGCVQkVXqZ9S0hN6uLEUeJS8fdzh9CG2PqS3Dl39sWwFBckK2aFNLvCc6TcoCVivJcqEwZ9ZfvQ2g7+tjFdscGEWny4um/2Jj+zxB+DxIiDzOouwiwLLDRE3JwRpKLVU/G6KhIO5JExmWzLlkr/dK1wtIDv2XS0Pg1uVODC/iZ1oYrQ1CsFu+6MbURU20+oiHlrHiaZ6HE+ZARZrI3Y2xNs+SOKYwk2WfILcZaM6pa14rpjgxFM9Yv+99/xAJHl7HkVfKaP7tCduv54OvbTF8w0zKE=' type='text/css' media='all' />
<link rel='stylesheet' id='allandmax-width640px-css-0' href='https://s1.wp.com/wp-content/themes/vip/flavorwire/static/stylesheets/mobile-320px.css?m=1397028020g' type='text/css' media='all and (max-width: 640px)' />
<link rel='stylesheet' id='screen-css-0' href='https://s1.wp.com/wp-content/themes/vip/flavorwire/static/stylesheets/colorbox.css?m=1358883630g' type='text/css' media='screen' />
<script type='text/javascript'>
/* <![CDATA[ */
var LoggedOutFollow = {"invalid_email":"Your subscription did not succeed, please try again with a valid email address."};
/* ]]> */
</script>
<script type='text/javascript' src='https://s1.wp.com/_static/??-eJydktFOxCAQRX9ISjdRk30wfsqG0gGnO2UQhlb9ejHrxjVW2/UJGO6dmwOj56gsB4Egesh65A4JVMmQjK81hcFxM+QbXXUYLJUe8odweC6QXj+XVYEa0Scj0IwYzuKL1MhZRsi5Ri7cfo/CMCHMq7IBJBp7VAkyvv3o2hF7Fal4DFnXvYeeiyjHRDzrGXsP8gdUwXNMwQacAytLZPIElUpPGLUjM3GaMcFXm8Yycer4Rf3D61Am7PNmW0QrJYFDouvAVCbsFz/u1yxP3BnaLD/N3PWPx0fc7jqd4gX+OoY5ZLZo6CCpjhIGX62P48Pudrff37X3bTu8AyIiOag='></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://flavorwire.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s1.wp.com/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Old Favorites Flavorwire Staffers Revisited in 2014' href='http://flavorwire.com/496181/old-favorites-flavorwire-staffers-revisited-in-2014' />
<link rel='next' title='‘Spice World’ Outfits, Ranked' href='http://flavorwire.com/495973/spice-world-outfits-ranked' />
<meta name="generator" content="WordPress.com" />
<link rel='canonical' href='http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world' />
<link rel='shortlink' href='http://wp.me/p2Xrlp-24SC' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2Fflavorwire.com%2F495418%2F2014-the-year-the-outrage-machine-started-eating-the-real-world&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=xml&url=http%3A%2F%2Fflavorwire.com%2F495418%2F2014-the-year-the-outrage-machine-started-eating-the-real-world&for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="2014: The Year the Outrage Machine Started Eating the Real World" />
<meta property="og:url" content="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world" />
<meta property="og:description" content="If you're inclined to believe #slatepitches, then 2014 was the Year Of Outrage. The Internet's favorite shrine to contrarianism published an interactive calendar earlier this month wherein one can ..." />
<meta property="article:published_time" content="2014-12-29T15:00:20+00:00" />
<meta property="article:modified_time" content="2014-12-29T21:23:08+00:00" />
<meta property="article:author" content="http://flavorwire.com/author/tomflavorpill" />
<meta property="og:site_name" content="Flavorwire" />
<meta property="og:image" content="https://flavorwire.files.wordpress.com/2014/12/rage-face.jpg?w=1200" />
<meta name="twitter:site" content="@flavorwire" />
<meta name="twitter:image:src" content="https://flavorwire.files.wordpress.com/2014/12/rage-face.jpg?w=640" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@flavorwire" />
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" />
<link rel='openid.server' href='http://flavorwire.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='http://flavorwire.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="http://flavorwire.com/osd.xml" title="Flavorwire" />
<link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
<!-- wp-parsely Plugin Version 1.6 -->
<meta name='wp-parsely_version' id='wp-parsely_version' content='1.6' />
<meta name='parsely-page' id='parsely-page' content='{"title":"2014: The Year the Outrage Machine Started Eating the Real World","link":"http:\/\/flavorwire.com\/495418\/2014-the-year-the-outrage-machine-started-eating-the-real-world","image_url":"https:\/\/flavorwire.files.wordpress.com\/2014\/12\/rage-face.jpg?w=150","type":"post","post_id":"495418","pub_date":"2014-12-29T15:00:20Z","section":"buzz","author":"Tom Hawking","tags":["bill cosby","gamergate","justine sacco","outrage","r. kelly"]}' />
<script type="text/javascript" src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script><meta name="date" content="2014-12-29 10:00:20" />
<meta name="keywords" content="bill-cosby,gamergate,justine-sacco,outrage,r-kelly" />
<link rel="author" href="?rel=author"/>
<script type="text/javascript" data-lf-domain="flavorwire.fyre.co" src="http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"></script>
<style>
.wpcom-related-posts ul li {
list-style-type: none;
display: inline-block;
}
</style>
<meta name="application-name" content="Flavorwire" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://flavorwire.com/feed;icon-uri=http://s2.wp.com/i/favicon.ico" /> <!-- Quantcast Tag, part 1 -->
<script type="text/javascript"> var _qevents = _qevents || []; </script>
<script> Flavorpill.init({ assetsPath: " https://s0.wp.com/wp-content/themes/vip/flavorwire"}); </script>
<script type='text/javascript' src='http://flavorwire.ep.livefyre.com/media/Zmxhdm9yd2lyZS5lcC5saXZlZnlyZS5jb20=/javascripts/customprofiles.js'></script>
<script type='text/javascript'>
var authDelegate = new fyre.conv.SPAuthDelegate({engage: {app: "flavorwire.auth.fyre.co"}});
</script>
<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js" data-pin-hover="true"></script>
<style type="text/css" id="syntaxhighlighteranchor"></style>
<script>
_gaq.push(['_setDomainName', 'flavorwire.com']);
</script>
<link rel="shortcut icon" href="https://s2.wp.com/wp-content/themes/vip/flavorwire/favicon.ico" />
</head>
<body>
<div id="skin_ad" class="dfp_ad">
<div id="dfp_ad_8" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=2100x1100&t=pos%3D8&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=2100x1100&t=pos%3D8&c=1420285698" />
</a>
</noscript>
</div>
</div>
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=240197519353460";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id="container">
<header class="clearfix">
<div id="header_ad" class="dfp_ad">
<div id="dfp_ad_1" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=728x90|970x66&t=pos%3D1&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=728x90|970x66&t=pos%3D1&c=1420285698" />
</a>
</noscript>
</div>
<div id="dfp_ad_17" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=1x1&t=pos%3D17&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=1x1&t=pos%3D17&c=1420285698" />
</a>
</noscript>
</div>
<div id="dfp_ad_18" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=1x1&t=pos%3D18&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=1x1&t=pos%3D18&c=1420285698" />
</a>
</noscript>
</div>
</div>
<div class="clearfix">
<a href="/" class="f-icon" onclick="_gaq.push(['_trackEvent', 'Article', 'Header', 'F-Icon' ]);">F</a>
<ul id="header-social">
<li id="rss"><a href="http://feeds.feedburner.com/flavorwire-rss" onclick="_gaq.push(['_trackEvent', 'Article', 'Social Follows', 'RSS' ]);">RSS</a></li>
<li id="twitter"><a href="http://www.twitter.com/flavorwire" onclick="_gaq.push(['_trackEvent', 'Article', 'Social Follows', 'Twitter' ]);">Twitter</a></li>
<li id="facebook"><a href="http://www.facebook.com/flavorwire" onclick="_gaq.push(['_trackEvent', 'Article', 'Social Follows', 'Facebook' ]);">Facebook</a></li>
</ul>
<h1 id="header-logo"><a href="/" onclick="_gaq.push(['_trackEvent', 'Article', 'Header', 'Logo' ]);">Flavorwire</a></h1>
</div>
<div id="hot-topics" class="clearfix">
<a href="#" id="search-icon" class="icon">Search</a>
<a href="#" id="location-icon" class="mobile icon" onclick="_gaq.push(['_trackEvent', 'Article', 'Mobile Icon', 'Location' ]);">Location</a>
<a href="#" id="menu-icon" class="mobile icon" onclick="_gaq.push(['_trackEvent', 'Article', 'Mobile Icon', 'Menu' ]);">Menu</a>
<form id="search-form" method="get" action="/index.php" onSubmit="_gaq.push(['_trackEvent', 'Article', 'Search', 'Search Submit' ]);">
<input type="text" placeholder="Search" name="s" id="s" class="s" value="" onChange="_gaq.push(['_trackEvent', 'Article', 'Search', 'Search Enter' ]);">
</form>
<ul><li>Hot Topics</li><li id="menu-item-491853" class="menu-item menu-item-type-taxonomy menu-item-object-topics menu-item-491853"><a href="http://flavorwire.com/topics/2014-the-year-in-culture" onclick="_gaq.push(['_trackEvent', 'Article', 'Hot Topics', '2014: The Year in Culture' ]);">2014: The Year in Culture</a></li>
<li id="menu-item-493483" class="menu-item menu-item-type-taxonomy menu-item-object-topics menu-item-493483"><a href="http://flavorwire.com/topics/nicki-minaj" onclick="_gaq.push(['_trackEvent', 'Article', 'Hot Topics', 'Nicki Minaj' ]);">Nicki Minaj</a></li>
<li id="menu-item-494768" class="menu-item menu-item-type-taxonomy menu-item-object-topics menu-item-494768"><a href="http://flavorwire.com/topics/the-interview" onclick="_gaq.push(['_trackEvent', 'Article', 'Hot Topics', 'The Interview' ]);">The Interview</a></li>
<li id="menu-item-495828" class="menu-item menu-item-type-taxonomy menu-item-object-topics menu-item-495828"><a href="http://flavorwire.com/topics/selma" onclick="_gaq.push(['_trackEvent', 'Article', 'Hot Topics', 'Selma' ]);">Selma</a></li>
</ul> </div>
<div id="mobile-ad" class="dfp_ad">
<div id="dfp_ad_16" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=320x50&t=pos%3D16&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=320x50&t=pos%3D16&c=1420285698" />
</a>
</noscript>
</div>
</div>
<div id="header_ad" class="dfp_ad">
<div id="dfp_ad_19" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=1000x250&t=pos%3D19&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=1000x250&t=pos%3D19&c=1420285698" />
</a>
</noscript>
</div>
</div>
</header>
<div id="content" class="clearfix">
<div id="left" class="col">
<ul id="topics" class="menu"><li id="menu-item-229263" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-229263"><a href="http://flavorwire.com" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Home' ]);">Home</a></li>
<li id="menu-item-229264" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229264"><a href="http://flavorwire.com/category/visual-arts" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Art' ]);">Art</a></li>
<li id="menu-item-229268" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229268"><a href="http://flavorwire.com/category/books" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Books' ]);">Books</a></li>
<li id="menu-item-229269" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229269"><a href="http://flavorwire.com/category/music" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Music' ]);">Music</a></li>
<li id="menu-item-229270" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229270"><a href="http://flavorwire.com/category/design" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Design' ]);">Design</a></li>
<li id="menu-item-229271" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229271"><a href="http://flavorwire.com/category/film" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Film' ]);">Film</a></li>
<li id="menu-item-229272" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-229272"><a href="http://flavorwire.com/category/television" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Television' ]);">Television</a></li>
<li id="menu-item-230384" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-230384"><a href="#" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'More' ]);">More</a>
<ul class="sub-menu">
<li id="menu-item-230408" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230408"><a href="http://flavorwire.com/category/media-music" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Media' ]);">Media</a></li>
<li id="menu-item-230410" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230410"><a href="http://flavorwire.com/category/web" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Web' ]);">Web</a></li>
<li id="menu-item-230407" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230407"><a href="http://flavorwire.com/category/design/fashion-design" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Fashion' ]);">Fashion</a></li>
<li id="menu-item-230409" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230409"><a href="http://flavorwire.com/category/visual-arts/photography-visual-arts" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Photography' ]);">Photography</a></li>
<li id="menu-item-230414" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230414"><a href="http://flavorwire.com/category/theatre" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Theatre' ]);">Theatre</a></li>
<li id="menu-item-230411" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-230411"><a href="http://flavorwire.com/category/celebrity" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Celebrity' ]);">Celebrity</a></li>
<li id="menu-item-230413" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-230413"><a href="http://flavorwire.com/category/pop-culture-2" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial', 'Pop Culture' ]);">Pop Culture</a></li>
</ul>
</li>
</ul> <ul id="topics-responsive" class="menu"><li id="menu-item-353394" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-353394"><a href="http://flavorwire.com/category/visual-arts" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Art' ]);">Art</a></li>
<li id="menu-item-388914" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388914"><a href="http://flavorwire.com/category/books" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Books' ]);">Books</a></li>
<li id="menu-item-388915" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388915"><a href="http://flavorwire.com/category/music" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Music' ]);">Music</a></li>
<li id="menu-item-388918" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388918"><a href="http://flavorwire.com/category/design" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Design' ]);">Design</a></li>
<li id="menu-item-388916" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388916"><a href="http://flavorwire.com/category/film" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Film' ]);">Film</a></li>
<li id="menu-item-388917" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388917"><a href="http://flavorwire.com/category/television" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Television' ]);">Television</a></li>
<li id="menu-item-388923" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-388923"><a href="http://flavorwire.com/newswire" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Newswire' ]);">Newswire</a></li>
<li id="menu-item-388919" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-388919"><a href="#" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'More' ]);">More</a>
<ul class="sub-menu">
<li id="menu-item-388920" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388920"><a href="http://flavorwire.com/category/visual-arts/photography-visual-arts" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Photography' ]);">Photography</a></li>
<li id="menu-item-388921" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388921"><a href="http://flavorwire.com/category/web" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'Web' ]);">Web</a></li>
<li id="menu-item-388922" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-388922"><a href="http://flavorwire.com/category/news" onclick="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Editorial Responsive', 'News' ]);">News</a></li>
</ul>
</li>
</ul>
<div class="mailing-list-form-wrapper" id="sidebar-mailing-list-form">
<form class="mailing-list-form" method="post" action="http://link.flavorpill.com/join/flavorwire-signup" target="_blank" onSubmit="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Sign Up', 'Submit' ]);">
<fieldset>
<legend id="sweeten-your-inbox">Sweeten your inbox</legend>
<div class="mailing-list-input-wrapper">
<input placeholder="Email" type="text" name="fp_email" id="email" onBlur="_gaq.push(['_trackEvent', 'Article', 'Left Rail_Sign Up', 'Enter Email' ]);" />
<a href="#" id="ml-form-send-button">Send</a>
</div>
</fieldset>
<input type="hidden" name="vars[source]" value="Onsite" />
</form>
</div>
<div id="left_ad" class="dfp_ad">
</div>
</div>
<div id="center" class="col single">
<article itemscope itemtype="http://schema.org/Article" id="post-495418" class="post-495418 post type-post status-publish format-standard has-post-thumbnail hentry category-buzz category-pop-culture-2 tag-bill-cosby tag-gamergate tag-justine-sacco tag-outrage tag-r-kelly post-single">
<header class="entry-header">
<a href="#comments" class="single-comment-count" onclick="_gaq.push(['_trackEvent', 'Article', 'Jump to Comments', '2014: The Year the Outrage Machine Started Eating the Real World' ]);">
<span class="livefyre-commentcount" data-lf-site-id="351496" data-lf-article-id="495418">0</span><i class="arrow"></i></a>
<p class="post-category"><a href="http://flavorwire.com/category/pop-culture-2" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Category', 'Pop Culture' ]);">Pop Culture</a></p> <h2 itemprop="name" class="entry-title">2014: The Year the Outrage Machine Started Eating the Real World </h2>
<div class="entry-meta">
By <span class="by-author"><a class="url fn n" href="http://flavorwire.com/author/tomflavorpill" title="View All Posts by Tom Hawking" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Author', 'Tom Hawking' ]);">
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">
Tom Hawking
</span>
</span>
</a></span> on <time class="entry-date" datetime="2014-12-29T10:00:20+00:00" pubdate="pubdate">Dec 29, 2014 10:00am</time><meta itemprop="datePublished" content="2014-12-29"> </div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div id="main_content_block">
<a name="content_top" id="content_top"></a>
<div class="page-link"><span class="prev-page-placeholder">←</span><a href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world/2" class="next-page-link">→</a><div class='page-current'><input type='hidden' id='pagelink-page' value='1'><input type='hidden' id='pagelink-numpages' value='2'><input name='pagenum' id='pagenum' type='text' value='1'/><i>of</i> 2</div></div>
<div class="entry-content">
<meta itemprop="articleBody" content="If you’re inclined to believe #slatepitches, then 2014 was the Year Of Outrage. The Internet’s favorite shrine to contrarianism">
<p>If you’re inclined to believe #slatepitches, then 2014 was the Year Of Outrage. The Internet’s favorite shrine to contrarianism published an <a href="http://www.slate.com/articles/life/culturebox/2014/12/the_year_of_outrage_2014_everything_you_were_angry_about_on_social_media.html" target="_blank">interactive calendar </a>earlier this month wherein one can track, day by day, the things about which we (“we” being liberal American adults on the Internet, basically) were outraged this year. I’m not so sure this year was any different to any other, though: the public has always been fond of being righteously outraged, and for the last few years, at least, the Internet has felt like (and been characterized as) a giant outrage machine. But 2014 did feel like a landmark in one respect: it was the year that the outrage machine proved its power to chew up and spit out people IRL as well as on Twitter or Tumblr. It was a year in which the precipitous fall taken by Bill Cosby, in particular, proved that it’s much, much harder for stars to bury unflattering narratives these days. But the ever-growing power of the angry mob also has pretty terrifying implications if you take an old-fashioned view of what constitutes justice.</p>
<p><span id="more-495418"></span></p>
<p><a href="https://flavorwire.files.wordpress.com/2014/12/rage-face.jpg"><img class="alignleft wp-image-496310 size-medium" src="https://flavorwire.files.wordpress.com/2014/12/rage-face.jpg?w=300&h=245" alt="Rage face" width="300" height="245" /></a></p>
<p>There have certainly been plenty of <a href="http://www.theatlantic.com/technology/archive/2013/12/two-theories-of-how-to-break-the-webs-rage-machine/282453/" target="_blank">hand-wringing</a> <a href="http://www.theatlantic.com/politics/archive/2014/06/rage-against-the-outrage-machine/373069/">thinkpieces</a> this year lamenting the rise of rage culture (and <a href="https://nplusonemag.com/issue-18/the-intellectual-situation/against-the-rage-machine/" target="_blank">at least one</a> about how the 300 Sandwiches kerfuffle may have saved us from invading Syria). <span style="line-height:24px;">But</span><span style="line-height:24px;"> notably</span><span style="line-height:24px;">, two of the biggest stories of 2014 demonstrate the flip-side of that culture: instances where the Internet’s unparalleled ability to disseminate information, and to do so relentlessly, has shone</span><span style="line-height:24px;"> light into hitherto dark places. </span><span style="line-height:24px;">I’m </span><span style="line-height:24px;">talking about</span><span style="line-height:24px;"> the fall of Bill Cosby and the near-fall of R. Kelly</span><span style="line-height:24px;">. Both cases involved allegations that have been on the public record for years, but had nevertheless disappeared from public attention. (And, it should be noted, both involved black men: the sordid history of white celebrities tends to remain buried far more readily than that of men like Kelly and Cosby.)</span></p>
<p>In both cases, you can trace the story’s reemergence back to a single moment. First there was Jessica Hopper’s <a href="http://blogs.villagevoice.com/music/2013/12/read_the_stomac.php" target="_blank">interview with Jim DeRogatis</a> in the <em>Village Voice</em>, right at the end of last year, which brought to light (again) the details of the multiple rape accusations against Kelly. Not long after, DeRogatis himself penned a <a href="http://blogs.villagevoice.com/music/2014/01/r_kelly_sex_tape_underage_crimes.php" target="_blank">piece</a> entitled, “Why Are People Finally Paying Attention to R. Kelly’s Many Crimes?” DeRogatis’ piece was interesting and perceptive, but the answer could have been summarized in three words: the outrage machine.</p>
<p>It was the same with Cosby: again, all it took was one person to say, “Wait, look at this.” In this case, it was Hannibal Buress <a href="https://www.youtube.com/watch?v=dzB8dTVALQI" target="_blank">flat-out calling Cosby a rapist on stage</a>. The next morning, you could feel the entire Internet rubbing its eyes and saying, “Oh yeah, so what <em>was</em> the deal with Cosby?” As it turned out, the deal with Cosby was just as awful as the Kelly accusations: decades’ worth of women telling stories of having been drugged and assaulted.</p>
<p><a href="https://flavorwire.files.wordpress.com/2014/12/bill-cosby5.jpg"><img class=" wp-image-496319 size-medium alignleft" src="https://flavorwire.files.wordpress.com/2014/12/bill-cosby5.jpg?w=210&h=300" alt="Bill Cosby, Camille Cosby" width="210" height="300" /></a>Not long after Buress’ performance, the Cosby thinkpieces started to appear. Then one of Cosby’s alleged victims, Barbara Bowman, <a href="http://www.washingtonpost.com/posteverything/wp/2014/11/13/bill-cosby-raped-me-why-did-it-take-30-years-for-people-to-believe-my-story/" target="_blank">wrote an op-ed</a> for the <em>Washington Post. </em>And then… well, you can choose your own metaphor: the floodgates opening, the avalanche building, a shower turning into hurricane. However you want to put it, in the course of about three weeks, the attention given to the Cosby accusations increased exponentially, to the point that it could no longer be ignored by anyone (except Cosby himself, who’s still defiantly sticking to a strategy of stonewalling that simply no longer works). The fallout was dramatic: a <a href="http://variety.com/2014/tv/news/nbc-pulls-bill-cosby-comedy-project-amid-rape-allegations-1201360278/" target="_blank">canceled NBC project</a>, a <a href="http://variety.com/2014/biz/news/netflix-pulls-bill-cosby-special-amid-rape-allegations-1201359886/" target="_blank">shelved Netflix special</a>, <a href="http://abcnews.go.com/Entertainment/tv-land-pulls-cosby-show-reruns-amid-sexual/story?id=27015527" target="_blank">pulled <em>Cosby Show</em> re-runs</a> all over the place. This wasn’t a case of people online saying nasty things; this was quantifiable and significant damage to whatever’s left of Cosby’s career.</p>
<p>Both with Cosby and with Kelly, we had public interest being reignited in accusations that had been actively suppressed or allowed to just fade away. In the past, it was relatively easy to bury a story: gaslight and discredit the accuser, cozy up to the press, call in some favors. There were only so many ways that news could get out. Once those channels were closed, a story would live on, at best, as a rumor, discussed in bars and over dinner, always laden with an air of doubt and hearsay.</p>
<p>In 2014, it’s almost impossible for that to happen once the story gains any sort of momentum. Thanks in large part to social media, there’s an infinite number of leaks to plug. No doubt some stories are still suppressed before they ever get reported, but once there’s anything on the public record, it just takes one person to notice it and tweet it… and the story’s gone, beyond anyone’s control.</p>
<p>Even if the outrage machine stuck exclusively to eviscerating celebrities who have been burying bad press for decades, its power to destroy would be kind of terrifying. But, of course, it doesn’t. The case that springs to mind immediately is that of the musician Conor Oberst, accused of rape by one Joanie Faircloth in a series of comments on an xoJane article. The pattern was the same: the original comments appeared, they sat idle for a couple of days, not garnering any attention beyond their original forum… then someone reported them, at which point they started <a href="http://urbancatfitters.com/post/72164714862/conor-oberst-rapist" target="_blank">doing the rounds</a> on Twitter and Tumblr. And suddenly they were everywhere.</p>
<p><a href="https://flavorwire.files.wordpress.com/2014/12/oberst2.jpg"><img class=" wp-image-496324 size-medium alignleft" src="https://flavorwire.files.wordpress.com/2014/12/oberst2.jpg?w=300&h=300" alt="oberst2" width="300" height="300" /></a>It’s no coincidence, I’m sure, that all three cases — Kelly, Cosby, and Oberst — involved sexual assault. As we all know, it’s a crime that’s notoriously hard to prove and to prosecute, and even more so when years have passed since the alleged incident. In the cases of Kelly and Cosby, it appears from sheer weight of evidence that the Internet’s collective guilty verdict is most likely justified. The case of Oberst was quite a bit different.</p>
<p>As I <a href="http://flavorwire.com/432645/the-internets-dangerous-opportunistic-speculation-on-conor-obersts-rape-accusations-needs-to-stop" target="_blank">wrote at the time</a>, the simple fact was that no one knew what had happened except Oberst and his accuser. As so often happens with rape, it was a game of he-said, she-said, except in this case neither he nor she was saying anything — Oberst <a href="http://www.spin.com/articles/conor-oberst-anonymous-rape-allegation-response-libel/" target="_blank">released a brief statement</a> denying the accusations, and Faircloth went to ground. There was no information beyond a couple of deleted comments made by a woman about which the world knew next to nothing. Of course, because the Internet abhors a vacuum of information, this only served to heighten the rage and speculation. Commentators pronounced Oberst guilty or innocent without the slightest hint of a doubt, on the basis of absolutely nothing beyond personal conviction and confirmation bias.</p>
<p>As it transpired, Faircloth withdrew the allegations after Oberst threatened to sue her. But no one will come out of this story unscathed: there will always be people out there who now believe, no matter what, that Conor Oberst is a rapist. Faircloth, meanwhile, has her credibility left in shreds — there’ll be people to whom she’ll always be the crazy girl who made the false accusation. Either way, the Internet feeding frenzy has done her no favors: if her accusation was true, it seems almost impossible for her to ever pursue it, and if it was false, she most likely needs serious help. Having her story plastered all over the Internet (in violation of her express wishes) did her no more good than it did Oberst.</p>
<p>None of this bothered the Internet judge/jury/executioners, though, who had already happily moved on. The Internet being the Internet, though, what’s forgotten isn’t necessarily gone. The Frisky’s hugely irresponsible “Why I Believe Conor Oberst’s Anonymous Rape Accuser” essay, for instance, is <a href="http://www.thefrisky.com/2014-01-08/why-i-believe-conor-obersts-anonymous-rape-accuser/" target="_blank">still online</a>, prefaced only by a one-sentence “update” that’s essentially the journalistic equivalent of ¯\_(ツ)_/¯. In cyberspace, accusations never die: they just sit there, somewhere on Google, waiting for people to dredge them up again. It’s for this reason that there have been <a href="http://www.reuters.com/article/2014/11/26/us-google-eu-privacy-idUSKCN0JA1HU20141126" target="_blank">recent cases in the EU</a> regarding a right to be forgotten.</p>
</div><!-- .entry-content -->
<div class="page-link"><span class="prev-page-placeholder">←</span><a href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world/2" class="next-page-link">→</a><div class='page-current'><input type='hidden' id='pagelink-page' value='1'><input type='hidden' id='pagelink-numpages' value='2'><input name='pagenum' id='pagenum' type='text' value='1'/><i>of</i> 2</div></div><div class="page-link-all"><a href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world/view-all">View all pages</a></div> </div>
<footer>
<p class="tag-label">Filed Under:</p> <div class="tag-list clearfix"><a href="http://flavorwire.com/topics/2014-the-year-in-culture" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Topics', '2014: The Year in Culture' ]);">2014: The Year in Culture</a><a href="http://flavorwire.com/tag/justine-sacco" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'Justine Sacco' ]);">Justine Sacco</a><a href="http://flavorwire.com/tag/outrage" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'Outrage' ]);">Outrage</a><a href="http://flavorwire.com/tag/r-kelly" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'R. Kelly' ]);">R. Kelly</a><a href="http://flavorwire.com/tag/bill-cosby" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'bill cosby' ]);">bill cosby</a><a href="http://flavorwire.com/tag/gamergate" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'gamergate' ]);">gamergate</a></div>
<div class="article-sharing">
<div id="jp-post-flair" class="sharedaddy sd-sharing-enabled">
<div class="fb-like" data-href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-official sd-sharing"><div class="sd-content"><ul><li class="share-twitter"><div class="twitter_button"><iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fwp.me%2Fp2Xrlp-24SC&counturl=http%3A%2F%2Fflavorwire.com%2F495418%2F2014-the-year-the-outrage-machine-started-eating-the-real-world&count=horizontal&text=2014%3A%20The%20Year%20the%20Outrage%20Machine%20Started%20Eating%20the%20Real%20World%3A&via=flavorwire&related=wordpressdotcom" style="width:101px; height:20px;"></iframe></div></li><li class="share-google-plus-1"><div class="googleplus1_button"><div class="g-plus" data-action="share" data-annotation="bubble" data-href="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world"></div></div></li><li class="share-pinterest"><div class="pinterest_button"><a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fflavorwire.com%2F495418%2F2014-the-year-the-outrage-machine-started-eating-the-real-world&description=2014%3A%20The%20Year%20the%20Outrage%20Machine%20Started%20Eating%20the%20Real%20World" data-pin-do="buttonBookmark" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a></div></li><li class="share-end"></li></ul></div></div></div> </div>
</div>
<div class="wpcom-related-posts" id="wpcom-related-posts-495418">
<h3>Related Posts</h3>
<ul>
<li>
<a href="http://flavorwire.com/485523/why-the-bill-cosby-rape-allegations-wont-go-away-this-time" title="Why the Bill Cosby Rape Allegations Won't Go Away This Time" onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', 'Why the Bill Cosby Rape Allegations Won\'t Go Away This Time' ]);">
<div data-picture data-alt="Why the Bill Cosby Rape Allegations Won't Go Away This Time">
<div data-src="https://flavorwire.files.wordpress.com/2014/09/cosby2.jpg?w=150"></div>
</div>
Why the Bill Cosby Rape Allegations Won’t Go Away This Time </a>
</li>
<li>
<a href="http://flavorwire.com/489681/the-cosby-show-is-too-important-to-erase-from-tv-history" title="'The Cosby Show' Is Too Important to Erase From TV History" onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', '\'The Cosby Show\' Is Too Important to Erase From TV History' ]);">
<div data-picture data-alt="'The Cosby Show' Is Too Important to Erase From TV History">
<div data-src="https://flavorwire.files.wordpress.com/2014/11/screen-shot-2014-11-20-at-12-37-51-pm.png?w=150"></div>
</div>
‘The Cosby Show’ Is Too Important to Erase From TV History </a>
</li>
<li>
<a href="http://flavorwire.com/20229/tribeca-review-intolerance-gets-outed-in-outrage" title="Tribeca Review: Intolerance Gets Outed in Kirby Dick's Outrage " onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', 'Tribeca Review: Intolerance Gets Outed in Kirby Dick\'s Outrage ' ]);">
<div data-picture data-alt="Tribeca Review: Intolerance Gets Outed in Kirby Dick's Outrage ">
<div data-src="https://flavorwire.files.wordpress.com/2009/05/outragewebposter.jpg?w=100"></div>
</div>
Tribeca Review: Intolerance Gets Outed in Kirby Dick’s Outrage </a>
</li>
</ul>
</div>
<nav id="nav-single">
<span class="nav-previous">Previous Post <a href="http://flavorwire.com/496181/old-favorites-flavorwire-staffers-revisited-in-2014" onclick="_gaq.push(['_trackEvent', 'Article', 'Previous Post Link', '2014: The Year the Outrage Machine Started Eating the Real World' ]);" rel="prev">Old Favorites Flavorwire Staffers Revisited in 2014</a></span>
<span class="nav-next">Next Post <a href="http://flavorwire.com/495973/spice-world-outfits-ranked" onclick="_gaq.push(['_trackEvent', 'Article', 'Next Post Link', '2014: The Year the Outrage Machine Started Eating the Real World' ]);" rel="next">‘Spice World’ Outfits, Ranked</a></span>
</nav><!-- #nav-single -->
<div id="comments"><script>
(function() {
var a=this;var b,c,d,e,f;function g(){return a.navigator?a.navigator.userAgent:null}f=e=d=c=b=!1;var h;if(h=g()){var i=a.navigator;b=0==h.indexOf("Opera");c=!b&&-1!=h.indexOf("MSIE");e=(d=!b&&-1!=h.indexOf("WebKit"))&&-1!=h.indexOf("Mobile");f=!b&&!d&&"Gecko"==i.product}var j=c,k=f,l=d,m=e;var n;if(b&&a.opera){var o=a.opera.version;"function"==typeof o&&o()}else k?n=/rv\:([^\);]+)(\)|;)/:j?n=/MSIE\s+([^\);]+)(\)|;)/:l&&(n=/WebKit\/(\S+)/),n&&n.exec(g());var p=document,q=p.createElement("link");q.rel="stylesheet";q.type="text/css";q.href="http://zor.fyre.co/wjs/v3.0/css/livefyre_"+(m?"mobile":"embed")+".css";q.media="all";p.getElementsByTagName("head")[0].appendChild(q);var r="header hgroup footer article section aside nav figure figcaption embed audio video canvas details summary time mark".split(" "),s=p.createDocumentFragment(),t;for(t=0; t<r.length; t++){s.appendChild(p.createElement(r[t]))};
})();
</script>
<div class="fyre fyre-width-large fyre-bootstrap">
<div class="fyre-widget">
<div class="fyre-stream-stats">
<div class="fyre-comment-count">
<span>4 comments</span>
</div>
<div class="fyre-divider"></div>
<div class="fyre-help">
<div class="fyre-box-wrapper">
<a href="http://livefyre.com" target="_blank"><span class="fyre-logo-drop"> </span>
<img class="fyre-logo-help" src="http://zor.fyre.co/wjs/v3.0/images/lf-logo.png" alt="Livefyre" /></a>
<ul class="fyre-box-list">
<li><a href="http://livefyre.com" target="_blank" title="Get Livefyre">Get
Livefyre</a></li>
<li><a href="http://support.livefyre.com" target="_blank" title=
"FAQ">FAQ</a></li>
</ul>
</div>
</div>
</div>
<div class="fyre-auth">
<div class="fyre-login-bar"><a rel="nofollow" href="#" class="fyre-user-loggedout">Sign in</a></div>
</div>
<div class="fyre-editor">
<div class="fyre-editor-container">
<div class="fyre-editor-editable" style="height: 100px;"></div>
<div class="fyre-editor-toolbar">
<div class="goog-toolbar goog-toolbar-horizontal" style=
"-webkit-user-select: none;" role="toolbar" aria-activedescendant="">
<div class="goog-inline-block fyre-button-left fyre-format-button" title=""
role="button" style="-webkit-user-select: none;" id=":0">
<div class="goog-inline-block fyre-button-left-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-left-inner-box" style=
"-webkit-user-select: none;"></div>
</div>
</div>
<div class="goog-inline-block fyre-button-left fyre-mention-button" title=""
role="button" style="-webkit-user-select: none;" id=":1">
<div class="goog-inline-block fyre-button-left-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-left-inner-box" style=
"-webkit-user-select: none;"></div>
</div>
</div>
<div class="goog-inline-block fyre-button-left fyre-follow-button" title=""
role="button" style="-webkit-user-select: none;" id=":2">
<div class="goog-inline-block fyre-button-left-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-left-inner-box" style=
"-webkit-user-select: none;">
+ Follow
</div>
</div>
</div>
<div class=
"goog-inline-block fyre-button-right fyre-post-button fyre-post-button-enabled"
title="" role="button" style="-webkit-user-select: none;" id=":3">
<div class="goog-inline-block fyre-button-right-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-right-inner-box" style=
"-webkit-user-select: none;">
Post comment
</div>
</div>
</div>
<div class=
"goog-inline-block fyre-button-right fyre-post-to fyre-post-to-facebook"
title="" role="button" style="-webkit-user-select: none;" id=":4">
<div class="goog-inline-block fyre-button-right-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-right-inner-box" style=
"-webkit-user-select: none;"></div>
</div>
</div>
<div class=
"goog-inline-block fyre-button-right fyre-post-to fyre-post-to-twitter"
title="" role="button" style="-webkit-user-select: none;" id=":5">
<div class="goog-inline-block fyre-button-right-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-right-inner-box" style=
"-webkit-user-select: none;"></div>
</div>
</div>
<div class=
"goog-inline-block fyre-button-right fyre-post-to fyre-post-to-linkedin"
title="" role="button" style="-webkit-user-select: none;" id=":7">
<div class="goog-inline-block fyre-button-right-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block fyre-button-right-inner-box" style=
"-webkit-user-select: none;"></div>
</div>
</div>
<div class="goog-toolbar-separator goog-inline-block" style=
"-webkit-user-select: none;" role="separator" id=":6">
</div>
</div>
<div class="fyre-format-toolbar" style="display: none;">
<div class="goog-toolbar goog-toolbar-horizontal" style=
"-webkit-user-select: none;" role="toolbar" tabindex="-1">
<div class="goog-inline-block goog-toolbar-button" title="Bold"
aria-pressed="true" role="button" style="-webkit-user-select: none;" id=
"+bold">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-icon tr-bold" style="-webkit-user-select: none;">
</div>
</div>
</div>
</div>
<div class="goog-inline-block goog-toolbar-button" title="Italic"
aria-pressed="true" role="button" style="-webkit-user-select: none;" id=
"+italic">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-icon tr-italic" style="-webkit-user-select: none;">
</div>
</div>
</div>
</div>
<div class="goog-inline-block goog-toolbar-button" title="Underline"
aria-pressed="true" role="button" style="-webkit-user-select: none;" id=
"+underline">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-icon tr-underline" style="-webkit-user-select: none;">
</div>
</div>
</div>
</div>
<div class="goog-inline-block goog-toolbar-button" title=
"Add or remove link" aria-pressed="true" role="button" style=
"-webkit-user-select: none;" id="+link">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-link" style="-webkit-user-select: none;">
Link
</div>
</div>
</div>
</div>
<div class="goog-inline-block goog-toolbar-button" title="Numbered list"
aria-pressed="true" role="button" style="-webkit-user-select: none;" id=
"+insertOrderedList">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-icon tr-insertOrderedList" style=
"-webkit-user-select: none;"></div>
</div>
</div>
</div>
<div class="goog-inline-block goog-toolbar-button" title="Bullet list"
aria-pressed="true" role="button" style="-webkit-user-select: none;" id=
"+insertUnorderedList">
<div class="goog-inline-block goog-toolbar-button-outer-box" style=
"-webkit-user-select: none;">
<div class="goog-inline-block goog-toolbar-button-inner-box" style=
"-webkit-user-select: none;">
<div class="tr-icon tr-insertUnorderedList" style=
"-webkit-user-select: none;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fyre-comment-stream" style="">
<div class="fyre-stream-sort">
<a class="fyre-stream-sort-newest">Newest</a> | <a class="fyre-stream-sort-oldest">Oldest</a>
</div>
<div class="fyre-stream-content">
<article class="fyre-comment-article">
<div class="fyre-comment-wrapper">
<div class="fyre-comment-user">
<a class="fyre-comment-author"><img src="https://secure.gravatar.com/avatar/ec446bf6fcb0cb12f0b388a581330337/?s=50&d=https://lfavatar-a.akamaihd.net/a/anon/50.jpg" class=
"fyre-user-avatar" alt="JenniferGentle94" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">JenniferGentle94</a>
<span class="fyre-comment-user-rating" style="display: none;">5pts</span>
<span class="fyre-comment-like" style="float: right;">
</span>
</header>
<section class="fyre-comment-body">
<div class="fyre-comment">
<p><p>extremely well-thought out, refreshing, and important article, thanks for sharing</p></p>
</div>
</section>
<footer class="fyre-comment-footer">
</footer>
</div>
<div class="fyre-comment-divider"><div class="fyre-comment-divider"></div></div>
<div class="fyre-comment-replies fyre-comment-container fyre-comment-replies-indent">
</div>
</article>
<article class="fyre-comment-article">
<div class="fyre-comment-wrapper">
<div class="fyre-comment-user">
<a class="fyre-comment-author"><img src="https://lfavatar-a.akamaihd.net/a/374/1d11cbdbfb35927fbe00e51f7763a15c/50.jpg?v=1419876692" class=
"fyre-user-avatar" alt="jacquelinecwire" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">jacquelinecwire</a>
<span class="fyre-comment-user-rating" style="display: none;">5pts</span>
<span class="fyre-comment-like" style="float: right;">
</span>
</header>
<section class="fyre-comment-body">
<div class="fyre-comment">
<p><p><span>Brooke . I just agree... Lawrence `s remark is nice, I just bought a gorgeous Land Rover Defender sincee geting a check for $8170 this-last/4 weeks and-also, $10 thousand lass-month . without a doubt it is my favourite-work Ive ever done . I started this 6 months ago and straight away was bringing in minimum $86, per hour . view it now</span><span>........</span></p><p>➜➜➜➜➜ www.netjob70.com </p></p>
</div>
</section>
<footer class="fyre-comment-footer">
</footer>
</div>
<div class="fyre-comment-divider"><div class="fyre-comment-divider"></div></div>
<div class="fyre-comment-replies fyre-comment-container fyre-comment-replies-indent">
</div>
</article>
<article class="fyre-comment-article">
<div class="fyre-comment-wrapper">
<div class="fyre-comment-user">
<a class="fyre-comment-author"><img src="https://secure.gravatar.com/avatar/a5a064af89d5399ffdd32af5bdc5b631/?s=50&d=https://lfavatar-a.akamaihd.net/a/anon/50.jpg" class=
"fyre-user-avatar" alt="Teodora" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">Teodora</a>
<span class="fyre-comment-user-rating" style="display: none;">5pts</span>
<span class="fyre-comment-like" style="float: right;">
</span>
</header>
<section class="fyre-comment-body">
<div class="fyre-comment">
<p><p>upto I looked at the receipt saying $9473 , I accept that my father in law had been realy taking home money in there spare time from there new laptop. . there neighbor has been doing this 4 less than and as of now repaid the mortgage on their home and bought themselves a Ford . </p><p><span><br/></span></p><p>www.time-review.com</p></p>
</div>
</section>
<footer class="fyre-comment-footer">
</footer>
</div>
<div class="fyre-comment-divider"><div class="fyre-comment-divider"></div></div>
<div class="fyre-comment-replies fyre-comment-container fyre-comment-replies-indent">
</div>
</article>
<article class="fyre-comment-article">
<div class="fyre-comment-wrapper">
<div class="fyre-comment-user">
<a class="fyre-comment-author"><img src="https://lfavatar-a.akamaihd.net/a/374/7cb9a812ae0164411b7d5b9e99f0180e/50.jpg?v=1419870556" class=
"fyre-user-avatar" alt="cynicalwank" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">cynicalwank</a>
<span class="fyre-comment-user-rating" style="display: none;">5pts</span>
<span class="fyre-comment-like" style="float: right;">
</span>
</header>
<section class="fyre-comment-body">
<div class="fyre-comment">
<p><p>The Justine Sacco thing... I think part of that story wasn't so much the perceived racism in her tweet, but the fact that she was a PR exec. This kind of stuff is explicitly HER JOB. You'd think that a PR exec, of all people, would take an extra minute after composing a tweet and say to herself: 'hmm, how are people going to read this?'.</p><p><br/></p><p>To me, 2014 is the year substandard 'journalism' websites used The Outrage Machine to exploit people's emotions with clickbait articles designed to either confirm bias or enrage the opposition, rather than any thoughtful objective analysis. In my opinion, nobody looked good in the wake of #gamergate, either the pro- or anti- side. I would have thought that journalists would have covered this issue soberly and dispassionately, which in fairness, some did. Many, however, fanned the flames for the sole purpose of generating clicks. It was disgusting.</p></p>
</div>
</section>
<footer class="fyre-comment-footer">
</footer>
</div>
<div class="fyre-comment-divider"><div class="fyre-comment-divider"></div></div>
<div class="fyre-comment-replies fyre-comment-container fyre-comment-replies-indent">
</div>
</article>
</div>
</div>
</div>
</div>
</div><!-- Livefyre Comments Version: 1.0--> <div id="powered_by_livefyre_new"><a href="http://livefyre.com" target="_blank">Powered by Livefyre</a></div>
</footer><!-- .entry-meta -->
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Flavorwire"></span>
<meta itemprop="url" content="http://flavorwire.com/495418/2014-the-year-the-outrage-machine-started-eating-the-real-world">
</article><!-- #post-495418 -->
</div><!-- #center -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push( ["_setCustomVar", 2, "author", "Tom Hawking", 3] );
_gaq.push( ["_setCustomVar", 3, "channel", "buzz", 3] );
_gaq.push( ["_setCustomVar", 4, "storytype", "uncategorized", 3] );
</script>
<script type='text/javascript'>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1064749-12']);
_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>
<div id="right" class="col">
<ul class="side-ads">
<li id="sidebar_ad_1" class="dfp_ad">
<div id="dfp_ad_2" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=300x250&t=pos%3D2&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=300x250&t=pos%3D2&c=1420285698" />
</a>
</noscript>
</div>
</li>
</ul>
<ul class="sidebar_tips">
<li>
<p>
Have a news tip, story idea,<br/>
or artwork to submit?<br/>
<a href="javascript:void(0);" onclick="javascript: window.location.href='mailto:tips@flavorwire.com';">tips@flavorwire.com</a>
</p>
</li>
</ul>
<ul id="most-recent" class="linkgroups">
<li><h2>Recent Features</h2></li>
<li class="clearfix">
<span>13h</span>
<p>
<a href="http://flavorwire.com/496901/and-were-back-to-back-to-the-future-part-ii-links-you-need-to-see" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'And We\'re Back to \'Back to the Future Part II\': Links You Need to See' ]);">And We're Back to 'Back to the Future Part II': Links You Need to See</a>
</p>
</li>
<li class="clearfix">
<span>14h</span>
<p>
<a href="http://flavorwire.com/496850/madonna-can-you-not" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'Madonna, Can You Not?' ]);">Madonna, Can You Not?</a>
</p>
</li>
<li class="clearfix">
<span>15h</span>
<p>
<a href="http://flavorwire.com/496794/what-to-watch-on-tv-january-4-january-10" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'What To Watch on TV: January 4-January 10' ]);">What To Watch on TV: January 4-January 10</a>
</p>
</li>
<li class="clearfix">
<span>15h</span>
<p>
<a href="http://flavorwire.com/496791/after-trans-teen-leelah-alcorns-suicide-we-all-must-do-better" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'After Trans Teen Leelah Alcorn\'s Suicide, We All Must Do Better' ]);">After Trans Teen Leelah Alcorn's Suicide, We All Must Do Better</a>
</p>
</li>
<li class="clearfix">
<span>17h</span>
<p>
<a href="http://flavorwire.com/496804/flavorwires-guide-to-indie-flicks-to-see-in-january-2" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'Flavorwire’s Guide to Indie Flicks to See in January' ]);">Flavorwire’s Guide to Indie Flicks to See in January</a>
</p>
</li>
<li class="clearfix">
<span>17h</span>
<p>
<a href="http://flavorwire.com/496734/the-confident-selfie-finale-sets-up-a-promising-future-that-well-never-see" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'The Confident \'Selfie\' Finale Sets Up A Promising Future That We\'ll Never See' ]);">The Confident 'Selfie' Finale Sets Up A Promising Future That We'll Never See</a>
</p>
</li>
<li class="clearfix">
<span>18h</span>
<p>
<a href="http://flavorwire.com/496742/ten-unique-and-funky-literary-magazines-to-check-out-in-2015" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'Ten Unique and Funky Literary Magazines To Check Out in 2015' ]);">Ten Unique and Funky Literary Magazines To Check Out in 2015</a>
</p>
</li>
<li class="clearfix">
<span>19h</span>
<p>
<a href="http://flavorwire.com/496735/men-of-honor-vampires-audiobooks-and-gilmore-girls-highlights-from-edward-herrmanns-career" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'Men of Honor, Vampires, Audiobooks, and \'Gilmore Girls\': Highlights From Edward Herrmann\'s Career' ]);">Men of Honor, Vampires, Audiobooks, and 'Gilmore Girls': Highlights From Edward Herrmann's Career</a>
</p>
</li>
<li class="clearfix">
<span>20h</span>
<p>
<a href="http://flavorwire.com/496739/the-5-best-songs-we-heard-this-week-kanye-inspired-my-first-cry-of-2015" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'The 5 Best Songs We Heard This Week: Kanye Inspired My First Cry of 2015' ]);">The 5 Best Songs We Heard This Week: Kanye Inspired My First Cry of 2015</a>
</p>
</li>
<li class="clearfix">
<span>20h</span>
<p>
<a href="http://flavorwire.com/496749/subtly-beautiful-animated-cinemagraphs-of-the-world-around-us" onclick="_gaq.push(['_trackEvent', 'Article', 'Recent Features', 'Subtly Beautiful Animated "Cinemagraphs" of the World Around Us' ]);">Subtly Beautiful Animated "Cinemagraphs" of the World Around Us</a>
</p>
</li> </ul>
<ul class="side-ads">
<li id="sidebar_ad_3" class="dfp_ad">
<div id="dfp_ad_3" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=300x200&t=pos%3D3&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=300x200&t=pos%3D3&c=1420285698" />
</a>
</noscript>
</div>
</li>
</ul>
<ul id="popular-posts" class="linkgroups">
<li>
<h2>Popular Posts</h2>
<a class="view-all" href="http://flavorwire.com/popular" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular', 'View All' ]);">View All Posts</a>
</li>
<li class="clearfix"><span>22h</span><p><a href="http://flavorwire.com/496630/the-best-of-literary-criticism-in-2014" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular Posts', 'The Best of Literary Criticism in 2014' ]);"><img src="https://flavorwire.files.wordpress.com/2014/12/prelue.jpg?w=200&h=145&crop=1" alt="The Best of Literary Criticism in 2014"/>The Best of Literary Criticism in 2014</a></p></li><li class="clearfix"><span>3d</span><p><a href="http://flavorwire.com/496591/the-10-best-films-and-tv-shows-about-disappearance" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular Posts', 'The 10 Best Films and TV Shows About Disappearance' ]);"><img src="https://flavorwire.files.wordpress.com/2014/12/top-of-the-lake-1.jpg?w=200&h=145&crop=1" alt="The 10 Best Films and TV Shows About Disappearance"/>The 10 Best Films and TV Shows About Disappearance</a></p></li><li class="clearfix"><span>3d</span><p><a href="http://flavorwire.com/496570/2014-the-death-of-the-postmodern-novel-and-the-rise-of-autofiction" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular Posts', '2014: The Death of the Postmodern Novel and the Rise of Autofiction' ]);"><img src="https://flavorwire.files.wordpress.com/2014/12/koonz.jpg?w=200&h=145&crop=1" alt="2014: The Death of the Postmodern Novel and the Rise of Autofiction"/>2014: The Death of the Postmodern Novel and the Rise of Autofiction</a></p></li><li class="clearfix"><span>4d</span><p><a href="http://flavorwire.com/496515/flavorwires-guide-to-expiring-movies-to-stream-this-new-years-eve" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular Posts', 'Flavorwire\'s Guide to (Expiring) Movies to Stream This New Year\'s Eve' ]);"><img src="https://flavorwire.files.wordpress.com/2014/12/spaceballs.jpg?w=200&h=145&crop=1" alt="Flavorwire's Guide to (Expiring) Movies to Stream This New Year's Eve"/>Flavorwire's Guide to (Expiring) Movies to Stream This New Year's Eve</a></p></li><li class="clearfix"><span>4d</span><p><a href="http://flavorwire.com/496517/book-publishing-predictions-for-2015" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular Posts', 'Book Publishing Predictions for 2015' ]);"><img src="https://flavorwire.files.wordpress.com/2014/12/rebels.jpg?w=200&h=145&crop=1" alt="Book Publishing Predictions for 2015"/>Book Publishing Predictions for 2015</a></p></li> <li>
<a class="view-all" href="http://flavorwire.com/popular" onclick="_gaq.push(['_trackEvent', 'Article', 'Popular', 'View All' ]);">View All Posts</a>
</li>
</ul>
<ul class="side-ads">
<li id="sidebar_ad_2" class="dfp_ad">
<div id="dfp_ad_4" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=300x600|300x250|160x600|300x1050&t=pos%3D4&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=300x600|300x250|160x600|300x1050&t=pos%3D4&c=1420285698" />
</a>
</noscript>
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="footer_ad_wrapper">
<div id="footer_ad" class="dfp_ad">
<div id="dfp_ad_7" class="dfp_ad_inner">
<noscript>
<a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/8312964/web_flavorwire/pop_culture&sz=728x90&t=pos%3D7&c=1420285698">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/pop_culture&sz=728x90&t=pos%3D7&c=1420285698" />
</a>
</noscript>
</div>
</div>
</div>
<footer id="footer-main">
<div id="footer-inner" class="clearfix">
<div class="left_box">
<a href="/" class="f-icon" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'F-Icon' ]);">F</a>
<div class="link_boxes">
<div class="first">
<p>Got a tip?<br/><a onclick="javascript: window.top.location = 'mailto: tips@flavorwire.com';" href="javascript:void(0);">Let us know!</a></p>
</div>
<div>
<p class="small">Send us <a href="javascript:void(0);" onclick="FBY.showForm('1547');return false;">site feedback</a></p>
</div>
</div>
</div>
<div id="footer-menu">
<div class="inner">
<h3 class="logo">Flavorwire</h3>
<h4>Covering the best in cultural news and commentary</h4>
<p class="list">
<a href="http://flavorwire.com/category/visual-arts">Art</a>,
<a href="http://flavorwire.com/category/books">Books</a>,
<a href="http://flavorwire.com/category/visual-arts/photography-visual-arts">Photography</a>,
<a href="http://flavorwire.com/category/film">Film</a>,
<a href="http://flavorwire.com/category/design">Design</a>,
<a href="http://flavorwire.com/category/television">Television</a>,
<a href="http://flavorwire.com/category/web">Web</a>,
<a href="http://flavorwire.com/category/media-music">Media</a>,
<a href="http://flavorwire.com/category/theatre">Theatre</a>,
<a href="http://flavorwire.com/category/design/fashion-design">Fashion</a>,
<a href="http://flavorwire.com/category/music">Music</a>,
<a href="http://flavorwire.com/category/celebrity">Celebrity</a>,
<a href="http://flavorwire.com/category/pop-culture-2">Pop Culture</a>
</p>
<ul>
<li><a href="/about/" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'About' ]);">About</a></li>
<li><a href="http://www.formstack.com/forms/?1351569-TSodE7Umrw" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'Advertise' ]);">Advertise</a></li>
<li class="last"><a href="http://jobs.flavorpill.com/" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'Jobs' ]);">Jobs</a></li>
</ul>
</div>
</div>
<div class="right_box">
<p class="info">Get the daily Flavorwire email</p>
<div class="mailing-list-form-wrapper" id="footer-mailing-list-form">
<form class="mailing-list-form" method="post" action="http://link.flavorpill.com/join/flavorwire-signup" target="_blank" onSubmit="_gaq.push(['_trackEvent', 'Article', 'Footer_Sign Up', 'Submit' ]);">
<div class="mailing-list-input-wrapper">
<input type="text" name="fp_email" id="email" placeholder="Email" onBlur="_gaq.push(['_trackEvent', 'Article', 'Footer_Sign Up', 'Enter Email' ]);"/>
<a href="#" id="footer-mailing-list-submit">Send</a>
</div>
</form>
</div>
<ul id="footer-social">
<li id="facebook"><a href="http://www.facebook.com/flavorwire" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer_Social Follows', 'Facebook' ]);">Facebook</a></li>
<li id="twitter"><a href="http://www.twitter.com/flavorwire" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer_Social Follows', 'Twitter' ]);">Twitter</a></li>
<li id="thumblr"><a href="http://flavorpill.tumblr.com" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer_Social Follows', 'Thumblr' ]);">Thumblr</a></li>
<li id="pinterest"><a href="http://www.pinterest.com/Flavorwire/" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer_Social Follows', 'Pinterest' ]);">Pinterest</a></li>
<li id="rss" class="last"><a href="http://feeds.feedburner.com/flavorwire-rss" onclick="_gaq.push(['_trackEvent', 'Article', 'Footer_Social Follows', 'RSS' ]);">RSS</a></li>
</ul>
</div>
</div>
<div class="footer_bottom">
<div class="content">
<div class="left_box">
<p>© 2014 Flavorpill Media</p>
</div>
<div class="center_box">
<p>For cultural events, visit <a href="http://www.flavorpill.com" class="flavorpill_link" target="_blank">Flavorpill</a></p>
</div>
<div class="right_box">
<ul>
<li><a href="http://flavorwire.com/flavorwire-terms"onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'Terms of Use' ]);">Terms</a></li>
<li class="last"><a href="http://flavorwire.com/flavorwire-privacy-policy"onclick="_gaq.push(['_trackEvent', 'Article', 'Footer', 'Privacy Policy' ]);">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
<div id="vip-credit"><a href="http://vip.wordpress.com/" rel="generator nofollow" class="powered-by-wpcom"><img src="https://s1.wp.com/wp-content/themes/vip/plugins/vip-do-not-include-on-wpcom/vip-powered-wpcom/images/vip-powered-dark-small.png" width="187" height="26" alt="Powered by WordPress.com VIP" /></a></div>
</footer>
<noscript>
<img src="http://pixel.quantserve.com/pixel/p-276i6dB89xiaA.gif" alt="Quantcast" style="border:0;height:1px;width:1px;"/>
</noscript>
<script type="text/javascript">
document.write('<script src="' + document.location.protocol + '//fby.s3.amazonaws.com/fby.js"><' + '/script>');
</script>
<!-- Begin comScore Tag -->
<script>
var _comscore = _comscore || [];