I hereby claim:
- I am asbubam on github.
- I am asbubam (https://keybase.io/asbubam) on keybase.
- I have a public key ASAizpZrww2osgBYHC2vGFHUq3yIqK1tBSUvwGQc62OKfwo
To claim this, I am signing this object:
const AWS = require('aws-sdk'); | |
const lambda = new AWS.Lambda({ region: 'ap-northeast-2' }); | |
const sleep = async (ms) => { await new Promise(resolve => setTimeout(resolve, ms)); }; | |
const getFuncList = async () => { | |
let funcList = []; | |
let isStop = false; | |
let params = {} |
I hereby claim:
To claim this, I am signing this object:
mkdir -p /tmp/npm-cache-linux | |
docker run -v /tmp/npm-cache-linux:/root/.npm -v "$PWD":/usr/src/app -w /usr/src/app node:alpine sh -c 'npm install --prefix ./build ./' |
{ | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.editor.enablePreview": false, | |
"window.title": "${activeEditorMedium}${separator}${rootName}" | |
} |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ "keys": ["g", "t"], "command": "next_view", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": true }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["g", "T"], "command": "prev_view", |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>Activate</key> | |
<string>Normal</string> | |
<key>CreationDate</key> | |
<real>506394561.98772597</real> | |
<key>Macros</key> |
-- from http://dev.documize.com/boot2docker-iterm/ | |
tell application "iTerm" | |
set myterm to (make new terminal) | |
tell myterm | |
activate current session | |
launch session "Default Session" | |
tell the last session | |
write text "unset DYLD_LIBRARY_PATH ; unset LD_LIBRARY_PATH" | |
write text "mkdir -p ~/.boot2docker" | |
write text "if [ ! -f ~/.boot2docker/boot2docker.iso ]; then cp /usr/local/share/boot2docker/boot2docker.iso ~/.boot2docker/ ; fi" |
tell application "iTerm" | |
set myterm to (make new terminal) | |
tell myterm | |
activate current session | |
launch session "Default Session" | |
tell the last session | |
write text "unset DYLD_LIBRARY_PATH ; unset LD_LIBRARY_PATH" | |
write text "mkdir -p ~/.boot2docker" | |
write text "if [ ! -f ~/.boot2docker/boot2docker.iso ]; then cp /usr/local/share/boot2docker/boot2docker.iso ~/.boot2docker/ ; fi" | |
write text "/usr/local/bin/boot2docker init && /usr/local/bin/boot2docker up && $(boot2docker shellinit) && docker version" |