Jaen

Results 80 comments of Jaen

Can reproduce this too, history loading is completely broken, but writing is still working silently. Default Debian install with Ruby 3. ``` ❯ pry [1] pry(main)> Pry.config.history_save => true [2]...

This worked (somewhat) in https://github.com/d-language-server/dls (which is unmaintained, so I moved over to _code-d_) The implementation looks pretty uncomplicated, it just does a "find all references" for the symbol, and...

Looks like this is done with the `SC2PATH` variable?

I see this has already been noticed, Dockerfile has a comment: > Disabled until linux client is at version 4.8.5 or newer - issues with pixelmap that are working on...

Looks like no progress on Blizzard's side for the Linux client update https://github.com/Blizzard/s2client-proto/issues/134 . I assume this blocks releasing a new stable version of the `sc2` package so might be...

Probably because it's trying to use Mesa EGL instead of the Nvidia EGL implementation, or the driver is too old. Have you tried running other EGL apps? Here's what it...

Indeed, the limit has been changed from 500 to 100 quite a while ago for eg. `/reddit/search/submission`, setting a 500 limit will just fetch 100 items.

This is caused by the following code, which for some mysterious reason racily[^1] reads all still pending messages from the websocket's broadcast channel and separates them with `\n`: https://github.com/Falldot/esbuild-dev-server/blob/eab36f97359b74354af19c25fa9c4e8971ec0e3f/internal/ws/client.go#L85-L89 In...

@ilyabo Note that (as a workaround) it should be possible to load ESM from CommonJS using eg. ```javascript const d3 = await import('d3'); ``` Reference: https://nodejs.org/api/esm.html#import-expressions

@ilyabo Ah, I guess the notebook extension's transpiler is also changing `import()` function calls into `require()` internally... In this case you are currently probably out of luck, and this issue...