Alec Larson

Results 407 issues of Alec Larson

I've noticed VM scripts do not have their breakpoints triggered. Do you have any insight on this? Probably due to the debugger protocol not being supported in VM, right? For...

Assuming I'm in the parent directory of the module I'm attempting to `require`... ``` sh devtool ``` Then type in the Console: ``` js require('./my-module') // throws error: Cannot find...

It seems the `postinstall` script of `electron-prebuilt` sometimes fails to complete, resulting in a missing configuration file. ``` sh > devtool fs.js:549 return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode); ^ Error: ENOENT: no...

Throw an error if `options.connection` is defined. Retain the `options` for subsequent calls to `r.connect` when trying to reconnect. The following options were not being used in reconnections: - username...

The `stream` and `cursor` options for `r.connect` are not used anymore, as far as I can tell.

There was a missing for-loop that caused a `ReferenceError` to be thrown.

This provides improved logging, as requested by #325, #351, and https://github.com/neumino/rethinkdbdash/issues/334#issuecomment-293423825. ## Overview - `options.logLevel` is a string used to silence unwanted logs - `options.log` can be an object with...

Do you have any suggestions on getting cqueues to work seamlessly with Tarantool fibers? I've interposed `step` like [this](https://gist.github.com/daurnimator/f1c7965b47a5658b88300403645541aa#file-tarantool_cqueues-lua-L7-L19), which lets me call `:step` and `:loop` within a fiber. Now...

I want to know when a socket is created at a specific file path. I tried using `cqueues.notify` but got this: ``` lua: .luarocks/share/lua/5.1/cqueues/notify.lua:9: notify.get: Operation not supported on socket...

component: notify

Why are new coroutines inserted at the head of their cqueue? This causes newer coroutines to be resumed first, which seems counter-intuitive, but I must be missing something.

question