Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| { | |
| "nodes": { | |
| "agenix": { | |
| "inputs": { | |
| "nixpkgs": "nixpkgs" | |
| }, | |
| "locked": { | |
| "lastModified": 1652747504, | |
| "narHash": "sha256-0FnoUBia9EYeDlg/XcPf043Tl/5RneSUaZ6IMsBYreY=", | |
| "owner": "montchr", |
| #!/usr/bin/php -d open_basedir=/usr/syno/bin/ddns | |
| <?php | |
| if ($argc !== 5) { | |
| echo 'badparam'; | |
| exit(); | |
| } | |
| // Entered into DSM (Control Panel > External Access > DDNS) | |
| $username = (string) $argv[1]; // Resource ID |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:0x135EEDD0F71934F3]
Run the following command from any location within a repo, replacing the value of BASE_BRANCH with the base branch for your feature branch if necessary:
BASE_BRANCH="main" && git-cliff -r $(git rev-parse --show-toplevel) -- "$BASE_BRANCH..HEAD"On macOS, you can easily copy the output of this command directly to your clipboard by piping it into pbcopy:
BASE_BRANCH="main" && git-cliff -r $(git rev-parse --show-toplevel) -- "$BASE_BRANCH..HEAD" | pbcopy| javascript:(function()%7Bconst%20toggleButton%20%3D%20document.querySelector('.ReactQueryDevtools')%3Bconst%20isVisible%20%3D%20toggleButton.style.visibility%3BtoggleButton.style.visibility%20%3D%20'visible'%20%3D%3D%3D%20isVisible%20%3F%20'hidden'%20%3A%20'visible'%7D)() |
| $poppins: 'Poppins'; | |
| $playfair: 'Playfair Display'; | |
| $serif: $poppins, georgia, times, serif; | |
| $sans-serif: $playfair, helvetica, arial, sans-serif; | |
| .serif { font-family: $serif; } | |
| .sans-serif { font-family: $sans-serif; } |
| /* alternate monospace font stack, sorted by least popular so you're most likely to get the font you want */ | |
| code, | |
| kbd, | |
| pre, | |
| tt, | |
| .ace_editor.ace-github-light, | |
| .blame-sha, | |
| .blob-code-inner, | |
| .blob-num, | |
| .branch-name, |
| use AppleScript version "2.4" -- Yosemite (10.10) or later | |
| use scripting additions | |
| on addToList(theTrack, listName) | |
| tell application "Music" | |
| local theList, theTrackID, theListID, dupe | |
| set theList to user playlist listName | |
| set theTrackID to database ID of theTrack | |
| set theListID to id of theList |