- The Pudding: https://github.com/the-pudding/data
- Largest Profanity List: https://github.com/surge-ai/profanity
- Public APIs: https://github.com/public-apis/public-apis
Last active
October 18, 2023 19:08
-
-
Save srvanderplas/5004a64533cae7077619cb4349e6c265 to your computer and use it in GitHub Desktop.
Useful Short Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Link all files in a directory to another directory | |
# Source: https://superuser.com/questions/633605/how-to-create-symbolic-links-to-all-files-class-of-files-in-a-directory | |
find .. -name \*.bar -exec ln -vs "{}" dest/ ';' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set R site library to be owned by staff: https://stackoverflow.com/a/44676272 | |
sudo chown root:staff /usr/local/lib/R/site-library | |
sudo chmod 2775 /usr/local/lib/R/site-library |
- https://myidp.sciencecareers.org/ - working towards science career skill evaluation, etc.
- https://www.reddit.com/r/Professors/comments/12znm53/my_first_graduate_student_is_joining_my_lab_in/
- Zotero Integration in Source Mode: https://github.com/paleolimbot/rbbt
- Book ISBN to bibtex converter: https://www.bibtex.com/c/isbn-to-bibtex-converter/
- Install: pip3 install git-fame
git fame --incl="qmd|Rmd|Rnw" -e
This aggregates by email and only includes files that have R/knitr content
- Github Classroom command line: https://github.blog/changelog/2023-03-23-introducing-the-github-classroom-cli-extension-for-the-github-cli/
- https://github.com/ashbaldry/designer - easy Shiny wireframe design
- remotes::install_github("ThinkR-open/remedy") - shortcuts for writing rmarkdown in rstudio
- Polars - replacement for Pandas? https://pola-rs.github.io/polars-book/user-guide/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment