🏳️🌈
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
'use strict'; | |
if (process.env.NODE_ENV !== 'production') { | |
require('@glimpse/glimpse').init(); | |
} | |
const Hapi = require('hapi'); | |
const server = new Hapi.Server(); | |
server.connection(); |
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/bin/env bash | |
# MIT © Sindre Sorhus - sindresorhus.com | |
# git hook to run a command after `git pull` if a specified file was changed | |
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
check_run() { | |
echo "$changed_files" | grep --quiet "$1" && eval "$2" |
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
'use strict'; | |
module.exports = { | |
root: true, | |
env: { | |
browser: false, | |
node: true, | |
es6: true | |
}, | |
extends: 'eslint-config-hapi', |
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
const Hoek = require('hoek'); | |
const array = []; | |
for (let i = 0; i < 5000000; ++i) { | |
array.push(i * Math.floor(Math.random() * (10 - 1 + 1)) + 1); | |
} | |
console.time('hoek'); | |
const result = []; | |
for (let i = 0; i < array.length; ++i) { | |
result.push(array[i]); |
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
// error happens because of https://github.com/AdriVanHoudt/Hapi-Boombox/blob/master/lib/index.js#L42 | |
exports.getAll = function (request, reply) { | |
return Entity.getAll(request.auth.credentials.team, dbConn, (err, result) => { | |
if (err) { | |
return reply(err); | |
} |