-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
1347 lines (1327 loc) · 67.1 KB
/
index2.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>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<title>Toph Tucker - Index</title>
<body>
<style>
html, body {
max-width: 100%;
overflow-x: hidden;
}
.container {
padding: 3em;
max-width: 940px;
margin: 0 auto;
}
.item {
display: flex;
align-items: center;
}
.item .year {
width: 3em;
}
.item .month {
width: 5em;
}
.item .day {
width: 2em;
padding-right: 1em;
text-align: right;
}
.item .date {
display: none;
}
.item .year, .item .month, .item .day {
flex-shrink: 0;
}
a {
position: relative;
}
.note {
font-size: 0.7rem;
position: absolute;
color: gray;
width: 80px;
font-family: sans-serif;
left: calc(100% - 30px);
top: calc(100% - 10px);
transform: rotate(-10deg);
line-height: 0.9em;
z-index: -1;
}
@media screen and (max-width: 640px) {
.container {
padding: 1em;
}
.item .year, .item .month, .item .day {
display: none;
}
.item .date {
display: block;
}
.item {
flex-direction: column;
align-items: start;
}
}
</style>
<div class="container">
<div class="item" style="margin-bottom: 22px;">
<div class="year">2024</div>
<div class="month">June</div>
<div class="day">19</div>
<div class="date">June 19, 2024</div>
<div style="font-size: 2.5em;">
<a href="https://appletreeinnlenox.com/">Apple Tree Inn<div class="note">site relaunch</div></a>
</div>
</div><div class="item" style="margin-bottom: 39px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day">28</div>
<div class="date">May 28, 2024</div>
<div>
<a href="https://observablehq.com/@tophtucker/do-you-feel-old">Do you feel old?</a>
</div>
</div><div class="item" style="margin-bottom: 3px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">19</div>
<div class="date">April 19, 2024</div>
<div>
<a href="https://observablehq.com/@tophtucker/eclipse-bitemporal-traffic?collection=@tophtucker/bitemporal https://observablehq.com/@tophtucker/eclipse-bitemporal-traffic">Eclipse bitemporal traffic</a>
</div>
</div><div class="item" style="margin-bottom: 29px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">16</div>
<div class="date">April 16, 2024</div>
<div style="font-size: 2.5em;">
<a href="https://ringohospitality.com/">Ringo Hospitality<div class="note">join our Substack!</div></a>
</div>
</div><div class="item" style="margin-bottom: 269px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day">18</div>
<div class="date">March 18, 2024</div>
<div>
<a href="https://observablehq.com/@tophtucker/the-problem-with-dynamic-scales">The problem with dynamic scales</a>
</div>
</div><div class="item" style="margin-bottom: 13px;">
<div class="year">2023</div>
<div class="month">June</div>
<div class="day">23</div>
<div class="date">June 23, 2023</div>
<div>
<a href="https://observablehq.com/@tophtucker/dollar-spectrum">Dollar spectrum</a>
</div>
</div><div class="item" style="margin-bottom: 63px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">10</div>
<div class="date">June 10, 2023</div>
<div>
<a href="https://observablehq.com/@tophtucker/the-feedback-bathtub">The Feedback Bathtub</a>
</div>
</div><div class="item" style="margin-bottom: 74px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day"> 8</div>
<div class="date">April 8, 2023</div>
<div>
<a href="https://observablehq.com/@tophtucker/espn-receiver-tracking-weighted-radar">Showing ESPN Receiver Tracking Metrics using weighted radar charts<div class="note">with Seth</div></a>
</div>
</div><div class="item" style="margin-bottom: 4px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">24</div>
<div class="date">January 24, 2023</div>
<div>
<a href="https://observablehq.com/@tophtucker/dual-axes-are-a-great-way-to-show-correlation">Dual axes are a great way to show correlation</a>
</div>
</div><div class="item" style="margin-bottom: 73px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">20</div>
<div class="date">January 20, 2023</div>
<div>
<a href="https://observablehq.com/@tophtucker/reactive-table">Reactive table</a>
</div>
</div><div class="item" style="margin-bottom: 1px;">
<div class="year">2022</div>
<div class="month">November</div>
<div class="day"> 8</div>
<div class="date">November 8, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/labyrinth">Labyrinth</a>
</div>
</div><div class="item" style="margin-bottom: 11px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 7</div>
<div class="date">November 7, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/how-to-write-a-number">How to write a number</a>
</div>
</div><div class="item" style="margin-bottom: 192px;">
<div class="year"></div>
<div class="month">October</div>
<div class="day">27</div>
<div class="date">October 27, 2022</div>
<div style="font-size: 1.5em;">
<a href="https://www.tophtucker.com/classic-research/">Five Thousand Years of Graphics</a>
</div>
</div><div class="item" style="margin-bottom: 20px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">18</div>
<div class="date">April 18, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/norms-and-central-tendency">Norms and central tendency<div class="note">with Paul</div></a>
</div>
</div><div class="item" style="margin-bottom: 11px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day">29</div>
<div class="date">March 29, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/data-driven-table-sort-icon">Data-driven table sort icon</a>
</div>
</div><div class="item" style="margin-bottom: 15px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">18</div>
<div class="date">March 18, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/recreating-ostlings-regression-visualizations">Recreating Östling’s regression visualizations</a>
</div>
</div><div class="item" style="margin-bottom: 41px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 3</div>
<div class="date">March 3, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/et-al">Et al.</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">21</div>
<div class="date">January 21, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/how-many-five-digit-numbers-are-prime">How many five digit numbers are prime?</a>
</div>
</div><div class="item" style="margin-bottom: 2px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">16</div>
<div class="date">January 16, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/warping-gridspace?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/warping-gridspace">Warping gridspace</a>
</div>
</div><div class="item" style="margin-bottom: 9px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">14</div>
<div class="date">January 14, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/chatterjee-correlation">Chatterjee correlation<div class="note">with Visnu</div></a>
</div>
</div><div class="item" style="margin-bottom: 54px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 5</div>
<div class="date">January 5, 2022</div>
<div>
<a href="https://observablehq.com/@tophtucker/sampling-mood?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/sampling-mood">Sampling mood</a>
</div>
</div><div class="item" style="margin-bottom: 56px;">
<div class="year">2021</div>
<div class="month">November</div>
<div class="day">12</div>
<div class="date">November 12, 2021</div>
<div>
<a href="https://observablehq.com/@tophtucker/all-too-well?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/all-too-well">All Too Well</a>
</div>
</div><div class="item" style="margin-bottom: 28px;">
<div class="year"></div>
<div class="month">September</div>
<div class="day">17</div>
<div class="date">September 17, 2021</div>
<div>
<a href="https://observablehq.com/@tophtucker/parrots-of-telegraph-hill">Parrots of Telegraph Hill</a>
</div>
</div><div class="item" style="margin-bottom: 11px;">
<div class="year"></div>
<div class="month">August</div>
<div class="day">20</div>
<div class="date">August 20, 2021</div>
<div>
<a href="https://observablehq.com/@tophtucker/decimal-watersheds?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/decimal-watersheds">Decimal watersheds</a>
</div>
</div><div class="item" style="margin-bottom: 6px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 9</div>
<div class="date">August 9, 2021</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/eval-in-place?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/eval-in-place">Eval-in-Place</a>
</div>
</div><div class="item" style="margin-bottom: 25px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 3</div>
<div class="date">August 3, 2021</div>
<div style="font-size: 2em;">
<a href="https://observablehq.com/@tophtucker/classic-research-in-data-visualization">Classic Research in Data Visualization</a>
</div>
</div><div class="item" style="margin-bottom: 3px;">
<div class="year"></div>
<div class="month">July</div>
<div class="day"> 9</div>
<div class="date">July 9, 2021</div>
<div>
<a href="https://observablehq.com/@tophtucker/bitemporal-global-temperature-projections?collection=@tophtucker/bitemporal">Bitemporal global temperature projections</a>
</div>
</div><div class="item" style="margin-bottom: 17px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 6</div>
<div class="date">July 6, 2021</div>
<div>
<a href="https://observablehq.com/@tophtucker/daily-cafe-picker?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/daily-cafe-picker">Daily Café Picker<div class="note">with Visnu</div></a>
</div>
</div><div class="item" style="margin-bottom: 46px;">
<div class="year"></div>
<div class="month">June</div>
<div class="day">19</div>
<div class="date">June 19, 2021</div>
<div>
<a href="https://observablehq.com/@visnup/toph-and-visnu-stream">Toph and Visnu stream</a>
</div>
</div><div class="item" style="margin-bottom: 57px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day"> 4</div>
<div class="date">May 4, 2021</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@observablehq/plot-for-d3-users">Plot for D3 Users</a>
</div>
</div><div class="item" style="margin-bottom: 19px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day"> 8</div>
<div class="date">March 8, 2021</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/fbfa67d296815227af93bf235d8a9d6f">Continuous word wrap</a>
</div>
</div><div class="item" style="margin-bottom: 32px;">
<div class="year"></div>
<div class="month">February</div>
<div class="day">17</div>
<div class="date">February 17, 2021</div>
<div style="font-size: 2em;">
<a href="https://observablehq.com/@tophtucker/how-d3-moved-us">How D3 Moved Us</a>
</div>
</div><div class="item" style="margin-bottom: 33px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">16</div>
<div class="date">January 16, 2021</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/concentration-of-measure?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/concentration-of-measure">Concentration of Measure</a>
</div>
</div><div class="item" style="margin-bottom: 17px;">
<div class="year">2020</div>
<div class="month">December</div>
<div class="day">14</div>
<div class="date">December 14, 2020</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/reflecting-on-vote-cones">Reflecting on “Vote Cones”</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month">November</div>
<div class="day">27</div>
<div class="date">November 27, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/multiplication-and-division-by-similar-triangles?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/multiplication-and-division-by-similar-triangles">Multiplication and Division by Similar Triangles</a>
</div>
</div><div class="item" style="margin-bottom: 19px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">22</div>
<div class="date">November 22, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/recursive-typed-table-sketch?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/recursive-typed-table-sketch">Recursive typed table (sketch!)</a>
</div>
</div><div class="item" style="margin-bottom: 7px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 3</div>
<div class="date">November 3, 2020</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/whats-the-connection-between-these-two-election-bar-charts">What’s the connection between these two election bar charts?</a>
</div>
</div><div class="item" style="margin-bottom: 9px;">
<div class="year"></div>
<div class="month">October</div>
<div class="day">27</div>
<div class="date">October 27, 2020</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@observablehq/visualizing-partial-election-results">As votes come in, what would it take for the trailing candidate to win?</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">18</div>
<div class="date">October 18, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/exploded-bitemporal-line-chart?collection=@tophtucker/bitemporal">Exploded bitemporal line chart</a>
</div>
</div><div class="item" style="margin-bottom: 95px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">13</div>
<div class="date">October 13, 2020</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/examples-of-bitemporal-charts">Examples of bitemporal charts</a>
</div>
</div><div class="item" style="margin-bottom: 3px;">
<div class="year"></div>
<div class="month">July</div>
<div class="day">10</div>
<div class="date">July 10, 2020</div>
<div>
<a href="http://www.tophtucker.com/observable-docco/index.js.html">An Observable Notebook (annotated source)</a>
</div>
</div><div class="item" style="margin-bottom: 8px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 7</div>
<div class="date">July 7, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/bitemporal-coronavirus-cases?collection=@tophtucker/coronavirus">Bitemporal coronavirus cases</a>
</div>
</div><div class="item" style="margin-bottom: 31px;">
<div class="year"></div>
<div class="month">June</div>
<div class="day">29</div>
<div class="date">June 29, 2020</div>
<div>
<a href="http://howlongshouldicookmypasta.com/">How Long Should I Cook My Pasta</a>
</div>
</div><div class="item" style="margin-bottom: 34px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day">29</div>
<div class="date">May 29, 2020</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/sensitivity-and-specificity-sketch?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/sensitivity-and-specificity-sketch">Sensitivity and Specificity (sketch)</a>
</div>
</div><div class="item" style="margin-bottom: 8px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">25</div>
<div class="date">April 25, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/coronavirus-orbits?collection=@tophtucker/coronavirus https://observablehq.com/@tophtucker/coronavirus-orbits">Coronavirus orbits</a>
</div>
</div><div class="item" style="margin-bottom: 0px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">17</div>
<div class="date">April 17, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/coronavirus-logistic-isopleths">Coronavirus logistic isopleths</a>
</div>
</div><div class="item" style="margin-bottom: 28px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"></div>
<div class="date">April 17, 2020</div>
<div>
<a href="https://observablehq.com/@tophtucker/building-up-to-john-burn-murdochs-coronavirus-tracker">Building up to John Burn-Murdoch’s Coronavirus tracker</a>
</div>
</div><div class="item" style="margin-bottom: 144px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day">20</div>
<div class="date">March 20, 2020</div>
<div>
<a href="https://meditationxvii.com/">Meditation XVII</a>
</div>
</div><div class="item" style="margin-bottom: 26px;">
<div class="year">2019</div>
<div class="month">October</div>
<div class="day">28</div>
<div class="date">October 28, 2019</div>
<div>
<a href="https://observablehq.com/@tophtucker/emoji-frequencies?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/emoji-frequencies">Emoji frequencies</a>
</div>
</div><div class="item" style="margin-bottom: 89px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 2</div>
<div class="date">October 2, 2019</div>
<div style="font-size: 2em;">
<a href="https://tophtucker.medium.com/doing-enterprise-financial-data-visualization-after-data-journalism-3c68861b7f4c?source=user_profile---------0------------------------------- https://tophtucker.medium.com/doing-enterprise-financial-data-visualization-after-data-journalism-3c68861b7f4c">Doing enterprise financial data visualization after data journalism</a>
</div>
</div><div class="item" style="margin-bottom: 39px;">
<div class="year"></div>
<div class="month">July</div>
<div class="day"> 5</div>
<div class="date">July 5, 2019</div>
<div>
<a href="https://observablehq.com/@tophtucker/the-man-comes-around?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/the-man-comes-around">The Man Comes Around</a>
</div>
</div><div class="item" style="margin-bottom: 33px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day">27</div>
<div class="date">May 27, 2019</div>
<div style="font-size: 1.5em;">
<a href="https://tophtucker.medium.com/wheres-the-great-american-driving-manual-eec3709289cc?source=user_profile---------1------------------------------- https://tophtucker.medium.com/wheres-the-great-american-driving-manual-eec3709289cc">Where’s the Great American Driving Manual?</a>
</div>
</div><div class="item" style="margin-bottom: 16px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">24</div>
<div class="date">April 24, 2019</div>
<div style="font-size: 2em;">
<a href="https://observablehq.com/@tophtucker/inferring-chart-type-from-autocorrelation-and-other-evils?collection=@tophtucker/essays https://observablehq.com/@tophtucker/inferring-chart-type-from-autocorrelation-and-other-evils">Inferring chart type from autocorrelation and other evils</a>
</div>
</div><div class="item" style="margin-bottom: 89px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 8</div>
<div class="date">April 8, 2019</div>
<div>
<a href="https://observablehq.com/@tophtucker/bitcoin-fractal-bubbles?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/bitcoin-fractal-bubbles">Bitcoin fractal bubbles</a>
</div>
</div><div class="item" style="margin-bottom: 0px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day"> 9</div>
<div class="date">January 9, 2019</div>
<div style="font-size: 1.5em;">
<a href="https://www.are.na/blog/restaurant-websites">Toph Tucker and Jasmine Lee on Why Restaurant Websites Are Good and We’re All Going to Miss Them<div class="note">with Laurel, Meg, Jasmine</div></a>
</div>
</div><div class="item" style="margin-bottom: 9px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"></div>
<div class="date">January 9, 2019</div>
<div>
<a href="https://observablehq.com/@tophtucker/flag-of-the-popular-vote/3?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/flag-of-the-popular-vote/3">Flag of the Popular Vote</a>
</div>
</div><div class="item" style="margin-bottom: 67px;">
<div class="year">2018</div>
<div class="month">December</div>
<div class="day">31</div>
<div class="date">December 31, 2018</div>
<div style="font-size: 1.5em;">
<a href="http://www.tophtucker.com/blankfein/">Blankfein<div class="note">with Max</div></a>
</div>
</div><div class="item" style="margin-bottom: 14px;">
<div class="year"></div>
<div class="month">October</div>
<div class="day">25</div>
<div class="date">October 25, 2018</div>
<div style="font-size: 1.5em;">
<a href="https://www.are.na/toph-tucker/restaurant-websites-12le9svzxtg">Restaurant Websites</a>
</div>
</div><div class="item" style="margin-bottom: 156px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">11</div>
<div class="date">October 11, 2018</div>
<div style="font-size: 1.5em;">
<a href="https://observablehq.com/@tophtucker/re-can-moons-have-moons?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/re-can-moons-have-moons">Re: “Can Moons Have Moons?”</a>
</div>
</div><div class="item" style="margin-bottom: 31px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day"> 8</div>
<div class="date">May 8, 2018</div>
<div>
<a href="https://observablehq.com/@tophtucker/mandelbrots-binomial-time-bending?collection=@tophtucker/sketches https://observablehq.com/@tophtucker/mandelbrots-binomial-time-bending">Mandelbrot’s binomial time bending??</a>
</div>
</div><div class="item" style="margin-bottom: 24px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day"> 7</div>
<div class="date">April 7, 2018</div>
<div>
<a href="https://twitter.com/tophtucker/status/1127722099857154048">tektodialektik</a>
</div>
</div><div class="item" style="margin-bottom: 35px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day">14</div>
<div class="date">March 14, 2018</div>
<div style="font-size: 2em;">
<a href="https://observablehq.com/@tophtucker/tales-from-the-romeo-and-juliet-phase-space?collection=@tophtucker/essays https://observablehq.com/@tophtucker/tales-from-the-romeo-and-juliet-phase-space">Tales From the Romeo and Juliet Phase Space</a>
</div>
</div><div class="item" style="margin-bottom: 16px;">
<div class="year"></div>
<div class="month">February</div>
<div class="day"> 7</div>
<div class="date">February 7, 2018</div>
<div style="font-size: 2em;">
<a href="https://observablehq.com/@tophtucker/theres-plenty-of-room-in-the-corners?collection=@tophtucker/essays https://observablehq.com/@tophtucker/theres-plenty-of-room-in-the-corners">There’s Plenty of Room in the Corners</a>
</div>
</div><div class="item" style="margin-bottom: 13px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">22</div>
<div class="date">January 22, 2018</div>
<div style="font-size: 2em;">
<a href="https://blog.kensho.com/a-day-in-the-life-of-tony-f3f2369f5d13?gi=c5d1484d6391 https://blog.kensho.com/a-day-in-the-life-of-tony-f3f2369f5d13">A Day in the Life of Tony</a>
</div>
</div><div class="item" style="margin-bottom: 52px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 9</div>
<div class="date">January 9, 2018</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/62f93a4658387bb61e4510c37e2e97cf">Measure text</a>
</div>
</div><div class="item" style="margin-bottom: 63px;">
<div class="year">2017</div>
<div class="month">November</div>
<div class="day">18</div>
<div class="date">November 18, 2017</div>
<div>
<a href="https://tophtucker.medium.com/thinking-out-loud-why-are-presidential-elections-so-close-to-50-50-28c54563f341?source=user_profile---------3------------------------------- https://tophtucker.medium.com/thinking-out-loud-why-are-presidential-elections-so-close-to-50-50-28c54563f341">Thinking out loud: Why are presidential elections so close to 50–50?</a>
</div>
</div><div class="item" style="margin-bottom: 120px;">
<div class="year"></div>
<div class="month">September</div>
<div class="day">16</div>
<div class="date">September 16, 2017</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/ce18249c16ca6fa925acc73c73b60294">Viewport reflowing</a>
</div>
</div><div class="item" style="margin-bottom: 40px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day">19</div>
<div class="date">May 19, 2017</div>
<div>
<a href="https://tophtucker.medium.com/notes-from-a-walk-by-the-river-at-lunch-a1741144e1da?source=user_profile---------4------------------------------- https://tophtucker.medium.com/notes-from-a-walk-by-the-river-at-lunch-a1741144e1da">notes from a walk by the river at lunch</a>
</div>
</div><div class="item" style="margin-bottom: 50px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day"> 9</div>
<div class="date">April 9, 2017</div>
<div>
<a href="https://tophtucker.medium.com/confess-your-unpopular-opinion-twitter-is-good-ea61b698014a?source=user_profile---------6------------------------------- https://tophtucker.medium.com/confess-your-unpopular-opinion-twitter-is-good-ea61b698014a">Confess your unpopular opinion: Twitter is good</a>
</div>
</div><div class="item" style="margin-bottom: 14px;">
<div class="year"></div>
<div class="month">February</div>
<div class="day">18</div>
<div class="date">February 18, 2017</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/c2631f2e097d4e3f049f636318abbe98">Pagerip</a>
</div>
</div><div class="item" style="margin-bottom: 0px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 4</div>
<div class="date">February 4, 2017</div>
<div>
<a href="https://medium.com/blockquotes/consciousness-not-necessary-for-reason-2ab7fddd194b">Consciousness Not Necessary for Reason</a>
</div>
</div><div class="item" style="margin-bottom: 6px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"></div>
<div class="date">February 4, 2017</div>
<div>
<a href="https://medium.com/blockquotes/28-a-chapter-that-can-be-skipped-by-anyone-who-has-no-very-high-opinion-of-thinking-as-an-7bdfe79b1854?source=user_profile---------7------------------------------- https://medium.com/blockquotes/28-a-chapter-that-can-be-skipped-by-anyone-who-has-no-very-high-opinion-of-thinking-as-an-7bdfe79b1854">28. A chapter that can be skipped by anyone who has no very high opinion of thinking as an occupation.</a>
</div>
</div><div class="item" style="margin-bottom: 1px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">29</div>
<div class="date">January 29, 2017</div>
<div>
<a href="https://tophtucker.medium.com/observations-from-boston-rally-today-b1c5289fa2e5">Observations from the Boston rally</a>
</div>
</div><div class="item" style="margin-bottom: 13px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">28</div>
<div class="date">January 28, 2017</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/67ae8d1faa58567945cd5bbca8cc08eb">Swizzle</a>
</div>
</div><div class="item" style="margin-bottom: 36px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">15</div>
<div class="date">January 15, 2017</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/01c65df41d3776429f55b7132f9446cd">Trump support vs. distance from major city</a>
</div>
</div><div class="item" style="margin-bottom: 38px;">
<div class="year">2016</div>
<div class="month">December</div>
<div class="day">10</div>
<div class="date">December 10, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/dfe00b5e1eb96a3ee749a14b64771774">Trump support vs. distance from sea, final</a>
</div>
</div><div class="item" style="margin-bottom: 58px;">
<div class="year"></div>
<div class="month">November</div>
<div class="day"> 2</div>
<div class="date">November 2, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://tophtucker.medium.com/it-is-morning-and-i-have-woken-up-3e780ee290b0?source=user_profile---------10------------------------------- https://tophtucker.medium.com/it-is-morning-and-i-have-woken-up-3e780ee290b0">It is morning and I have woken up…</a>
</div>
</div><div class="item" style="margin-bottom: 8px;">
<div class="year"></div>
<div class="month">September</div>
<div class="day"> 5</div>
<div class="date">September 5, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/a18093dcc8d4df15b5d426f493c8effc">Trump support vs. distance from sea</a>
</div>
</div><div class="item" style="margin-bottom: 38px;">
<div class="year"></div>
<div class="month">August</div>
<div class="day">28</div>
<div class="date">August 28, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/ee4c347415706119a6daf50a5caf48bf">The Continuity of Parks</a>
</div>
</div><div class="item" style="margin-bottom: 12px;">
<div class="year"></div>
<div class="month">July</div>
<div class="day">21</div>
<div class="date">July 21, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/d96bba12dc526ab7cd96fa79a969661b">A clock of Toph’s summer</a>
</div>
</div><div class="item" style="margin-bottom: 3px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 9</div>
<div class="date">July 9, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/65ffa9bf25c971a985ae1afb721bca2d">Typeset gyro</a>
</div>
</div><div class="item" style="margin-bottom: 7px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 6</div>
<div class="date">July 6, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/b60766a1a137dbee3bf12fa6350d0069">SkimGuard™</a>
</div>
</div><div class="item" style="margin-bottom: 6px;">
<div class="year"></div>
<div class="month">June</div>
<div class="day">29</div>
<div class="date">June 29, 2016</div>
<div>
<a href="https://www.tophtucker.com/mtaspaghetti/">MTA Spaghetti</a>
</div>
</div><div class="item" style="margin-bottom: 9px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">23</div>
<div class="date">June 23, 2016</div>
<div>
<a href="https://blocks.roadtolarissa.com/tophtucker/d161169c785ac1eeec01c92f89bd0ecd">The Brexit Game</a>
</div>
</div><div class="item" style="margin-bottom: 43px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">14</div>
<div class="date">June 14, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://tophtucker.medium.com/a-year-and-60-000-characters-of-tweet-drafts-b51f57ba2552">A year and 60,000 characters of tweet drafts</a>
</div>
</div><div class="item" style="margin-bottom: 0px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day"> 2</div>
<div class="date">May 2, 2016</div>
<div>
<a href="https://tophtucker.medium.com/sleepless-notes-on-love-and-metabolism-a09251a1b1a">Sleepless notes on love and metabolism</a>
</div>
</div><div class="item" style="margin-bottom: 21px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"></div>
<div class="date">May 2, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://www.tophtucker.com/type/">Experiments in typography</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">11</div>
<div class="date">April 11, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/features/2016-design/">The Design Issue<div class="note">some page design</div></a>
</div>
</div><div class="item" style="margin-bottom: 28px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 6</div>
<div class="date">April 6, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/features/2016-design/a/stewart-butterfield/">Slacking With Slack CEO Stewart Butterfield</a>
</div>
</div><div class="item" style="margin-bottom: 13px;">
<div class="year"></div>
<div class="month">March</div>
<div class="day"> 9</div>
<div class="date">March 9, 2016</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/features/2016-etf-files/toy/">How ETFs Work</a>
</div>
</div><div class="item" style="margin-bottom: 14px;">
<div class="year"></div>
<div class="month">February</div>
<div class="day">25</div>
<div class="date">February 25, 2016</div>
<div>
<a href="http://www.bizweekgraphics.com/swoopyarrows/">Swoopy Arrows</a>
</div>
</div><div class="item" style="margin-bottom: 4px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">11</div>
<div class="date">February 11, 2016</div>
<div>
<a href="https://tophtucker.medium.com/this-morning-on-the-train-i-read-this-passage-in-the-man-without-qualities-published-1930-1943-a801af4c4885?source=user_profile---------13------------------------------- https://tophtucker.medium.com/this-morning-on-the-train-i-read-this-passage-in-the-man-without-qualities-published-1930-1943-a801af4c4885">This morning on the train…</a>
</div>
</div><div class="item" style="margin-bottom: 2px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 7</div>
<div class="date">February 7, 2016</div>
<div>
<a href="https://www.bloomberg.com/features/2016-flipcharts/superbowl/ https://www.bloomberg.com/features/2016-flipcharts/superbowl/#opener">Eight Things About Super Bowl 50</a>
</div>
</div><div class="item" style="margin-bottom: 21px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 5</div>
<div class="date">February 5, 2016</div>
<div>
<a href="https://tophtucker.medium.com/when-twitter-was-young-its-flat-egalitarianism-amazed-people-808ebf22cae2">When Twitter was young…</a>
</div>
</div><div class="item" style="margin-bottom: 37px;">
<div class="year"></div>
<div class="month">January</div>
<div class="day">15</div>
<div class="date">January 15, 2016</div>
<div>
<a href="https://tophtucker.medium.com/a-n-whitehead-1911-693a343371f">A. N. Whitehead, 1911</a>
</div>
</div><div class="item" style="margin-bottom: 37px;">
<div class="year">2015</div>
<div class="month">December</div>
<div class="day"> 9</div>
<div class="date">December 9, 2015</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/features/2015-stock-chart-trading-game/analysis/">How Do People Play The Trading Game?<div class="note">with Adam</div></a>
</div>
</div><div class="item" style="margin-bottom: 14px;">
<div class="year"></div>
<div class="month">November</div>
<div class="day"> 2</div>
<div class="date">November 2, 2015</div>
<div>
<a href="https://tophtucker.medium.com/occasionally-a-previously-unnoticed-bias-error-assumption-of-mine-rears-its-head-erupts-so-4ab9078f0b9f">Occasionally a previously-unnoticed bias…</a>
</div>
</div><div class="item" style="margin-bottom: 31px;">
<div class="year"></div>
<div class="month">October</div>
<div class="day">19</div>
<div class="date">October 19, 2015</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/features/2015-stock-chart-trading-game/">The Trading Game</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month">September</div>
<div class="day">18</div>
<div class="date">September 18, 2015</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/graphics/2015-how-to-rig-libor-interactive/">How to Rig Libor</a>
</div>
</div><div class="item" style="margin-bottom: 20px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">13</div>
<div class="date">September 13, 2015</div>
<div>
<a href="https://tophtucker.medium.com/we-laugh-at-ray-kurzweil-for-predicting-some-kind-of-exponential-tech-curve-convergence-radically-402c6871bb6c?source=user_profile---------17------------------------------- https://tophtucker.medium.com/we-laugh-at-ray-kurzweil-for-predicting-some-kind-of-exponential-tech-curve-convergence-radically-402c6871bb6c">We laugh at Ray Kurzweil for predicting some kind of exponential-tech-curve-convergence…</a>
</div>
</div><div class="item" style="margin-bottom: 4px;">
<div class="year"></div>
<div class="month">August</div>
<div class="day">24</div>
<div class="date">August 24, 2015</div>
<div>
<a href="https://tophtucker.medium.com/how-far-can-we-stretch-the-real-number-line-as-a-metaphor-for-thought-a53ea9fdc2dd">How far can we stretch the real number line as a metaphor for thought?</a>
</div>
</div><div class="item" style="margin-bottom: 1px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">20</div>
<div class="date">August 20, 2015</div>
<div>
<a href="https://tophtucker.medium.com/sometimes-people-say-things-like-why-is-there-more-than-one-way-to-do-this-in-an-interface-1e2a64ac10f3">Sometimes people say things like “Why is there more than one way to do this in an interface?”</a>
</div>
</div><div class="item" style="margin-bottom: 47px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">19</div>
<div class="date">August 19, 2015</div>
<div>
<a href="https://www.bloomberg.com/graphics/2015-ketamine-depression-treatment/">The Ketamine Cure<div class="note">some graphics</div></a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month">July</div>
<div class="day"> 3</div>
<div class="date">July 3, 2015</div>
<div>
<a href="https://tophtucker.medium.com/transformers-4-and-the-fungibility-of-all-things-aa2433b4065f?source=user_profile---------20------------------------------- https://tophtucker.medium.com/transformers-4-and-the-fungibility-of-all-things-aa2433b4065f">Transformers 4 and the fungibility of all things</a>
</div>
</div><div class="item" style="margin-bottom: 17px;">
<div class="year"></div>
<div class="month">June</div>
<div class="day">28</div>
<div class="date">June 28, 2015</div>
<div>
<a href="https://tophtucker.medium.com/two-perspectives-on-posterity-bb5b6acd7741">Two perspectives on posterity</a>
</div>
</div><div class="item" style="margin-bottom: 11px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">11</div>
<div class="date">June 11, 2015</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/">What Is Code?<div class="note">some graphics</div></a>
</div>
</div><div class="item" style="margin-bottom: 30px;">
<div class="year"></div>
<div class="month">May</div>
<div class="day">31</div>
<div class="date">May 31, 2015</div>
<div>
<a href="https://tophtucker.medium.com/i-m-standing-around-the-city-hall-area-by-the-manhattan-municipal-building-and-surrogate-s-6fc148d3b56e?readmore=1&source=user_profile---------22------------------------------- https://tophtucker.medium.com/i-m-standing-around-the-city-hall-area-by-the-manhattan-municipal-building-and-surrogate-s-6fc148d3b56e">I’m standing around the City Hall area…</a>
</div>
</div><div class="item" style="margin-bottom: 5px;">
<div class="year"></div>
<div class="month"></div>
<div class="day"> 1</div>
<div class="date">May 1, 2015</div>
<div style="font-size: 2em;">
<a href="https://bowdoinorient.com/bonus/article/10278">What you’re working for</a>
</div>
</div><div class="item" style="margin-bottom: 9px;">
<div class="year"></div>
<div class="month">April</div>
<div class="day">26</div>
<div class="date">April 26, 2015</div>
<div>
<a href="https://tophtucker.medium.com/informing-pronouns-24481fc56a84">Pronouns (and other pro-forms…</a>
</div>
</div><div class="item" style="margin-bottom: 70px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">17</div>
<div class="date">April 17, 2015</div>
<div style="font-size: 1.5em;">
<a href="https://tophtucker.medium.com/apology-for-astrology-f61b2fcf96d7?source=user_profile---------24------------------------------- https://tophtucker.medium.com/apology-for-astrology-f61b2fcf96d7">Apology for astrology</a>
</div>
</div><div class="item" style="margin-bottom: 78px;">
<div class="year"></div>
<div class="month">February</div>
<div class="day"> 6</div>
<div class="date">February 6, 2015</div>
<div>
<a href="https://www.bloomberg.com/features/2016-flipcharts/demo/ https://www.bloomberg.com/features/2016-flipcharts/demo/#loonie-forex">Flipcharts</a>
</div>
</div><div class="item" style="margin-bottom: 8px;">
<div class="year">2014</div>
<div class="month">November</div>
<div class="day">20</div>
<div class="date">November 20, 2014</div>
<div style="font-size: 1.5em;">
<a href="https://www.bloomberg.com/graphics/2014-the-business-of-isis-spreadsheets-annual-reports-and-terror/ https://www.bloomberg.com/graphics/2014-the-business-of-isis-spreadsheets-annual-reports-and-terror/#/">The Banality of Islamic State<div class="note">page design</div></a>
</div>
</div><div class="item" style="margin-bottom: 42px;">
<div class="year"></div>
<div class="month"></div>
<div class="day">12</div>
<div class="date">November 12, 2014</div>
<div>
<a href="https://www.tophtucker.com/assets/2014-11-12-election/index.html">The 2014 Election Map Without Democrats and Republicans</a>
</div>
</div><div class="item" style="margin-bottom: 181px;">
<div class="year"></div>
<div class="month">October</div>
<div class="day"> 1</div>
<div class="date">October 1, 2014</div>
<div>