-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
1720 lines (1689 loc) · 102 KB
/
links.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 xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
<meta charset="utf-8">
<meta name="generator" content="quarto-1.5.45">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>links – Ed Rubin</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<script src="site_libs/quarto-nav/quarto-nav.js"></script>
<script src="site_libs/quarto-nav/headroom.min.js"></script>
<script src="site_libs/clipboard/clipboard.min.js"></script>
<script src="site_libs/quarto-search/autocomplete.umd.js"></script>
<script src="site_libs/quarto-search/fuse.min.js"></script>
<script src="site_libs/quarto-search/quarto-search.js"></script>
<meta name="quarto:offset" content="./">
<link href="./images/yellow-duck-512.png" rel="icon" type="image/png">
<script src="site_libs/quarto-html/quarto.js"></script>
<script src="site_libs/quarto-html/popper.min.js"></script>
<script src="site_libs/quarto-html/tippy.umd.min.js"></script>
<script src="site_libs/quarto-html/anchor.min.js"></script>
<link href="site_libs/quarto-html/tippy.css" rel="stylesheet">
<link href="site_libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<script src="site_libs/bootstrap/bootstrap.min.js"></script>
<link href="site_libs/bootstrap/bootstrap-icons.css" rel="stylesheet">
<link href="site_libs/bootstrap/bootstrap.min.css" rel="stylesheet" id="quarto-bootstrap" data-mode="light">
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 50,
"keyboard-shortcut": [
"f",
"/",
"s"
],
"show-item-context": false,
"language": {
"search-no-results-text": "No results",
"search-matching-documents-text": "matching documents",
"search-copy-link-title": "Copy link to search",
"search-hide-matches-text": "Hide additional matches",
"search-more-match-text": "more match in this document",
"search-more-matches-text": "more matches in this document",
"search-clear-button-title": "Clear",
"search-text-placeholder": "",
"search-detached-cancel-button-title": "Cancel",
"search-submit-button-title": "Submit",
"search-label": "Search"
}
}</script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="nav-fixed fullcontent">
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg " data-bs-theme="dark">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container mx-auto">
<a class="navbar-brand" href="./index.html">
<span class="navbar-title">Ed Rubin</span>
</a>
</div>
<div id="quarto-search" class="" title="Search"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" role="menu" aria-expanded="false" aria-label="Toggle navigation" onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">
<span class="menu-text">home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./research.html">
<span class="menu-text">research</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./cv.html">
<span class="menu-text">cv</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./teaching.html">
<span class="menu-text">teaching</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./osweet.html">
<span class="menu-text">osweet</span></a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-more" role="link" data-bs-toggle="dropdown" aria-expanded="false">
<span class="menu-text">more</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-more">
<li>
<a class="dropdown-item" href="./bio.html">
<span class="dropdown-text">bio</span></a>
</li>
<li>
<a class="dropdown-item" href="https://tweeds.io">
<span class="dropdown-text">tweeds</span></a>
</li>
<li>
<a class="dropdown-item" href="./stuff.html">
<span class="dropdown-text">stuff</span></a>
</li>
<li>
<a class="dropdown-item" href="./links.html">
<span class="dropdown-text">links</span></a>
</li>
</ul>
</li>
</ul>
<ul class="navbar-nav navbar-nav-scroll ms-auto">
<li class="nav-item compact">
<a class="nav-link" href="https://github.com/edrubin"> <i class="bi bi-github" role="img">
</i>
<span class="menu-text"></span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools">
</div>
</div> <!-- /container-fluid -->
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<!-- main -->
<main class="content" id="quarto-document-content">
<p>Useful and/or interesting links for research/productivity/fun.<br><br></p>
<h3 style="color:#EEEEEE" class="anchored">
20240221
</h3>
<p><strong>Tabby</strong> <br> Super customizable, cross-platform <a href="https://tabby.sh/">termial app</a>.</p>
<p><strong>Warp</strong> <br> Rust-based <a href="https://www.warp.dev/">terminal</a> with AI.</p>
<h3 style="color:#EEEEEE" class="anchored">
20230323
</h3>
<p><strong>Expressions</strong> <br> App with (pretty) <a href="https://www.apptorium.com/expressions">live preview of regular expressions</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20220302
</h3>
<p><strong>DeckDeckGo</strong> <br> Interactive, web-based <a href="https://deckdeckgo.com/en/">presentations</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20211025
</h3>
<p><strong>Browse AI</strong> <br> <a href="https://www.browse.ai">Track</a> websites. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20210924
</h3>
<p><strong>Rectangle</strong> <br> <a href="https://github.com/rxhanson/Rectangle">Window management</a> based on <a href="https://www.spectacleapp.com">Spectacle</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20210208
</h3>
<p><strong>Camo</strong> <br> Use <a href="https://reincubate.com/camo">your phone as a webcam</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20210208
</h3>
<p><strong>Beeper</strong> <br> A single <a href="https://www.beeperhq.com">app to unite all your messaging apps</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20210126
</h3>
<p><strong>ggpomological</strong> <br> <a href="https://www.garrickadenbuie.com/project/ggpomological/"><code>ggplot2</code> theme</a> based upon the <a href="https://usdawatercolors.nal.usda.gov/pom/home.xhtml">USDA’s pomological watercolor collection</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20210122
</h3>
<p><strong>disk.frame</strong> <br> <a href="https://diskframe.com">R package</a> that allows you to treat on-disk data as though it were in-memory (<em>i.e.</em>, use <code>data.table</code> or <code>tidyverse</code>). <a href="https://www.brodrigues.co/blog/2019-09-03-disk_frame/">Bonus blog</a> from Bruno Rodrigues.</p>
<h3 style="color:#EEEEEE" class="anchored">
20210121
</h3>
<p><strong>ASCII Decorator</strong> <br> Sublime plugin for <a href="https://github.com/viisual/ASCII-Decorator">ASCII Decorations</a>.</p>
<p><strong>Machine learning flashcards</strong> <br> <a href="https://machinelearningflashcards.com">Flashcards for ML</a> concepts.</p>
<p><strong>lazyrmd</strong> <br> <a href="https://ryanhafen.com/blog/lazyrmd/">Lazy rendering of <code>rmd</code></a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20201215
</h3>
<p><strong>xaringanExtra</strong> <br> <a href="https://github.com/gadenbuie/xaringanExtra">Extra skills</a> for the R package <code>xaringan</code>.</p>
<p><strong>xaringanthemer</strong> <br> More <a href="https://pkg.garrickadenbuie.com/xaringanthemer/">themes for <code>xaringan</code></a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20201005
</h3>
<p><strong>voice dream apps</strong> <br></p>
<ul>
<li>reader <a href="https://www.voicedream.com/reader/">reads anything aloud</a> (200+ voices in 30 languages).</li>
<li>writer <a href="https://www.voicedream.com/writer/">helps you proofread out loud</a>.</li>
<li>scanner <a href="https://www.voicedream.com/scanner/">is for text recognition of scans</a>.</li>
</ul>
<p><strong>Freshwater Ecosystems Explorer</strong> <br> Data platform with <a href="https://www.sdg661.app">accurate, up-to-date, high-resolution geospatial data depicting the extent freshwater ecosystems change over time</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20200915
</h3>
<p><strong>Synergy</strong> <br> <a href="https://symless.com/synergy">Control multiple computers</a> with a single keyboard/mouse.</p>
<p><strong>Book: Dive into Deep Learning</strong> Online <a href="https://d2l.ai/">deep learning book</a>.</p>
<p><strong>Apache Arrow for R</strong> <br> <a href="https://arrow.apache.org/docs/r/index.html">R package for Apache Arrow</a> in-memory platform. <a href="http://grantmcdermott.com">h/t</a></p>
<p><strong>Wizard Zines Collection</strong> <br> <a href="https://wizardzines.com/">Programming zines</a>. <a href="http://grantmcdermott.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20200915
</h3>
<p><strong>Butterick’s Practical Typography</strong> <br> Online book with practical <a href="https://practicaltypography.com/">advice on typography</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20200915
</h3>
<p><strong>tweek</strong> <br> Online <a href="https://tweek.so/">weekly planner</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20200914
</h3>
<p><strong>Mail Merge for Thunderbird</strong> <br> A <a href="https://addons.thunderbird.net/en-US/thunderbird/addon/mail-merge/">mail merge</a> extension for Thunderbird.</p>
<h3 style="color:#EEEEEE" class="anchored">
20200820
</h3>
<p><strong>Compiled ESS point datasets</strong> <br> <a href="https://gitlab.com/openlandmap/compiled-ess-point-data-sets">Compendium</a> of compiled Earth System Science point data sets.</p>
<h3 style="color:#EEEEEE" class="anchored">
20200409
</h3>
<p><strong>Stack</strong> <br> <a href="https://getstack.app/">Browser</a> built for multi-tasking. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20200409
</h3>
<p><strong>codetime</strong> <br> Text-editor <a href="https://www.software.com/code-time">plugin for coding metrics</a> and timing. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>descript</strong> <br> Record and edit <a href="https://www.descript.com/">audio as a transcript</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>Hypothesis</strong> <br> <a href="https://web.hypothes.is/">Annotate the web</a>—and share it. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>Online conference options</strong> <br> There’s more for things bigger than Zoom:</p>
<ul>
<li><a href="https://hopin.to/">hopin</a></li>
<li><a href="https://www.runtheworld.today/">Run the World</a></li>
<li><a href="https://vito.community/">Vito</a> <a href="https://www.densediscovery.com/">h/t</a></li>
</ul>
<h3 style="color:#EEEEEE" class="anchored">
20200210
</h3>
<p><strong>Old Book Illustrations</strong> <br> A compendium of <a href="https://www.oldbookillustrations.com/">illustrations</a> from “old books”.</p>
<p><strong>radian</strong> <br> An <a href="https://github.com/randy3k/radian">alternative console for R</a> with multiline editing and rich syntax highlight. <a href="http://grantmcdermott.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20200106
</h3>
<p><strong>learnr</strong> <br> R package to create Markdown-based, <a href="https://rstudio.github.io/learnr/index.html">interactive tutorials</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20191224
</h3>
<p><strong>Convertio</strong> <br> <a href="https://convertio.co/">File conversion</a> across 300+ formats.</p>
<h3 style="color:#EEEEEE" class="anchored">
20191219
</h3>
<p><strong>Arcane Office</strong> <br> In-cloud, private/secure/de-centralized, free <a href="https://arcaneoffice.com/">office suite</a>.</p>
<p><strong>Crosstalk</strong> <br> <a href="https://rstudio.github.io/crosstalk/index.html">Cross-widget interactions in R</a>.</p>
<p><strong>panelView</strong> <br> R package for <a href="https://yiqingxu.org/software/panelView/panelView.html">visualizing treatment, missing-ness, and outcomes in panel data</a>.</p>
<p><strong>speaking.io</strong> <br> <a href="https://speaking.io/">Public-speaking tips</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>Standard ebooks</strong> <br> Curated, high-quality, free <a href="https://standardebooks.org/">ebooks</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20191203
</h3>
<p><strong>cally</strong> <br> <a href="https://cally.com/">Find common dates/locations</a> for group events. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>Gantt.io</strong> <br> Easy, pretty, <a href="https://www.gantt.io/">online Gantt charts</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190923
</h3>
<p><strong>devhints</strong> <br> A collection of <a href="https://devhints.io/">cheatseets</a>, <em>e.g.</em>, <a href="https://devhints.io/bash">bash</a>, <a href="https://devhints.io/regexp">regex</a> and <a href="https://devhints.io/vim">vim</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190923
</h3>
<p><strong>jQuery cheatsheet</strong> <br> <a href="https://websitesetup.org/jquery-cheat-sheet/">Cheatseet</a> for jQuery.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190821
</h3>
<p><strong>blastula</strong> <br> <a href="https://github.com/rich-iannone/blastula">Send beautiful HTML emails from R</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190717
</h3>
<p><strong>Really Good Emails</strong> <br> Currated collection of <a href="https://reallygoodemails.com/">beautiful, well-crafted emails</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>tresorit</strong> <br> Secure <a href="https://tresorit.com/">cloud storage</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190717
</h3>
<p><strong>In-Browser Markdown Editors</strong> <br> - <a href="https://hackmd.io/">HackMD</a> - <a href="https://stackedit.io/">StackEdit</a> - <a href="https://www.madoko.net/">Madoko</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190715
</h3>
<p><strong>Noted</strong> <br> Integrated <a href="https://www.notedapp.io/">audio-recording and note-taking</a> app.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190702
</h3>
<p><strong>Twizzy</strong> <br> <a href="https://www.zenflowchart.com/">Simple, clean flowchart tool</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190620
</h3>
<p><strong>Twizzy</strong> <br> <a href="https://twizzy.app/">Twitter without the timeline</a> (just message and tweet). <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190326
</h3>
<p><strong>rticle</strong> <br> LaTeX journal <a href="https://github.com/rstudio/rticles">article templates for R Markdown</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190326
</h3>
<p><strong>Makepad</strong> <br> (Online) <a href="https://makepad.live/">project management for single users</a>—no team features.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190319
</h3>
<p><strong>Firefox Send</strong> <br> <a href="https://send.firefox.com/">Send files</a> up to 2.5GB (1GB without signing in). <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>TAYL</strong> <br> <a href="https://www.tayl.app/">Turn text articles into podcasts</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<p><strong>Workbench</strong> <br> <a href="http://workbenchdata.com/">Code-free data sharing and analysis platform</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190219
</h3>
<p><strong>Marvin</strong> <br> “Ultimate” <a href="https://amazingmarvin.com">productivity tool</a>. <a href="https://www.densediscovery.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20190131
</h3>
<p><strong>Buttondown</strong> <br> Simple, online, markdown-based <a href="https://buttondown.email">newsletter app</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20190115
</h3>
<p><strong>Background Music</strong> <br> <a href="https://github.com/kyleneideck/BackgroundMusic">Audio utility</a> to automatically pause music and/or mute specific applications.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181221
</h3>
<p><strong>drake</strong> <br> R package for <a href="https://ropensci.github.io/drake/">workflow management of data-driven tasks</a>.</p>
<p><strong>fontawesome package</strong> <br> LaTeX <a href="http://mirror.neu.edu.cn/CTAN/fonts/fontawesome/doc/fontawesome.pdf">package to access Font Awesome icons</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181207
</h3>
<p><strong>NES.css</strong> <br> NES-style <a href="https://bcrikko.github.io/NES.css/">CSS Framework</a>.</p>
<p><strong>rayshader</strong> <br> R package for <a href="https://github.com/tylermorganwall/rayshader">producing 2D and 3D hillshaded maps of elevation matrices</a>. <a href="http://johnloeser.github.io">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20181205
</h3>
<p><strong>iotools</strong> <br> R package for <a href="https://cran.r-project.org/web/packages/iotools/index.html">streaming and data parsing</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181128
</h3>
<p><strong>pqR</strong> <br> A <a href="https://github.com/radfordneal/pqR">“pretty quick” version of R</a>. <a href="http://grantmcdermott.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20181127
</h3>
<p><strong>cloudyr</strong> <br> A collection of R packages that <a href="https://github.com/cloudyr">connect R to cloud resources</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181120
</h3>
<p><strong>fst</strong> <br> <a href="https://www.fstpackage.org">Fast and easy serialization of data frames</a> in R (and Julia).</p>
<p><strong>RStudio Server Amazon Machine Images</strong> <br> Louis Aslett provides a tremendous public service in hosting and updating (and providing basic instructions for) <a href="http://www.louisaslett.com/RStudio_AMI/">RStudio/R machine images for Amazon</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181015
</h3>
<p><strong>Spaceship Prompt</strong> <br> <a href="https://github.com/denysdovhan/spaceship-prompt">Minimalistic and flexible Zsh prompt</a>.</p>
<p><strong>trminal</strong> <br> <a href="https://www.bitfield.se/trminal/index.html">Quickly opens a Mac Terminal (or iTerm 2) window</a> for the current Finder directory. Akin to <a href="http://zipzapmac.com/go2shell">Go2Shell</a> but with more frequent/recent updates.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181008
</h3>
<p><strong>ColorBox</strong> <br> Custom <a href="https://www.colorbox.io">color-scale builder</a>. <a href="https://www.densediscovery.com">h/t</a></p>
<p><strong>latex2exp</strong> <br> <a href="https://github.com/stefano-meschiari/latex2exp/">R package that converts LaTeX expressions</a> to (annoying) plotmath.</p>
<h3 style="color:#EEEEEE" class="anchored">
20181002
</h3>
<p><strong>Superhuman</strong> <br> Very <a href="https://superhuman.com">fast email client</a> (based on what they say). <a href="https://www.densediscovery.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20180928
</h3>
<p><strong>What If</strong> <br> <a href="https://pair-code.github.io/what-if-tool/index.html#intro">Tool for inspecting machine-learning models</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180925
</h3>
<p><strong>GeoDa</strong> <br> Free, open-source <a href="https://geodacenter.github.io">geospatial software</a>.</p>
<p><strong>iTerm2 borderless</strong> <br> <a href="https://github.com/jasonwoodland/iTerm2-borderless">A nice patch</a> for iTerm2 that creates a more minimal aesthetic for <a href="https://iterm2.com/documentation-shell-integration.html">iTerm2</a>.</p>
<p><strong>kitty</strong> <br> GPU-based <a href="https://sw.kovidgoyal.net/kitty/">terminal emulator</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180911
</h3>
<p><strong>Rbox</strong> <br> R package to <a href="https://github.com/saeidamiri1/rbox">run R in Atom</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180831
</h3>
<p><strong>RMarkdown presentation by Yihui Xie</strong> <br> A <a href="https://slides.yihui.name/2017-rmarkdown-UNL-Yihui-Xie.html">presentation</a> by Yihui Xie on bookdown, blogdown, and xaringan. There are <a href="https://yihui.name/en/vitae/">many more presentations available by Yihui Xie</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180830
</h3>
<p><strong>hey-pane</strong> <br> <a href="https://atom.io/packages/hey-pane">Atom extension for enlarging the active panel</a> (includes keyboard shortcut).</p>
<p><strong>typing.io</strong> <br> <a href="https://typing.io">Typing practice</a> for many programming languages.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180815
</h3>
<p><strong>DeclareDesign</strong> <br> <a href="https://declaredesign.org">Declaring and analyzing research designs in the social sciences</a>. <a href="http://grantmcdermott.com">h/t</a></p>
<p><strong>R for Data Science</strong> <br> <a href="http://r4ds.had.co.nz">Online book about R for Data Science</a> by Garrett Grolemund and Haldey Wickham.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180718
</h3>
<p><strong>Biblatex Cheat Sheet</strong> <br> A <a href="CheatSheets/cheatSheetBiblatex.pdf">cheat sheet for Biblatex</a>.</p>
<p><strong>Writing tools for Atom</strong> <br> <a href="https://atom.io/packages/linter-write-good">linter-write-good</a> lints English prose. <a href="https://atom.io/packages/linter-just-say-no">Linter Just Say No</a> helps you avoid using hedge words.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180718
</h3>
<p><strong>Bib-it</strong> <br> <a href="http://bib-it.sourceforge.net/help/fieldsAndEntryTypes.php#techreport">Compendium of BibTeX</a> entry and field types.</p>
<p><strong>Culture Concorde</strong> <br> Simple menu-bar <a href="http://www.cultureconcorde.com">curated-music player</a>. <a href="https://www.offscreenmag.com">h/t</a></p>
<p><strong>Dotgrid</strong> <br> “Minimal <a href="https://hundredrabbits.itch.io/dotgrid">vector drawing tool</a>”. <a href="https://www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20180524
</h3>
<p><strong>UberConference</strong> <br> Great, <a href="https://www.uberconference.com/features">feature-rich meeting platform</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180516
</h3>
<p><strong>Figure it Out</strong> <br> Pretty Chrome extension (and website) to <a href="https://www.fioapp.co">figure out time zones</a>.</p>
<p><strong>grasshopper</strong> <br> Free app that <a href="https://grasshopper.codes">teaches coding</a>.</p>
<p><strong>txt.fyi</strong> <br> “This is the dumbest <a href="https://txt.fyi">publishing platform on the web</a>.” <a href="https://www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20180510
</h3>
<p><strong>Gradescope</strong> <br> <a href="https://gradescope.com">Grading web service</a> with really nice grading/rubric setup.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180430
</h3>
<p><strong>ScreenFocus</strong> <br> Auto-dim (and auto-un-dim) when <a href="http://www.apptorium.com/screenfocus">working with multiple monitors</a>. <a href="https://www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20180426
</h3>
<p><strong>Clocker</strong> <br> OSX app to plan and organize <a href="https://github.com/abhishekbanthia/Clocker">through timezones</a>.</p>
<p><strong>imdone</strong> <br> Atom package that provides a card- and list-based <a href="https://atom.io/packages/imdone-atom">user interface for <code>TODO</code>s in your scripts</a>.</p>
<p><strong>themer</strong> <br> <a href="https://themer.mjswensen.com">Generates color themes</a> given a set of colors.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180419
</h3>
<p><strong>binder</strong> <br> <a href="https://mybinder.org">Turns a GitHub repo into a collection of interactive notebooks</a>. <a href="http://dlabctawg.github.io">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20180410
</h3>
<p><strong>Gnotes</strong> <br> Simple <a href="https://notes.giggy.com">markdown to Evernote</a>. Somewhat like <a href="https://marxi.co">Marxico</a>.</p>
<p><strong><code>gsynth</code></strong> <br> R package for <a href="http://yiqingxu.org/software/gsynth/gsynth_examples.html">generalized synthetic control methods</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180406
</h3>
<p><strong>SuperLearner</strong> <br> R package for a <a href="https://github.com/ecpolley/SuperLearner">prediction-model ensembling method</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180403
</h3>
<p><strong>Beautiful AI</strong> <br> <a href="https://www.beautiful.ai">AI-powered presentations</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180329
</h3>
<p><strong>Academic Sequitur</strong> <br> A website that <a href="https://academicsequitur.com">tracks over 90 major economics and finance journals</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180320
</h3>
<p><strong>Teletype for Atom</strong> <br> An <a href="https://teletype.atom.io">Atom package to collaborate in real time</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180315
</h3>
<p><strong><code>AppleHealthAnalysis</code></strong> <br> An <a href="https://github.com/deepankardatta/AppleHealthAnalysis">R package to import and analyze data from the iOS Apple Health app</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180301
</h3>
<p><strong>regex-railroad-diagram package</strong> <br> A <a href="https://atom.io/packages/regex-railroad-diagram">regular expression railroad diagram view</a> for regular expression under cursor in Atom.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180301
</h3>
<p><strong>Things 3</strong> <br> <a href="https://culturedcode.com/things/">Personal task manager</a>. I’m switching from OmniFocus.</p>
<p><strong>Workflow</strong> <br> <a href="https://workflow.is">Automation tool</a> for iOS.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180213
</h3>
<p><strong>hiri</strong> <br> Clean, powerful <a href="https://www.hiri.com">email/calendar/task/contact</a> app.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180202
</h3>
<p><strong>XML Sitemaps</strong> <br> Simple <a href="https://www.xml-sitemaps.com">tool for creating XML sitemaps</a> (along with other formats).</p>
<h3 style="color:#EEEEEE" class="anchored">
20180129
</h3>
<p><strong>Viridis in QGIS</strong> <br> <a href="https://gist.github.com/cossatot/6fd455d6a2e0e1fdb8ed547dd2176eae">Viridis color palettes (ramps)</a> for QGIS.</p>
<h3 style="color:#EEEEEE" class="anchored">
20180115
</h3>
<p><strong>LittleSnitch</strong> <br> <a href="https://www.obdev.at/products/littlesnitch/index.html">View and manage internet connections</a> from your Mac. (Also: <a href="https://www.obdev.at/products/microsnitch/index.html">MicroSnitch</a>)</p>
<p><strong>SwiftText</strong> <br> Quick-access <a href="http://giraffelab.com/swifttext/">scratchpad</a> for OSX.</p>
<p><strong>ggthemr</strong> <br> <a href="https://github.com/cttobin/ggthemr">Themes and palettes for <code>ggplot2</code></a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171227
</h3>
<p><strong>Typely</strong> <br> Free <a href="https://typely.com">online proofreading</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171130
</h3>
<p><strong>Resistbot</strong> <br> A bot who <a href="https://resistbot.io">finds and contacts your Congressional representatives</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171129
</h3>
<p><strong>Text Mining with R</strong> <br> An <a href="http://tidytextmining.com">introduction to (tidy) text mining in R</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171122
</h3>
<p><strong>sf</strong> <br> Stellar package for <a href="https://cran.r-project.org/web/packages/sf/vignettes/sf1.html">spatial data analysis</a> in <code>R</code>. More <code>sf</code> resources: <a href="https://cran.r-project.org/web/packages/sf/sf.pdf">1</a> | <a href="http://strimas.com/r/tidy-sf/">2</a> | <a href="https://r-spatial.github.io/sf/">3</a> | <a href="http://ggplot2.tidyverse.org/reference/ggsf.html">4</a> | <a href="https://dcl-2017-01.github.io/curriculum/notes/spatial-vis.html">5</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20171115
</h3>
<p><strong>Cheat sheets for regular expressions</strong> <br> The folks at RStudio provides cheat sheets for <a href="CheatSheets/cheatSheetRegEx.pdf">regular expressions</a> and <a href="CheatSheets/cheatSheetStringr.pdf"><code>stringr</code></a> (and <a href="https://www.rstudio.com/resources/cheatsheets/">many other cheat sheets</a>).</p>
<h3 style="color:#EEEEEE" class="anchored">
20171107
</h3>
<p><strong>Author</strong> <br> App to instantly <a href="http://authorapp.co/">create and publish documents to the web</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171030
</h3>
<p><strong>ggforce</strong> <br> A <a href="https://github.com/thomasp85/ggforce">package for <code>R</code></a> that aims to extend <code>ggplot2</code> for explorative data visualization.</p>
<p><strong>ggplot2 extensions</strong> <br> A helpful <a href="https://www.ggplot2-exts.org/index.html">website that tracks extensions to <code>R</code>’s <code>ggplot2</code></a> package.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171018
</h3>
<p><strong>3Blue1Brown</strong> <br> A <a href="https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw">YouTube channel that animates math</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171014
</h3>
<p><strong>GitFinder</strong> <br> A fast and lightweight <a href="https://zigz.ag/GitFinder/">Git client for Mac with Finder integration</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20171010
</h3>
<p><strong>Drop</strong> <br> Beautiful <a href="http://dropcolorpicker.com">color picker</a> with Touch Bar support.</p>
<p><strong>Index</strong> <br> <a href="https://indexapp.com">Save and search your “stuff”</a>.</p>
<p><strong>Qbserve</strong> <br> Automatically <a href="https://qotoqot.com/qbserve">tracks both productivity and work hours</a>. <a href="https://www.offscreenmag.com">h/t</a></p>
<p><strong>TripMode</strong> <br> <a href="https://www.tripmode.ch">Blocks apps from accessing the internet</a>. <a href="https://www.offscreenmag.com">h/t</a></p>
<p><strong>Tyke</strong> <br> <a href="http://tyke.io">Scratch paper</a> that lives in your menubar. <a href="https://www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20171003
</h3>
<p><strong>Pod</strong> <br> A <a href="https://pod.io">“connected” calendar</a> for iOS. <a href="https://www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170927
</h3>
<p><strong>Tabagotchi</strong> <br> Fun <a href="http://tabagotchi.com">browser extension that incentives fewer tabs</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170831
</h3>
<p><strong>Crime Data</strong> <br> The FBI has a great new <a href="https://crime-data-explorer.fr.cloud.gov">crime data explorer</a>. The Open Data Census project has a handy(-ish) <a href="http://us-city.census.okfn.org/dataset/crime-stats">summary of city-level crime datasets</a>.</p>
<p><strong>Plain Email</strong> <br> Four-action <a href="http://www.plainemail.com">email-processing app</a>.</p>
<p><strong>Rambox</strong> <br> Cross-platform <a href="http://rambox.pro">messaging and emailing app</a>.</p>
<p><strong>ScienceFair</strong> <br> Search, collect, read and analyze <a href="http://sciencefair-app.com">scientific papers</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170828
</h3>
<p><strong>earth</strong> <br> A (beautiful) <a href="https://earth.nullschool.net/#current/wind/surface/level/orthographic=-97.28,29.06,1030/loc=-95.951,28.471">global map</a> of wind, weather, and ocean conditions.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170825
</h3>
<p><strong>Free, open-source machine learning, statistics, and data-mining resources</strong> <br> A <a href="https://github.com/josephmisiti/awesome-machine-learning/blob/master/books.md">curated list of resources</a> from Joseph Misiti.</p>
<p><strong>Template for R Markdown academic manuscript</strong> <br> Steven Miller offers a <a href="http://svmiller.com/blog/2016/02/svm-r-markdown-manuscript/">guide and template for academic manuscripts in R Markdown</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170824
</h3>
<p><strong>Regular expressions in R</strong> <br> <code>stringr</code>’s very helpful <a href="http://stringr.tidyverse.org/articles/regular-expressions.html">primer on regular expressions in R</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170807
</h3>
<p><strong>Gifmock</strong> <br> <a href="https://gifmock.com">Creates high-quality GIFs</a>.</p>
<p><strong>twist</strong> <br> A calmer <a href="https://twistapp.com">Slack alternative</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170806
</h3>
<p><strong>Hemingway</strong> <br> App that <a href="http://www.hemingwayapp.com">improves your writing</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170804
</h3>
<p><strong>rmapshaper</strong> <br> R package for <a href="https://cran.r-project.org/web/packages/rmapshaper/vignettes/rmapshaper.html">“topologically-aware multi-polygon simplification” (for shapefiles)</a>. Related: <a href="http://mapshaper.org">mapshaper.org</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170803
</h3>
<p><strong>Manually re-index OSX Spotlight</strong> <br> A helpful <a href="https://www.scrubly.com/blog/how-to-mac/manually-reindex-os-x-spotlight/">guide</a>. <em>Hint</em>: It’s really just <code>sudo mdutil -E /</code>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170727
</h3>
<p><strong>Colibri</strong> <br> A <a href="https://colibri.opqr.co">browser without tabs</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170722
</h3>
<p><strong>everydayCheck</strong> <br> A simple, pretty <a href="https://everydaycheck.com/">habit tracker</a>. <a href="https://www.offscreenmag.com/">h/t</a></p>
<p><strong>Orai</strong> <br> AI-powered <a href="https://www.oraiapp.com/?">feedback for your speeches</a>. <a href="https://www.offscreenmag.com/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170713
</h3>
<p><strong>Velox</strong> <br> <a href="https://cran.r-project.org/web/packages/velox/README.html">Fast raster manipulation</a> in R.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170608
</h3>
<p><strong>Tabulizer</strong> <br> <a href="https://github.com/ropensci/tabulizer">Extract tables from PDFs</a> using R.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170606
</h3>
<p><strong>10 Minute Mail</strong> <br> <a href="https://www.10minutemail.com">Disposable email</a> service.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170531
</h3>
<p><strong>Windscribe</strong> <br> <a href="https://windscribe.com">VPN</a> with a generous free allowance.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170528
</h3>
<p><strong>SplitShow</strong> <br> Tool for <a href="https://github.com/mpflanzer/splitshow">dual-head presentations</a> on OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170526
</h3>
<p>Two apps from Matthew Palmer:</p>
<p><strong>Rocket</strong> <br> Mind-blowing (Slack-style) <a href="http://matthewpalmer.net/rocket/">emoji on your Mac</a>.</p>
<p><strong>Vanilla</strong> <br> <a href="http://matthewpalmer.net/vanilla/">Hides menu bar icons</a> on your Mac. <a href="www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170522
</h3>
<p><strong>Material Colors</strong> <br> A convenient <a href="https://www.materialpalette.com/colors">website</a> for accessing the colors of the material design palette.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170516
</h3>
<p><strong>Astro</strong> <br> <a href="https://www.helloastro.com">Email app(s)</a> powered by AI. <a href="www.offscreenmag.com">h/t</a></p>
<p><strong>sip</strong> <br> <a href="http://sipapp.io">Collects, organizes, and shares colors</a> (and palettes). <a href="www.offscreenmag.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170515
</h3>
<p><strong><code>rJava</code> error</strong> <br> A very helpful <a href="https://github.com/snowflakedb/dplyr-snowflakedb/wiki/Configuring-R-rJava-RJDBC-on-Mac-OS-X">guide</a> to fixing errors with <code>rJava</code> on OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170507
</h3>
<p><strong>TextExpander</strong> <br> <a href="https://smilesoftware.com/textexpander">Expands custom keyboard shortcuts</a> into frequently-used text and pictures.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170430
</h3>
<p><strong>kobra</strong> <br> Simple, real-time, <a href="https://kobra.io/">code collaboration</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170426
</h3>
<p><strong>leaflet</strong> <br> <a href="https://rstudio.github.io/leaflet/">Access Leaflet’s JavaScript library inside of R</a>.</p>
<p><strong>pacman</strong><br> An <a href="https://cran.r-project.org/web/packages/pacman/vignettes/Introduction_to_pacman.html">R package for easy package management in R</a>—loading, unloading, <em>etc.</em></p>
<h3 style="color:#EEEEEE" class="anchored">
20170414
</h3>
<p><strong>Popular economics papers</strong> <br> Oxford University Press provides a list of <a href="https://oxfordjournals.org/en/our-journals/social-sciences/most-popular-economics-papers.html">the most popular economics papers</a> from The Quarterly Journal of Economics (QJE) and The Review of Economics Studies (REStud).</p>
<h3 style="color:#EEEEEE" class="anchored">
20170410
</h3>
<p><strong>Unpaywall</strong> <br> <a href="http://unpaywall.org">Read paywalled research papers</a> for free.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170406
</h3>
<p><strong>VPN</strong> <br> In addition to having great names, <a href="www.cyberghostvpn.com">CyberGhost</a> and <a href="https://www.tunnelbear.com">TunnelBear</a> provide VPN services. Both services offer free options.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170331
</h3>
<p><strong>LaTeX, meet ggplot2</strong> <br> Port images out <a href="http://iltabiai.github.io/tips/latex/2015/09/15/latex-tikzdevice-r.html">out of R and into LaTeX</a>. <a href="https://twitter.com/loesch82?lang=en">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20170329
</h3>
<p><strong>Comparing text files</strong> <br> <a href="https://www.diffchecker.com">Diffchecker</a> and <a href="https://text-compare.com">Text Compare!</a> offer in-browser comparisons between text documents. In Atom, <a href="https://atom.io/packages/split-diff">split-diff</a> and <a href="https://atom.io/packages/compare-files">compare-files</a> offer between-document comparisons.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170324
</h3>
<p><strong>asciicinema</strong> <br> <a href="https://asciinema.org/">asciinema</a> (formerly ascii.io) is a free and open source solution for recording terminal sessions and sharing them on the web.</p>
<p><strong>Markdown online</strong> <br> <a href="http://dillinger.io/">Dillinger</a>, <a href="https://stackedit.io/">StackEdit</a>, and <a href="http://markdownlivepreview.com/">Markdown Live Preview</a> offer three online Markdown editors/renderers. <a href="https://remarkjs.com/#1">remark</a>, <a href="https://yhatt.github.io/marp/">Marp</a>, <a href="https://www.swipe.to/markdown/">swipe</a>, and <a href="https://www.decksetapp.com/">Deckset</a> offer options for rendering Markdown into presentation slides (also, <a href="http://rmarkdown.rstudio.com/ioslides_presentation_format.html">Rmarkdown with ioslides</a>).</p>
<h3 style="color:#EEEEEE" class="anchored">
20170312
</h3>
<p><strong>FocusList</strong><br> A <a href="http://focuslist.co">daily planner and focus app</a> based on Pomodoro. <a href="http://thesweetsetup.com/staying-productive-pomodoro-technique-sponsor/">h/t</a></p>
<p><strong>Giphy Capture</strong><br> <a href="https://giphy.com/apps/giphycapture">Create GIFs</a> on your Mac. Other options: <a href="https://gifox.io">Gifox</a>, <a href="http://recordit.co">Recordit</a>, and <a href="https://gyazo.com">Gyazo</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170227
</h3>
<p><strong>pander</strong><br> An R <a href="https://rapporter.github.io/pander/">Pandoc writer</a>—for rendering R objects into Pandoc’s markdown.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170209
</h3>
<p><strong>Typora</strong><br> A <a href="https://typora.io/">live and minimal Markdown editor</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170206
</h3>
<p><strong>GGally</strong><br> <a href="http://ggobi.github.io/ggally/">Extends R’s <code>ggplot2</code></a> with many helpful graphical functions.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170123
</h3>
<p><strong>LightTable</strong><br> Open-source <a href="http://lighttable.com">text editor</a> with in-line code evaluation.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170123
</h3>
<p><strong>Redkix</strong><br> Reat-time <a href="https://redkix.com">email app</a>.</p>
<p><strong>Typeform</strong><br> Clean, <a href="http://typeform.com">online forms</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170123
</h3>
<p><strong>Codr</strong><br> A lightweight, <a href="http://codr.io">collaborative pastebin (whiteboard) for code</a>.</p>
<p><strong>SageMathCloud</strong><br> Collaboratively <a href="https://cloud.sagemath.com">use open source math software/terminals in your browser</a>.</p>
<p><strong>SubEthaEdit (4)</strong><br> <a href="https://www.codingmonkeys.de/subethaedit/">Collaborative text editing</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170116
</h3>
<p><strong>Mac Setup</strong><br> <a href="http://sourabhbajaj.com/mac-setup/">Helpful guide</a> for setting up a Mac for most popular languages and programming/scripting tools.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170115
</h3>
<p><strong>Studies</strong><br> <a href="http://www.studiesapp.com">Flash cards</a> for iOS and OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170112
</h3>
<p><strong>Noizio</strong><br> <a href="http://noiz.io/">White-noise generating app</a> for OSX.</p>
<p><strong>WeTransfer</strong><br> <a href="https://wetransfer.com/">Sends files</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170111
</h3>
<p><strong>Due</strong><br> Fast <a href="http://www.dueapp.com/">to-do list app</a> with reminders.</p>
<p><strong>Exist</strong><br> <a href="https://exist.io/">Track everything</a> you do in one place.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170109
</h3>
<p><strong>Tomatimer</strong><br> A loose and straightforward <a href="https://atom.io/packages/tomatimer">pomodoro timer for Atom</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170105
</h3>
<p><strong>Markdown Quick Look Plugin</strong><br> <a href="http://inkmarkapp.com/markdown-quick-look-plugin-mac-os-x/">Preview Markdown files</a> in OSX Finder (through the Preview app). From the makers of the iPad Markdown text editor <a href="http://inkmarkapp.com/">InkMark</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20170101
</h3>
<p><strong>Read the Docs</strong><br> <a href="https://readthedocs.org/">Create, host, and browse documentation</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161230
</h3>
<p><strong>Cloudinary</strong><br> <a href="http://cloudinary.com">Image and video management</a> in the cloud.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161228
</h3>
<p><strong>Spark</strong><br> A fast, personalizable <a href="https://sparkmailapp.com/">email client</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161227
</h3>
<p><strong>PostImage</strong><br> Free <a href="https://postimg.org">image hosting and upload</a>.</p>
<p><strong>Small Victories</strong><br> Takes files in a Dropbox folder and <a href="http://www.smallvictori.es">turns them into a website</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161222
</h3>
<p><strong>TinyLetter</strong><br> A free personal <a href="https://tinyletter.com/site/about/">newsletter service</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161219
</h3>
<p><strong>Pandas Cheat Sheet</strong><br> A <a href="https://assets.datacamp.com/blog_assets/PandasPythonForDataScience.pdf">cheat sheet</a> for data science with Python’s Pandas.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161215
</h3>
<p><strong>MapInSeconds.com</strong><br> Quickly turns <a href="http://www.mapinseconds.com/">spreadsheets into maps</a>. <a href="http://www.darkhorseanalytics.com/blog/mapping-data-should-take-seconds-mapinseconds-com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20161208
</h3>
<p><strong>R Markdown Websites</strong><br> A tutorial on <a href="http://rmarkdown.rstudio.com/rmarkdown_websites.html">building a website using R Markdown</a> (like this one). <a href="http://itai-trilnick.com">h/t</a> The <a href="https://github.com/juba/rmdformats">rmdformats</a> package offers additional themes (formats). More on R Markdown <a href="http://rmarkdown.rstudio.com">here</a>. The <a href="https://bookdown.org">bookdown</a> package extends R Markdown to publishing books. The <a href="http://github.com/rstudio/blogdown">blogdown</a> package extends R Markdown to publishing blogs (or general websites) using <a href="https://gohugo.io">Hugo</a>. The <a href="https://github.com/hadley/pkgdown">pkgdown</a> package extends R Markdown to creating static html documentation.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161205
</h3>
<p><strong>Divvy</strong><br> Provides customized <a href="http://mizage.com/divvy/">window management</a>.</p>
<p><strong>BetterTouchTool</strong><br> <a href="https://www.boastr.net/">Configure gestures</a> for OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161121
</h3>
<p><strong>Selector Gadget</strong><br> Point-and-click <a href="http://selectorgadget.com">CSS selectors</a>. Helpful when used in conjunction with R’s <a href="https://github.com/hadley/rvest">rvest</a> package.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161118
</h3>
<p><strong>Vivaldi</strong><br> A <a href="https://vivaldi.com/">highly customizable browser</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161115
</h3>
<p><strong>GitKraken</strong><br> A GUI <a href="https://www.gitkraken.com/">Git client</a>, for Windows, Mac and Linux.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161107
</h3>
<p><strong>Calendly</strong><br> Simple, beautiful <a href="https://calendly.com/pages/features">scheduling</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161106
</h3>
<p><strong>Bear</strong><br> A <a href="http://www.bear-writer.com/">flexible writing app</a> for crafting notes and prose.</p>
<p><strong>OLS Notes</strong><br> Some nice <a href="https://web.stanford.edu/~mrosenfe/soc_meth_proj3/matrix_OLS_NYU_notes.pdf">notes</a> on ordinary least squares from Michael Rosenfeld at Stanford.</p>
<p><strong>Shodan</strong><br> <a href="https://www.shodan.io/">Search engine</a> for internet of things (and other things).</p>
<h3 style="color:#EEEEEE" class="anchored">
20161031
</h3>
<strong>Facking Operator Mono Font in Atom</strong><br> A <a href="https://medium.com/@docodemore/an-alternative-to-operator-mono-font-6e5d040e1c7e%3Ch3%20style=%22color:#EEEEEE%22%3E.i19w8uuid">guide</a> to building a font system in Atom similar to <a href="http://www.typography.com/fonts/operator/styles/">Operator Mono</a>.
<h3 style="color:#EEEEEE" class="anchored">
20161028
</h3>
<p><strong>Pomodoro Time and Tadam</strong><br> <a href="https://pomodoneapp.com">Pomodoro Time</a> and <a href="http://tadamapp.com">Tadam</a> are simple Pomodoro timers.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161019
</h3>
<p><strong>Thenmap</strong><br> A <a href="http://www.thenmap.net/">repository of historical borders</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161007
</h3>
<p><strong>Geocodio</strong><br> (Reasonably) accurate, affordable, and unrestricted <a href="geocod.io/">online geocoding</a> (forward/reverse and batch/API). Connect with R through <a href="https://github.com/hrbrmstr/rgeocodio"><code>rgeocodio</code></a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161006
</h3>
<p><strong>Canary Mail</strong><br> A “simple, smart, swift” <a href="http://canarymail.io">email client for Mac</a> with many nice features.</p>
<h3 style="color:#EEEEEE" class="anchored">
20161004
</h3>
<p><strong>Github Pages and Jekyll tutorial</strong><br> From UC Berkeley’s The Hacker Within, a nice <a href="http://www.thehackerwithin.org/berkeley/posts/github-pages-jekyll">tutorial on Github Pages and Jekyll</a>.</p>
<p><strong>pdftools</strong><br> A fast and portable <a href="https://ropensci.org/blog/2016/03/01/pdftools-and-jeroen">PDF extractor for R</a> (and others).</p>
<h3 style="color:#EEEEEE" class="anchored">
20161003
</h3>
<p><strong>Producteev</strong><br> Team-oriented <a href="https://www.producteev.com">productivity software</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160930
</h3>
<p><strong>Ghost Browser</strong><br> A <a href="https://ghostbrowser.com">browser</a> that lets you isolate cookie jars into color coded tabs so you can run multiple sessions with multiple accounts on the same web site.</p>
<p><strong>Hocus Focus</strong><br> Automatically <a href="http://hocusfoc.us">hide inactive windows</a>.</p>
<p><strong>Noisli</strong><br> In-browser <a href="https://www.noisli.com">white-noise generator</a> with <em>productivity</em> and <em>relax</em> settings.</p>
<p><strong>Standard Resume</strong><br> One <a href="https://standardresume.co">resume that works everywhere</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160928
</h3>
<p><strong>Univariate Distribution Relationships</strong><br> Interactive chart for <a href="http://www.math.wm.edu/~leemis/chart/UDR/UDR.html">relationships between univariate distributions</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160926
</h3>
<p><strong>Opentest</strong><br> Seamless screen, mic and camera <a href="https://www.opentest.co">recording for Chrome</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160919
</h3>
<p><strong>Habitica</strong><br> Improve your <a href="http://habitica.com">habits by playing a game</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160906
</h3>
<p><strong>Linus screen</strong><br> <a href="http://www.tecmint.com/screen-command-examples-to-manage-linux-terminals/">Screen</a> effectively allows signing on and off from interactive sessions on a server/Linux shell.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160822
</h3>
<strong>REVEAL.JS</strong><br> Javascript-backed <a href="http://lab.hakim.se/reveal-js/%3Ch3%20style=%22color:#EEEEEE%22%3E/">HTML presentation framework</a>.
<h3 style="color:#EEEEEE" class="anchored">
20160813
</h3>
<p><strong>QuickLookR</strong><br> OSX-based <a href="https://github.com/hrbrmstr/QuickLookR">QuickLook plugin for R’s <code>save()</code> & <code>saveRDS()</code> files</a>. <a href="https://rud.is/b/2016/08/06/quicklookr-a-macos-quicklook-plugin-for-r-data-files/">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160811
</h3>
<p><strong>Multi-File LaTeX projects</strong><br> <a href="https://www.sharelatex.com/learn/Multi-file_LaTeX_projects">ShareLaTeX’s guide</a> to building LaTeX documents from multiple files.</p>
<p><strong>SMS Email</strong><br> Combine R’s <a href="https://cran.r-project.org/web/packages/sendmailR/index.html">sendmailR</a> with this <a href="http://www.emailtextmessages.com">list of SMS email addresses</a> to send text messages from R.</p>
<p><strong>Stargazer Cheatsheet</strong><br> A <a href="http://jakeruss.com/cheatsheets/stargazer.html">cheatsheet for R’s stargazer</a> package.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160810
</h3>
<p><strong>YakYak</strong><br> Desktop chat <a href="https://github.com/yakyak/yakyak">client for Google Hangouts</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160804
</h3>
<p><strong>Script</strong><br> <a href="https://atom.io/packages/script">Run scripts in Atom</a> based on file name, a selection of code, or by line number.</p>
<p><strong>Term2</strong><br> <a href="https://github.com/f/atom-term2">Open Terminal tabs in Atom</a>. In the past, I’ve also used <a href="https://atom.io/packages/terminal-plus">Terminal Plus</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160801
</h3>
<p><strong>SizeUp</strong><br> Keyboard-centric <a href="http://www.irradiatedsoftware.com/sizeup/">window management</a>. <a href="http://www.themoderndesk.com">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160722
</h3>
<p><strong>munsell</strong><br> Package in R for for <a href="https://github.com/cwickham/munsell">Munsell’s color theme</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160714
</h3>
<p><strong>ggalt</strong><br> <a href="https://github.com/hrbrmstr/ggalt">Extra coordinate systems, geoms, statistical transformations, and scales for R’s <code>ggplot2</code></a> package.</p>
<p><strong>ggthemes</strong><br> Some extra <a href="https://cran.r-project.org/web/packages/ggthemes/vignettes/ggthemes.html">geoms, scales, and themes for R’s <code>ggplot</code> package</a> package.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160710
</h3>
<p><strong>Boxy</strong><br> A <a href="http://www.boxyapp.co">Gmail Inbox</a> client for Mac.</p>
<p><strong>SurfEasy</strong><br> <a href="https://www.surfeasy.com/en/">Data protection</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160708
</h3>
<p><strong>Color Oracle</strong><br> A <a href="http://colororacle.org">color blindness simulator</a> for Window, Mac and Linux.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160706
</h3>
<p><strong>OSX option-key bindings</strong><br> <a href="http://superuser.com/questions/941286/disable-default-option-key-binding">A helpful superuser post</a> about removing the character bindings for the option (alt) key in OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160702
</h3>
<p><strong>extrafont</strong><br> R package to <a href="https://github.com/wch/extrafont/blob/master/README.md">use other (any?) fonts in R</a>. <a href="http://blog.revolutionanalytics.com/2012/09/how-to-use-your-favorite-fonts-in-r-charts.html">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160701
</h3>
<p><strong>R guides</strong><br> Computerworld offers a <a href="http://www.computerworld.com/article/2497143/business-intelligence/business-intelligence-beginner-s-guide-to-r-introduction.html">beginner’s guide to R</a>, as well as an <a href="http://www.computerworld.com/resources/106345/advanced-beginners-guide-to-r.html">advanced beginner’s guide to R</a>. <a href="http://blog.revolutionanalytics.com/2016/06/computerworlds-advanced-beginners-guide-to-r.html">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160624
</h3>
<p><strong>Grammerly</strong><br> In-browswer and in-app <a href="https://www.grammarly.com">grammar and spelling checker</a>.</p>
<p><strong>Markdown Here</strong><br> <a href="http://markdown-here.com">In-browser Markdown formatting</a> for Chrome, Firefox, Safari, and Thunderbird.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160620
</h3>
<p><strong>SAS Studio</strong><br> <a href="http://support.sas.com/software/products/sasstudio/">Web application for SAS</a> that you access through your web browser.</p>
<p><strong>ShiftIt</strong><br> <a href="https://github.com/fikovnik/ShiftIt">Manages and position windows</a> in OSX.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160609
</h3>
<p><strong>BarTender (2)</strong><br> <a href="https://www.macbartender.com">Organizes your menu bar apps</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160510
</h3>
<p><strong>MailButler</strong><br> Your <a href="https://www.feingeist.io/mailbutler/">personal assistant</a> for Apple Mail. <a href="http://onethingwell.org/post/143578593216/mailbutler">h/t</a></p>
<strong>Quitter</strong><br> <a href="https://marco.org/apps%3Ch3%20style=%22color:#EEEEEE%22%3Equitter">Automatically hides or quits apps</a> after periods of inactivity. <a href="http://onethingwell.org/post/143838727202/quitter">h/t</a>
<p><strong>Xi Editor</strong><br> A <a href="https://github.com/google/xi-editor">modern editor</a> with a backend written in Rust. <a href="http://onethingwell.org/post/143531815911/xi">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160504
</h3>
<p><strong>conda and OSX</strong><br> Run <code>PATH=$PATH:$HOME/anaconda/bin</code> if OSX cannot find the path to <code>conda</code>.</p>
<p><strong>Rodeo</strong><br> A data science <a href="https://github.com/yhat/rodeo/">IDE for Python</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20150424
</h3>
<p><strong>Micro</strong><br> Terminal-based <a href="https://github.com/zyedidia/micro">text editor</a>. <a href="http://onethingwell.org/post/143005364292/micro">h/t</a></p>
<p><strong>Min</strong><br> A <a href="https://palmeral.github.io/min/">minimal web browser</a>. <a href="http://onethingwell.org/post/142844861802/min">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160418
</h3>
<p><strong>tep</strong><br> Tamagotchi-based motivating <a href="http://gettep.com/">fitness tracker</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160409
</h3>
<p><strong>CodeFights</strong><br> <a href="https://codefights.com">Practice coding</a> in real-time races against others.</p>
<p><strong>Font Awesome</strong><br> The iconic <a href="https://fortawesome.github.io/Font-Awesome/">font and CSS toolkit</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160408
</h3>
<p><strong>Karabiner</strong><br> A powerful and stable <a href="https://pqrs.org/osx/karabiner/">keyboard customizer for OS X</a>.</p>
<p><strong>Timer</strong><br> A simple <a href="https://github.com/michaelvillar/timer-app/releases">timer app</a> for OSX. <a href="http://onethingwell.org/post/142349673462/timer">h/t</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160404
</h3>
<p><strong>ProtonMail</strong><br> <a href="https://protonmail.com">Secure email</a> based in Switzerland.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160331
</h3>
<strong>CSS Diner</strong><br> A little <a href="http://flukeout.github.io/%3Ch3%20style=%22color:#EEEEEE%22%3E">game to help you learn CSS selectors</a>.
<p><strong>Lightning</strong><br> Provides API-based access to reproducible <a href="http://lightning-viz.org">web visualizations</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160325
</h3>
<p><strong>DiagrammeR</strong><br> Package to <a href="https://github.com/rich-iannone/DiagrammeR">create graph diagrams and flowcharts</a> using R.</p>
<p><strong>R Markdown Websites</strong><br> <a href="http://rmarkdown.rstudio.com/html_document_format.html">Basics</a> from the R Markdown website. Blog on <a href="https://brendanrocks.com/blogging-with-rmarkdown-knitr-jekyll/">blogs using Jekyll and R Markdown</a>. <a href="https://github.com/rstudio/rmarkdown-website">Example website</a></p>
<h3 style="color:#EEEEEE" class="anchored">
20160315
</h3>
<p><strong>Pandas Resources</strong><br> UC Berkeley’s The Hacker Within <a href="http://www.thehackerwithin.org/berkeley/posts/pandas-spring-2016">notes on Python Pandas</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160313
</h3>
<p><strong>JuliaDT</strong><br> An <a href="http://juliacomputing.com/blog/2016/02/06/Eclipse-JuliaDT.html">Eclipsed-based IDE for Julia</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160311
</h3>
<p><strong>Rough Draft</strong><br> A <a href="http://www.96problems.com/rough-draft/">writing app</a> that offers the natural rough reminders of paper.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160310
</h3>
<p><strong>regular expressions 101</strong><br> <a href="https://regex101.com/">Live testing and help</a> for regular expressions.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160301
</h3>
<p><strong>Castle Adventure</strong><br> <a href="https://archive.org/details/msdos_Castle_Adventure_1984">Online emulator</a> for 1984’s DOS game Castle Adventure.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160224
</h3>
<p><strong>LaTeX Dendrogram</strong><br> A simple <a href="https://gist.github.com/dahoo/4947859">dendrogram example for LaTeX</a>.</p>
<p><strong>NYT Weather Charts</strong><br> The <a href="http://www.nytimes.com/interactive/2016/02/18/upshot/the-times-classic-weather-chart-now-online-with-3000-cities.html">New York Times’s classic weather charts</a> for more than 3000 cities.</p>
<p><strong>pmax/pmin in R</strong><br> Take <a href="https://stat.ethz.ch/R-manual/R-devel/library/base/html/Extremes.html">max. and min. with vector inputs in R</a>.</p>
<p><strong>Backpropogation Example</strong><br> A <a href="http://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example/">step-by-step example of backpropogation</a>.</p>
<h3 style="color:#EEEEEE" class="anchored">
20160223
</h3>
<p><strong>Billion Dollar Prices Project</strong><br> MIT’s <a href="http://bpp.mit.edu">project to track prices</a> via online retailers.</p>
<p><strong>markdown-toc</strong><br> <a href="https://atom.io/packages/markdown-toc">Generate a table of contents</a> for a Markdown file in Atom.</p>
<p><strong>tablr</strong><br> Edit CSVs using a <a href="https://atom.io/packages/tablr">table editor in Atom</a>.</p>