Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
| const chai = require('chai'); | |
| // globalize sinon | |
| global.sinon = require('sinon'); | |
| // initialize chai plugins | |
| chai.use(require('sinon-chai')); | |
| chai.use(require('chai-as-promised')); | |
| chai.use(require('chai-datetime')); | 
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji | 
|---|---|
| Initial commit | 🎉 :tada: | 
| Version tag | 🔖 :bookmark: | 
| New feature | ✨ :sparkles: | 
| Bugfix | 🐛 :bug: | 
| #!/bin/sh | |
| set -e | |
| set -x | |
| for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f3) | |
| do | |
| npm -g install "$package" | |
| done | 
These rules are adopted from the AngularJS commit conventions.
A quick overview of the node.js streams interface with basic examples.
This is based on @brycebaril's presentation, Node.js Streams2 Demystified
Streams are a first-class construct in Node.js for handling data.
Think of them as as lazy evaluation applied to data.
People
:bowtie: | 
😄 :smile: | 
😆 :laughing: | 
|---|---|---|
😊 :blush: | 
😃 :smiley: | 
:relaxed: | 
😏 :smirk: | 
😍 :heart_eyes: | 
😘 :kissing_heart: | 
😚 :kissing_closed_eyes: | 
😳 :flushed: | 
😌 :relieved: | 
😆 :satisfied: | 
😁 :grin: | 
😉 :wink: | 
😜 :stuck_out_tongue_winking_eye: | 
😝 :stuck_out_tongue_closed_eyes: | 
😀 :grinning: | 
😗 :kissing: | 
😙 :kissing_smiling_eyes: | 
😛 :stuck_out_tongue: | 
| //http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript | |
| Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); | 
| alias ng="npm list -g --depth=0 2>/dev/null" | |
| alias nl="npm list --depth=0 2>/dev/null" |