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
| # curl -L https://gist.github.com/srhopkins/f1cbe2932750fb383884919f9e53f23c/raw/ | |
| # Setting the prefix from C-b to C-a | |
| # START:prefix | |
| set -g prefix C-a | |
| # END:prefix | |
| # Free the original Ctrl-b prefix keybinding | |
| # START:unbind | |
| unbind C-b | |
| # END:unbind |
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
| # alias jupyter='curl -s https://gist.githubusercontent.com/srhopkins/f6eddd7761fefee9a49bfa6cfba73642/raw/3adebd63093637ba0bfd56a0c466ab04ebdc2da2/jupyter.yaml | docker compose -f - up' | |
| version: "3.2" | |
| services: | |
| jupyter: | |
| image: jupyter/datascience-notebook | |
| volumes: | |
| - ${HOME}/.ssh:/home/jovyan/.ssh | |
| - ${HOME}/.aws:/home/jovyan/.aws | |
| - ${HOME}/.kube/config:/home/jovyan/.kube/config |
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
| # curl -s https://gist.githubusercontent.com/srhopkins/9a9f85d08a6420b1287368aeac1d2520/raw/.gitconfig | |
| [user] | |
| email = [user_email] | |
| name = [user_full_name] | |
| [core] | |
| excludesFile = ~/.gitignore_global | |
| [pull] | |
| rebase = true | |
| [fetch] |
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
| import requests | |
| token = '' | |
| def github_request(uri, method='get', **kwargs): | |
| '''GitHub API wrapper for auth and baseline vars''' | |
| if not uri.startswith('http'): |
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
| Human Writer | |
| Avoid these AI writing patterns. Any pattern used once might be fine—the problem is when multiple appear together or one repeats excessively. | |
| Word Choice | |
| Avoid magic adverbs: "quietly", "deeply", "fundamentally", "remarkably", "arguably" used to inject false significance. | |
| Avoid AI vocabulary: "delve", "certainly", "utilize", "leverage" (as verb), "robust", "streamline", "harness". | |
| Avoid ornate nouns: "tapestry", "landscape", "paradigm", "synergy", "ecosystem" where simpler words work. | |
| Avoid the "serves as" dodge: Replacing "is" with "serves as", "stands as", "marks", "represents". | |
| Sentence Structure | |
| Avoid negative parallelism: "It's not X — it's Y" pattern. The single most identified AI tell. One per piece max. | |
| Avoid dramatic countdown: "Not X. Not Y. Just Z." |
OlderNewer