$('.nav p').css({padding: '0.5vw 1vw 0.5vw 0px'})
import os
os.system('./executable.sh')
import os
os.system("sh ./executable.sh")
import subprocess
subprocess.call(['./executable.sh'])
DT.Game.prototype.updateTimer = function (dtime) {
var sec, min;
this.timer += dtime;
sec = Math.floor(this.timer);
if (sec > Math.floor(this.timer - dtime) ) {
min = Math.floor(sec / 60);
sec = sec % 60;
sec = sec < 10 ? '0' + sec.toString() : sec;
DT.$title.html(min + ':' + sec + ' in digital trip');
}
};
const handler1 = require('./handler1');
const handler2 = require('./handler2');
app.get('/first', handler1.get.bind(handler1, {myParam: "Hello"}));
app.get('/second', handler2.get.bind(handler2, {myParam: "World"}));
exports.get = function(share, req, res, next) {
console.log(share.myParam);
}