Skip to content

Instantly share code, notes, and snippets.

View eivindingebrigtsen's full-sized avatar

Eivind Ingebrigtsen eivindingebrigtsen

View GitHub Profile
@davesag
davesag / 1.development-norms.md
Last active August 9, 2022 10:28
Development Norms

A common set of development norms

Adhering to a common set of developer norms is a vital factor when a team of people is trying to produce high quality, timely, business critical software.

I'm regularly asked to work on codebases that do not conform to any known measure of coding standards.

Issues include, but are not limited to:

  • no linting
  • no, or few, or inadequate levels of automated testing
@frenchie4111
frenchie4111 / gist:ccc0d74ef75b9c3b31fe
Created June 14, 2015 02:03
Get licenses from package.json
/*
* Note: The code in this gist is in no way meant to be pretty, please do not judge my coding abilities
* based on it
*/
var package = require( './package.json' ),
_ = require( 'underscore' ),
q = require( 'q' ),
exec = require( 'child_process' ).exec;