I hereby claim:
- I am hyubs on github.
- I am hyubs (https://keybase.io/hyubs) on keybase.
- I have a public key ASComsZ1JTIPeAIyQh5dI8qMAuJf2_7ale9WrAcBDwoJZAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
process.on('SIGTERM', function () { | |
knex.destroy(function () { | |
process.exit(0); | |
}); | |
}); |
doctype html | |
html | |
head | |
meta(charset="UTF-8") | |
title AdminLTE 2 | Dashboard | |
meta(content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no', name='viewport') | |
link(rel="stylesheet", href="/bower/admin-lte/bootstrap/css/bootstrap.min.css") | |
link(rel="stylesheet", href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css") | |
link(rel="stylesheet", href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css") | |
link(rel="stylesheet", href="/bower/admin-lte/dist/css/AdminLTE.min.css") |
#!/bin/bash | |
# Hyubs Ursua <[email protected]> | |
# MIT License | |
# Pre-requisite: If running OSX, install coreutils using homebrew or macports. | |
# The two if-statements checks and uses the correct command | |
if ! type "greadlink" > /dev/null 2>&1 |
#!upstart | |
start on filesystem and started networking | |
stop on shutdown | |
expect fork | |
setuid ubuntu | |
env HOME="/home/ubuntu" |
When you want to dev using node.js, you also need to install a few other things to compile node.js modules when you run npm install
.
Install nodejs http://nodejs.org/
Download and install MS Visual Studio Express 2013 (select either the ISO or file downloader) http://www.microsoft.com/en-us/download/details.aspx?id=40787
Download Python 2.7 https://www.python.org/download/releases/2.7/
#!/bin/bash | |
echo -n "GitHub User: " | |
read USER | |
echo -n "GitHub Password: " | |
read -s PASS | |
echo "" | |
echo -n "GitHub Repo (e.g. foo/bar): " |