###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ | 
###SSH into a remote machine###
ssh user@mydomain.com
#or by ip address
ssh user@192.168.1.1
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
| /** | |
| * Image slider with pure CSS | |
| * Original version in http://demosthenes.info/blog/css | |
| */ | |
| .image-slider { | |
| position:relative; | |
| display: inline-block; | |
| line-height: 0; | |
| } | 
| # Write a small function that returns the values of an array that are not odd. | |
| # All values in the array will be integers. Return the good values in the order they are given. | |
| def no_odds( values ) | |
| values.select &:even? | |
| end | |
| def no_odds( values ) | |
| values.find_all { |item| item % 2 == 0 } | |
| end | 
| /** | |
| * Matrix 3d transform for obtaining trapezoid? (SO) | |
| * http://stackoverflow.com/q/14480341/1397351 | |
| */ | |
| .doors { | |
| margin: 7em auto; | |
| width: 16em; height: 16em; | |
| perspective: 35em; | |
| } | |
| .door { | 
| /** | |
| * css 3d animation, how? (SO) | |
| * http://stackoverflow.com/q/9812196/1397351 | |
| */ | |
| body { perspective: 50em; } | |
| .cube { | |
| position: relative; | |
| margin: 8em auto 0; /* centering */ | |
| padding: 0; /* reset unordered list default */ | |
| width: 16em; height: 16em; /* change block element default */ |