Moved to https://github.com/weakish/roxterm-solarized-theme
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
| #!/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 | |
| # |
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
| # 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) |
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
| # 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" |