I hereby claim:
- I am dannyfritz on github.
- I am dannyfritz (https://keybase.io/dannyfritz) on keybase.
- I have a public key whose fingerprint is 7100 9785 AFE9 05FF 27EF 09E4 BF13 07CC 1754 90CB
To claim this, I am signing this object:
#!/usr/bin/env node | |
import process from "process"; | |
import { spawn } from "child_process"; | |
import chokidar from "chokidar"; | |
import { readPackageUp } from "read-pkg-up"; | |
// import { run } from '@pnpm/plugin-commands-script-runners'; | |
chokidar | |
.watch(".", { |
function loadFile(filename) { | |
let script = ... create script with file | |
let promise = new Promise() | |
script.onload = promise.resolve | |
return promise | |
} |
I hereby claim:
To claim this, I am signing this object:
brew install git
// require() some stuff from npm (like you were using browserify) | |
// and then hit Run Code to run it on the right | |
var d3 = require('d3') | |
var cloud = require('d3-cloud'); | |
var _ = require('lodash'); | |
var stripCommonWords = require('strip-common-words'); | |
var input = 'We’re happy to announce the release of React 0.14 today! This release has a few major changes, primarily designed to simplify the code you write every day and to better support environments like React Native. React React React!'; | |
console.log(input); |
const _fp = require('lodash-fp'); | |
var sum = _fp.reduce(_fp.add, 0); | |
document.write(sum([1,2,3])); |
const R = require('ramda'); | |
const _ = require('lodash'); | |
var answer = _(_.range(1,10)).reduce(R.multiply, 1); | |
console.log(answer); | |
answer = R.product(R.range(1,10)); | |
console.log(answer); |