Skip to content

Instantly share code, notes, and snippets.

View mykz's full-sized avatar

Mike Bailey mykz

View GitHub Profile
@mykz
mykz / auto-restart-nodejs-process
Created August 7, 2022 06:21 — forked from luozhihua/auto-restart-nodejs-process
Auto restart nodejs process when program exit
var child_process = require('child_process');
start();
function start(nodefile) {
if (typeof start !== 'string') {
console.log('Has none file. like this: start("app.js")');
}
console.log('Master process is running.');

Right so if you're coming to CPH you really need to checkout the following:

Sightseeing

Tivoli

https://www.tivoli.dk/

Rundetårn (Round Tower)

@function _grid-col-width($col-num) {
$one-col: (100%/12);
@return #{$one-col*$col-num};
}
@mykz
mykz / gist:7132437
Last active December 26, 2015 09:49
Component Class naming Idea's
Components (Objects)
objectname
Sub Components (Object Methods)
objectname_method
Components modifiers
objectname--modifier

In chrome the user agent stylesheet is applying the following form element style

font: normal normal normal 11px/normal '.HelveticaNeueDeskInterface-Regular';

I've noticed in normalize they handle this by doing the following:

button,
input,
optgroup,