- Great @NodeDC meetup @socialtables ty @NodeSource @Hired_HQ for sponsoring
- ty @socialtables @NodeSource @Hired_HQ for sponsoring @NodeDC
Use these links! Sign up for Hired if you haven't already!
var heapdump = require('heapdump'); | |
var FeedParser = require('..'); | |
var fs = require('fs'); | |
var feed = __dirname + '/feeds/intertwingly.atom'; | |
var ct = 10000; | |
global.gc(); | |
var premem = process.memoryUsage().heapUsed; | |
if (process.env.HEAPDUMP) heapdump.writeSnapshot(); | |
console.log("Pre: %s", premem); |
container_commands: | |
10redirect: | |
command: perl -0777 -pe 's#(listen 8080;\n)#$1\n if (\$request_uri = "/health") {\n set \$redirectFlag N;\n }\n\n if (\$http_x_forwarded_proto != "https") {\n set \$redirectFlag "\${redirectFlag}Y";\n }\n\n if (\$redirectFlag = "Y") {\n return 301 https://\$host\$request_uri;\n }#igms' -i /tmp/deployment/config/#etc#nginx#conf.d#00_elastic_beanstalk_proxy.conf |
[package] | |
name = "dining_philosophers" | |
version = "0.1.0" | |
authors = ["Dan MacTough <[email protected]>"] | |
[dependencies] |
#!/bin/bash | |
GITHUB_TOKEN=$(git config --global github.token) # I've defined an API token in my git config -- ymmv | |
GITHUB_USER="" # the collaborator | |
REPO_OWNER="" # the owner of the repos | |
REPOS="" # space-delimited list of repositories | |
PERMISSION="pull" # may be one of "admin", "push" (i.e., read/write -- default), or "pull" (i.e., read-only) | |
for REPO in ${REPOS} ; do | |
curl -X PUT -i -d '{ "permission": "'${PERMISSION}'" }' \ | |
-H 'Accept: application/vnd.github.ironman-preview+json' \ | |
-H "Authorization: token ${GITHUB_TOKEN}" \ |
#!/bin/bash -xe | |
# Unload nouveau | |
sudo rmmod nouveau | |
# Load nvidia | |
sudo modprobe nvidia | |
# Configure X | |
sudo nvidia-xconfig --use-display-device=None --virtual=1280x1024 --output-xconfig=/etc/X11/xorg.conf --busid=PCI:0:3:0 --enable-all-gpus |
function () { | |
actions.zoomForPrint(); | |
window.requestAnimationFrame(function () { | |
const imgData = getImageFromCanvas(); | |
// atob to base64_decode the data-URI | |
const imgSrc = atob(imgData.split(",")[1]); | |
// Use typed arrays to convert the binary data to a Blob | |
const buffer = new ArrayBuffer(imgSrc.length); | |
var view = new Uint8Array(buffer); | |
for (var i = 0; i < imgSrc.length; i++) { |
#!/bin/bash | |
# Get Homebrew in the new location | |
git clone [email protected]:Homebrew/homebrew.git ~/Homebrew | |
# Move all your installed packages to the new location | |
mv /usr/local/Cellar ~/Homebrew/Cellar | |
mv /usr/local/Library ~/Homebrew/Library | |
# Remove "root" directory files left behind | |
rm -rf /usr/local/.git /usr/local/{.gitignore,.yardopts,CODEOFCONDUCT.md,CONTRIBUTING.md,LICENSE.txt,README.md,SUPPORTERS.md} |
node_modules/aws-sdk/lib/metadata_service.js | |
node_modules/aws-sdk/lib/request.js | |
node_modules/aws-sdk/node_modules/sax/examples/example.js | |
node_modules/aws-sdk/node_modules/xml2js/lib/xml2js.js | |
node_modules/feedparser/History.md | |
node_modules/feedparser/node_modules/readable-stream/lib/_stream_duplex.js | |
node_modules/feedparser/node_modules/readable-stream/lib/_stream_readable.js | |
node_modules/feedparser/node_modules/readable-stream/lib/_stream_writable.js | |
node_modules/feedparser/node_modules/sax/examples/example.js | |
node_modules/opmlparser/node_modules/readable-stream/lib/_stream_duplex.js |
var path = require('path'); | |
var appRoot = path.resolve(path.dirname(require.resolve('koa')), '..', '..', '..'); |