David Konsumer

Results 457 comments of David Konsumer

@juxibuz If you could test that project out on your setup, it would be helpful.

Here is the sysex for a firmware update to 1.2.0.3: [Beatstep Firmware upgrade 1.2.0.syx.zip](https://github.com/konsumer/beatstep/files/10149398/Beatstep.Firmware.upgrade.1.2.0.syx.zip) We should be able to compare with led file to work out what other bytes it...

`pkg` currently seems broken. Latest [release on pkg-fetch](https://github.com/vercel/pkg-fetch/releases) is 18.5.0. ``` > nvm use 18.5.0 > node --version v18.5.0 > npm run build:cli Error! No available node version satisfies 'node18'...

Upgrading to `[email protected]` seems to have fixed pkg, but then it can't build native module: ``` npm WARN deprecated [email protected]: Modern JS already guarantees Array#sort() is a stable sort, so...

I would also like DLLs. This would be perfect to drop into nim-based project that uses raylib + emulators, and it would combine it all into one dynamic library, nicely...

My preferred usecase for stuff like this is not directly in C, but wrapped with FFI or whatever. So for me, a ready-made DLL would mean no build/c tools/etc, and...

I am having issues on CF. Here is my handler code: ```js import { error, Router } from 'itty-router' import { createCors } from 'itty-cors' const { preflight, corsify }...

Here is a simple repro: https://github.com/konsumer/cf-itty-cors-example Am I missing a step? Here is request from `https://example.com` origin: Here is from same-origin: It doesn't seem to be setting `Access-Control-Allow-Origin` even if...

@thdoan Wouldn't this do the same thing? https://github.com/konsumer/cf-itty-cors-example/blob/main/src/index.js#L36 It's in the `then`, so it takes the response and wraps it.

I ended up looking at [yt-dlp](https://github.com/yt-dlp/yt-dlp) to figure out why they do not get 403'd. I also needed to use `fetch` (which is built-in, now, and needed in places like...