create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
Instructions are modified from emacs-w64 Wiki page by zklhp. Many thanks for sharing!
Download MSYS2 (msys2-x86_64-20161025.exe) from this download page.
Install MSYS2 to, for example, C:\msys2 (make sure no space in path).
Optionally prettify the MSYS2 console mintty with ~/.minttyrc to make it more pleasing to eyes. Thanks to this awesome theme!
| (defmacro value-bound-lambda (args symbols &rest body) | |
| "Returns a lambda expression with ARGS, where each symbol in SYMBOLS is | |
| available for use and is bound to it's value at creation. | |
| Symbols needs to be a list of variables or functions available globally." | |
| (declare (indent defun)) | |
| (let ((vars (remove-if-not 'boundp symbols)) | |
| (funcs (remove-if-not 'functionp symbols))) | |
| `(lambda ,args | |
| (let ,(mapcar (lambda (sym) (list sym (symbol-value sym))) vars) |
| #-*- coding: utf-8 -*- | |
| # Python 3.4 | |
| # author: http://blog.dokenzy.com/ | |
| # date: 2015. 4. 8 | |
| # References | |
| # http://www.imcore.net/encrypt-decrypt-aes256-c-objective-ios-iphone-ipad-php-java-android-perl-javascript/ | |
| # http://stackoverflow.com/questions/12562021/aes-decryption-padding-with-pkcs5-python | |
| # http://stackoverflow.com/questions/12524994/encrypt-decrypt-using-pycrypto-aes-256 |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |