Alexander Mills

Results 290 issues of Alexander Mills

I have this: ```js const cl = require('chrome-launcher'); const util = require('util'); cl.launch({ startingUrl: `http://yahoo.com`, chromeFlags: ['--auto-open-devtools-for-tabs', '--debug-devtools'], enableExtensions: true }) .then(c => { console.log(util.inspect(c)); // const url = c.getWebSocketServerUrl()...

I have this: ```js chromeLauncher.launch({ enableExtensions: true, startingUrl: 'chrome-extension://idbanmbeeadlaanhdemgngeooobbadde/dist/index.html' }) .then(chrome => { console.log(`Chrome debugging port running on ${chrome.port}`); }); ``` I get this: ![screenshot from 2018-01-01 16-35-49](https://user-images.githubusercontent.com/11139560/34472233-03666b22-ef12-11e7-8e71-153f1d14cc45.png) any idea...

I love seeing mystery acronyms. can you document what "fpm" stands for? https://hub.docker.com/_/matomo

enhancement
docs

I see these: ```Dockerfile ENV MATOMO_DATABASE_HOST 'matomo.xxx.us-west-2.rds.amazonaws.com' ENV MATOMO_DATABASE_ADAPTER '' ENV MATOMO_DATABASE_TABLES_PREFIX '' ENV MATOMO_DATABASE_USERNAME 'admin' ENV MATOMO_DATABASE_PASSWORD 'yomama' ENV MATOMO_DATABASE_DBNAME 'matomo' ``` but what about: ```Dockerfile ENV MATOMO_DATABASE_DBPORT 3306...

upstream

I am no web dev guru - would it make sense to use react as the templating engine in some cases? with react serverside rendering, I suppose you wouldn't even...

ideas
good first contribution

I am looking to use my own polyfills/shims with Webpack e.g.: ```js //webpack.config.js node: { assert: require.resolve('oresoftware-assert'), fs: require.resolve('oresoftware-fs') } ``` is this already supported? I don't believe I have...

npm install --save node-libs-browser? Can this info be included in the readme?

I am installing erlang via: ``` asdf install erlang 22.0.7 ``` it's just hanging - I am wondering if something is actually happening or if it's really stuck......asdf needs a...

I am sure someone has considered this before, but why doesn't OCaml tap into Libuv, the same library that Node.js uses for Async I/O? https://github.com/libuv/libuv

forwarded-to-js-devs

Got this error: ```js => Suman fatal error (domain caught) => TypeError: Cannot read property 'row' of undefined at Socket. (/Users/Olegzandr/WebstormProjects/oresoftware/suman/node_modules/node-progress-bars/index.js:34:14) at emitOne (events.js:96:13) at Socket.emit (events.js:188:7) at Socket.stream.write (/Users/Olegzandr/WebstormProjects/oresoftware/suman/node_modules/on-new-line/index.js:49:14)...