create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <?php | |
| require 'vendor/autoload.php'; | |
| $transport = Swift_SmtpTransport::newInstance('localhost', 25); | |
| $mailer = Swift_Mailer::newInstance($transport); | |
| // DKIM 用の Signer を作成する | |
| $privateKey = file_get_contents('./default.private'); | |
| $domainName = 'example.com'; |
| /* | |
| * From css-tricks.com | |
| * http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
| */ | |
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"