Alexander Prinzhorn
Alexander Prinzhorn
I've noticed this in the past as well. Some processes don't exit: ``` 28712 ? S 0:00 /Electron Fiddle/electron-bin/19.0.7/electron --type=zygote --no-zygote-sandbox --enable-crashpad --enable-crashpad 28713 ? S 0:00 /Electron Fiddle/electron-bin/19.0.7/electron --type=zygote...
Well, I just had a deja vu and I commented the exact same thing a year ago :smile: https://github.com/electron/electron/issues/24520#issuecomment-874941656 > # Electron processes are kept alive > > For some...
Just started writing e2e tests and now this becomes a real problem. The tests will time out because Electron never exits. Even this is not enough: ``` app.exit(0); process.exit(0); ```...
Thanks for looking into this. FWIW `window.open` with `nativeWindowOpen` does not have this issue (which is an entirely different window system I assume and not related to the gtk file...
Just passing by: this is a bug in npm 8.1.3 https://github.com/npm/cli/issues/4015
One important aspect of pointing Parcel to an `index.html` is cache busting. It will turn my `js/index.js` into sth. like `js.00a46daa.js` and rewrite the HTML. Same with `favicon.21b6e204.ico` etc. The...
I've realized how little trailers are used (aside from more specific uses such as in gRPC, which runs over HTTP/2). Also some of the tooling I'm using doesn't even support...
Thanks for looking into this. All the things you've listed sound reasonable. I didn't know that some endpoints already support chunked. I'll probably get to the integration tests within the...
I'm new to WebGL and use this lib. Does that mean we're currently creating garbage buffers 60 times a second? I mean it's not leaking memory but it's still garbage...
It was added by this commit https://github.com/mikolalysenko/a-big-triangle/commit/9da847fbf56f49ab84dfbed576ed56ab30f176d6 with good intentions but I believe the second condition is now always true because `triangleVAO._triangleBuffer.buffer` is undefined as this pr says. Reference that...