If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "you@example.com"
npm set init.author.url "http://yourblog.com"
npm adduser
| <?php | |
| class TimeoutClass extends Thread { | |
| public function __construct(callable $cb, int $time, $args){ | |
| $this->callback = $cb; | |
| $this->args = $args; | |
| $this->time = $time * 1000; | |
| } | |
| public function run(){ | |
| usleep($this->time); |
| // Generate unique IDs for use as pseudo-private/protected names. | |
| // Similar in concept to | |
| // <http://wiki.ecmascript.org/doku.php?id=strawman:names>. | |
| // | |
| // The goals of this function are twofold: | |
| // | |
| // * Provide a way to generate a string guaranteed to be unique when compared | |
| // to other strings generated by this function. | |
| // * Make the string complex enough that it is highly unlikely to be | |
| // accidentally duplicated by hand (this is key if you're using `ID` |
| # Current branch - Determine current git branch, store in $currentbranch, and exit if not on a branch | |
| if ! currentbranch=$(git symbolic-ref --short -q HEAD) | |
| then | |
| echo We are not currently on a branch. | |
| exit 1 | |
| fi | |
| # Uncommited Changes - Exit script if there uncommited changes | |
| if ! git diff-index --quiet HEAD --; then | |
| echo "There are uncommited changes on this repository." |
| <?php | |
| /** | |
| * ----------------------------------------------------------------------------------------- | |
| * Based on `https://github.com/mecha-cms/mecha-cms/blob/master/system/kernel/converter.php` | |
| * ----------------------------------------------------------------------------------------- | |
| */ | |
| // HTML Minifier | |
| function minify_html($input) { |
| <?php | |
| /* | |
| * Mysql database class - only one connection alowed | |
| */ | |
| class Database { | |
| private $_connection; | |
| private static $_instance; //The single instance | |
| private $_host = "HOSTt"; | |
| private $_username = "USERNAME"; | |
| private $_password = "PASSWORd"; |
| <?php | |
| class Db | |
| { | |
| private $_connection; | |
| private static $_instance; //The single instance | |
| private $_host = DB_HOST; | |
| private $_username = DB_USER; | |
| private $_password = DB_PASSWORD; | |
| private $_database = DB_DB; |
| var express = require( 'express' ), | |
| bodyParser = require( 'body-parser' ), | |
| pjax = require( './pjax-helper' ); | |
| var app = express(); | |
| app.set( 'views', __dirname + '/views' ); | |
| app.set( 'view engine', 'jade' ); | |
| app.use( pjax() ); |