I hereby claim:
- I am tunnckoCore on github.
- I am tunnckocore (https://keybase.io/tunnckocore) on keybase.
- I have a public key whose fingerprint is EF84 4C66 A0E5 90FE 8849 452F 8047 B4A8 262C 7486
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
npm users sorted by the monthly downloads of their modules, for the range May 6, 2018 until Jun 6, 2018.
Metrics are calculated using top-npm-users.
| # | User | Downloads |
|---|
Assemble is now able to directly take a generator function as a task function. This removes the need for a callback when running synchronous code inside tasks.
From
app.task('load', function(cb) {
app.layouts(['src/layouts/**/*.hbs']);
app.partials(['src/partials/**/*.hbs']);This guide shows you how to get up and running with breakdance, a HTML-to-markdown converter written in javascript for node.js.
Within 2-3 minutes you'll be converting HTML to markdown like a pro!
You can also follow @breakdancejs on twitter
| const longest = arr => arr.reduce((len, v) => Math.max(v.length, len), 0); |
| curl -s https://api.github.com/users/<USERNAME>/repos?per_page=100 | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["clone_url"]} ]}' |
Thanks for choosing to contribute to Enquirer! We're so happy that you're contributing to open source projects, and we're even happier that one of those projects is ours!
There is no faster, more effective way to improve a product than from the feedback from the first experience of a new user -- Jon Schlinkert
| /** | |
| * This variant takes a max depth as the second argument. | |
| */ | |
| const permutations = (value, max = value.length) => { | |
| let depth = Math.min(max, value.length); | |
| let results = []; | |
| const permute = (queue = []) => { | |
| if (queue.length === depth) { |
This little guide describes what to do when: