| Command | Format | Description |
|---|---|---|
| ^A | ^Afo,h,w,d:f.x | Use Scalable/Bitmapped Font |
| ^A@ | ^A@o,h,w,d:f.x | Use Font Name to Call Font |
| ^B0 | ^B0a,b,c,d,e,f,g | Aztec Bar Code Parameters |
| ^B1 | ^B1o,e,h,f,g | Code 11 Bar Code |
| ^B2 | ^B2o,h,f,g,e,j | Interleaved 2 of 5 Bar Code |
| ^B3 | ^B3o,e,h,f,g | Code 39 Bar Code |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>litra-auto-on</string> | |
| <key>ProgramArguments</key> | |
| <array><string>/Library/LaunchDaemons/litra-auto-on.sh</string></array> | |
| <key>RunAtLoad</key> | |
| <true/> |
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
| // Remove all drafts from your drafts view | |
| // Navigate to drafts | |
| // F12 to raise dev console | |
| // Paste the below | |
| (async function(x) { | |
| for (let e = document.querySelector('[type="trash"]'); e != null; e = document.querySelector('[type="trash"]')) { | |
| e.click(); | |
| await new Promise(resolve => setTimeout(resolve, 500)) | |
| document.querySelector('[data-qa="drafts_page_draft_delete_confirm"]').click(); | |
| await new Promise(resolve => setTimeout(resolve, 1500)) |
(To be improved)
- httpie (which provides the
httpcommand) —pip install httpie
- Save the
git-branch-protection.shasgit-branch-protectionsomewhere in your path (something like~/binor~/.local/binif you already use it) - Generate a GitHub token and save it as
~/.config/github_token.
I used pycrypto in my projects before but since the project is no longer under active development it is highly recommended to move to cryptography.
I faced some difficulty during this migration so I am documenting my solution to help others.
This is how my pycrypto code to get pem encoded key looked like
from Crypto.IO import PKCS8
from Crypto.IO import PEM
def key_stuff(key_file=None):
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.