-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwaitbutwhy.html
2114 lines (1900 loc) · 186 KB
/
waitbutwhy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en-US"
xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en-US"
xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en-US"
xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html lang="en-US"
xmlns:fb="http://ogp.me/ns/fb#" prefix="og: http://ogp.me/ns#">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta name="pocket-site-verification" content="eeacb22f26e28eaaab8351eb4c2f1b" />
<title>Wait But Why</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="https://waitbutwhy.com/xmlrpc.php" />
<link href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/images/favicon.ico' rel='icon' type='image/x-icon' />
<script type="text/javascript">
var ajaxurl = 'https://waitbutwhy.com/wp-admin/admin-ajax.php';
</script>
<!-- This site is optimized with the Yoast SEO plugin v8.0 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="A popular long-form, stick-figure-illustrated blog about almost everything."/>
<link rel="canonical" href="https://waitbutwhy.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="es_ES" />
<meta property="og:locale:alternate" content="pt_PT" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Wait But Why" />
<meta property="og:description" content="A popular long-form, stick-figure-illustrated blog about almost everything." />
<meta property="og:url" content="http://waitbutwhy.com/" />
<meta property="og:site_name" content="Wait But Why" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Wait But Why - Tim Urban" />
<meta name="twitter:title" content="Wait But Why" />
<meta name="twitter:site" content="@waitbutwhy" />
<meta name="twitter:creator" content="@waitbutwhy" />
<script type='application/ld+json'>{"@context":"https:\/\/schema.org","@type":"WebSite","@id":"#website","url":"https:\/\/waitbutwhy.com\/","name":"Wait But Why","potentialAction":{"@type":"SearchAction","target":"https:\/\/waitbutwhy.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Wait But Why » Feed" href="https://waitbutwhy.com/feed" />
<link rel="alternate" type="application/rss+xml" title="Wait But Why » Comments Feed" href="https://waitbutwhy.com/comments/feed" />
<link rel="alternate" type="application/rss+xml" title="Wait But Why » Homepage Comments Feed" href="https://waitbutwhy.com/homepage/feed" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/waitbutwhy.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.9.8"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='imgmap_style-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/imagemapper/imgmap_style.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='wp-bigfoot-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/wp-bigfoot/css/bigfoot-default.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='ajaxy-sf-common-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/ajaxy-search-form/themes/common.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='ajaxy-sf-selective-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/ajaxy-search-form/themes/selective.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='ajaxy-sf-theme-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/ajaxy-search-form/themes/default/style.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='collapseomatic-css-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/jquery-collapse-o-matic/light_style.css?ver=1.6' type='text/css' media='all' />
<link rel='stylesheet' id='scu-css-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/site-creator-ultimate-forked/style.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='social-widget-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/social-media-widget/social_widget.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='fp-style-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/style.css?ver=4.9.8' type='text/css' media='all' />
<style id='fp-style-inline-css' type='text/css'>
/*.screen-reader-text.bbpsw-label{float: right;}
.s.bbpsw-search-field{float:right;}
.searchsubmit.bbpsw-search-submit{float:right;}
.bbp-reply-content{
padding: 18px 18px 18px 0;
}
*/
.likebtn_container{width: 15%;
float: right;
margin-top: -4%;}
div.mr_social_sharing, span.mr_social_sharing, div.mr_social_sharing_top, span.mr_social_sharing_top{margin-left:3%;}
#searchform {
margin-left: -10px;
}
</style>
<link rel='stylesheet' id='fp-font-awesome-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/css/fonts/font-awesome/css/font-awesome.min.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='google_fonts-css' href='//fonts.googleapis.com/css?family=Noto+Sans%3A400%2C700%7CDroid+Sans%7CPT+Sans+Narrow&ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='wbw-master-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/css/master.min.css?ver=20170608' type='text/css' media='all' />
<link rel='stylesheet' id='mc4wp-form-basic-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/mailchimp-for-wp/assets/css/form-basic.min.css?ver=4.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='wp-featherlight-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/wp-featherlight/css/wp-featherlight.min.css?ver=1.3.0' type='text/css' media='all' />
<link rel='stylesheet' id='mr_social_sharing-css' href='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/social-sharing-toolkit/style_2.1.2.css?ver=4.9.8' type='text/css' media='all' />
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var userSettings = {"url":"\/","uid":"0","time":"1535442205","secure":"1"};
/* ]]> */
</script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-includes/js/utils.min.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/imagemapper/script/jquery.imagemapster.min.js?ver=4.9.8'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var imgmap = {"ajaxurl":"https:\/\/waitbutwhy.com\/wp-admin\/admin-ajax.php","pulseOption":"never","admin_logged":"","alt_dialog":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/imagemapper/imagemapper_script.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/social-sharing-toolkit/script_no_follow_2.1.2.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/social-sharing-toolkit/includes/buttons/button.facebook.js?ver=4.9.8'></script>
<script type='text/javascript' src='//connect.facebook.net/en_US/all.js?ver=4.9.8#xfbml=1&appId=188707654478'></script>
<script type='text/javascript' src='https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/plugins/social-sharing-toolkit/includes/buttons/button.googleplus.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://platform.twitter.com/widgets.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://assets.pinterest.com/js/pinit.js?ver=4.9.8'></script>
<link rel='https://api.w.org/' href='https://waitbutwhy.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://waitbutwhy.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://waitbutwhy.com/wp-includes/wlwmanifest.xml" />
<link rel='shortlink' href='https://waitbutwhy.com/' />
<link rel="alternate" type="application/json+oembed" href="https://waitbutwhy.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwaitbutwhy.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://waitbutwhy.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwaitbutwhy.com%2F&format=xml" />
<!-- AJAXY SEARCH V 3.0.9-->
<style type="text/css">.screen-reader-text { display:none; }</style>
<script type="text/javascript">
/* <![CDATA[ */
var sf_position = '0';
var sf_templates = "<a href=\"{search_url_escaped}\"><span class=\"sf_text\">See more results for \"{search_value}\"<\/span><span class=\"sf_small\">Displaying top {total} results<\/span><\/a>";
var sf_input = '.sf_input';
jQuery(document).ready(function(){
jQuery(sf_input).ajaxyLiveSearch({"expand":"0","searchUrl":"https:\/\/waitbutwhy.com\/?s=%s","text":"Search","delay":"500","iwidth":"180","width":"400","ajaxUrl":"https:\/\/waitbutwhy.com\/wp-admin\/admin-ajax.php?lang=en","rtl":"0"});
jQuery(".sf_ajaxy-selective-input").keyup(function() {
var width = jQuery(this).val().length * 8;
if(width < 50) {
width = 50;
}
jQuery(this).width(width);
});
jQuery(".sf_ajaxy-selective-search").click(function() {
jQuery(this).find(".sf_ajaxy-selective-input").focus();
});
jQuery(".sf_ajaxy-selective-close").click(function() {
jQuery(this).parent().remove();
});
});
/* ]]> */
</script>
<meta property="fb:app_id" content="689761124373742"/><meta property="fb:admins" content="4269"/><style type="text/css"> .enews .screenread {
height: 1px;
left: -1000em;
overflow: hidden;
position: absolute;
top: -1000em;
width: 1px; } </style><script type="text/javascript">
jQuery(document).ready(function(){
jQuery('img[usemap]').rwdImageMaps();
});
</script>
<style type="text/css">
img[usemap] { max-width: 100%; height: auto; }
</style>
<!-- Stream WordPress user activity plugin v3.2.3 -->
<link rel="alternate" href="https://waitbutwhy.com/" hreflang="en" />
<link rel="alternate" href="https://waitbutwhy.com/es/" hreflang="es" />
<link rel="alternate" href="https://waitbutwhy.com/pt/" hreflang="pt" />
<meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><meta name="google-site-verification" content="ddwsWWxKYuRG5JQxxW8LEDhP0WIqrvY4kazXD5PHsYg" /><script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<meta name="google-site-verification" content="aFU00rk5wyZ3kRvr-1pvx1mJfiGfEe_e_DrA8XZMXJM" />
<script type="text/javascript" src="https://gumroad.com/js/gumroad.js"></script>
<style type="text/css" id="wp-custom-css">
/*
You can add your own CSS here.
Click the help icon above to learn more.
*/
.scu-clear .scu-1.scu-layout5.scu-jq img {
margin-bottom: 80px !important;
margin-right: 20px !important;
}
.scu-clear .scu-2.scu-layout4.scu-jq img {
margin-right: 20px !important;
}
#socBarmageddon div {
margin-right: 4px !important;
left: 0 !important;
top: 0px;
margin-left: 0;
}
#pinterestSharePost img {
margin: 0;
}
#gplusSharePost {
width: 38px;
height: 22px;
}
#pocketSharePost {
width: 118px;
}
#stumbleuponSharePost {
display: none;
}
h1 {
font-size: 32px;
}
h2 {
font-size: 23px;
}
h3 {
font-size: 21px;
}
h4 {
font-size: 19px;
}
h5 {
font-size: 17px;
}
h6 {
font-size: 15px;
}
@media screen and (min-width: 768px) {
h1 {
font-size: 40px;
}
h2 {
font-size: 37px;
}
h3 {
font-size: 26px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 22px;
}
h6 {
font-size: 19px;
}
}
.search-results .homeFBL2 {
top: auto;
}
.share a[href^="https://plus.google.com/share"] {
display: none;
} </style>
<meta data-pso-pv="1.2.1" data-pso-pt="front" data-pso-th="b955ffc580bdd14e37efa8fe78290a34">
<!--[if lt IE 9]>
<script src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/js/html5.js" type="text/javascript"></script>
<![endif]-->
<script type="text/javascript" async="async" src="//cdn.optimizely.com/js/2572440331.js"></script>
<script type="text/javascript">
/** Theme Specific JS **/
var themeDir = "https://waitbutwhy.com/wp-content/themes/waitbutwhy";
</script>
</head>
<body class="home page-template page-template-page-home page-template-page-home-php page page-id-415 wp-featherlight-captions">
<!-- Facebook Pixel Tracker -->
<noscript>
<img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/tr?id=373106669537767&ev=PixelInitialized" />
</noscript>
<!-- End Facebook Pixel Tracker -->
<header id="header">
<div class="top main-color-bg">
<div class="content-wrap">
<div class="left">
<ul class="list">
<li>
<i class="icon-home"></i>
<a href="https://waitbutwhy.com">
Home </a>
</li>
</ul>
</div>
<div class="social">
<ul class="list">
</ul>
</div>
</div>
</div>
<div class="logo-section">
<div class="content-wrap">
<div class="logo">
<h1>
<a href="https://waitbutwhy.com" title="Wait But Why">
<img width="577" height="162" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/03/Logo-sometimes-Pixelmator-577.png" alt="Wait But Why" />
</a>
</h1>
</div>
</div>
</div>
<nav class="primary-menu clearfix">
<div class="content-wrap">
<div class="mobile-menu">
<a class="menu-slide" href="#">
<span class="title">Menu</span>
<span class="icon"><i class="icon-list"></i></span>
</a>
</div>
<ul id="menu-primary-navigation" class="sf-menu"><li id="menu-item-2337" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-415 current_page_item menu-item-2337"><a href="https://waitbutwhy.com/">Homepage</a></li>
<li id="menu-item-3083" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3083"><a href="https://waitbutwhy.com/wait-but-who">about</a>
<ul class="sub-menu">
<li id="menu-item-1800" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1800"><a href="https://waitbutwhy.com/wait-but-who">wait but who</a></li>
<li id="menu-item-1801" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1801"><a href="https://waitbutwhy.com/faq">faq</a></li>
<li id="menu-item-1802" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1802"><a href="https://waitbutwhy.com/contact">contact</a></li>
</ul>
</li>
<li id="menu-item-1798" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1798"><a href="https://waitbutwhy.com/archive">archive</a></li>
<li id="menu-item-2727" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2727"><a href="https://waitbutwhy.com/minis">minis</a></li>
<li id="menu-item-1799" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1799"><a href="https://waitbutwhy.com/the-shed">the shed</a></li>
<li id="menu-item-2909" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2909"><a href="https://waitbutwhy.com/table">dinner table</a></li>
<li id="menu-item-557" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-557"><a href="http://shop.waitbutwhy.com/">store</a>
<ul class="sub-menu">
<li id="menu-item-3479" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3479"><a href="http://store.waitbutwhy.com">store home</a></li>
<li id="menu-item-5941" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5941"><a href="https://store.waitbutwhy.com/collections/new-releases">new releases</a></li>
<li id="menu-item-1437" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1437"><a href="http://store.waitbutwhy.com/collections/posters">posters</a></li>
<li id="menu-item-5942" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5942"><a href="https://store.waitbutwhy.com/collections/phone-cases">phone cases</a></li>
<li id="menu-item-5944" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5944"><a href="https://store.waitbutwhy.com/collections/cards-and-wrapping-paper">cards & wrapping paper</a></li>
<li id="menu-item-1436" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1436"><a href="http://store.waitbutwhy.com/collections/plush-toys">squishy things</a></li>
<li id="menu-item-1434" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1434"><a href="http://store.waitbutwhy.com/collections/wait-but-why-tees">men’s tees</a></li>
<li id="menu-item-1435" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1435"><a href="http://store.waitbutwhy.com/collections/womens-tees">women’s tees</a></li>
<li id="menu-item-3478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3478"><a href="http://store.waitbutwhy.com/collections/coffee-mugs">coffee mugs</a></li>
<li id="menu-item-1440" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1440"><a href="https://waitbutwhy.com/contact">store support</a></li>
</ul>
</li>
<li id="menu-item-1803" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1803"><a href="https://waitbutwhy.com/support-wait">support wbw</a></li>
<li id="menu-item-2336" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2336"><a href="https://waitbutwhy.com/cn">Welcome to Wait But Why Chinese!</a></li>
<li id="menu-item-2751" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2751"><a href="https://waitbutwhy.com/finnscave">Finn’s Cave</a></li>
</ul> <div class="social">
<div class="search" style="float: left;top: 9px;position: relative;">
<form method="get" id="searchform" class="search-form" action="/">
<input type="text" class="search-field" name="s" id="s" placeholder="Search">
<button class="search-submit"><i class="icon-search"></i></button>
</form>
</div>
<ul class="list">
<li class="rss" style="position: relative;top: -10px;">
<a href="https://waitbutwhy.com/feed"><i class="icon-rss"></i></a>
</li>
</ul>
</div>
</div>
</nav>
<div class="clearfix"></div>
</header>
<div id="container" class="hfeed">
<div id="main">
<div id="content" class="homepage">
<div class="homeMessage">
<aside id="text-9" class="widget widget_text"> <div class="textwidget"></div>
</aside> </div>
<div id="fb-root"></div>
<div id="feat-postlist" class="section">
<div class="archive-postlist">
<div class="mainPostEntry">
<div class="mainPost">
<h1><a href="https://waitbutwhy.com/2018/04/picking-career.html">How to Pick a Career (That Actually Fits You)</a></h1>
<article id="post-6721" class="post-6721 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-featured-post tag-selfhelp">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2018/04/picking-career.html"><img width="782" height="530" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-782x530.png" class="attachment-fp780_400 size-fp780_400 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-768x520.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/career-feature-1.png 1200w" sizes="(max-width: 782px) 100vw, 782px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2018/04/picking-career.html#comments"><span class="dsq-postid" data-dsqidentifier="6721 https://waitbutwhy.com/?p=6721">81 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2018/04/picking-career.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2018/04/picking-career.html">How to Pick a Career (That Actually Fits You)</a></h3>
</header>
<div class="entry-excerpt">
Our career path is how we spend our time, how we support our lifestyles, how we make our impact, and even sometimes how we define our identity. Let’s make sure we’re on the right track.
... <a class="read-more" href="https://waitbutwhy.com/2018/04/picking-career.html">Read More</a> </div>
</article><!-- /post-6721 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2018/04/picking-career.html#comments"><i class="icon-comments"></i> 346</a>
<a href="https://twitter.com/intent/tweet?text=How to Pick a Career (That Actually Fits You)&url=https://waitbutwhy.com/2018/04/picking-career.html"><i class="icon-twitter"></i> 3217</a>
<a href="https://plus.google.com/share?url=https://waitbutwhy.com/2018/04/picking-career.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="6721" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=https://waitbutwhy.com/2018/04/picking-career.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="https://waitbutwhy.com/2018/04/picking-career.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">15k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</div>
<div class="cat-header">
<div class="cat-title second-color-bg">
<h4>Latest Posts</h4>
</div>
</div>
<div class="one-half">
<article id="post-6120" class="post-6120 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-future tag-science tag-technology">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2017/04/neuralink.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2018/04/FEATURE.png 1475w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2017/04/neuralink.html#comments"><span class="dsq-postid" data-dsqidentifier="6120 https://waitbutwhy.com/?p=6120">6 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2017/04/neuralink.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2017/04/neuralink.html">Neuralink and the Brain’s Magical Future</a></h3>
</header>
<div class="entry-excerpt">
I knew the future would be shocking but this is a whole other level.
... <a class="read-more" href="https://waitbutwhy.com/2017/04/neuralink.html">Read More</a> </div>
</article><!-- /post-6120 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2017/04/neuralink.html#comments"><i class="icon-comments"></i> 860</a>
<a href="https://twitter.com/intent/tweet?text=Neuralink and the Brain’s Magical Future&url=http://waitbutwhy.com/2017/04/neuralink.html"><i class="icon-twitter"></i> 12279</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2017/04/neuralink.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="6120" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2017/04/neuralink.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2017/04/neuralink.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">47k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half last">
<article id="post-5811" class="post-5811 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-selfhelp">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/10/100-blocks-day.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/100-blocks-a-day-FEATURE.png 1311w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/10/100-blocks-day.html#comments"><span class="dsq-postid" data-dsqidentifier="5811 https://waitbutwhy.com/?p=5811">5 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/10/100-blocks-day.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/10/100-blocks-day.html">100 Blocks a Day</a></h3>
</header>
<div class="entry-excerpt">
Everyone gets 100 10-minute time blocks to use every day. How are you using yours?
... <a class="read-more" href="https://waitbutwhy.com/2016/10/100-blocks-day.html">Read More</a> </div>
</article><!-- /post-5811 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/10/100-blocks-day.html#comments"><i class="icon-comments"></i> 116</a>
<a href="https://twitter.com/intent/tweet?text=100 Blocks a Day&url=http://waitbutwhy.com/2016/10/100-blocks-day.html"><i class="icon-twitter"></i> 1908</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/10/100-blocks-day.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5811" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/10/100-blocks-day.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/10/100-blocks-day.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">10k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half">
<article id="post-5782" class="post-5782 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-funny tag-trump">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/10/second-presidential-debate.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/10/Feature-2.png 1475w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/10/second-presidential-debate.html#comments"><span class="dsq-postid" data-dsqidentifier="5782 https://waitbutwhy.com/?p=5782">1 comment</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/10/second-presidential-debate.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/10/second-presidential-debate.html">The Second Presidential Debate</a></h3>
</header>
<div class="entry-excerpt">
In case you missed it, here’s what happened.
... <a class="read-more" href="https://waitbutwhy.com/2016/10/second-presidential-debate.html">Read More</a> </div>
</article><!-- /post-5782 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/10/second-presidential-debate.html#comments"><i class="icon-comments"></i> 293</a>
<a href="https://twitter.com/intent/tweet?text=The Second Presidential Debate&url=http://waitbutwhy.com/2016/10/second-presidential-debate.html"><i class="icon-twitter"></i> 3229</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/10/second-presidential-debate.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5782" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/10/second-presidential-debate.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/10/second-presidential-debate.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">68k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half last">
<article id="post-5715" class="post-5715 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-astronomy tag-musk">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-345x234.jpg" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-345x234.jpg 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-768x521.jpg 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/Feature-2.jpg 1206w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html#comments"><span class="dsq-postid" data-dsqidentifier="5715 https://waitbutwhy.com/?p=5715">6 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html">SpaceX’s Big Fucking Rocket – The Full Story</a></h3>
</header>
<div class="entry-excerpt">
It’s gonna take you to Mars.
... <a class="read-more" href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html">Read More</a> </div>
</article><!-- /post-5715 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html#comments"><i class="icon-comments"></i> 615</a>
<a href="https://twitter.com/intent/tweet?text=SpaceX’s Big Fucking Rocket – The Full Story&url=http://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html"><i class="icon-twitter"></i> 3701</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5715" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/09/spacexs-big-fking-rocket-the-full-story.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">27k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half">
<article id="post-5618" class="post-5618 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-psychology tag-selfhelp">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/09/marriage-decision.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-345x234.jpg" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="stick figure couple huddled on a beam between "soul crushing breakup" and "permanent marriage till you die"" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-345x234.jpg 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-768x521.jpg 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/09/MarriageDecision_Feature.jpg 1475w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/09/marriage-decision.html#comments"><span class="dsq-postid" data-dsqidentifier="5618 https://waitbutwhy.com/?p=5618">3 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/09/marriage-decision.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/09/marriage-decision.html">The Marriage Decision: Everything Forever or Nothing Ever Again</a></h3>
</header>
<div class="entry-excerpt">
Let’s take a deep breath and figure this out together.
... <a class="read-more" href="https://waitbutwhy.com/2016/09/marriage-decision.html">Read More</a> </div>
</article><!-- /post-5618 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/09/marriage-decision.html#comments"><i class="icon-comments"></i> 383</a>
<a href="https://twitter.com/intent/tweet?text=The Marriage Decision: Everything Forever or Nothing Ever Again&url=http://waitbutwhy.com/2016/09/marriage-decision.html"><i class="icon-twitter"></i> 1047</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/09/marriage-decision.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5618" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/09/marriage-decision.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/09/marriage-decision.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">23k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half last">
<article id="post-5412" class="post-5412 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-relationships tag-society tag-wait-but-hi">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="wait but hi logo over a map that shows each country where an event took place" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-300x204.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/WBH16_Report_Feature.png 1200w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html#comments"><span class="dsq-postid" data-dsqidentifier="5412 https://waitbutwhy.com/?p=5412">2 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html">Wait But Hi – Full Report</a></h3>
</header>
<div class="entry-excerpt">
Last weekend (August 13th and 14th) was Wait But Hi — a global hangout weekend for Wait But Why readers. Here’s how it went.
... <a class="read-more" href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html">Read More</a> </div>
</article><!-- /post-5412 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/08/wait-hi-full-report.html#comments"><i class="icon-comments"></i> 71</a>
<a href="https://twitter.com/intent/tweet?text=Wait But Hi – Full Report&url=http://waitbutwhy.com/2016/08/wait-hi-full-report.html"><i class="icon-twitter"></i> 69</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/08/wait-hi-full-report.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5412" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/08/wait-hi-full-report.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/08/wait-hi-full-report.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">3k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half">
<article id="post-5241" class="post-5241 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-funny tag-psychology">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-300x204.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/05/Clueyness-FEATURE-2.png 1253w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html#comments"><span class="dsq-postid" data-dsqidentifier="5241 https://waitbutwhy.com/?p=5241">11 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html">Clueyness: A Weird Kind of Sad</a></h3>
</header>
<div class="entry-excerpt">
No one likes to feel cluey.
... <a class="read-more" href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html">Read More</a> </div>
</article><!-- /post-5241 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html#comments"><i class="icon-comments"></i> 348</a>
<a href="https://twitter.com/intent/tweet?text=Clueyness: A Weird Kind of Sad&url=http://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html"><i class="icon-twitter"></i> 717</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5241" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/05/clueyness-a-weird-kind-of-sad.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">10k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half last">
<article id="post-5151" class="post-5151 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-funny">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/05/mailbag-1.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/FEATURE.png 1475w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/05/mailbag-1.html#comments"><span class="dsq-postid" data-dsqidentifier="5151 https://waitbutwhy.com/?p=5151">5 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/05/mailbag-1.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/05/mailbag-1.html">Mailbag #1</a></h3>
</header>
<div class="entry-excerpt">
Tim answers 46 reader questions about almost everything.
... <a class="read-more" href="https://waitbutwhy.com/2016/05/mailbag-1.html">Read More</a> </div>
</article><!-- /post-5151 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/05/mailbag-1.html#comments"><i class="icon-comments"></i> 289</a>
<a href="https://twitter.com/intent/tweet?text=Mailbag #1&url=http://waitbutwhy.com/2016/05/mailbag-1.html"><i class="icon-twitter"></i> 165</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/05/mailbag-1.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5151" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/05/mailbag-1.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/05/mailbag-1.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">1k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half">
<article id="post-4836" class="post-4836 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-future tag-science tag-technology">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/03/cryonics.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-345x234.png" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-3.png 1500w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/03/cryonics.html#comments"><span class="dsq-postid" data-dsqidentifier="4836 https://waitbutwhy.com/?p=4836">3 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/03/cryonics.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/03/cryonics.html">Why Cryonics Makes Sense</a></h3>
</header>
<div class="entry-excerpt">
The more I read about cryonics—i.e. freezing yourself after death—the more I realized it’s something we should all be talking about.
... <a class="read-more" href="https://waitbutwhy.com/2016/03/cryonics.html">Read More</a> </div>
</article><!-- /post-4836 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/03/cryonics.html#comments"><i class="icon-comments"></i> 756</a>
<a href="https://twitter.com/intent/tweet?text=Why Cryonics Makes Sense&url=http://waitbutwhy.com/2016/03/cryonics.html"><i class="icon-twitter"></i> 1224</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/03/cryonics.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4836" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/03/cryonics.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/03/cryonics.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">14k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
<div class="one-half last">
<article id="post-5024" class="post-5024 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">
<div class="thumb-wrap">
<div class="thumb">
<a href="https://waitbutwhy.com/2016/03/my-ted-talk.html"><img width="345" height="234" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-345x234.jpg" class="attachment-fp345_234 size-fp345_234 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-345x234.jpg 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-768x520.jpg 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/TED-Vid-FEATURE1.jpg 1408w" sizes="(max-width: 345px) 100vw, 345px" /></a>
</div>
<span class="comments main-color-bg">
<i class="icon-comments"></i>
<a href="https://waitbutwhy.com/2016/03/my-ted-talk.html#comments"><span class="dsq-postid" data-dsqidentifier="5024 https://waitbutwhy.com/?p=5024">5 comments</span></a> </span>
<div class="overlay">
<a class="post-link" href="https://waitbutwhy.com/2016/03/my-ted-talk.html"><i class="icon-link"></i></a>
</div>
</div>
<header class="entry-header">
<h3><a href="https://waitbutwhy.com/2016/03/my-ted-talk.html">My TED Talk</a></h3>
</header>
<div class="entry-excerpt">
Everything you need to know about why procrastinators procrastinate
... <a class="read-more" href="https://waitbutwhy.com/2016/03/my-ted-talk.html">Read More</a> </div>
</article><!-- /post-5024 -->
<div class="homeSocial">
<div class="share">
<a href="https://waitbutwhy.com/2016/03/my-ted-talk.html#comments"><i class="icon-comments"></i> 168</a>
<a href="https://twitter.com/intent/tweet?text=My TED Talk&url=http://waitbutwhy.com/2016/03/my-ted-talk.html"><i class="icon-twitter"></i> 1767</a>
<a href="https://plus.google.com/share?url=http://waitbutwhy.com/2016/03/my-ted-talk.html"><i class="icon-google-plus"></i> 0</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="5024" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/03/my-ted-talk.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/03/my-ted-talk.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">29k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</div>
<div style="position: relative;top: 28px; clear:both;">
<div class="nueaw5b84fd1e5ad09" ><!--br><div style="clear:both;"></div><br-->
<!-- BEGIN JS TAG WaitButWhy_728x90 -->
<!--script type="text/javascript"
src="//ib.adnxs.com/ttj?id=2204169">
</script-->
<!-- END TAG -->
<a href="http://store.waitbutwhy.com" target="_blank"><img width="729" height="127" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2014/03/wbw_store_short_ad_tee1.jpg" /></a></div><style type="text/css">
@media screen and (min-width: 1201px) {
.nueaw5b84fd1e5ad09 {
display: block;
}
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
.nueaw5b84fd1e5ad09 {
display: block;
}
}
@media screen and (min-width: 769px) and (max-width: 992px) {
.nueaw5b84fd1e5ad09 {
display: block;
}
}
@media screen and (min-width: 768px) and (max-width: 768px) {
.nueaw5b84fd1e5ad09 {
display: block;
}
}
@media screen and (max-width: 767px) {
.nueaw5b84fd1e5ad09 {
display: block;
}
}
</style>
</div>
<div class="older-postlist">
<div class="cat-header">
<div class="cat-title second-color-bg">
<h4>Previous Post</h4>
</div>
</div>
<div id="widget-tab2-content" class="tab-content" style="display: block;">
<ul class="list post-list">
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2016/03/long-email-delay.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-1-345x234.png 345w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2016/03/long-email-delay.html">How I Handle Long Email Delays</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2016/03/long-email-delay.html#comments"><i class="icon-comments"></i> 62</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4912" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/03/long-email-delay.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/03/long-email-delay.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">2k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2016/03/sound.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="depiction of sound waves with rings" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-768x520.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/Feature-2.png 1200w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2016/03/sound.html">Everything You Should Know About Sound</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2016/03/sound.html#respond"><i class="icon-comments"></i> 79</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4885" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/03/sound.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/03/sound.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">5k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2016/03/doing-a-ted-talk-the-full-story.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="stick figure drawing of tim urban on the ted stage" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-768x521.png 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/03/FEATURE-345x234.png 345w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2016/03/doing-a-ted-talk-the-full-story.html">Doing a TED Talk: The Full Story</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2016/03/doing-a-ted-talk-the-full-story.html#comments"><i class="icon-comments"></i> 103</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4737" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/03/doing-a-ted-talk-the-full-story.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/03/doing-a-ted-talk-the-full-story.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">10k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2016/01/horizontal-history.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-103x70.jpg" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="horizontal history section renaissance" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-768x521.jpg 768w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2016/01/Renaissance-F-1-345x234.jpg 345w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2016/01/horizontal-history.html">Horizontal History</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2016/01/horizontal-history.html#respond"><i class="icon-comments"></i> 194</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4624" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2016/01/horizontal-history.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2016/01/horizontal-history.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">21k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/12/the-tail-end.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="bar depicting that 90% of your time in personal relationships may be over" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/12/Tail-End-F.png 1353w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2015/12/the-tail-end.html">The Tail End</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2015/12/the-tail-end.html#comments"><i class="icon-comments"></i> 193</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4579" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2015/12/the-tail-end.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2015/12/the-tail-end.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">234k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/11/the-cook-and-the-chef-musks-secret-sauce.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-103x70.jpg" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE-345x234.jpg 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/11/Line-of-cooks-FEATURE.jpg 1380w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2015/11/the-cook-and-the-chef-musks-secret-sauce.html">The Cook and the Chef: Musk’s Secret Sauce</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2015/11/the-cook-and-the-chef-musks-secret-sauce.html#comments"><i class="icon-comments"></i> 451</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="4367" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2015/11/the-cook-and-the-chef-musks-secret-sauce.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2015/11/the-cook-and-the-chef-musks-secret-sauce.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">20k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-103x70.jpg" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-600x407.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F-345x234.jpg 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/SpaceX-F.jpg 1475w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html">How (and Why) SpaceX Will Colonize Mars</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html#comments"><i class="icon-comments"></i> 936</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="3902" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">48k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/07/why-im-always-late.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F-345x234.png 345w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/F.png 1189w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2015/07/why-im-always-late.html">Why I’m Always Late</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2015/07/why-im-always-late.html#comments"><i class="icon-comments"></i> 448</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="3945" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2015/07/why-im-always-late.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2015/07/why-im-always-late.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">78k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/06/how-tesla-will-change-your-life.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-103x70.png" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-103x70.png 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-300x203.png 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-600x407.png 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-782x530.png 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/06/F-345x234.png 345w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>
<div class="post-right">
<h5><a href="https://waitbutwhy.com/2015/06/how-tesla-will-change-your-life.html">How Tesla Will Change The World</a></h5>
<div class="entry-meta">
<div class="comments">
<a href="https://waitbutwhy.com/2015/06/how-tesla-will-change-your-life.html#comments"><i class="icon-comments"></i> 1,008</a>
<div class="homeFBL2">
<div id="fsb-social-bar" class="fsb-social-bar fsb-no-float" data-post-id="3667" data-socialite="true"><div class="fsb-share-facebook"><a href="http://www.facebook.com/sharer.php?u=http://waitbutwhy.com/2015/06/how-tesla-will-change-your-life.html" class="socialite facebook fsb-facebook" data-fsb-service="facebook" data-href="http://waitbutwhy.com/2015/06/how-tesla-will-change-your-life.html" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false" rel="nofollow" target="_blank"><span class="fsb-service-title">Facebook</span><span class="fsb-count">87k</span></a></div></div><div class="fsb-clear"></div> </div>
</div>
</div>
</div>
</li>
<li>
<div class="thumbnail">
<a href="https://waitbutwhy.com/2015/05/elon-musk-the-worlds-raddest-man.html"><img width="103" height="70" src="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-103x70.jpg" class="attachment-fp75_75 size-fp75_75 wp-post-image" alt="" srcset="https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-103x70.jpg 103w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-300x203.jpg 300w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-600x406.jpg 600w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-782x530.jpg 782w, https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/uploads/2015/05/F-345x234.jpg 345w" sizes="(max-width: 103px) 100vw, 103px" /></a>
</div>