create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
/** ================= | |
* Heart beating effect | |
* HTML: <div class="heartbeat">❤︎</div> // Note, if use span, have to set display: inline-block | |
* ================= */ | |
.heartbeat { | |
color: #e00; | |
animation: beat .5s infinite alternate; | |
} | |
/* 1st keyframes: https://jsfiddle.net/qLfg2mrd/ */ | |
@keyframes heartbeat { |
/* ======================================= | |
* Random emoji for 404 error message. | |
* ==================================== */ | |
// <h1 class="error-emoji"></h1> | |
const randomErrorEmoji = () => { | |
const error = document.getElementsByClassName('error-emoji')[0]; | |
const emojiArray = [ | |
'\\(o_o)/', '(o^^)o', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)', | |
'(=\'X\'=)', '(>_<)', '(;-;)', '\\(^Д^)/', | |
]; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "forwarded_port", guest: 80, host: 8080 | |
# Create a private network, which allows host-only access to the machine | |
# using a specific IP. | |
# config.vm.network "private_network", ip: "192.168.33.10" |