###SSH into a remote machine###
ssh [email protected]
#or by ip address
ssh [email protected]
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing
/* EFFECT 1 */ | |
.effect1 | |
{ | |
-webkit-box-shadow: 0 10px 6px -6px #777; | |
-moz-box-shadow: 0 10px 6px -6px #777; | |
box-shadow: 0 10px 6px -6px #777; | |
} | |
/* EFFECT 2 */ | |
.effect2 |
if (navigator.geolocation) { | |
navigator.geolocation.getCurrentPosition(function(position){ | |
var latitude = position.coords.latitude; | |
var longitude = position.coords.longitude; | |
var accuracy = position.coords.accuracy; console.log(latitude, longitude, accuracy); /* | |
var coords = new google.maps.LatLng(latitude, longitude); | |
var mapOptions = { | |
zoom: 15, | |
center: coords, | |
mapTypeControl: true, |
###SSH into a remote machine###
ssh [email protected]
#or by ip address
ssh [email protected]
exit: exit
###Install Something###
#If it's a new server, update apt-get first thing