This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "deushack", | |
"version": "1.0.0", | |
"description": "A hacking game based on the Deus Ex: Human Revolution minigames.", | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/krainboltgreene/deushack.git" | |
}, | |
"keywords": [ | |
"deus", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationComputed | |
include ActiveModel::Model | |
def id | |
@id ||= SecureRandom.uuid | |
end | |
def created_at | |
@created_at ||= Time.zone.now | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules/abstraction/transpiled | |
└── source | |
├── Abstraction | |
│ └── index.js | |
├── abstract | |
│ ├── dataWithCoercions | |
│ │ └── index.js | |
│ ├── dataWithVirtuals | |
│ │ └── index.js | |
│ └── index.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install --verbose | |
npm info it worked if it ends with ok | |
npm verb cli [ '/Users/krainboltgreene/.nvm/versions/node/v7.7.2/bin/node', | |
npm verb cli '/Users/krainboltgreene/.nvm/versions/node/v7.7.2/bin/npm', | |
npm verb cli 'install', | |
npm verb cli '--verbose' ] | |
npm info using [email protected] | |
npm info using [email protected] | |
npm verb cache add spec @lacqueristas/colors@file:./source/@lacqueristas/colors | |
npm verb mapToRegistry no registry URL found in name for scope @unction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm verb addNamed ">=1.1.0 <2.0.0" is a valid semver range for jju | |
npm verb addNameRange registry:https://registry.npmjs.org/jju not in flight; fetching | |
npm verb get https://registry.npmjs.org/jju not expired, no request | |
npm verb addNamed "latest" is being treated as a dist-tag for jju | |
npm info addNameTag [ 'jju', 'latest' ] | |
npm verb addNameTag registry:https://registry.npmjs.org/jju already in flight; waiting | |
npm verb addNamed "1.3.0" is a plain semver version for jju | |
npm verb afterAdd /root/.npm/jju/1.3.0/package/package.json not in flight; writing | |
npm verb correctMkdir /root/.npm correctMkdir not in flight; initializing | |
npm verb afterAdd /root/.npm/jju/1.3.0/package/package.json written |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/lib/www # npm install --development | |
[email protected] node_modules/load-json-file/node_modules/strip-bom -> node_modules/flow-typed/node_modules/strip-bom | |
[email protected] node_modules/load-json-file -> node_modules/flow-typed/node_modules/yargs/node_modules/read-pkg-up/node_modules/read-pkg/node_modules/load-json-file | |
[email protected] node_modules/path-type -> node_modules/flow-typed/node_modules/yargs/node_modules/read-pkg-up/node_modules/read-pkg/node_modules/path-type | |
[email protected] node_modules/os-shim -> node_modules/greenkeeper/node_modules/inquirer/node_modules/external-editor/node_modules/spawn-sync/node_modules/os-shim | |
@lacqueristas/[email protected] /usr/lib/www | |
`-- [email protected] | |
`-- [email protected] | |
`-- [email protected] | |
`-- [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote add upstream https://github.com/tootsuite/mastodon.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@connect() | |
@clientSide | |
@authenticate | |
export default class MakeAProject extends PureComponent { | |
static propTypes = { | |
... | |
} | |
static contextTypes = { | |
... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| time npm run test | |
> [email protected] test /Users/krainboltgreene/Code/krainboltgreene/ramda-extra.js | |
> babel-tap --reporter=dump './source/**/test.js' | |
start | |
TAP version 13 | |
version | |
13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function validatesPresenceOf (to) { | |
const valueFrom = path(to) | |
return function validatesPresenceOfWithPath (record) { | |
const value = valueFrom(record) | |
if (isEmpty(value) || isNil(value)) { | |
return "must be present" | |
} | |
return false |