create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
python3 main.py data.json
gource -1920x1080 -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset slow -crf 1 -threads 0 -bf 0 gource.mp4 |
""" | |
usage: | |
mytool [options] | |
options: | |
--foo-bar=PARAM1,PARAM2,... params to do stuff with | |
[default: key1.value1,key1.value2,key2.value2] | |
""" | |
from docopt import docopt |
var selectedCheckboxes = 'input[type=checkbox]:checked'; |
import csv | |
collectionName = 'vertices' | |
gtfsStopTimes = 'gtfs/stop_times.txt' | |
edgesFile = 'graph/edges.json' | |
def readAsJson(filePath): | |
i = open(filePath, 'r') |
YUI().use("node", function (Y) { | |
'use strict'; | |
var iframeId = "#masterDataFrame"; | |
var frame = Y.one(iframeId); | |
var win = Y.Node.getDOMNode(frame.get('contentWindow')); | |
var doc = win.document; | |
YUI({ win: win, doc: doc }).use('node', function (innerY) { | |
// Do it... |
var toCsv = function(list){ | |
var emptyString = ''; | |
return list + emptyString; | |
}; |
YUI.add('module-name', function (Y) { | |
'use strict'; | |
var init = function(){ | |
// Do Something... | |
}; | |
Y.ModuleName = { | |
init: init | |
}; |
# Log in and execute | |
wget -O - https://www.arangodb.org/repositories/1.3.2/Uberspace/uberspace-arangodb.sh | sh | |
# Copy sh-Scripts to ~/bin | |
cp arangod.sh ~/bin | |
cp arangosh.sh ~/bin | |
# Setup daemontools | |
test -d ~/service || uberspace-setup-svscan |