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"
| [Presets] | |
| Preset0=Classical | |
| Preset1=Club | |
| Preset2=Dance | |
| Preset3=Flat | |
| Preset4=Live | |
| Preset5=Laptop Speakers/Headphone | |
| Preset6=Rock | |
| Preset7=Pop |
| #!/usr/bin/env python | |
| import hashlib | |
| import optparse | |
| import paramiko | |
| from Crypto.PublicKey import RSA | |
| def insert_char_every_n_chars(string, char='\n', every=64): | |
| return char.join( |
Press minus + shift + s and return to chop/fold long lines!
| #!/bin/bash | |
| function usage() { | |
| echo "usage: $0 <volume (0-100)> <say args...>" | |
| echo | |
| echo "Unmutes and sets the system volume to volume%, passing the remaining" | |
| echo "arguments to the OSX \`say' command, restoring volume / mute setting" | |
| echo "to previous values after the speech has completed." | |
| exit 1 | |
| } |