forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflavorwire.com1.html
More file actions
1276 lines (1115 loc) · 85.9 KB
/
Copy pathflavorwire.com1.html
File metadata and controls
1276 lines (1115 loc) · 85.9 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>From The Interview to Iggy Azalea, 2014’s Worst Cultural Moments – Flavorwire</title>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="description" content="Presenting; a mix of the morally execrable and the culturally annoying moments in 2014 that we sort wish had never happened, to be honest, although we dutifully thought and wrote about them (and to be even more honest, these ten moments are merely the tip-top of the Christmas tree of head-smacking m..." /><meta name="news_keywords" content="jennifer lawrence, lena dunham, ariel pink, iggy azalea, health goth, donald sterling, the interview, seth rogetn, normcore, rude by magic" />
<meta name="keywords" content="celebrity, media, music, zzz-mailer-ready-feature, ariel pink, health goth, lena duham, renee zellweger, rude" />
<meta name="p:domain_verify" content="d14fb4bfdccbc45ec9b9cf467123426d" />
<script src='//r-login.wordpress.com/remote-login.php?action=js&host=flavorwire.com&id=43719139&t=1420285697&back=http%3A%2F%2Fflavorwire.com%2F495982%2F13-media-moments-from-2014-we-could-have-lived-without' 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 » 13 Media Moments from 2014 We Could Have Lived Without Comments Feed" href="http://flavorwire.com/495982/13-media-moments-from-2014-we-could-have-lived-without/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='The 5 Best Songs We Heard This Week: Madonna’s ‘Rebel Heart’ Highlights, Jodeci’s Domestic Violence Single' href='http://flavorwire.com/495983/the-5-best-songs-we-heard-this-week-madonnas-rebel-heart-highlights-jodecis-domestic-violence-song' />
<link rel='next' title='Spirited Photos of Authors Getting Boozy' href='http://flavorwire.com/496017/spirited-photos-of-authors-getting-boozy' />
<meta name="generator" content="WordPress.com" />
<link rel='canonical' href='http://flavorwire.com/495982/13-media-moments-from-2014-we-could-have-lived-without' />
<link rel='shortlink' href='http://wp.me/p2Xrlp-251I' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2Fflavorwire.com%2F495982%2F13-media-moments-from-2014-we-could-have-lived-without&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%2F495982%2F13-media-moments-from-2014-we-could-have-lived-without&for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="13 Media Moments from 2014 We Could Have Lived Without" />
<meta property="og:url" content="http://flavorwire.com/495982/13-media-moments-from-2014-we-could-have-lived-without" />
<meta property="og:description" content="Presenting; a mix of the morally execrable and the culturally annoying moments in 2014 that we sort wish had never happened, to be honest, although we dutifully thought and wrote about them (and to..." />
<meta property="article:published_time" content="2014-12-26T19:15:22+00:00" />
<meta property="article:modified_time" content="2014-12-26T20:16:46+00:00" />
<meta property="article:author" content="http://flavorwire.com/author/sarah-seltzer" />
<meta property="og:site_name" content="Flavorwire" />
<meta property="og:image" content="https://flavorwire.files.wordpress.com/2014/12/theinterview.jpg?w=1200" />
<meta name="twitter:site" content="@flavorwire" />
<meta name="twitter:image:src" content="https://flavorwire.files.wordpress.com/2014/12/theinterview.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":"13 Media Moments from 2014 We Could Have Lived Without","link":"http:\/\/flavorwire.com\/495982\/13-media-moments-from-2014-we-could-have-lived-without","image_url":"https:\/\/flavorwire.files.wordpress.com\/2014\/12\/theinterview.jpg?w=150","type":"post","post_id":"495982","pub_date":"2014-12-26T19:15:22Z","section":"Celebrity","author":"Sarah Seltzer","tags":["ariel pink","health goth","lena duham","renee zellweger","rude"]}' />
<script type="text/javascript" src="http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js"></script><meta name="date" content="2014-12-26 14:15:22" />
<meta name="keywords" content="ariel-pink,health-goth,lena-duham,renee-zellweger,rude" />
<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/media&sz=2100x1100&t=pos%3D8&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=2100x1100&t=pos%3D8&c=1420285697" />
</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/media&sz=728x90|970x66&t=pos%3D1&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=728x90|970x66&t=pos%3D1&c=1420285697" />
</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/media&sz=1x1&t=pos%3D17&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=1x1&t=pos%3D17&c=1420285697" />
</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/media&sz=1x1&t=pos%3D18&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=1x1&t=pos%3D18&c=1420285697" />
</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/media&sz=320x50&t=pos%3D16&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=320x50&t=pos%3D16&c=1420285697" />
</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/media&sz=1000x250&t=pos%3D19&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=1000x250&t=pos%3D19&c=1420285697" />
</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 current-post-ancestor current-menu-parent current-post-parent 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 current-post-ancestor current-menu-parent current-post-parent 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 current-post-ancestor current-menu-parent current-post-parent 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 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 current-post-ancestor current-menu-parent current-post-parent 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-495982" class="post-495982 post type-post status-publish format-standard has-post-thumbnail hentry category-celebrity category-media-music category-music category-zzz-mailer-ready-feature tag-ariel-pink tag-health-goth tag-lena-duham tag-renee-zellweger tag-rude post-single">
<header class="entry-header">
<a href="#comments" class="single-comment-count" onclick="_gaq.push(['_trackEvent', 'Article', 'Jump to Comments', '13 Media Moments from 2014 We Could Have Lived Without' ]);">
<span class="livefyre-commentcount" data-lf-site-id="351496" data-lf-article-id="495982">0</span><i class="arrow"></i></a>
<p class="post-category"><a href="http://flavorwire.com/category/media-music" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Category', 'Media' ]);">Media</a></p> <h2 itemprop="name" class="entry-title">13 Media Moments from 2014 We Could Have Lived Without </h2>
<div class="entry-meta">
By <span class="by-author"><a class="url fn n" href="http://flavorwire.com/author/sarah-seltzer" title="View All Posts by Sarah Seltzer" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Author', 'Sarah Seltzer' ]);">
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">
Sarah Seltzer
</span>
</span>
</a></span> on <time class="entry-date" datetime="2014-12-26T14:15:22+00:00" pubdate="pubdate">Dec 26, 2014 2:15pm</time><meta itemprop="datePublished" content="2014-12-26"> </div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div id="main_content_block">
<a name="content_top" id="content_top"></a>
<img class="alignleft" src="https://flavorwire.files.wordpress.com/2014/03/lenadunham.png" title="13 Media Moments from 2014 We Could Have Lived Without" />
<div class="entry-content">
<meta itemprop="articleBody" content="Presenting; a mix of the morally execrable and the culturally annoying moments in 2014 that we sort wish had never happened, to be honest, although">
<p>Presenting; a mix of the morally execrable and the culturally annoying moments in 2014 that we sort wish had never happened, to be honest, although we dutifully thought and wrote about them (and to be even more honest, these ten moments are merely the tip-top of the Christmas tree of head-smacking moments from 2014.)</p>
<p>Adieu, 2014!</p>
<p><span id="more-495982"></span></p>
<p>1. <strong>Celebrity <a title="Celebrity Nudes: At Least We’re Finally Blaming the Hackers, Not Their Victims" href="http://flavorwire.com/475258/celebrity-nudes-at-least-were-finally-blaming-the-hackers-not-their-victims" target="_blank">nude photo leaks</a>.</strong> It was a bummer when actresses were targeted by hackers who released their nude photos. And when everyone slut-shamed them as a result. Sidenote: <a title="Yes, Those Pictures of Renée Zellweger Are Disturbing. But Why?" href="http://flavorwire.com/483856/yes-those-pictures-of-renee-zellweger-are-disturbing-but-why">same went for celebrity plastic surgery gawking.</a></p>
<p>2. <strong>Donald <a href="http://blogs.forward.com/sisterhood-blog/197453/in-donald-sterling-drama-its-all-about-power/" target="_blank">Sterling-gate</a>. </strong>One of many examples of 2014 scandals that made us aware of how awfully racist people in power were, but this one was just the most epically depressing on a human level.</p>
<p>3. <strong><em>The Newsroom</em>‘s Campus Rape Plotline</strong> and Aaron’s Sorkin’s response. <a title="Aaron Sorkin’s Response to Criticisms of That ‘Newsroom’ Episode Perfectly Illustrates What’s Wrong With That ‘Newsroom’ Episode" href="http://flavorwire.com/492986/aaron-sorkins-response-to-criticisms-of-that-newsroom-episode-perfectly-illustrates-whats-wrong-with-that-newsroom-episode" target="_blank">Just no, Aaron Sorkin</a>.</p>
<p>4. <strong><em>The Interview</em> hacking brouhaha.</strong> Censorship is terrible and free speech is important, but <a title="See ‘The Interview,’ Or Don’t — Neither Option Makes You a Hero" href="http://flavorwire.com/495967/see-the-interview-or-dont-neither-option-makes-you-a-hero" target="_blank">why did we have to this discussion about a sub-par Rogen-Franco joint?</a></p>
<p>5.<strong> Igloo Australia’s Twitter racism. </strong>While pop star feuds, beefs, and rivalries are usually enjoyable and beneficial for everyone involved (I kid), <a title="Azealia Banks Is Right About Iggy Azalea and, More Importantly, Race in America" href="http://flavorwire.com/495045/azealia-banks-is-right-about-iggy-azalea-and-more-importantly-race-in-america" target="_blank">Iggy Azalea’s ignorance on matters of race only reinforced her clueless pop persona.</a></p>
<p>6. <strong>Camille Cosby’s <a title="Camille Cosby Tries to Play the “False Accusation” Card" href="http://flavorwire.com/newswire/camille-cosby-tries-to-play-the-false-accusation-card" target="_blank">statement</a> and Woody Allen’s <a title="Woody Allen’s Rambling Response Illuminates Nothing, Inspires Only Exhaustion" href="http://flavorwire.com/437923/woody-allens-rambling-response-illuminates-nothing-inspires-only-exhaustion" target="_blank">letter to the <em>New York Times</em></a><em>.</em></strong> Alleged sexual predators and their wives: given a platform for victim-blaming since the beginning of modern media.</p>
<p>7.<strong> “Rude.</strong>” You are genuinely terrible, “Rude,” we declared this year. Also, you are still stuck in our heads and will inevitably be heard on New Year’s Eve.</p>
<p>8. <strong>Literary genre wars that weren’t.</strong> Did we really have to spend another year <a title="Are You an Adult Who Reads YA Novels? Congratulations, You Saved Publishing in 2014" href="http://flavorwire.com/494377/are-you-an-adult-who-reads-ya-novels-congratulations-you-saved-publishing-in-2014" target="_blank">scolding each other for our reading choices</a>? Even scolding the <a title="Please, Let’s Not Extend the Literary Genre Wars to Kids’ Books" href="http://flavorwire.com/484566/please-lets-not-extend-the-literary-genre-wars-to-kids-books" target="_blank">littlest readers</a>?</p>
<p>9. <strong><a title="Lena Dunham’s Triggering Art Doesn’t Make Her an Abuser, No Matter What Some Transphobic Bigot Insists" href="http://flavorwire.com/486328/lena-dunhams-triggering-art-doesnt-make-her-an-abuser-no-matter-what-some-transphobic-bigot-insists" target="_blank">Accusing Lena Dunham of a crime</a> for her writing about of her sister on the left and right and <a title="Lena Dunham’s BuzzFeed Op-Ed Illuminates the Difficulties of Telling Rape Stories" href="http://flavorwire.com/493174/lena-dunhams-buzzfeed-op-ed-illuminates-the-difficulties-of-telling-rape-stories" target="_blank">trying to discredit her own sexual assault story</a> on the right.</strong> Rape culture is serious, and the freedom some (white) artists have to be messy while other artists are constrained by social prejudice informs a lot of the understandable ire directed at Dunham. But none of those factors, nor anything Dunham has written, indicated she had committed a crime, nor that the assault she wrote about herself hadn’t taken place — and watching feminists and right-wingers join in on this one broke our hearts a little bit.</p>
<p>10. <strong><a title="10 Other Stupid Non-Fashion Trends Inspired by Normcore" href="http://flavorwire.com/442553/10-other-stupid-non-fashion-trends-inspired-by-normcore" target="_blank">Normcore</a>, <a title="Vox Explains the “New” Insult “Basic” — For Those Who Have Consumed Zero Pop Culture Over the Past Three Years" href="http://flavorwire.com/newswire/vox-explains-the-new-insult-basic-for-those-who-have-consumed-zero-pop-culture-over-the-past-three-years" target="_blank">Basic</a>, and <a title="If Health Goth Is a Joke, a ‘New York Times’ Trend Piece Is Its Punchline" href="http://flavorwire.com/493581/if-health-goth-is-a-joke-a-new-york-times-trend-piece-is-its-punchline" target="_blank">Health Goth</a>.</strong> Stop trying to make fetch happen, bogus trend-pieces.</p>
<p>11. <strong>Ariel Pink.</strong> <a href="http://flavorwire.com/490560/bad-feminist-a-conversation-with-ariel-pink" target="_blank">Was his misogyny a joke? A nasty slice of his real personality? Trolling</a> because he realized he got more attention for being a jerk than for his music? To be real, much of this whole conversation was unnecessary.</p>
<p>12. <strong>This godawful, <a title="The Christmas Version of “Hallelujah” is a Travesty" href="http://flavorwire.com/newswire/the-christmas-version-of-hallelujah-is-a-travesty" target="_blank">treacle-coated cover of Leonard Cohen’s “Hallelujah”.</a></strong></p>
<p>13. <a href="http://www.salon.com/2014/08/22/4_worst_right_wing_reactions_to_michael_browns_killing_and_the_ferguson_protests_partner/" target="_blank"><strong>The disrespectful, racist right wing media circus around Ferguson and the death of Michael Brown</strong>. </a></p>
<p><strong>Bonus</strong>: Sarah Palin’s Christmas Pie-baking instruction and garbled speech <a href="http://www.rawstory.com/rs/2014/12/underdressed-sarah-palin-shares-tips-for-keeping-christ-in-christmas-which-include-buying-her-book/" target="_blank">special</a> that’s eerily reminiscent of SNL’s “Martha Stewart’s Topless Christmas.” Just kidding, <em>we’re so glad this happened! </em>Never leave us, ex-governor Palin.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='315' src='http://www.youtube.com/embed/G83gI7qjWug?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent' frameborder='0' allowfullscreen='true'></iframe></span>
</div><!-- .entry-content -->
</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/ariel-pink" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'Ariel Pink' ]);">Ariel Pink</a><a href="http://flavorwire.com/tag/lena-duham" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'Lena Duham' ]);">Lena Duham</a><a href="http://flavorwire.com/tag/renee-zellweger" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'Renee Zellweger' ]);">Renee Zellweger</a><a href="http://flavorwire.com/tag/health-goth" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'health goth' ]);">health goth</a><a href="http://flavorwire.com/tag/rude" onclick="_gaq.push(['_trackEvent', 'Article', 'Post Tag', 'rude' ]);">rude</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/495982/13-media-moments-from-2014-we-could-have-lived-without" 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-251I&counturl=http%3A%2F%2Fflavorwire.com%2F495982%2F13-media-moments-from-2014-we-could-have-lived-without&count=horizontal&text=13%20Media%20Moments%20from%202014%20We%20Could%20Have%20Lived%20Without%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/495982/13-media-moments-from-2014-we-could-have-lived-without"></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%2F495982%2F13-media-moments-from-2014-we-could-have-lived-without&description=13%20Media%20Moments%20from%202014%20We%20Could%20Have%20Lived%20Without" 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-495982">
<h3>Related Posts</h3>
<ul>
<li>
<a href="http://flavorwire.com/466226/for-flavorwire-the-future-of-celebrity-op-eds-is-a-love-story" title="For Flavorwire, the Future of Celebrity Op-Eds Is a Love Story" onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', 'For Flavorwire, the Future of Celebrity Op-Eds Is a Love Story' ]);">
<div data-picture data-alt="For Flavorwire, the Future of Celebrity Op-Eds Is a Love Story">
<div data-src="https://flavorwire.files.wordpress.com/2014/07/taylor-swift-writing.jpg?w=150"></div>
</div>
For Flavorwire, the Future of Celebrity Op-Eds Is a Love Story </a>
</li>
<li>
<a href="http://flavorwire.com/475258/celebrity-nudes-at-least-were-finally-blaming-the-hackers-not-their-victims" title="Celebrity Nudes: At Least We're Finally Blaming the Hackers, Not Their Victims" onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', 'Celebrity Nudes: At Least We\'re Finally Blaming the Hackers, Not Their Victims' ]);">
<div data-picture data-alt="Celebrity Nudes: At Least We're Finally Blaming the Hackers, Not Their Victims">
<div data-src="https://flavorwire.files.wordpress.com/2014/09/jennifer-lawrence1.jpg?w=150"></div>
</div>
Celebrity Nudes: At Least We’re Finally Blaming the Hackers, Not Their Victims </a>
</li>
<li>
<a href="http://flavorwire.com/460491/rihannas-sheer-cfda-dress-is-a-brilliant-instagram-prank-and-an-empowering-statement" title="Rihanna's Sheer CFDA Dress Is a Brilliant Instagram Prank -- and an Empowering Statement" onclick="_gaq.push(['_trackEvent', 'Article', 'Related Post Link', 'Rihanna\'s Sheer CFDA Dress Is a Brilliant Instagram Prank -- and an Empowering Statement' ]);">
<div data-picture data-alt="Rihanna's Sheer CFDA Dress Is a Brilliant Instagram Prank -- and an Empowering Statement">
<div data-src="https://flavorwire.files.wordpress.com/2014/06/rihanna.jpg?w=150"></div>
</div>
Rihanna’s Sheer CFDA Dress Is a Brilliant Instagram Prank — and an Empowering Statement </a>
</li>
</ul>
</div>
<nav id="nav-single">
<span class="nav-previous">Previous Post <a href="http://flavorwire.com/495983/the-5-best-songs-we-heard-this-week-madonnas-rebel-heart-highlights-jodecis-domestic-violence-song" onclick="_gaq.push(['_trackEvent', 'Article', 'Previous Post Link', '13 Media Moments from 2014 We Could Have Lived Without' ]);" rel="prev">The 5 Best Songs We Heard This Week: Madonna’s ‘Rebel Heart’ Highlights, Jodeci’s Domestic Violence Single</a></span>
<span class="nav-next">Next Post <a href="http://flavorwire.com/496017/spirited-photos-of-authors-getting-boozy" onclick="_gaq.push(['_trackEvent', 'Article', 'Next Post Link', '13 Media Moments from 2014 We Could Have Lived Without' ]);" rel="next">Spirited Photos of Authors Getting Boozy</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>2 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://lfavatar-a.akamaihd.net/a/374/986d448054dbbe08409246ef14d49c32/50.jpg?v=1419789159" class=
"fyre-user-avatar" alt="helenkdeleon" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">helenkdeleon</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>just before I looked at the draft which had said $6361 , I didn't believe ...that...my neighbour realey receiving money part time on-line. . there neighbour had bean doing this for under 22 months and a short time ago cleard the mortgage on there apartment and bought a great new Chevrolet . look at this 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://lfavatar-a.akamaihd.net/a/374/bebac77472cad5280905f531245167ff/50.jpg?v=1419754659" class=
"fyre-user-avatar" alt="HiddnApp" /></a>
<div class="fyre-comment-socialsync fyre-comment-from-livefyre"></div>
</div>
<header class="fyre-comment-head">
<a class="fyre-comment-username">HiddnApp</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>We totally agree that we could have lived without the celebrity nude photo leaks! The Fappening was an awful phenomenon. That's exactly why we created <span>Hiddn, an app that will protect our photos from being stolen and used against our will on the web. It instantly encrypts the photos from the very first moment you take them and doesn't sync them to iCloud, keeping them locally. Here's the app, if you're interested: </span><a href="http://bit.ly/hiddnapp" target="_blank" rel="nofollow">bit.ly/hiddnapp</a><span>.</span></p><p><span><br/></span></p><p><span>We really hope that 2015 won't be similar to this year regarding the online privacy...</span></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/495982/13-media-moments-from-2014-we-could-have-lived-without">
</article><!-- #post-495982 -->
</div><!-- #center -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push( ["_setCustomVar", 2, "author", "Sarah Seltzer", 3] );
_gaq.push( ["_setCustomVar", 3, "channel", "Celebrity", 3] );
_gaq.push( ["_setCustomVar", 4, "storytype", "List", 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/media&sz=300x250&t=pos%3D2&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=300x250&t=pos%3D2&c=1420285697" />
</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/media&sz=300x200&t=pos%3D3&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=300x200&t=pos%3D3&c=1420285697" />
</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/media&sz=300x600|300x250|160x600|300x1050&t=pos%3D4&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=300x600|300x250|160x600|300x1050&t=pos%3D4&c=1420285697" />
</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/media&sz=728x90&t=pos%3D7&c=1420285697">
<img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/8312964/web_flavorwire/media&sz=728x90&t=pos%3D7&c=1420285697" />
</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 || [];
_comscore.push({ c1: "2", c2: "9770404" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=9770404&cv=2.0&cj=1" />
</noscript>
<!-- End comScore Tag -->
<script type="text/javascript">
var vglnk = { api_url: '//api.viglink.com/api',
key: '5df63f359fa6d430809be301eb024d2a' };
(function(d, t) {
var s = d.createElement(t); s.type = 'text/javascript'; s.async = true;
s.src = ('https:' == document.location.protocol ? vglnk.api_url :
'//cdn.viglink.com/api') + '/vglnk.js';
var r = d.getElementsByTagName(t)[0]; r.parentNode.insertBefore(s, r);
}(document, 'script'));
</script>
<!-- Begin social button ga tracking -->
<script type="text/javascript">
/**
* Tracks Facebook likes, unlikes and sends by suscribing to the Facebook
* JSAPI event model. Note: This will not track facebook buttons using the
* iframe method.
* @param {string} opt_pagePath An optional URL to associate the social
* tracking with a particular page.
*/
_ga.trackFacebook = function(opt_pagePath) {
try {
if (FB && FB.Event && FB.Event.subscribe) {
FB.Event.subscribe('edge.create', function(opt_target) {
_gaq.push(_ga.getSocialActionTrackers_('facebook', 'like', opt_target, opt_pagePath));
_gaq.push(['_trackEvent', 'Article', 'Social Sharing', '13 Media Moments from 2014 We Could Have Lived Without']);
});
FB.Event.subscribe('edge.remove', function(opt_target) {
_gaq.push(_ga.getSocialActionTrackers_('facebook', 'unlike', opt_target, opt_pagePath));
_gaq.push(['_trackEvent', 'Article', 'Social Sharing', '13 Media Moments from 2014 We Could Have Lived Without']);
});
FB.Event.subscribe('message.send', function(opt_target) {
_gaq.push(_ga.getSocialActionTrackers_('facebook', 'send', opt_target, opt_pagePath));
_gaq.push(['_trackEvent', 'Article', 'Social Sharing', '13 Media Moments from 2014 We Could Have Lived Without']);
});
FB.Event.subscribe('comment.create', function(targetUrl) {
_gaq.push(['_trackSocial', 'facebook', 'comment', targetUrl]);
_gaq.push(['_trackEvent', 'Article', 'Comment', '13 Media Moments from 2014 We Could Have Lived Without']);
});
FB.Event.subscribe('comment.remove', function(targetUrl) {
_gaq.push(['_trackSocial', 'facebook', 'uncomment', targetUrl]);
_gaq.push(['_trackEvent', 'Article', 'Uncomment', '13 Media Moments from 2014 We Could Have Lived Without']);
});
}
} catch (e) {}
};
/**
* Handles tracking for Twitter click and tweet Intent Events which occur
* everytime a user Tweets using a Tweet Button, clicks a Tweet Button, or
* clicks a Tweet Count. This method should be binded to Twitter click and
* tweet events and used as a callback function.
* Details here: http://dev.twitter.com/docs/intents/events
* @param {object} intent_event An object representing the Twitter Intent Event
* passed from the Tweet Button.
* @param {string} opt_pagePath An optional URL to associate the social
* tracking with a particular page.
* @private
*/
_ga.trackTwitterHandler_ = function(intent_event, opt_pagePath) {
var opt_target; //Default value is undefined
if (intent_event && intent_event.type == 'tweet' || intent_event.type == 'click') {
if (intent_event.target.nodeName == 'IFRAME') {
opt_target = _ga.extractParamFromUri_(intent_event.target.src, 'url');
}
var socialAction = intent_event.type + ((intent_event.type == 'click') ? '-' + intent_event.region : ''); //append the type of click to action