- Use HTML tags to define the table to get the best layout result
- Use either backticks (```) or the HTML
preelement with attributelang - Keep a blank line before and after a code block for correct formatting and syntax highlighting
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
| // check version | |
| node -v || node --version | |
| // list locally installed versions of node | |
| nvm ls | |
| // list remove available versions of node | |
| nvm ls-remote | |
| // install specific version of node |
Disclaimer: The majority of this list was created pre-COVID. Many other organizations are likely hiring remote now.
- A1M Solutions (distributed)
- Ad Hoc (distributed)
- ACLU Product & Technology Department
- Beeck Center (at Georgetown)
- BetaNYC
- Blue Ridge Labs
Using Homebrew on Mac OS X:
brew install jq
Add these aliases to your profile (e.g., ~/.zshrc, ~/.bashrc, ~/.profile, etc.):
alias hurlp='pbpaste | jq ".log.entries" | tee >(jq --raw-output "[.[] | .request.url] | sort | unique | .[]")'
alias hurld='pbpaste | jq ".log.entries" | jq --raw-output "[.[] | .request.url] | sort | unique | .[]" | harurls | tee >(xargs -n 1 curl -O $1)'