-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.qmd
More file actions
1671 lines (1033 loc) · 63.6 KB
/
links.qmd
File metadata and controls
1671 lines (1033 loc) · 63.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: ""
---
Useful and/or interesting links for research/productivity/fun.<br><br>
<h3 style="color:#EEEEEE"> 20240221 </h3>
__Tabby__ <br>
Super customizable, cross-platform [termial app](https://tabby.sh/).
__Warp__ <br>
Rust-based [terminal](https://www.warp.dev/) with AI.
<h3 style="color:#EEEEEE"> 20230323 </h3>
__Expressions__ <br>
App with (pretty) [live preview of regular expressions](https://www.apptorium.com/expressions).
<h3 style="color:#EEEEEE"> 20220302 </h3>
__DeckDeckGo__ <br>
Interactive, web-based [presentations](https://deckdeckgo.com/en/). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20211025 </h3>
__Browse AI__ <br>
[Track](https://www.browse.ai) websites. [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20210924 </h3>
__Rectangle__ <br>
[Window management](https://github.com/rxhanson/Rectangle) based on [Spectacle](https://www.spectacleapp.com).
<h3 style="color:#EEEEEE"> 20210208 </h3>
__Camo__ <br>
Use [your phone as a webcam](https://reincubate.com/camo). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20210208 </h3>
__Beeper__ <br>
A single [app to unite all your messaging apps](https://www.beeperhq.com). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20210126 </h3>
__ggpomological__ <br>
[`ggplot2` theme](https://www.garrickadenbuie.com/project/ggpomological/) based upon the [USDA's pomological watercolor collection](https://usdawatercolors.nal.usda.gov/pom/home.xhtml).
<h3 style="color:#EEEEEE"> 20210122 </h3>
__disk.frame__ <br>
[R package](https://diskframe.com) that allows you to treat on-disk data as though it were in-memory (*i.e.*, use `data.table` or `tidyverse`). [Bonus blog](https://www.brodrigues.co/blog/2019-09-03-disk_frame/) from Bruno Rodrigues.
<h3 style="color:#EEEEEE"> 20210121 </h3>
__ASCII Decorator__ <br>
Sublime plugin for [ASCII Decorations](https://github.com/viisual/ASCII-Decorator).
__Machine learning flashcards__ <br>
[Flashcards for ML](https://machinelearningflashcards.com) concepts.
__lazyrmd__ <br>
[Lazy rendering of `rmd`](https://ryanhafen.com/blog/lazyrmd/).
<h3 style="color:#EEEEEE"> 20201215 </h3>
__xaringanExtra__ <br>
[Extra skills](https://github.com/gadenbuie/xaringanExtra) for the R package `xaringan`.
__xaringanthemer__ <br>
More [themes for `xaringan`](https://pkg.garrickadenbuie.com/xaringanthemer/).
<h3 style="color:#EEEEEE"> 20201005 </h3>
__voice dream apps__ <br>
- reader [reads anything aloud](https://www.voicedream.com/reader/) (200+ voices in 30 languages).
- writer [helps you proofread out loud](https://www.voicedream.com/writer/).
- scanner [is for text recognition of scans](https://www.voicedream.com/scanner/).
__Freshwater Ecosystems Explorer__ <br>
Data platform with [accurate, up-to-date, high-resolution geospatial data depicting the extent freshwater ecosystems change over time](https://www.sdg661.app).
<h3 style="color:#EEEEEE"> 20200915 </h3>
__Synergy__ <br>
[Control multiple computers](https://symless.com/synergy) with a single keyboard/mouse.
__Book: Dive into Deep Learning__
Online [deep learning book](https://d2l.ai/).
__Apache Arrow for R__ <br>
[R package for Apache Arrow](https://arrow.apache.org/docs/r/index.html) in-memory platform. [h/t](http://grantmcdermott.com)
__Wizard Zines Collection__ <br>
[Programming zines](https://wizardzines.com/). [h/t](http://grantmcdermott.com)
<h3 style="color:#EEEEEE"> 20200915 </h3>
__Butterick's Practical Typography__ <br>
Online book with practical [advice on typography](https://practicaltypography.com/).
<h3 style="color:#EEEEEE"> 20200915 </h3>
__tweek__ <br>
Online [weekly planner](https://tweek.so/). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20200914 </h3>
__Mail Merge for Thunderbird__ <br>
A [mail merge](https://addons.thunderbird.net/en-US/thunderbird/addon/mail-merge/) extension for Thunderbird.
<h3 style="color:#EEEEEE"> 20200820 </h3>
__Compiled ESS point datasets__ <br>
[Compendium](https://gitlab.com/openlandmap/compiled-ess-point-data-sets) of compiled Earth System Science point data sets.
<h3 style="color:#EEEEEE"> 20200409 </h3>
__Stack__ <br>
[Browser](https://getstack.app/) built for multi-tasking. [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20200409 </h3>
__codetime__ <br>
Text-editor [plugin for coding metrics](https://www.software.com/code-time) and timing. [h/t](https://www.densediscovery.com/)
__descript__ <br>
Record and edit [audio as a transcript](https://www.descript.com/). [h/t](https://www.densediscovery.com/)
__Hypothesis__ <br>
[Annotate the web](https://web.hypothes.is/)—and share it. [h/t](https://www.densediscovery.com/)
__Online conference options__ <br>
There's more for things bigger than Zoom:
- [hopin](https://hopin.to/)
- [Run the World](https://www.runtheworld.today/)
- [Vito](https://vito.community/) [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20200210 </h3>
__Old Book Illustrations__ <br>
A compendium of [illustrations](https://www.oldbookillustrations.com/) from "old books".
__radian__ <br>
An [alternative console for R](https://github.com/randy3k/radian) with multiline editing and rich syntax highlight. [h/t](http://grantmcdermott.com)
<h3 style="color:#EEEEEE"> 20200106 </h3>
__learnr__ <br>
R package to create Markdown-based, [interactive tutorials](https://rstudio.github.io/learnr/index.html).
<h3 style="color:#EEEEEE"> 20191224 </h3>
__Convertio__ <br>
[File conversion](https://convertio.co/) across 300+ formats.
<h3 style="color:#EEEEEE"> 20191219 </h3>
__Arcane Office__ <br>
In-cloud, private/secure/de-centralized, free [office suite](https://arcaneoffice.com/).
__Crosstalk__ <br>
[Cross-widget interactions in R](https://rstudio.github.io/crosstalk/index.html).
__panelView__ <br>
R package for [visualizing treatment, missing-ness, and outcomes in panel data](https://yiqingxu.org/software/panelView/panelView.html).
__speaking.io__ <br>
[Public-speaking tips](https://speaking.io/). [h/t](https://www.densediscovery.com/)
__Standard ebooks__ <br>
Curated, high-quality, free [ebooks](https://standardebooks.org/).
<h3 style="color:#EEEEEE"> 20191203 </h3>
__cally__ <br>
[Find common dates/locations](https://cally.com/) for group events. [h/t](https://www.densediscovery.com/)
__Gantt.io__ <br>
Easy, pretty, [online Gantt charts](https://www.gantt.io/). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20190923 </h3>
__devhints__ <br>
A collection of [cheatseets](https://devhints.io/), *e.g.*, [bash](https://devhints.io/bash), [regex](https://devhints.io/regexp) and [vim](https://devhints.io/vim).
<h3 style="color:#EEEEEE"> 20190923 </h3>
__jQuery cheatsheet__ <br>
[Cheatseet](https://websitesetup.org/jquery-cheat-sheet/) for jQuery.
<h3 style="color:#EEEEEE"> 20190821 </h3>
__blastula__ <br>
[Send beautiful HTML emails from R](https://github.com/rich-iannone/blastula).
<h3 style="color:#EEEEEE"> 20190717 </h3>
__Really Good Emails__ <br>
Currated collection of [beautiful, well-crafted emails](https://reallygoodemails.com/). [h/t](https://www.densediscovery.com/)
__tresorit__ <br>
Secure [cloud storage](https://tresorit.com/). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20190717 </h3>
__In-Browser Markdown Editors__ <br>
- [HackMD](https://hackmd.io/)
- [StackEdit](https://stackedit.io/)
- [Madoko](https://www.madoko.net/)
<h3 style="color:#EEEEEE"> 20190715 </h3>
__Noted__ <br>
Integrated [audio-recording and note-taking](https://www.notedapp.io/) app.
<h3 style="color:#EEEEEE"> 20190702 </h3>
__Twizzy__ <br>
[Simple, clean flowchart tool](https://www.zenflowchart.com/). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20190620 </h3>
__Twizzy__ <br>
[Twitter without the timeline](https://twizzy.app/) (just message and tweet). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20190326 </h3>
__rticle__ <br>
LaTeX journal [article templates for R Markdown](https://github.com/rstudio/rticles).
<h3 style="color:#EEEEEE"> 20190326 </h3>
__Makepad__ <br>
(Online) [project management for single users](https://makepad.live/)—no team features.
<h3 style="color:#EEEEEE"> 20190319 </h3>
__Firefox Send__ <br>
[Send files](https://send.firefox.com/) up to 2.5GB (1GB without signing in). [h/t](https://www.densediscovery.com/)
__TAYL__ <br>
[Turn text articles into podcasts](https://www.tayl.app/). [h/t](https://www.densediscovery.com/)
__Workbench__ <br>
[Code-free data sharing and analysis platform](http://workbenchdata.com/).
<h3 style="color:#EEEEEE"> 20190219 </h3>
__Marvin__ <br>
"Ultimate" [productivity tool](https://amazingmarvin.com). [h/t](https://www.densediscovery.com/)
<h3 style="color:#EEEEEE"> 20190131 </h3>
__Buttondown__ <br>
Simple, online, markdown-based [newsletter app](https://buttondown.email).
<h3 style="color:#EEEEEE"> 20190115 </h3>
__Background Music__ <br>
[Audio utility](https://github.com/kyleneideck/BackgroundMusic) to automatically pause music and/or mute specific applications.
<h3 style="color:#EEEEEE"> 20181221 </h3>
__drake__ <br>
R package for [workflow management of data-driven tasks](https://ropensci.github.io/drake/).
__fontawesome package__ <br>
LaTeX [package to access Font Awesome icons](http://mirror.neu.edu.cn/CTAN/fonts/fontawesome/doc/fontawesome.pdf).
<h3 style="color:#EEEEEE"> 20181207 </h3>
__NES.css__ <br>
NES-style [CSS Framework](https://bcrikko.github.io/NES.css/).
__rayshader__ <br>
R package for [producing 2D and 3D hillshaded maps of elevation matrices](https://github.com/tylermorganwall/rayshader). [h/t](http://johnloeser.github.io)
<h3 style="color:#EEEEEE"> 20181205 </h3>
__iotools__ <br>
R package for [streaming and data parsing](https://cran.r-project.org/web/packages/iotools/index.html).
<h3 style="color:#EEEEEE"> 20181128 </h3>
__pqR__ <br>
A ["pretty quick" version of R](https://github.com/radfordneal/pqR). [h/t](http://grantmcdermott.com)
<h3 style="color:#EEEEEE"> 20181127 </h3>
__cloudyr__ <br>
A collection of R packages that [connect R to cloud resources](https://github.com/cloudyr).
<h3 style="color:#EEEEEE"> 20181120 </h3>
__fst__ <br>
[Fast and easy serialization of data frames](https://www.fstpackage.org) in R (and Julia).
__RStudio Server Amazon Machine Images__ <br>
Louis Aslett provides a tremendous public service in hosting and updating (and providing basic instructions for) [RStudio/R machine images for Amazon](http://www.louisaslett.com/RStudio_AMI/).
<h3 style="color:#EEEEEE"> 20181015 </h3>
__Spaceship Prompt__ <br>
[Minimalistic and flexible Zsh prompt](https://github.com/denysdovhan/spaceship-prompt).
__trminal__ <br>
[Quickly opens a Mac Terminal (or iTerm 2) window](https://www.bitfield.se/trminal/index.html) for the current Finder directory. Akin to [Go2Shell](http://zipzapmac.com/go2shell) but with more frequent/recent updates.
<h3 style="color:#EEEEEE"> 20181008 </h3>
__ColorBox__ <br>
Custom [color-scale builder](https://www.colorbox.io). [h/t](https://www.densediscovery.com)
__latex2exp__ <br>
[R package that converts LaTeX expressions](https://github.com/stefano-meschiari/latex2exp/) to (annoying) plotmath.
<h3 style="color:#EEEEEE"> 20181002 </h3>
__Superhuman__ <br>
Very [fast email client](https://superhuman.com) (based on what they say). [h/t](https://www.densediscovery.com)
<h3 style="color:#EEEEEE"> 20180928 </h3>
__What If__ <br>
[Tool for inspecting machine-learning models](https://pair-code.github.io/what-if-tool/index.html#intro).
<h3 style="color:#EEEEEE"> 20180925 </h3>
__GeoDa__ <br>
Free, open-source [geospatial software](https://geodacenter.github.io).
__iTerm2 borderless__ <br>
[A nice patch](https://github.com/jasonwoodland/iTerm2-borderless) for iTerm2 that creates a more minimal aesthetic for [iTerm2](https://iterm2.com/documentation-shell-integration.html).
__kitty__ <br>
GPU-based [terminal emulator](https://sw.kovidgoyal.net/kitty/).
<h3 style="color:#EEEEEE"> 20180911 </h3>
__Rbox__ <br>
R package to [run R in Atom](https://github.com/saeidamiri1/rbox).
<h3 style="color:#EEEEEE"> 20180831 </h3>
__RMarkdown presentation by Yihui Xie__ <br>
A [presentation](https://slides.yihui.name/2017-rmarkdown-UNL-Yihui-Xie.html) by Yihui Xie on bookdown, blogdown, and xaringan. There are [many more presentations available by Yihui Xie](https://yihui.name/en/vitae/).
<h3 style="color:#EEEEEE"> 20180830 </h3>
__hey-pane__ <br>
[Atom extension for enlarging the active panel](https://atom.io/packages/hey-pane) (includes keyboard shortcut).
__typing.io__ <br>
[Typing practice](https://typing.io) for many programming languages.
<h3 style="color:#EEEEEE"> 20180815 </h3>
__DeclareDesign__ <br>
[Declaring and analyzing research designs in the social sciences](https://declaredesign.org). [h/t](http://grantmcdermott.com)
__R for Data Science__ <br>
[Online book about R for Data Science](http://r4ds.had.co.nz) by Garrett Grolemund and Haldey Wickham.
<h3 style="color:#EEEEEE"> 20180718 </h3>
__Biblatex Cheat Sheet__ <br>
A [cheat sheet for Biblatex](CheatSheets/cheatSheetBiblatex.pdf).
__Writing tools for Atom__ <br>
[linter-write-good](https://atom.io/packages/linter-write-good) lints English prose. [Linter Just Say No](https://atom.io/packages/linter-just-say-no) helps you avoid using hedge words.
<h3 style="color:#EEEEEE"> 20180718 </h3>
__Bib-it__ <br>
[Compendium of BibTeX](http://bib-it.sourceforge.net/help/fieldsAndEntryTypes.php#techreport) entry and field types.
__Culture Concorde__ <br>
Simple menu-bar [curated-music player](http://www.cultureconcorde.com). [h/t](https://www.offscreenmag.com)
__Dotgrid__ <br>
"Minimal [vector drawing tool](https://hundredrabbits.itch.io/dotgrid)". [h/t](https://www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20180524 </h3>
__UberConference__ <br>
Great, [feature-rich meeting platform](https://www.uberconference.com/features).
<h3 style="color:#EEEEEE"> 20180516 </h3>
__Figure it Out__ <br>
Pretty Chrome extension (and website) to [figure out time zones](https://www.fioapp.co).
__grasshopper__ <br>
Free app that [teaches coding](https://grasshopper.codes).
__txt.fyi__ <br>
"This is the dumbest [publishing platform on the web](https://txt.fyi)." [h/t](https://www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20180510 </h3>
__Gradescope__ <br>
[Grading web service](https://gradescope.com) with really nice grading/rubric setup.
<h3 style="color:#EEEEEE"> 20180430 </h3>
__ScreenFocus__ <br>
Auto-dim (and auto-un-dim) when [working with multiple monitors](http://www.apptorium.com/screenfocus). [h/t](https://www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20180426 </h3>
__Clocker__ <br>
OSX app to plan and organize [through timezones](https://github.com/abhishekbanthia/Clocker).
__imdone__ <br>
Atom package that provides a card- and list-based [user interface for `TODO`s in your scripts](https://atom.io/packages/imdone-atom).
__themer__ <br>
[Generates color themes](https://themer.mjswensen.com) given a set of colors.
<h3 style="color:#EEEEEE"> 20180419 </h3>
__binder__ <br>
[Turns a GitHub repo into a collection of interactive notebooks](https://mybinder.org). [h/t](http://dlabctawg.github.io)
<h3 style="color:#EEEEEE"> 20180410 </h3>
__Gnotes__ <br>
Simple [markdown to Evernote](https://notes.giggy.com). Somewhat like [Marxico](https://marxi.co).
__`gsynth`__ <br>
R package for [generalized synthetic control methods](http://yiqingxu.org/software/gsynth/gsynth_examples.html).
<h3 style="color:#EEEEEE"> 20180406 </h3>
__SuperLearner__ <br>
R package for a [prediction-model ensembling method](https://github.com/ecpolley/SuperLearner).
<h3 style="color:#EEEEEE"> 20180403 </h3>
__Beautiful AI__ <br>
[AI-powered presentations](https://www.beautiful.ai).
<h3 style="color:#EEEEEE"> 20180329 </h3>
__Academic Sequitur__ <br>
A website that [tracks over 90 major economics and finance journals](https://academicsequitur.com).
<h3 style="color:#EEEEEE"> 20180320 </h3>
__Teletype for Atom__ <br>
An [Atom package to collaborate in real time](https://teletype.atom.io).
<h3 style="color:#EEEEEE"> 20180315 </h3>
__`AppleHealthAnalysis`__ <br>
An [R package to import and analyze data from the iOS Apple Health app](https://github.com/deepankardatta/AppleHealthAnalysis).
<h3 style="color:#EEEEEE"> 20180301 </h3>
__regex-railroad-diagram package__ <br>
A [regular expression railroad diagram view](https://atom.io/packages/regex-railroad-diagram) for regular expression under cursor in Atom.
<h3 style="color:#EEEEEE"> 20180301 </h3>
__Things 3__ <br>
[Personal task manager](https://culturedcode.com/things/). I'm switching from OmniFocus.
__Workflow__ <br>
[Automation tool](https://workflow.is) for iOS.
<h3 style="color:#EEEEEE"> 20180213 </h3>
__hiri__ <br>
Clean, powerful [email/calendar/task/contact](https://www.hiri.com) app.
<h3 style="color:#EEEEEE"> 20180202 </h3>
__XML Sitemaps__ <br>
Simple [tool for creating XML sitemaps](https://www.xml-sitemaps.com) (along with other formats).
<h3 style="color:#EEEEEE"> 20180129 </h3>
__Viridis in QGIS__ <br>
[Viridis color palettes (ramps)](https://gist.github.com/cossatot/6fd455d6a2e0e1fdb8ed547dd2176eae) for QGIS.
<h3 style="color:#EEEEEE"> 20180115 </h3>
__LittleSnitch__ <br>
[View and manage internet connections](https://www.obdev.at/products/littlesnitch/index.html) from your Mac. (Also: [MicroSnitch](https://www.obdev.at/products/microsnitch/index.html))
__SwiftText__ <br>
Quick-access [scratchpad](http://giraffelab.com/swifttext/) for OSX.
__ggthemr__ <br>
[Themes and palettes for `ggplot2`](https://github.com/cttobin/ggthemr).
<h3 style="color:#EEEEEE"> 20171227 </h3>
__Typely__ <br>
Free [online proofreading](https://typely.com).
<h3 style="color:#EEEEEE"> 20171130 </h3>
__Resistbot__ <br>
A bot who [finds and contacts your Congressional representatives](https://resistbot.io).
<h3 style="color:#EEEEEE"> 20171129 </h3>
__Text Mining with R__ <br>
An [introduction to (tidy) text mining in R](http://tidytextmining.com).
<h3 style="color:#EEEEEE"> 20171122 </h3>
__sf__ <br>
Stellar package for [spatial data analysis](https://cran.r-project.org/web/packages/sf/vignettes/sf1.html) in `R`. More `sf` resources: [1](https://cran.r-project.org/web/packages/sf/sf.pdf) | [2](http://strimas.com/r/tidy-sf/) | [3](https://r-spatial.github.io/sf/) | [4](http://ggplot2.tidyverse.org/reference/ggsf.html) | [5](https://dcl-2017-01.github.io/curriculum/notes/spatial-vis.html)
<h3 style="color:#EEEEEE"> 20171115 </h3>
__Cheat sheets for regular expressions__ <br>
The folks at RStudio provides cheat sheets for [regular expressions](CheatSheets/cheatSheetRegEx.pdf) and [`stringr`](CheatSheets/cheatSheetStringr.pdf) (and [many other cheat sheets](https://www.rstudio.com/resources/cheatsheets/)).
<h3 style="color:#EEEEEE"> 20171107 </h3>
__Author__ <br>
App to instantly [create and publish documents to the web](http://authorapp.co/).
<h3 style="color:#EEEEEE"> 20171030 </h3>
__ggforce__ <br>
A [package for `R`](https://github.com/thomasp85/ggforce) that aims to extend `ggplot2` for explorative data visualization.
__ggplot2 extensions__ <br>
A helpful [website that tracks extensions to `R`'s `ggplot2`](https://www.ggplot2-exts.org/index.html) package.
<h3 style="color:#EEEEEE"> 20171018 </h3>
__3Blue1Brown__ <br>
A [YouTube channel that animates math](https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw).
<h3 style="color:#EEEEEE"> 20171014 </h3>
__GitFinder__ <br>
A fast and lightweight [Git client for Mac with Finder integration](https://zigz.ag/GitFinder/).
<h3 style="color:#EEEEEE"> 20171010 </h3>
__Drop__ <br>
Beautiful [color picker](http://dropcolorpicker.com) with Touch Bar support.
__Index__ <br>
[Save and search your "stuff"](https://indexapp.com).
__Qbserve__ <br>
Automatically [tracks both productivity and work hours](https://qotoqot.com/qbserve). [h/t](https://www.offscreenmag.com)
__TripMode__ <br>
[Blocks apps from accessing the internet](https://www.tripmode.ch). [h/t](https://www.offscreenmag.com)
__Tyke__ <br>
[Scratch paper](http://tyke.io) that lives in your menubar. [h/t](https://www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20171003 </h3>
__Pod__ <br>
A ["connected" calendar](https://pod.io) for iOS. [h/t](https://www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20170927 </h3>
__Tabagotchi__ <br>
Fun [browser extension that incentives fewer tabs](http://tabagotchi.com).
<h3 style="color:#EEEEEE"> 20170831 </h3>
__Crime Data__ <br>
The FBI has a great new [crime data explorer](https://crime-data-explorer.fr.cloud.gov). The Open Data Census project has a handy(-ish) [summary of city-level crime datasets](http://us-city.census.okfn.org/dataset/crime-stats).
__Plain Email__ <br>
Four-action [email-processing app](http://www.plainemail.com).
__Rambox__ <br>
Cross-platform [messaging and emailing app](http://rambox.pro).
__ScienceFair__ <br>
Search, collect, read and analyze [scientific papers](http://sciencefair-app.com).
<h3 style="color:#EEEEEE"> 20170828 </h3>
__earth__ <br>
A (beautiful) [global map](https://earth.nullschool.net/#current/wind/surface/level/orthographic=-97.28,29.06,1030/loc=-95.951,28.471) of wind, weather, and ocean conditions.
<h3 style="color:#EEEEEE"> 20170825 </h3>
__Free, open-source machine learning, statistics, and data-mining resources__ <br>
A [curated list of resources](https://github.com/josephmisiti/awesome-machine-learning/blob/master/books.md) from Joseph Misiti.
__Template for R Markdown academic manuscript__ <br>
Steven Miller offers a [guide and template for academic manuscripts in R Markdown](http://svmiller.com/blog/2016/02/svm-r-markdown-manuscript/).
<h3 style="color:#EEEEEE"> 20170824 </h3>
__Regular expressions in R__ <br>
`stringr`'s very helpful [primer on regular expressions in R](http://stringr.tidyverse.org/articles/regular-expressions.html).
<h3 style="color:#EEEEEE"> 20170807 </h3>
__Gifmock__ <br>
[Creates high-quality GIFs](https://gifmock.com).
__twist__ <br>
A calmer [Slack alternative](https://twistapp.com).
<h3 style="color:#EEEEEE"> 20170806 </h3>
__Hemingway__ <br>
App that [improves your writing](http://www.hemingwayapp.com).
<h3 style="color:#EEEEEE"> 20170804 </h3>
__rmapshaper__ <br>
R package for ["topologically-aware multi-polygon simplification" (for shapefiles)](https://cran.r-project.org/web/packages/rmapshaper/vignettes/rmapshaper.html). Related: [mapshaper.org](http://mapshaper.org)
<h3 style="color:#EEEEEE"> 20170803 </h3>
__Manually re-index OSX Spotlight__ <br>
A helpful [guide](https://www.scrubly.com/blog/how-to-mac/manually-reindex-os-x-spotlight/). _Hint_: It's really just `sudo mdutil -E /`.
<h3 style="color:#EEEEEE"> 20170727 </h3>
__Colibri__ <br>
A [browser without tabs](https://colibri.opqr.co).
<h3 style="color:#EEEEEE"> 20170722 </h3>
__everydayCheck__ <br>
A simple, pretty [habit tracker](https://everydaycheck.com/). [h/t](https://www.offscreenmag.com/)
__Orai__ <br>
AI-powered [feedback for your speeches](https://www.oraiapp.com/?). [h/t](https://www.offscreenmag.com/)
<h3 style="color:#EEEEEE"> 20170713 </h3>
__Velox__ <br>
[Fast raster manipulation](https://cran.r-project.org/web/packages/velox/README.html) in R.
<h3 style="color:#EEEEEE"> 20170608 </h3>
__Tabulizer__ <br>
[Extract tables from PDFs](https://github.com/ropensci/tabulizer) using R.
<h3 style="color:#EEEEEE"> 20170606 </h3>
__10 Minute Mail__ <br>
[Disposable email](https://www.10minutemail.com) service.
<h3 style="color:#EEEEEE"> 20170531 </h3>
__Windscribe__ <br>
[VPN](https://windscribe.com) with a generous free allowance.
<h3 style="color:#EEEEEE"> 20170528 </h3>
__SplitShow__ <br>
Tool for [dual-head presentations](https://github.com/mpflanzer/splitshow) on OSX.
<h3 style="color:#EEEEEE"> 20170526 </h3>
Two apps from Matthew Palmer:
__Rocket__ <br>
Mind-blowing (Slack-style) [emoji on your Mac](http://matthewpalmer.net/rocket/).
__Vanilla__ <br>
[Hides menu bar icons](http://matthewpalmer.net/vanilla/) on your Mac. [h/t](www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20170522 </h3>
__Material Colors__ <br>
A convenient [website](https://www.materialpalette.com/colors) for accessing the colors of the material design palette.
<h3 style="color:#EEEEEE"> 20170516 </h3>
__Astro__ <br>
[Email app(s)](https://www.helloastro.com) powered by AI. [h/t](www.offscreenmag.com)
__sip__ <br>
[Collects, organizes, and shares colors](http://sipapp.io) (and palettes). [h/t](www.offscreenmag.com)
<h3 style="color:#EEEEEE"> 20170515 </h3>
__`rJava` error__ <br>
A very helpful [guide](https://github.com/snowflakedb/dplyr-snowflakedb/wiki/Configuring-R-rJava-RJDBC-on-Mac-OS-X) to fixing errors with `rJava` on OSX.
<h3 style="color:#EEEEEE"> 20170507 </h3>
__TextExpander__ <br>
[Expands custom keyboard shortcuts](https://smilesoftware.com/textexpander) into frequently-used text and pictures.
<h3 style="color:#EEEEEE"> 20170430 </h3>
__kobra__ <br>
Simple, real-time, [code collaboration](https://kobra.io/).
<h3 style="color:#EEEEEE"> 20170426 </h3>
__leaflet__ <br>
[Access Leaflet's JavaScript library inside of R](https://rstudio.github.io/leaflet/).
__pacman__<br>
An [R package for easy package management in R](https://cran.r-project.org/web/packages/pacman/vignettes/Introduction_to_pacman.html)—loading, unloading, _etc._
<h3 style="color:#EEEEEE"> 20170414 </h3>
__Popular economics papers__ <br>
Oxford University Press provides a list of [the most popular economics papers](https://oxfordjournals.org/en/our-journals/social-sciences/most-popular-economics-papers.html) from The Quarterly Journal of Economics (QJE) and The Review of Economics Studies (REStud).
<h3 style="color:#EEEEEE"> 20170410 </h3>
__Unpaywall__ <br>
[Read paywalled research papers](http://unpaywall.org) for free.
<h3 style="color:#EEEEEE"> 20170406 </h3>
__VPN__ <br>
In addition to having great names, [CyberGhost](www.cyberghostvpn.com) and [TunnelBear](https://www.tunnelbear.com) provide VPN services. Both services offer free options.
<h3 style="color:#EEEEEE"> 20170331 </h3>
__LaTeX, meet ggplot2__ <br>
Port images out [out of R and into LaTeX](http://iltabiai.github.io/tips/latex/2015/09/15/latex-tikzdevice-r.html). [h/t](https://twitter.com/loesch82?lang=en)
<h3 style="color:#EEEEEE"> 20170329 </h3>
__Comparing text files__ <br>
[Diffchecker](https://www.diffchecker.com) and [Text Compare!](https://text-compare.com) offer in-browser comparisons between text documents. In Atom, [split-diff](https://atom.io/packages/split-diff) and [compare-files](https://atom.io/packages/compare-files) offer between-document comparisons.
<h3 style="color:#EEEEEE"> 20170324 </h3>
__asciicinema__ <br>
[asciinema](https://asciinema.org/) (formerly ascii.io) is a free and open source solution for recording terminal sessions and sharing them on the web.
__Markdown online__ <br>
[Dillinger](http://dillinger.io/), [StackEdit](https://stackedit.io/), and [Markdown Live Preview](http://markdownlivepreview.com/) offer three online Markdown editors/renderers. [remark](https://remarkjs.com/#1), [Marp](https://yhatt.github.io/marp/), [swipe](https://www.swipe.to/markdown/), and [Deckset](https://www.decksetapp.com/) offer options for rendering Markdown into presentation slides (also, [Rmarkdown with ioslides](http://rmarkdown.rstudio.com/ioslides_presentation_format.html)).
<h3 style="color:#EEEEEE"> 20170312 </h3>
__FocusList__<br>
A [daily planner and focus app](http://focuslist.co) based on Pomodoro. [h/t](http://thesweetsetup.com/staying-productive-pomodoro-technique-sponsor/)
__Giphy Capture__<br>
[Create GIFs](https://giphy.com/apps/giphycapture) on your Mac. Other options: [Gifox](https://gifox.io), [Recordit](http://recordit.co), and [Gyazo](https://gyazo.com).
<h3 style="color:#EEEEEE"> 20170227 </h3>
__pander__<br>
An R [Pandoc writer](https://rapporter.github.io/pander/)—for rendering R objects into Pandoc's markdown.
<h3 style="color:#EEEEEE"> 20170209 </h3>
__Typora__<br>
A [live and minimal Markdown editor](https://typora.io/).
<h3 style="color:#EEEEEE"> 20170206 </h3>
__GGally__<br>
[Extends R's `ggplot2`](http://ggobi.github.io/ggally/) with many helpful graphical functions.
<h3 style="color:#EEEEEE"> 20170123 </h3>
__LightTable__<br>
Open-source [text editor](http://lighttable.com) with in-line code evaluation.
<h3 style="color:#EEEEEE"> 20170123 </h3>
__Redkix__<br>
Reat-time [email app](https://redkix.com).
__Typeform__<br>
Clean, [online forms](http://typeform.com).
<h3 style="color:#EEEEEE"> 20170123 </h3>
__Codr__<br>
A lightweight, [collaborative pastebin (whiteboard) for code](http://codr.io).
__SageMathCloud__<br>
Collaboratively [use open source math software/terminals in your browser](https://cloud.sagemath.com).
__SubEthaEdit (4)__<br>
[Collaborative text editing](https://www.codingmonkeys.de/subethaedit/).
<h3 style="color:#EEEEEE"> 20170116 </h3>
__Mac Setup__<br>
[Helpful guide](http://sourabhbajaj.com/mac-setup/) for setting up a Mac for most popular languages and programming/scripting tools.
<h3 style="color:#EEEEEE"> 20170115 </h3>
__Studies__<br>
[Flash cards](http://www.studiesapp.com) for iOS and OSX.
<h3 style="color:#EEEEEE"> 20170112 </h3>
__Noizio__<br>
[White-noise generating app](http://noiz.io/) for OSX.
__WeTransfer__<br>
[Sends files](https://wetransfer.com/).
<h3 style="color:#EEEEEE"> 20170111 </h3>
__Due__<br>
Fast [to-do list app](http://www.dueapp.com/) with reminders.
__Exist__<br>
[Track everything](https://exist.io/) you do in one place.
<h3 style="color:#EEEEEE"> 20170109 </h3>
__Tomatimer__<br>
A loose and straightforward [pomodoro timer for Atom](https://atom.io/packages/tomatimer).
<h3 style="color:#EEEEEE"> 20170105 </h3>
__Markdown Quick Look Plugin__<br>
[Preview Markdown files](http://inkmarkapp.com/markdown-quick-look-plugin-mac-os-x/) in OSX Finder (through the Preview app). From the makers of the iPad Markdown text editor [InkMark](http://inkmarkapp.com/).
<h3 style="color:#EEEEEE"> 20170101 </h3>
__Read the Docs__<br>
[Create, host, and browse documentation](https://readthedocs.org/).
<h3 style="color:#EEEEEE"> 20161230 </h3>
__Cloudinary__<br>
[Image and video management](http://cloudinary.com) in the cloud.
<h3 style="color:#EEEEEE"> 20161228 </h3>
__Spark__<br>
A fast, personalizable [email client](https://sparkmailapp.com/).
<h3 style="color:#EEEEEE"> 20161227 </h3>
__PostImage__<br>
Free [image hosting and upload](https://postimg.org).
__Small Victories__<br>
Takes files in a Dropbox folder and [turns them into a website](http://www.smallvictori.es).
<h3 style="color:#EEEEEE"> 20161222 </h3>
__TinyLetter__<br>
A free personal [newsletter service](https://tinyletter.com/site/about/).
<h3 style="color:#EEEEEE"> 20161219 </h3>
__Pandas Cheat Sheet__<br>
A [cheat sheet](https://assets.datacamp.com/blog_assets/PandasPythonForDataScience.pdf) for data science with Python's Pandas.
<h3 style="color:#EEEEEE"> 20161215 </h3>
__MapInSeconds.com__<br>
Quickly turns [spreadsheets into maps](http://www.mapinseconds.com/). [h/t](http://www.darkhorseanalytics.com/blog/mapping-data-should-take-seconds-mapinseconds-com)
<h3 style="color:#EEEEEE"> 20161208 </h3>
__R Markdown Websites__<br>
A tutorial on [building a website using R Markdown](http://rmarkdown.rstudio.com/rmarkdown_websites.html) (like this one). [h/t](http://itai-trilnick.com) The [rmdformats](https://github.com/juba/rmdformats) package offers additional themes (formats). More on R Markdown [here](http://rmarkdown.rstudio.com). The [bookdown](https://bookdown.org) package extends R Markdown to publishing books. The [blogdown](http://github.com/rstudio/blogdown) package extends R Markdown to publishing blogs (or general websites) using [Hugo](https://gohugo.io). The [pkgdown](https://github.com/hadley/pkgdown) package extends R Markdown to creating static html documentation.
<h3 style="color:#EEEEEE"> 20161205 </h3>
__Divvy__<br>
Provides customized [window management](http://mizage.com/divvy/).
__BetterTouchTool__<br>
[Configure gestures](https://www.boastr.net/) for OSX.
<h3 style="color:#EEEEEE"> 20161121 </h3>
__Selector Gadget__<br>
Point-and-click [CSS selectors](http://selectorgadget.com). Helpful when used in conjunction with R's [rvest](https://github.com/hadley/rvest) package.
<h3 style="color:#EEEEEE"> 20161118 </h3>
__Vivaldi__<br>
A [highly customizable browser](https://vivaldi.com/).
<h3 style="color:#EEEEEE"> 20161115 </h3>
__GitKraken__<br>
A GUI [Git client](https://www.gitkraken.com/), for Windows, Mac and Linux.
<h3 style="color:#EEEEEE"> 20161107 </h3>
__Calendly__<br>
Simple, beautiful [scheduling](https://calendly.com/pages/features).
<h3 style="color:#EEEEEE"> 20161106 </h3>
__Bear__<br>
A [flexible writing app](http://www.bear-writer.com/) for crafting notes and prose.
__OLS Notes__<br>
Some nice [notes](https://web.stanford.edu/~mrosenfe/soc_meth_proj3/matrix_OLS_NYU_notes.pdf) on ordinary least squares from Michael Rosenfeld at Stanford.
__Shodan__<br>
[Search engine](https://www.shodan.io/) for internet of things (and other things).
<h3 style="color:#EEEEEE"> 20161031 </h3>
__Facking Operator Mono Font in Atom__<br>
A [guide]( https://medium.com/@docodemore/an-alternative-to-operator-mono-font-6e5d040e1c7e<h3 style="color:#EEEEEE">.i19w8uuid) to building a font system in Atom similar to [Operator Mono](http://www.typography.com/fonts/operator/styles/). </h3>
<h3 style="color:#EEEEEE"> 20161028 </h3>
__Pomodoro Time and Tadam__<br>
[Pomodoro Time](https://pomodoneapp.com) and [Tadam](http://tadamapp.com) are simple Pomodoro timers.
<h3 style="color:#EEEEEE"> 20161019 </h3>
__Thenmap__<br>
A [repository of historical borders](http://www.thenmap.net/).
<h3 style="color:#EEEEEE"> 20161007 </h3>
__Geocodio__<br>
(Reasonably) accurate, affordable, and unrestricted [online geocoding](geocod.io/) (forward/reverse and batch/API). Connect with R through [`rgeocodio`](https://github.com/hrbrmstr/rgeocodio).
<h3 style="color:#EEEEEE"> 20161006 </h3>
__Canary Mail__<br>
A "simple, smart, swift" [email client for Mac](http://canarymail.io) with many nice features.
<h3 style="color:#EEEEEE"> 20161004 </h3>
__Github Pages and Jekyll tutorial__<br>
From UC Berkeley's The Hacker Within, a nice [tutorial on Github Pages and Jekyll](http://www.thehackerwithin.org/berkeley/posts/github-pages-jekyll).
__pdftools__<br>
A fast and portable [PDF extractor for R](https://ropensci.org/blog/2016/03/01/pdftools-and-jeroen) (and others).
<h3 style="color:#EEEEEE"> 20161003 </h3>
__Producteev__<br>
Team-oriented [productivity software](https://www.producteev.com).
<h3 style="color:#EEEEEE"> 20160930 </h3>
__Ghost Browser__<br>
A [browser](https://ghostbrowser.com) that lets you isolate cookie jars into color coded tabs so you can run multiple sessions with multiple accounts on the same web site.
__Hocus Focus__<br>
Automatically [hide inactive windows](http://hocusfoc.us).
__Noisli__<br>
In-browser [white-noise generator](https://www.noisli.com) with _productivity_ and _relax_ settings.
__Standard Resume__<br>
One [resume that works everywhere](https://standardresume.co).
<h3 style="color:#EEEEEE"> 20160928 </h3>
__Univariate Distribution Relationships__<br>
Interactive chart for [relationships between univariate distributions](http://www.math.wm.edu/~leemis/chart/UDR/UDR.html).
<h3 style="color:#EEEEEE"> 20160926 </h3>
__Opentest__<br>
Seamless screen, mic and camera [recording for Chrome](https://www.opentest.co).
<h3 style="color:#EEEEEE"> 20160919 </h3>
__Habitica__<br>
Improve your [habits by playing a game](http://habitica.com).
<h3 style="color:#EEEEEE"> 20160906 </h3>
__Linus screen__<br>
[Screen](http://www.tecmint.com/screen-command-examples-to-manage-linux-terminals/) effectively allows signing on and off from interactive sessions on a server/Linux shell.
<h3 style="color:#EEEEEE"> 20160822 </h3>
__REVEAL.JS__<br>
Javascript-backed [HTML presentation framework](http://lab.hakim.se/reveal-js/<h3 style="color:#EEEEEE">/). </h3>
<h3 style="color:#EEEEEE"> 20160813 </h3>
__QuickLookR__<br>
OSX-based [QuickLook plugin for R's `save()` & `saveRDS()` files](https://github.com/hrbrmstr/QuickLookR). [h/t](https://rud.is/b/2016/08/06/quicklookr-a-macos-quicklook-plugin-for-r-data-files/)
<h3 style="color:#EEEEEE"> 20160811 </h3>
__Multi-File LaTeX projects__<br>
[ShareLaTeX's guide](https://www.sharelatex.com/learn/Multi-file_LaTeX_projects) to building LaTeX documents from multiple files.