forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewyorker.com1.html
More file actions
1038 lines (900 loc) · 78.1 KB
/
Copy pathnewyorker.com1.html
File metadata and controls
1038 lines (900 loc) · 78.1 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>
<!--[if IE 7]> <html class="no-js oldie ie8 ie7" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns#" itemscope itemtype="http://schema.org/NewsArticle"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"VQUFVlRbGwcDV1ZRBwQ="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=s(e),u=c.length,f=i(a,o,r),d=0;u>d;d++)c[d].apply(f,n);return f}function a(t,e){u[t]=s(t).concat(e)}function s(t){return u[t]||[]}function c(){return n(e)}var u={};return{on:a,emit:e,create:c,listeners:s,_events:u}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],3:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(u){try{r("ierr",[u,(new Date).getTime(),!0])}catch(f){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(4),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,window.onerror=e,NREUM.noticeError=n;try{throw new Error}catch(u){"stack"in u&&(t(5),t(3),"addEventListener"in window&&t(1),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&t(2),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:4,2:7,3:5,4:18,5:6,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],4:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=(t(1),t("ee").create()),i=t(2)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:18,2:19,ee:"QJf3ax",gos:"7eSDFh"}],5:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:19,2:18,ee:"QJf3ax"}],6:[function(t,e){function n(t,e,n){var r=t[0];"string"==typeof r&&(r=new Function(r)),t[0]=o(r,"fn-",null,n)}var r=(t(2),t("ee").create()),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:19,2:18,ee:"QJf3ax"}],7:[function(t,e){function n(){c.inPlace(this,d,"fn-")}function r(t,e){c.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}var i=t("ee").create(),a=t(1),s=t(2),c=s(i),u=s(a),f=window.XMLHttpRequest,d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=i,window.XMLHttpRequest=function(t){var e=new f(t);try{i.emit("new-xhr",[],e),u.inPlace(e,["addEventListener","removeEventListener"],"-",function(t,e){return e}),e.addEventListener("readystatechange",n,!1)}catch(r){try{i.emit("internal-error",[r])}catch(o){}}return e},window.XMLHttpRequest.prototype=f.prototype,c.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),i.on("send-xhr-start",r),i.on("open-xhr-start",r)},{1:4,2:19,ee:"QJf3ax"}],8:[function(t){function e(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function n(t){var n=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!n.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){n.status=t.status;var a=t.responseType,u="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,f=e(u);if(f&&(r.rxSize=f),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(n.cat=d.split(", ").pop())}}else n.status=0;r.cbTime=this.cbTime,o("xhr",[n,r,this.startTime])}}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,u=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=n,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,n){var r=this.metrics,o=t[0],i=this;if(r&&o){var u=e(o);u&&(r.txSize=u)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof n.onload))&&i.end(n)}catch(e){try{a.emit("internal-error",[e])}catch(r){}}};for(var f=0;c>f;f++)n.addEventListener(s[f],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+u(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+u(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:9,3:7,4:4,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],9:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=p.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){p.proto="https"===d.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=p.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),s=window,c=s.document,u="addEventListener",f="attachEvent",d=(""+location).split("?")[0],p=e.exports={offset:i(),origin:d,features:{}};c[u]?(c[u]("DOMContentLoaded",o,!1),s[u]("load",n,!1)):(c[f]("onreadystatechange",r),s[f]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}],18:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],19:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,u;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){f([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return u=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,u],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,u(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,u="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,u?s+o:o,i,s,t))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){f([o,e,n,r])}}function u(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){f([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function f(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:18,ee:"QJf3ax"}]},{},["G9z0Bl",3,8]);</script>
<title>Climate-Change Christmas Carols</title>
<meta name="author" content="">
<meta itemprop="name" content="Climate-Change Christmas Carols">
<meta itemprop="publisher" content="The New Yorker" itemtype="http://schema.org/Organization">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
-->
<!-- minimal-ui=1 -->
<meta name="HandheldFriendly" content="true">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="The New Yorker">
<meta name="environment" content="prod">
<meta name="tny:id" content="2927117">
<link rel="shortcut icon" href="/wp-content/assets/dist/img/icon/favicon.ico">
<link rel="apple-touch-icon" href="/wp-content/assets/dist/img/icon/apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" href="/wp-content/assets/dist/img/icon/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/wp-content/assets/dist/img/icon/apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/wp-content/assets/dist/img/icon/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/wp-content/assets/dist/img/icon/apple-touch-icon-144x144-precomposed.png">
<meta property="fb:app_id" content="179662042076731">
<meta property="fb:admins" content="648235154,789168297,688620285">
<meta name="google-site-verification" content="_jvLA9pRQom0-f6587wRKrNwfRtqyKzjfYWvwcZ5fxc" />
<link rel="stylesheet" href="/wp-content/assets/dist/css/core.min.css?cb=20141231181224">
<script src="//use.typekit.net/wth6gwt.js"></script>
<script>try{Typekit.load();}catch(e){};</script>
<script>
var CN = CN || {};
/* <![CDATA[ */
var platformEnvironment = 'production';
var sitehost = "http://www.newyorker.com";
var omniture_init = [];
CN.omniture = CN.omniture || {};CN.omniture.conf = {"s_account":"conde-newyorker","server":"stats2.newyorker.com","secureServer":"sstats.newyorker.com","internalFilters":"javascript:,newyorker.com,advancemags.com"};
/* ]]> */
</script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/wp-content/assets/dist/js/head.min.js?cb=20141231181224"></script>
<link rel="dns-prefetch" href="//stats2.newyorker.com" /><link rel="dns-prefetch" href="//sstats.newyorker.com" /><script>TNY = TNY || {}; TNY.Stats = TNY.Stats || {}; TNY.Stats.omniture = TNY.Stats.omniture || {}; TNY.Stats.omniture._conditions = TNY.Stats.omniture._conditions || {contentId: "2927117", cnUserServices: "true", templateName: "Article", keywordsList: "apocalypse-tag|christmas-carols-tag|climate-change-tag|global-warming-tag|article|shouts-murmurs", deviceViewCallback: jQuery.devices.getDeviceView(), isSingular: true, setContentId: "2927117", isArticle: true, rubric: "culture", channel: "culture/rubric-Shouts & Murmurs", setAuthorName: "Ethan Kuperberg", isPostOrArticle: true, dateTimePublished: "2014-12-15 00:00:24", dateTimeSince: "465h|19d", id: "2927117", contributor: "Ethan Kuperberg", hero: "Eustace Tilley"}</script><noscript><a href="http://www.omniture.com" title="Web Analytics"><img src="http://condenast.112.2o7.net/b/ss/conde-newyorker/1/H.15.1--NS/0" height="1" width="1" border="0" alt="" /></a></noscript>
<!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.4.2 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="Shouts & Murmurs by Ethan Kuperberg: “Deck the halls of our mountain hideout, / Fa la la la la, la la la la! / Hope all humans have not died out…”"/>
<link rel="canonical" href="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" />
<link rel="publisher" href="https://plus.google.com/+newyorker"/>
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Climate-Change Christmas Carols" />
<meta property="og:description" content="Shouts & Murmurs by Ethan Kuperberg: “Deck the halls of our mountain hideout, / Fa la la la la, la la la la! / Hope all humans have not died out…”" />
<meta property="og:url" content="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" />
<meta property="og:site_name" content="The New Yorker" />
<meta property="article:tag" content="Apocalypse" />
<meta property="article:tag" content="Christmas Carols" />
<meta property="article:tag" content="Climate Change" />
<meta property="article:tag" content="Global Warming" />
<meta property="og:image" content="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-1200-630-10162001.jpg" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@newyorker"/>
<meta name="twitter:domain" content="The New Yorker"/>
<meta name="twitter:creator" content="@newyorker"/>
<meta name="twitter:image:src" content="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-1200-630-10162001.jpg"/>
<!-- / Yoast WordPress SEO plugin. -->
<link rel='shortlink' href='http://www.newyorker.com/?p=2927117' />
<!-- 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":"Climate-Change Christmas Carols","link":"http:\/\/www.newyorker.com\/magazine\/2014\/12\/22\/climate-change-christmas-carols","image_url":"http:\/\/www.newyorker.com\/wp-content\/uploads\/2014\/12\/141222_r25915-320-240-10161843.jpg","type":"post","post_id":"2927117","pub_date":"2014-12-15T05:00:24Z","section":"Uncategorized","author":"Ethan Kuperberg","tags":["apocalypse","christmas carols","climate change","global warming"]}' />
<style type="text/css">
body.customize-support #hd.collapsed #nav-container {
margin-top: 28px;
}
</style> <script type="text/javascript" class="site_init">
//<!--
CN.site.init({
code: 'NYR',
title: 'The New Yorker',
name: 'newyorker',
alias: 'newyorker.com',
domain: 'newyorker.com',
tld: 'newyorker.com',
baseUrl: 'http://www.newyorker.com',
mobilecompatible: 'true',
httpStatusCode: 200,
userServiceUrl: 'http://user-service.condenast.com',
userServiceKey: 'TE7pnBDUEVco2vXPPNQVZNFlipc=',
ecomUrl: 'https://subscribe.newyorker.com/api/circ/xml/Transaction',
socialRes: 'http://www.newyorker.com/services/livefyre/userToken',
env: 'PROD' // Put something consistent last so we don't have a trailing comma (appease IE)
});
CN.isMobile = TNY.initIsMobile;
CN.isTablet = jQuery.devices.tablet();
CN.checkDeviceView = jQuery.devices.checkDeviceView;
//-->
</script>
<!-- AD INIT: CN.dart.init version 2 -->
<script type="text/javascript">
//<!--
CN.dartKwsArray = [ "olawther","apocalypse_tag","christmas_carols_tag","climate_change_tag","global_warming_tag","magazine","2014","12","22","climate_change_christmas_carols","article","shouts_murmurs" ];
//-->
</script>
<script src="/wp-content/assets/js/scookies.js"></script>
<script type="text/javascript">
EV.handleNewSession(function(result) {
console.log('EVSESSION:',result, result.allowAccess)
if ( !result.allowAccess ) {
window.location.reload();
}
}, null, "54a7d6cce4b0947ff8551c57")
</script>
<script>
TNY.meterVar = {
'meter_name' : 'dft',
'meter_count' : '1',
'meter_max' : '6',
'meter_viewed' : 'false',
'num' : '4',
'pid' : '',
'entitlement' : ''
}
if(TNY.meterVar == undefined){
TNY.meterVar = {
'meter_name' : '',
'meter_count' : '',
'meter_max' : '',
'meter_viewed' : '',
'num' : '',
'pid' : '',
'entitlement' : ''
}
}
TNY.meterVar.isBarrierFull = false;
if(TNY.meterVar == undefined){
TNY.meterVar = {
'meter_name' : '',
'meter_count' : '',
'meter_max' : '',
'meter_viewed' : '',
'num' : '',
'pid' : '',
'entitlement' : ''
}
}
TNY.meterVar.isBarrierHalf = false;
</script>
<script>
//<!--
if(TNY.meterVar == undefined){
TNY.meterVar = {
'meter_name' : '',
'meter_count' : '',
'meter_max' : '',
'meter_viewed' : '',
'num' : '',
'pid' : '',
'entitlement' : ''
}
}
if(TNY.meterVar != undefined){ if( TNY.meterVar.isBarrierHalf ){ CN.dartKwsArray.push('novideo'); } if( TNY.meterVar.isBarrierFull ){ CN.dartKwsArray.push('noads'); }}
CN.dart.init({
adUnits: {
unit1: CN.isMobile ? 'newyorker.mobile.dart' : 'newyorker.dart',
unit2: 'magazine',
unit3: 'channel_culture',
unit4: ''
},
kws: CN.dartKwsArray,
contentType: 'Article',
charmap : {' ' : '+', '-' : '_'}
});
//-->
</script>
<script type="text/javascript">
CN.popups = CN.popups || {};
CN.popups.setCookieLife(48);
CN.popups.setExiting(false, {
path: '/exit-pop/',
width: 460,
height: 295,
}).excludeExitPath( '/wp-admin', '/wp-login.php' ).excludeExitDomain("newyorker.com","www.newyorker.com","origin.www.newyorker.com");
CN.popups.setATGArriving(false).setATGLayer(false).setATGExiting(false);
CN.popups.setLayer(false).setArriving(false);
CN.popups.init();
</script>
<!-- CM: page-ads.js -->
<script type="text/javascript">
//<!--
var _ghearst_vars = (function() {
var commonParams = 'ad_category_prefix=magazine'
+ '&browser_path=%2Fmagazine%2F2014%2F12%2F22%2Fclimate-change-christmas-carols'
+ '&cat_prefixes=%2Cmagazine%2C2014%2C12%2C22%2Cclimate-change-christmas-carols'
+ '&site_prefix=newyorker'
+ '&subdomain=mprod'
+ '&url_name=climate-change-christmas-carols';
var metaKeyWords = (function() {
var
i = 0,
metaKeywordContent = '',
nameAttribute = null,
metaCollection = document.getElementsByTagName('meta');
for (i=0;i<metaCollection.length;i++) {
nameAttribute = metaCollection[i].name.search(/keywords/);
if (nameAttribute!= -1) {
metaKeywordContent = metaCollection[i].content;
metaKeywordContent = metaKeywordContent.replace(/,/g,'%2C'); // to replace ,
metaKeywordContent = metaKeywordContent.replace(/ /g,''); // to replace space
}
}
return encodeURIComponent(metaKeywordContent);
})();
var deviceParams = (function() {
if ( CN.checkDeviceView('desktop') ) {
return 'AMS_NYR_MAGAZINE_TEXTLINK%2CAMS_NYR_ARTICLE_BLOG_RIGHTRAIL_A%2CAMS_NYR_GLOBAL_FOOTER%2CAMS_NYR_GLOBAL_HEADER%2CAMS_NYR_GLOBAL_HEADERCALLOUT%2CAMS_NYR_GLOBAL_NAVBAR%2CAMS_NYR_GLOBAL_NAVBAR_ROLLOVER%2CAMS_NYR_GLOBAL_NAVBAR_STICKY%2CAMS_NYR_GLOBAL_NAVBAR_ROLLOVER_STICKY';
}
if ( CN.checkDeviceView('tablet') ) {
return 'AMS_NYR_MAGAZINE_TEXTLINK%2CAMS_NYR_ARTICLE_BLOG_RIGHTRAIL_A%2CAMS_NYR_GLOBAL_FOOTER%2CAMS_NYR_TABLET_GLOBAL_SUBNAV';
}
if ( CN.checkDeviceView('mobile') ) {
return 'AMS_NYR_MAGAZINE_TEXTLINK%2CAMS_NYR_ARTICLE_BLOG_RIGHTRAIL_A%2CAMS_NYR_GLOBAL_FOOTER%2CAMS_NYR_MOBILE_GLOBAL_SUBNAV';
}
})();
if(TNY.meterVar != undefined){
if(TNY.meterVar.isBarrierHalf) {
TNY.barrierStatus = "half";
} else if(TNY.meterVar.isBarrierFull) {
TNY.barrierStatus = "full";
}
TNY.checkIfBarrierIsShown = function(){
paywallCMU = "%2CAMS_NYR_PAYWALL_FULL_WIDTH_BARRIER%2CAMS_NYR_PAYWALL_BARRIER";
deviceParams = deviceParams + paywallCMU;
}
TNY.addBarrierState = function(){
deviceParams = deviceParams + "&article_count=" + TNY.barrierStatus;
TNY.deviceParams = deviceParams;
}
if(TNY.barrierStatus != undefined){
TNY.checkIfBarrierIsShown();
TNY.addBarrierState();
}
}
return {
'ams_ads_script_src' : 'https://subscribe.newyorker.com/ams/page-ads.js?'
+ commonParams + ''
+ '&keywords=' + metaKeyWords + ''
+ '&position_list=' + deviceParams + ''
};
})();
if (!window.$h) {window.$h = {}}
(function(){
if (!$h.util) {
$h.util = {
buildScriptTag: function(src){
if (!!src){ document.write('<scr' + 'ipt src="'+src+'" type="text/javascript"></scr' + 'ipt>');}
}
}
}
$h.util.buildScriptTag(_ghearst_vars.ams_ads_script_src)
})();
//-->
</script>
<script src="//assets.adobedtm.com/6372cf21ef88ee60bc2977a4898dcb5c7945a212/satelliteLib-9cb2a39d627a819b6ca42ab76f651dbfa7b1a535.js"></script>
<!-- End link subscription -->
<meta itemprop="printPage" content="066">
<style>#masthead h1 {
font-family: "neutra-face-text", "helvetica heue", helvetica, arial, clean, sans-serif;
font-size: 3.2rem;
line-height: 3rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: -0.08rem;
}
#masthead h4 {
display: inline-block;
background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAsCAMAAADGmMENAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowODgwMTE3NDA3MjA2ODExODIyQURCRUMyNjYzQjExNCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo4NTlGNTJGMDc4OUMxMUU0QUJENkQ1MTAzNDA2NjE5OCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo4NTlGNTJFRjc4OUMxMUU0QUJENkQ1MTAzNDA2NjE5OCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDk4MDExNzQwNzIwNjgxMTgyMkFEQkVDMjY2M0IxMTQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDg4MDExNzQwNzIwNjgxMTgyMkFEQkVDMjY2M0IxMTQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6PlMwyAAABgFBMVEXW1dWFgoPR0NF1c3ONi4v4+Pjm5eXp6em+vb1dWls9OjvBwMFNSktVUlPe3t5tamv8/Pz6+vr29vbs7OxEQULw8PCpqKiUkpImIiN9e3v09PQtKSru7u42MjPy8vKenZ3KycnNzMy2tLWamZni4uKysbFIRUZkYmJAPD2ura3b2tp4dXYVERJQTU7Z2NilpKQ4NTXg4OC7urofGhsYFBXGxcVwbW4oJSagnp5YVVYwLC1nZWUhHR6wrq+IhoZjYGFgXV5pZmePjo7DwsIRDA2YlpcOCguAfn8zLzC3trYqJyiop6dCPz8bFxgjHyATDxD+/v7a2dk7NzhaV1hmY2TQz8/c29uKiIj7+/vg39+hoKDT09NycHDo5+d6d3jX1te9u7yrqqq0s7Pa2drEw8Py8vHU1NS5t7iwr7Dk4+NqaGjQ0NBST1D5+fm/vr6gn5+8u7utq6z39/ft7e3u7e61tLSem5zMy8vMy8zMzMvr6urIx8fx8fGRj5D9/f3////OgQDGAAAER0lEQVR42nyV60PaSBDAE1EETHwBEsEoHhiiBMFjBQUEHxgxhQQCKBUFtZ7W1seJPe+uZ51/vXkhD+3ly+7M/DK7Ozszi0H/N7xzlA7GTPiT5brYb8N6xaVtIlWIRxiCkYVCNI9XX35NX6wjqnK2UtOEF/P5cYJjFmrv0831rEOxrXwwkQ7WEYqtLRdhdV3KX7xDF10oYoGTNI0oR6Cx10gyceQJLkGd4IOT/bTTyqdhOIaE4IjdUD17cZpbb0IY5T/20if56B08FTxzsz2nul1gpT34RAv1btrOCgdDVn569k08x30ob/7DQTU79G1IHP3Gpiza/juODX80hbltueFXeprzumVPSZ1ubBkQTJJH+uSREQ/MVLlNn2Z9EKI0GBb4c4Pe4H83ZjMs7b7jfTrdkglIS+2ohhz69dXY0OueRsUMmFJ+jX6SLjFusG25kz5rYymhuK759V8X+YVnMajSQ5EAkHLr1dENq9/1jHKAksismVXBSsNg9Fqh97lqVdroxGwk+/A6dy9aU0Jm0QlVbmomuq3QFRa+RIa6QkzabrukjwSfvQIoOyCQL2KznvQEdaio/Q9u3b4qTXWch21xT07JhQ00+hdqYl7kXUX/KIbP2YTrREPKsrHUsy+BknVHUq0R0WePhrGj1POgR/OKHXMNDfJKYXX49kNAsRIMoAVVYjIQCWJ7NASIdlz9+milWzCMU9GGmns49ajqjlkok1iSAaLSl0oD0e3DlIhfa4Itow0/hGLQhpXXgTX10Qe0lDj8bgh/L2vDvTiE51TaFuxhm2OILuz2p+692ErnMGXTzFaXthrgck+3FdrdR7uEl4YNa0Rgs5M/3rIkh5Us+Mr5dMVlu+5MNrDeYD5xEs/pZVocCUnshn6RyYRWR7U8NaglChBWkE3YDqqfIrXsavuMxFyNG67qnL7zZiNKqXF8pFzO6D1mp1zulEstIP7mrqszjXmc+sR8pt7sFde0oAEMygxY8wo2f9rbxJCrW6zIEJNrGJxxn3akP98UO4wJj139seBrUbiSsbOeY2CYrnY6ktYOuoy2u36N386hklpp28i/ml3rWEIRvXiO4/ZOhczVEkmtLp2JTTguXL5apEXj/guHhsqeI+AQYXqHeOA3xm30sGHKRNqlYxL1sNySornO4e3usxUdvY7njTQqVdurrOxrWxra5P6bjDhabdppo50HAt2E974TAt0BmVrqdM1RgXWe5NFc8S38W1wYACva6e7ITU+uVJzOMpbedwbmy3zmeYYoWHq7/YoDTcFXQsrvliYM1Ys/HOJspzAS98z3vySTJp48gPmAWIhs4rtrvsMtNholT+H7GG89eeeVsshcoA6tC5yUE55EhGjsP4M/WPBMvf8CDoVlzpb+VwlV8UU5b63pYlDC5fzl6zoxEsshUb4JfKmQbBwJmXP3/73FygL1D3iSDJGZ6TXvm2fopwADAM9f4hz5RcITAAAAAElFTkSuQmCC") no-repeat 0 0;
background-size: 20px 20px;
padding: 5px 0 0 31px;
text-transform: uppercase;
}
#masthead h4 a {
color: #000;
font-family: "adobe-caslon-pro", Times, Georgia, serif;
font-size: 14px;
font-weight: bold;
letter-spacing: 5px;
}
@media (min-width: 37.5em) {
#masthead h1 {
font-size: 3.5rem;
line-height: 3rem;
}
}</style></head>
<body>
<nav role="navigation" class="mobile-nav">
<ul class="nav-links" >
<li id="subscribe" class="mobile-subscribe">
<div id="AMS_NYR_MOBILE_GLOBAL_SUBNAV" class="ecom-placement"><a class="failsafe" title="Subscribe to The New Yorker" target="_blank" href="http://www.newyorker.com/go/mobilefailsafe">Subscribe</a></div> <div id="AMS_NYR_TABLET_GLOBAL_SUBNAV" class="ecom-placement"><a class="failsafe" title="Subscribe to The New Yorker" target="_blank" href="http://www.newyorker.com/go/mobilefailsafe">Subscribe</a></div> </li>
<li class="menu-item sub-nav mob-sign-in block-list user-ln-status-mobi">
<a id="user-sign-in" class="mobi-sign-in-button" title="Sign in to your account">Sign In</a>
<span id="mobi-nav-link" class="link-sub-hamnav"> Link your subscription</span>
</li>
<li id="mobi-account-link-1" class="menu-item sub-nav hiddenMobiMenu"></li>
<li id="mobi-account-link-2" class="menu-item sub-nav hiddenMobiMenu"></li>
</ul>
</nav>
<div class="page-container">
<div class="fix-fixed"><!-- Fixed --></div>
<div class="header-wrapper">
<header id="hd" role="banner">
<div class="header-ad">
<div class="advertisement"><div id="header728x90_frame" class="displayAd displayAd728x90Js" data-cb-ad-id="header728x90_frame"></div></div><div class="advertisement"><div id="header_mobile320x50_frame" class="displayAd displayAd320x50Js" data-cb-ad-id="header_mobile320x50_frame"></div></div></div>
<section class="logo-container">
<span title="" id="mobile-nav" class="icon-menu"></span>
<div class="subscribe-links">
<div id="AMS_NYR_GLOBAL_HEADER" class="ecom-placement"><a href="http://www.newyorker.com/go/failsafe" target="_blank"><img alt="Cover of current issue" src="//subscribe.condenet.com/images_covers/cover_newyorker_80.jpg"></a></div><div id="AMS_NYR_GLOBAL_HEADERCALLOUT" class="ecom-placement"><img src="/wp-content/assets/dist/img/px.gif" data-src-desktop="/wp-content/assets/dist/img/cn-ecom/failsafe/NYT_global_headercallout_150x110.png" usemap="#GLOBAL_HEADERCALLOUT_MAP" width="150" height="110" alt="Subscribe now"><map id="GLOBAL_HEADERCALLOUT_MAP" name="GLOBAL_HEADERCALLOUT_MAP"><area shape="rect" title="Subscribe Now" alt="Subscribe Now" coords="1,12,76,107" href="http://www.newyorker.com/go/failsafe" target="_blank" /><area shape="rect" title="Subscribe Now" alt="Subscribe Now" coords="78,12,147,40" href="http://www.newyorker.com/go/failsafe" target="_blank" /><area shape="rect" title="Renew your Subscription" alt="Renew your Subscription to the New Yorker magazine" coords="78,42,147,56" href="https://w1.buysub.com/pubs/N3/NYR/login.jsp?cds_page_id=135517&cds_mag_code=NYR" target="_blank" /><area shape="rect" title="Give a Gift Subscription" alt="Give a Subscription to The New Yorker as a Gift" coords="78,58,147,75" href="http://www.newyorker.com/go/giftfailsafe" target="_blank" /><area shape="rect" title="Subscribe Now" alt="Subscribe to The New Yorker outside the USA" coords="78,77,147,107" href="http://www.newyorker.com/go/internationalfailsafe" target="_blank" /></map></div> </div>
<div id="logo">
<a href="http://www.newyorker.com" title="The New Yorker"><h1>The New Yorker</h1></a>
</div>
<div class="social-and-user-links">
<ul class="user-info">
<span id="sign_in" class="user-ln-status">
<li id="sign-in-list" class="demo-link big plain"><span data-type="sign-in" class="header-nav-link" id="sign-in" title="Sign in to your account">
<span id="fallback-signin-link" class="nyer-plain-lnk">
Sign in </span></span>
</li>
<li class="demo-link big plain"></li>
<li id="link-sub-nav" class="nyer-plain-lnk nav-menu">Link your subscription</li>
</span>
<li class="n-store"><a href="http://www.condenaststore.com/~/new-yorker-store?utm_medium=referral&utm_source=NewYorker&utm_content=SHOP&AID=1247905545" target="_blank" title="The New Yorker Store">TNY Store</a></li>
<li class="demo-link big plain"><span id="sign-out-wrapper" class="big plain"></span></li>
</ul>
<ul class="social-menu">
<li class="facebook"><a href="https://facebook.com/newyorker" title="Facebook">F</a></li>
<li class="twitter"><a href="https://twitter.com/newyorker" title="Twitter">T</a></li>
<li class="google-plus"><a href="https://plus.google.com/+newyorker/posts" title="Google+">G+</a></li>
</ul>
</div>
</section>
<nav role="navigation" class="primary-nav">
<ul>
<li class="main-item tny-nav-icon">
<a href="http://www.newyorker.com/">Home</a>
</li>
<li class="tny-nav-news menu-item"><a href="http://www.newyorker.com/news">News</a></li>
<li class="tny-nav-culture menu-item"><a href="http://www.newyorker.com/culture">Culture</a></li>
<li class="tny-nav-books menu-item"><a href="http://www.newyorker.com/books">Books & Fiction</a></li>
<li class="tny-nav-tech menu-item"><a href="http://www.newyorker.com/tech">Science & Tech</a></li>
<li class="menu-item"><a href="http://www.newyorker.com/business">Business</a></li>
<li class="tny-nav-humor menu-item"><a href="http://www.newyorker.com/humor">Humor</a></li>
<li class="tny-nav-magazine menu-item"><a href="http://www.newyorker.com/magazine">Magazine</a></li>
<li class="tny-nav-archive menu-item"><a href="http://www.newyorker.com/archive">Archive</a></li>
<li id="subscribe">
<div id="AMS_NYR_GLOBAL_NAVBAR" class="ecom-placement"><a title="Subscribe to The New Yorker" target="_blank" href="http://www.newyorker.com/go/failsafe">Subscribe</a></div> <div id="subscribe-rollover">
<div class="subscribe-links-wrapper">
<div id="AMS_NYR_GLOBAL_NAVBAR_ROLLOVER" class="ecom-placement"><img rel="nofollow" src="/wp-content/assets/dist/img/px.gif" class="ecom-responsive" data-src-desktop="/wp-content/assets/dist/img/cn-ecom/failsafe/NYR_NavBarRollover_Redesign_300x200.jpg" usemap="#GLOBAL_NAVBAR_ROLLOVER_MAP" width="300" height="200" alt="Subscribe to The New Yorker" /><map id="GLOBAL_NAVBAR_ROLLOVER_MAP" name="GLOBAL_NAVBAR_ROLLOVER_MAP"><area shape="rect" coords="0,249,75,286" href="https://w1.buysub.com/loc/NYR/ATGFailsafeGift" alt="Give a Gift" target="_blank" /><area shape="rect" coords="76,249,203,286" href="https://w1.buysub.com/loc/NYR/ATGFailsafeInt" alt="International Orders" target="_blank" /><area shape="rect" coords="0,0,399,249" href="http://www.newyorker.com/go/failsafe" alt="Subscribe to The New Yorker" target="_blank" /><area shape="rect" coords="203,249,399,290" href="http://www.newyorker.com/go/failsafe" alt="Order Now" target="_blank" /></map></div> </div>
</div>
</li>
<div id="navSearch" class="navSearch nav-search-container">
<form method="get" action="http://www.newyorker.com/search">
<input type="text" name="q" placeholder="Search The New Yorker" />
<input type="submit" value="Submit Search" />
</form>
</div> <li class="tny-nav-search"><a href="http://www.newyorker.com/search" title="Search" id="search-toggle" class="search-toggle bignav-search">Search</a></li>
</ul>
<div class="floatingAd-wrapper"><div id="floatingAd" style="display:none;"> <div id="floatingAd_content"> <div id="AMS_NYR_POPUP_FLOATINGAD" class="ecom-placement"> </div> <div id="floatingAd_header"><a href="javascript:void(0)" class="close">Close</a></div> </div></div></div
</nav>
</header>
</div>
<div class="content-wrapper">
<div id="main" role="main" class="single-post single-article">
<article itemscope itemtype="http://schema.org/Article" data-details='{"title":"Climate-Change Christmas Carols","author":[1536791,"Ethan Kuperberg","http:\/\/www.newyorker.com\/contributors\/ethan-kuperberg"],"wordCount":464,"paragraphCount":22}'>
<meta itemprop="url" content="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" />
<meta itemprop="wordCount" content="422" />
<header id="page-header">
<hgroup id="masthead">
<h4 class="rubric">
<a href="http://www.newyorker.com/magazine/shouts-murmurs" title="Shouts & Murmurs" itemprop="articleSection printSection">Shouts & Murmurs</a>
<a href="http://www.newyorker.com/magazine/2014/12/22" title="Published in 2014-12-22" itemprop="printEdition">
<span class="magazine-date" itemprop="datePublished" content="2014-12-22">December 22, 2014 Issue</span>
</a>
</h4>
<h1 itemprop="name headline">Climate-Change Christmas Carols</h1>
<h2></h2>
<h3>By <span itemprop="author" itemscope itemtype="http://schema.org/Person"><a href="http://www.newyorker.com/contributors/ethan-kuperberg" title="Ethan Kuperberg" rel="author" itemprop="name author">Ethan Kuperberg</a></span></h3>
<!-- TODO: Add LinkedIn and Pinterest Support [#98] -->
<nav class="social-buttons">
<ul>
<li class="fb-btn"><div class="fb-share-button" data-href="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" data-type="button"></div></li> <li class="twitter-btn"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-url="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" data-text="Climate-Change Christmas Carols" data-via="newyorker" data-dnt="true"></a></li> <li class="gplus-btn"><div class="g-plusone" data-annotation="none" data-size="medium" data-href="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols"></div></li> <li class="share-email"><a href="mailto:?subject=From%20newyorker.com: Climate-Change%20Christmas%20Carols&body=
oh, the weather outside is frightful, The heat wave brutal and spiteful. Our crops have no water to grow— Let it snow, let it snow, let it snow! Looks like the heat wave ain’t stoppin’, Our dust-storm coughs are a-whoppin’. All fish went extinct long ago— For the love of sweet Christ, let it...%0A%0AContinue reading at http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" title="Email"><img src="/wp-content/assets/dist/img/icon/email.png" alt="Email"/></a></li> <li class="share-print"><a href="javascript:window.print();"><img src="/wp-content/assets/dist/img/icon/printer.png" alt="Print"/></a></li> </ul>
</nav>
</hgroup>
<div class="issue-info">
<figure id="original-issue" class="issue-90th-anniversary">
<a href="http://www.newyorker.com/magazine/2014/12/22" title="Published in 2014-12-22" itemprop="printEdition">
<img width="175" height="240" src="http://www.newyorker.com/wp-content/uploads/2014/12/2014_12_22-200.jpg" class="attachment-thumbnail wp-post-image" alt="2014_12_22" /> </a>
</figure>
<a href="http://www.newyorker.com/magazine/2014/12/22" title="View Table of Contents" class="more-link">Table of Contents</a>
</div>
</header>
<div class="module-container-rail non-solid-rail">
<div class="module-container-stacked post-content">
<div itemprop="articleBody" class="articleBody" id="articleBody">
<figure class="horizontal attachment-large landscape img-expandable featured">
<a href="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-1200.jpg" title="Climate-Change Christmas Carols" itemprop="url">
<img itemprop="image" src="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-290-150-10161925.jpg" data-src-mobile="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-290-150-10161925.jpg" data-src="http://www.newyorker.com/wp-content/uploads/2014/12/141222_r25915-690.jpg" class="post-load horizontal attachment-large" alt=""> </a>
<figcaption class="caption" itemprop="description">
<span class="credit" itemprop="copyrightHolder">
<span class="hideFromView">Credit</span> Illustration by Nishant Choksi </span> </figcaption>
</figure>
<span data-attr="1" data-ma="6" data-bt="ALLOW_ACCESS" data-rv="false" data-sub=""></span>
<div class="scPlayerContainer" data-sctrack="181187568"></div> <div class="poetry"> <a class="tny-slot" name="/2" data-total-words="0"></a><a class="tny-page" name="/1" data-total-words="0"></a><p word_count="28"> <span><small>oh, the weather</small> outside is frightful,</span> <span>The heat wave brutal and spiteful.</span> <span>Our crops have no water to grow—</span> <span>Let it snow, let it snow, let it snow!</span> </p> <p word_count="28"> <span>Looks like the heat wave ain’t stoppin’,</span> <span>Our dust-storm coughs are a-whoppin’.</span> <span>All fish went extinct long ago—</span> <span>For the love of sweet Christ, let it snow!</span> </p><div class="content-ad-wrapper first"><div class="advertisement"><div id="yrailTop300x250_frame" class="displayAd displayAd300x250Js" data-cb-ad-id="yrailTop300x250_frame"></div><div id="yrailTop320x50_frame" class="displayAd displayAd320x50Js" data-cb-ad-id="yrailTop300x250_frame"></div></div></div> <p word_count="0">*</p> <p word_count="52"> <span><small>frosty the snowman,</small> may he rest in peace, poor soul.</span> <span>With his melted nose and his melted mouth,</span> <span>And two eyes made out of coal.</span> <span>Frosty the Snowman, did you say his eyes were coal?</span> <span>Can you pass that coal? We could use some coal.</span> <span>Let us rob his grave for coal.</span> </p> <p word_count="0">*</p> <p word_count="26"> <span><small>oh, christmas tree,</small> oh, Christmas tree!</span> <span>Thy plastic branches don’t shed.</span> <span>Oh, Christmas tree, oh, Christmas tree!</span> <span>We wish real trees weren’t all dead.</span> </p> <p word_count="0">*</p> <p word_count="27"> <span><small>sleigh bells ring,</small> are you listening?</span> <span>In L.A., hail is glistening.</span> <span>In New Mexico, there is six feet of snow.</span> <span>The desert is a winter wonderland!</span> </p> <p word_count="28"> <span>Gone away is the West Side,</span> <span>Here to stay is the high tide.</span> <span>If you want to spelunk, San Francisco has sunk.</span> <span>California’s now an underwater land!</span> </p> <p word_count="40"> <span>In Mojave, we can build a snowman,</span> <span>And pretend that he is Mom or Dad.</span> <span>He’ll say, “Did your parents escape the horrific flash floods?,” and we’ll say, “No, man.</span> <span>But you can be our new dad now.”</span> </p> <p word_count="0">*</p> <p word_count="28"> <span><small>i’m dreaming of </small>an ozone layer,</span> <span>Just like the one I used to know,</span> <span>Which kept out UV rays,</span> <span>Before aerosol sprays,</span> <span>And allowed for actual snow.</span> </p> <p word_count="0">*</p> <p word_count="55"> <span><small>deck the halls </small>of our mountain hideout,</span> <span>Fa la la la la, la la la la!</span> <span>Hope all humans have not died out,</span> <span>Fa la la la la, la la la la!</span> <span>Don our hazmat suits on tight now,</span> <span>Fa la la, la la la, la la la!</span> <span>Oxygen is leaking right now,</span> <span>Fa la—!</span> </p> <p word_count="0">*</p> <p word_count="27"> <span><small>chestnuts roasting</small> on an open fire,</span> <span>Cars and houses roasting, too.</span> <span>Our whole city is an open pyre—</span> <span>Put those chestnuts away, we have to leave now.</span> </p> <p word_count="0">*</p> <p word_count="39"> <span><small>i have a </small>little dreidel,</span> <span>I made it out of clay.</span> <span>And when it’s dry and ready,</span> <span>Oh, dreidel, I will pray—</span> <span>That I can barter you for enough cans of soup to last me through the tornado.</span> </p> <p word_count="0">*</p> <p word_count="37"> <span><small>silent night! </small>Endless night!</span> <span>All is dark, there’s no light.</span> <span>Cyclone clouds have blocked out the sky,</span> <span>We’re almost out of our dry-meat supply.</span> <span>Sleep in uneasy peace.</span> <span>We may have to eat Aunt Bernice. <span class="dingbat">♦</span></span> </p> </p></div>
<!-- TODO: Add LinkedIn and Pinterest Support [#98] -->
<nav class="social-buttons">
<ul>
<li class="fb-btn"><div class="fb-share-button" data-href="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" data-type="button"></div></li> <li class="twitter-btn"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-url="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" data-text="Climate-Change Christmas Carols" data-via="newyorker" data-dnt="true"></a></li> <li class="gplus-btn"><div class="g-plusone" data-annotation="none" data-size="medium" data-href="http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols"></div></li> <li class="share-email"><a href="mailto:?subject=From%20newyorker.com: Climate-Change%20Christmas%20Carols&body=
oh, the weather outside is frightful, The heat wave brutal and spiteful. Our crops have no water to grow— Let it snow, let it snow, let it snow! Looks like the heat wave ain’t stoppin’, Our dust-storm coughs are a-whoppin’. All fish went extinct long ago— For the love of sweet Christ, let it...%0A%0AContinue reading at http://www.newyorker.com/magazine/2014/12/22/climate-change-christmas-carols" title="Email"><img src="/wp-content/assets/dist/img/icon/email.png" alt="Email"/></a></li> </ul>
</nav>
</div>
<section class="article-contributors">
<section class="author-details" itemscope itemtype="http://schema.org/Person">
<article>
<div class="author-masthead">
<p>Ethan Kuperberg is a filmmaker and a writer for Amazon’s series “Transparent.”</p>
</div>
<ul class="author-links">
<li>
<a class="light-button" href="http://www.newyorker.com/contributors/ethan-kuperberg" title="Ethan Kuperberg">Bio</a>
</li>
<li>
<a class="light-button" href="http://www.newyorker.com/contributors/ethan-kuperberg/all" title="Ethan Kuperberg">All work</a>
</li>
</ul>
</article>
</section>
<div class="author-ampersand">&</div>
</section>
</div>
<aside class="container-rail">
<section id="newsletter-signup">
<h5 class="popping">Sign up to get the best of The New Yorker delivered to your inbox every day</h5>
<div class="newsletterContainer">
<form action="/wp-admin/admin-ajax.php" method="post" name="newsletter-form" id="newsletter-form" novalidate="novalidate" class="newsletter-signup-form">
<input type="hidden" name="action" value="newsletter_subscribe">
<input type="hidden" name="formName" value="newsletter-form">
<input type="hidden" name="url" value="http://www.newyorker.com"><input type="hidden" name="source_code" value="footer-unit"> <fieldset>
<legend><h5>Sign up for newsletters</h5></legend>
<label for="newsletter-email" class="replace">E-mail address</label>
<input name="email" id="newsletter-email" type="email" placeholder="E-mail address" required="" class="">
<button type="submit" name="submit-newsletter" id="submit-newsletter-content">Sign up</button>
</fieldset>
<div class="form_response"></div>
<ul class="subscribe-ids">
<li>
<fieldset class="row newsletter checkbox">
<input type="checkbox" id="newsletterId_217" name="newsletterId[]" value="217" checked="checked">
<label for="newsletterId_217"></label>
</fieldset>
</li>
<li>
<fieldset class="row newsletter checkbox">
<input type="checkbox" id="newsletterId_442" name="newsletterId[]" value="442">
<label for="newsletterId_442"></label>
</fieldset>
</li>
<li>
<fieldset class="row newsletter checkbox">
<input type="checkbox" id="newsletterId_5129" name="newsletterId[]" value="5129">
<label for="newsletterId_5129"></label>
</fieldset>
</li>
</ul>
</form>
<span class="newsletter-message"></span>
</div>
</section>
<div class="recirculation">
<div class="tablet-half-wrapper loaded-related-stories">
<section class="related-stories module">
<h5 class="small">Related Stories</h5>
<article class="story" itemscope itemtype="http://schema.org/Article">
<meta itemprop="wordCount" content="0" />
<figure>
<a href="http://www.newyorker.com/magazine/2013/12/23/nondenominational-carols" title="" itemprop="image url"><img src="/wp-content/assets/dist/img/px.gif" class="post-load" data-src="http://www.newyorker.com/wp-content/uploads/2013/12/131223_a17166-320-240-11154908.jpg" data-src-mobile="http://www.newyorker.com/wp-content/uploads/2013/12/131223_a17166-144-110-11155059.jpg" alt="" /></a>
</figure>
<section>
<h4><a href="http://www.newyorker.com/magazine/sketchbook" title="Sketchbook" itemprop="articleSection">Sketchbook</a></h4>
<h2><a href="http://www.newyorker.com/magazine/2013/12/23/nondenominational-carols" title="Nondenominational Carols" itemprop="name">Nondenominational Carols</a></h2>
<h3>By <span itemprop="author" itemscope itemtype="http://schema.org/Person"><a href="http://www.newyorker.com/contributors/roz-chast" title="Roz Chast" rel="author" itemprop="name author">Roz Chast</a></span></h3> </section>
</article>
<article class="story" itemscope itemtype="http://schema.org/Article">
<meta itemprop="wordCount" content="478" />
<figure>
<a href="http://www.newyorker.com/magazine/2009/12/21/holly-or-challah" title="" itemprop="image url"><img src="/wp-content/assets/dist/img/px.gif" class="post-load" data-src="http://www.newyorker.com/wp-content/uploads/2009/12/091221_r19136_p646-320-240-11161104.jpg" data-src-mobile="http://www.newyorker.com/wp-content/uploads/2009/12/091221_r19136_p646-144-110-11161154.jpg" alt="" /></a>
</figure>
<section>
<h4><a href="http://www.newyorker.com/magazine/shouts-murmurs" title="Shouts & Murmurs" itemprop="articleSection">Shouts & Murmurs</a></h4>
<h2><a href="http://www.newyorker.com/magazine/2009/12/21/holly-or-challah" title="Holly or Challah?" itemprop="name">Holly or Challah?</a></h2>
<h3>By <span itemprop="author" itemscope itemtype="http://schema.org/Person"><a href="http://www.newyorker.com/contributors/paul-rudnick" title="Paul Rudnick" rel="author" itemprop="name author">Paul Rudnick</a></span></h3> </section>
</article>
</section>
<div id="most-popular-polar-text"></div>
<div class="clearfix"></div>
</div> <!-- // div.tablet-left-wrapper -->
<div class="tablet-half-wrapper loaded-related-stories recirc-most-popular-wrapper">
<span class="post-load-module" data-name="most-popular" data-cache="10m" data-views="all"></span>
<div class="clearfix"></div>
</div>
</div>
</aside>
</article>
<section class="module">
<div id="you-might-like" class="big-titled-curation" style="display: none;">
<h5 class="popping">You Might Like</h5>
<div id="yml-list" class="stories"></div>
</div>
</section>
</div>
<aside id="footer-ad-google">
<script>
if(CN.isMobile == false){
google_ad_client = 'ca-conde_newyorker';
google_ad_channel = 'newyorker_standard_a newyorker_standard_b';
google_language = 'en';
google_ad_width = '728'; // width of iframe
google_ad_height = '90'; // height of iframe
google_ad_format = '728x90_pas_abgc';
google_ad_type = 'text';
google_alternate_ad_url = '';
google_alternate_color = '';
google_color_bg = 'edefee';
google_color_border = '';
google_color_line = '000000';
google_color_url = '000000';
google_color_link = '000000';
google_color_text = '000000';
google_encoding = 'utf8';
google_safe = 'high';
google_adtest = 'off';
google_ad_section = 'default';
}
</script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</aside>
<span class="post-load-module" data-name="promotions" data-cache="48h" data-views="desktop"></span>
<span class="post-load-module" data-name="strongbox" data-cache="48h" data-views="desktop"></span>
<aside id="footer-ad">
<!-- Need to have mobile ad sizes reevaluated -->
<div class="advertisement"><div id="footerMobile320x51_frame" class="displayAd displayAd320x51Js" data-cb-ad-id="footerMobile320x51_frame"></div></div> <div class="advertisement"><div id="footer728x90_frame" class="displayAd displayAd728x90Js" data-cb-ad-id="footer728x90_frame"></div></div> </aside>
<div id="digital-editions"><div id="AMS_NYR_GLOBAL_FOOTER" class="ecom-placement"><a href="http://www.newyorker.com/go/failsafe" data-mobile="http://www.newyorker.com/go/mobilefailsafe" target="_blank"><img src="/wp-content/assets/dist/img/px.gif" class="ecom-responsive" data-src-desktop="/wp-content/assets/dist/img/cn-ecom/failsafe/NYR_Footer_Desktop_1020x180.jpg" data-src-tablet="/wp-content/assets/dist/img/cn-ecom/failsafe/NYR_Footer_TabletRedesign_728x128.jpg" data-src-mobile="/wp-content/assets/dist/img/cn-ecom/failsafe/NYR_Mobile_300x50.NavyTote.jpg" alt="Subscribe to The New Yorker" /></a></div></div>
<footer>
<nav id="tny-footer">
<ul>
<li><a href="/about/us/?src=tny-footer" title="About Us">About Us</a></li>
<li><a href="/about/faq/?src=tny-footer" title="Frequently Asked Questions">FAQ</a></li>
<li><a href="http://w1.buysub.com/servlet/CSGateway?cds_mag_code=NYR" title="Customer Care">Customer Care</a></li>
<li><a href="http://www.condenaststore.com/-se/cartoonbank.htm?utm_medium=referral&utm_source=NewYorker&utm_content=tny-footer&AID=1247905545" title="">Cartoon Bank</a></li>
<li><a href="http://www.newyorkeronthetown.com/?src=tny-footer" title="">On The Town</a></li>
<li><a href="/about/feeds/?src=tny-footer" title="">RSS</a></li>
<li><a href="/about/contact/?src=tny-footer" title="">Contact Us</a></li>
</ul>
<ul>
<li><a href="http://www.condenaststore.com/-se/newyorkerstore.htm?utm_medium=referral&utm_source=NewYorker&utm_content=tny-footer&AID=1247905545" title="">The New Yorker Store</a></li>
<li><a href="http://www.condenast.com/careers?src=tny-footer" title="">Careers</a></li>
<li><a href="http://www.condenast.com/reprints-permissions?src=tny-footer" title="">Reprints/Permissions</a></li>
<li><a href="/about/press/?src=tny-footer" title="Press Center">Press</a></li>
<li><a href="http://www.condenast.com/brands/new-yorker/media-kit/?src=tny-footer" title="">The New Yorker Media Kit</a></li>
</ul>
</nav>
<div id="conde-footer">
<div class="global-footer-logo">
<a href="http://www.condenast.com?src=tny-footer" title="Condé Nast Digital">Condé Nast Digital</a>
</div>
<div class="global-footer-subscriptions">
<form action="/" name="sub_dropmenus" id="sub_dropmenus">
<select onchange="(this.options[this.selectedIndex].value) ? window.open(this.options[this.selectedIndex].value) : null" name="sub_list" id="sub_list" size="1">
<option selected="selected" value="">Subscribe to a magazine</option>
<option value="">
</option><option value="http://www.magazinestoresubscriptions.com?src=univdropdown">View All Titles</option>
<option value="">- - - - - - - - - - - - - -</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Allure?src=tny-footer">Allure</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_ArchitecturalDigest?src=tny-footer">Architectural Digest</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_BonAppetite?src=tny-footer">Bon Appétit</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Brides?src=tny-footer">Brides</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_CondeNastTraveler?src=tny-footer">Condé Nast Traveler</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Details?src=tny-footer">Details</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Glamour?src=tny-footer">Glamour</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_GolfDigest?src=tny-footer">Golf Digest</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_GolfWorld?src=tny-footer">Golf World</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_GQ?src=tny-footer">GQ</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Lucky?src=tny-footer">Lucky</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Self?src=tny-footer">Self</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_TeenVogue?src=tny-footer">Teen Vogue</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_NewYorker?src=tny-footer">The New Yorker</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_VanityFair?src=tny-footer">Vanity Fair</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Vogue?src=tny-footer">Vogue</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_W?src=tny-footer">W</option>
<option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/Subscriptions_Wired?src=tny-footer">Wired</option>
</select>
</form>
</div>
<div class="global-footer-sister-sites">
<form action="/" name="mag_dropmenus" id="mag_dropmenus">
<select onchange="(this.options[this.selectedIndex].value) ? window.open(this.options[this.selectedIndex].value) : null" name="mag_list" id="mag_list">
<option selected="selected" value="">Other Condé Nast sites</option>
<option value="">- - - - - - - - - - - - - -</option>
<option value="http://www.allure.com?src=tny-footer">Allure</option>
<option value="http://www.architecturaldigest.com?src=tny-footer">Architectural Digest</option>
<option value="http://www.arstechnica.com?src=tny-footer">Ars Technica</option>
<option value="http://www.bonappetit.com?src=tny-footer">Bon Appétit</option>
<option value="http://www.brides.com?src=tny-footer">Brides.com</option>
<option value="http://www.concierge.com/cntraveler?src=tny-footer">Condé Nast Traveler</option>
<option value="http://www.concierge.com?src=tny-footer">Concierge</option>
<option value="http://www.details.com?src=tny-footer">Details</option>
<option value="http://www.epicurious.com?src=tny-footer">Epicurious</option>
<option value="http://www.glamour.com?src=tny-footer">Glamour</option>
<option value="http://www.golfdigest.com?src=tny-footer">Golf Digest</option>
<option value="http://www.golfworld.com?src=tny-footer">Golf World</option>
<option value="http://www.gq.com?src=tny-footer">GQ</option>
<option value="http://www.hotelchatter.com?src=tny-footer">Hotel Chatter</option>
<option value="http://www.jaunted.com?src=tny-footer">Jaunted</option>
<option value="http://www.luckymag.com?src=tny-footer">Lucky</option>
<option value="http://www.nutritiondata.com?src=tny-footer">NutritionData</option>
<option value="http://www.reddit.com?src=tny-footer">Reddit</option>
<option value="http://thescene.com?src=tny-footer">The Scene</option>
<option value="http://www.self.com?src=tny-footer">Self</option>
<option value="http://www.style.com?src=tny-footer">Style</option>
<option value="http://www.teenvogue.com?src=tny-footer">Teen Vogue</option>
<option value="http://www.vanityfair.com?src=tny-footer">Vanity Fair</option>
<option value="http://www.vegaschatter.com?src=tny-footer">Vegas Chatter</option>
<option value="http://www.vogue.com?src=tny-footer">Vogue</option>
<option value="http://www.wmagazine.com?src=tny-footer">W</option>
<option value="http://www.wired.com?src=tny-footer">Wired</option>
</select>
</form>
</div>
<div id="copy">
<p><small>Use of this site constitutes acceptance of our <a href="http://www.condenast.com/privacy-policy">User Agreement</a> (effective January 1, 2014) and <a href="http://www.condenast.com/privacy-policy#privacypolicy">Privacy Policy</a> (effective January 1, 2014). <a href="http://www.condenast.com/privacy-policy#privacypolicy-california">Your California Privacy Rights</a> The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of Condé Nast. <a href="http://www.condenast.com/privacy-policy#privacypolicy-optout">Ad Choices <img width="10" height="10" src="/wp-content/assets/dist/img/icon/ad_choices_arrow.png" alt="Ad Choices"></a></small></p>
</div>
</div>
</footer>
</div> <!-- end .content-wrapper -->
</div> <!-- end .page-container -->
<script type="text/javascript">
//<!--
CN.config.set({
title : document.title,
facebook : {pageid: "9258148868"},
isiFrame : true
});
//-->
</script>
<script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "header", { sz: "728x90", kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.isMobile && CN.dart ) {
CN.dart.call( "header_mobile", { sz: ( "320x50" ), kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.dart ) {
CN.dart.call( "yrailTop", { sz: ( CN.isMobile ? "320x50" : "300x250" ), kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.dart ) {
CN.dart.call( "yrailTop", { sz: ( CN.isMobile ? "320x50" : "300x250" ), kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.dart ) {
CN.dart.call( "yrailTop", { sz: ( CN.isMobile ? "320x50" : "300x250" ), kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.dart ) {
CN.dart.call( "yrailTop", { sz: ( CN.isMobile ? "320x50" : "300x250" ), kws: [ "top" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( CN.isMobile && CN.dart ) {
CN.dart.call( "footerMobile", { sz: ( "320x51" ), kws: [ "bottom" ], collapse: true } );
}
}</script><script type="text/javascript">if ( typeof CN !== "undefined" ) {
if ( ! CN.isMobile && CN.dart ) {
CN.dart.call( "footer", { sz: "728x90", kws: [ "bottom" ], collapse: true } );
}
}</script> <script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('mobile') ) {
if ( typeof pageAds.AMS_NYR_MOBILE_GLOBAL_SUBNAV != 'undefined' ) {
jQuery( "#AMS_NYR_MOBILE_GLOBAL_SUBNAV" ).html( pageAds.AMS_NYR_MOBILE_GLOBAL_SUBNAV.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
} else { CN.debug.info( "AMS_NYR_MOBILE_GLOBAL_SUBNAV not in pageAds."); }
}
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('tablet') ) {
if ( typeof pageAds.AMS_NYR_TABLET_GLOBAL_SUBNAV != 'undefined' ) {
jQuery( "#AMS_NYR_TABLET_GLOBAL_SUBNAV" ).html( pageAds.AMS_NYR_TABLET_GLOBAL_SUBNAV.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
} else { CN.debug.info( "AMS_NYR_TABLET_GLOBAL_SUBNAV not in pageAds."); }
}
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('desktop') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_HEADER != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_HEADER" ).html( pageAds.AMS_NYR_GLOBAL_HEADER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_HEADER" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_HEADER not in pageAds."); }
}
/* AMS_NYR_GLOBAL_HEADER not in pageAds for tablet */
/* AMS_NYR_GLOBAL_HEADER not in pageAds for mobile */
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('desktop') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_HEADERCALLOUT != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_HEADERCALLOUT" ).html( pageAds.AMS_NYR_GLOBAL_HEADERCALLOUT.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_HEADERCALLOUT" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_HEADERCALLOUT not in pageAds."); }
}
/* AMS_NYR_GLOBAL_HEADERCALLOUT not in pageAds for tablet */
/* AMS_NYR_GLOBAL_HEADERCALLOUT not in pageAds for mobile */
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('desktop') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_NAVBAR != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_NAVBAR" ).html( pageAds.AMS_NYR_GLOBAL_NAVBAR.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_NAVBAR" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_NAVBAR not in pageAds."); }
}
/* AMS_NYR_GLOBAL_NAVBAR not in pageAds for tablet */
/* AMS_NYR_GLOBAL_NAVBAR not in pageAds for mobile */
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('desktop') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_NAVBAR_ROLLOVER != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_NAVBAR_ROLLOVER" ).html( pageAds.AMS_NYR_GLOBAL_NAVBAR_ROLLOVER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
} else { CN.debug.info( "AMS_NYR_GLOBAL_NAVBAR_ROLLOVER not in pageAds."); }
}
/* AMS_NYR_GLOBAL_NAVBAR_ROLLOVER not in pageAds for tablet */
/* AMS_NYR_GLOBAL_NAVBAR_ROLLOVER not in pageAds for mobile */
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
/* AMS_NYR_POPUP_FLOATINGAD not in pageAds for desktop */
/* AMS_NYR_POPUP_FLOATINGAD not in pageAds for tablet */
/* AMS_NYR_POPUP_FLOATINGAD not in pageAds for mobile */
})();
}
//-->
</script>
<script type="text/javascript">
//<!--
if ( ( typeof pageAds != 'undefined') && ( CN.url.params( 'nojoy' ) != 1 ) ) {
(function(){
if ( CN.checkDeviceView('desktop') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_FOOTER != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).html( pageAds.AMS_NYR_GLOBAL_FOOTER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_FOOTER not in pageAds."); }
}
if ( CN.checkDeviceView('tablet') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_FOOTER != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).html( pageAds.AMS_NYR_GLOBAL_FOOTER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_FOOTER not in pageAds."); }
}
if ( CN.checkDeviceView('mobile') ) {
if ( typeof pageAds.AMS_NYR_GLOBAL_FOOTER != 'undefined' ) {
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).html( pageAds.AMS_NYR_GLOBAL_FOOTER.replace( /document.write\(.*\)/gi, "/* filtered by amg-magnet:document.write(...) */" ) );
jQuery( "#AMS_NYR_GLOBAL_FOOTER" ).css( { visibility: 'visible' } );
} else { CN.debug.info( "AMS_NYR_GLOBAL_FOOTER not in pageAds."); }
}
})();
}
//-->
</script>
<div id="CM-notification" class="fancy modal barrier-type" aria-hidden="false">
<div class="CM-wrapper">
<div id="close-b-modal" class="modal-close notification-b"></div>
<div id="CM-nofication-home-link"></div>
<div id="CM-nofication-home-line"></div>
<div id="PAYWALL_BARRIER_wrapper"></div>
<div class="bottom-barrier-divide">
<div class="notification-pipe-spacer"></div>
<div class="mobile-bottom-barrier-divide-left"><a id="linksub-from-external" href="javascript:void(0)">Link your <br/> subscription</a>
</div>
<div class="bottom-barrier-divide-left"><a id="linksub-from-external-promo" href="javascript:void(0)">Link your subscription</a>
</div>
</div>
<div class="mobile-barrier-divide-right begin-notification-msg">Have a login?
<br/>
<span><a id="sign-in-from-notfication-mob" href="javascript:void(0)">Sign In</a></span>
</div>
<div id="login-text-wrapper" class="bottom-barrier-divide-right">Already have a login?
<span><a id="sign-in-from-notfication" href="javascript:void(0)">Sign in</a></span>
</div>
<div class="mob-notification-container">
<div class="mob-notification-item"><a class="linksub-from-external-mobi" href="javascript:void(0)" style="text-decoration:underline">Link Your<br/>Subscription</a></div>
<div class="mob-notification-item pipe-spacer-image"></div>
<div id="mobile-login-text-wrap" class="mob-notification-item">Have a login?
<br/><a class="signin-from-external-mobi" id="sign-in-from-notfication-mobilink" href="javascript:void(0)" style="text-decoration:underline">Sign in</a></div>
</div>
</div>
</div>
<!--[if IE]>
<style>
<script src="/wp-content/assets/js/vendors/simplemodal/simplemodal.min.js"></script>
#link-subscription-modal{
display:none;
}
#modal-overlay-full{
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
width:0;
height:0;
display:none;
}
.nyr-flex-modal{
display:block;
}
</style>
<![endif]-->
<div id="modal-overlay-full">
<div id="conf-view" class="hidden-m-item nyr-flex-modal"></div>
<div id="signin-view" class="hidden-m-item nyr-flex-modal"></div>
<div id="reg-view" class="hidden-m-item nyr-flex-modal"></div>
<div id="link-subscription-modal" class="hidden-m-item nyr-flex-modal"></div>
</div>
<div class="small-flex-spacer-b"></div> <div id="CMU_RIGHTRAIL_CONTAINER">
<div id="AMS_NYR_ARTICLE_BLOG_RIGHTRAIL_A" class="ecom-placement"><a href="http://www.newyorker.com/go/failsafe" target="_blank"><img src="/wp-content/assets/dist/img/px.gif" data-src-desktop="/wp-content/assets/dist/img/cn-ecom/failsafe/NYR_Search_Tablet_300x250.jpg" alt="Subscribe to The New Yorker" /></a></div></div>
<script>
window.jQuery || document.write('<script src="/wp-content/assets/dist/js/vendors/jquery/jquery.min.js"><\/script>');