Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| # config/locales/en.yml | |
| en: | |
| exception: | |
| show: | |
| not_found: | |
| title: "Not Found" | |
| description: "The page you were looking for does not exists." | |
| internal_server_error: | |
| title: "Internal Server Error" |
| # http://stuvel.eu/files/python-rsa-doc | |
| # You can `pip install rsa` | |
| import rsa | |
| ### KEY GENERATION ### | |
| ### Run once, on your dev environment | |
| ### Store the private key in a secure place; add the pubkey to your program | |
| (pubkey, privkey) = rsa.newkeys(1024) |
| #!/bin/bash | |
| # | |
| # Shell script that configures terminator to use solarized theme | |
| # colors. Assumes a single terminator profile. Tested on Ubuntu 11.10. | |
| # | |
| # Solarized theme: http://ethanschoonover.com/solarized | |
| # | |
| # Original from 79CetiB: | |
| # http://www.reddit.com/r/emacs/comments/npfmv/i_need_some_help_with_the_solarized_theme_in_a/c3b4mds | |
| # |