I hereby claim:
- I am oeb25 on github.
- I am oeb (https://keybase.io/oeb) on keybase.
- I have a public key ASC_7As52FkWDTr32_0_JcIUYtz7ZE-M528pKrKAXZ_fMQo
To claim this, I am signing this object:
| { | |
| "window.zoomLevel": 0, | |
| "editor.fontSize": 13, | |
| "workbench.colorTheme": "Material Theme", | |
| "editor.minimap.enabled": false, | |
| "editor.tabSize": 2, | |
| "extensions.ignoreRecommendations": false, | |
| "emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly", | |
| "editor.trimAutoWhitespace": true, | |
| "editor.smoothScrolling": true, |
I hereby claim:
To claim this, I am signing this object:
| with import <nixpkgs> {}; | |
| stdenv.mkDerivation rec { | |
| name = "env"; | |
| env = buildEnv { name = name; paths = buildInputs; }; | |
| buildInputs = [ | |
| yarn | |
| nodejs-6_x | |
| elixir | |
| postgresql96 |
| // curl https://gist.githubusercontent.com/oeb25/cc95dbc60ab02cdd7373/raw/e55628c5d63596d969031f52a11c82339d46d575/webpack.config.js > webpack.config.js | |
| // mkdir src && touch src/main.js && npm i -D webpack babel-loader | |
| module.exports = { | |
| entry: './src/main.js', | |
| output: { | |
| path: './build', | |
| filename: 'bundle.js' |
| /** | |
| * Promise Implementation in 85 LOC written in ES6 | |
| * | |
| * This doesn't follow the official promise spec 100%, and isn't ment to. | |
| * I only made this as a challenge, and encurage no one to use | |
| * it for production! | |
| * | |
| * I wrote this without having looked at any others implementations, and may | |
| * be slightly off! | |
| * |