Paul "TBBle" Hampson

Results 386 comments of Paul "TBBle" Hampson

Keys in the data file but not shown on the keymap appears to be a generic problem: On examination, [even the "qwerty" layout suffers from this](https://github.com/monkeytypegame/monkeytype/blob/master/frontend/static/layouts/_list.json#L2-L12), not showing the \`...

@gautaz: I don't think `docker-compose` needs to do anything to support CDI, as it's just implemented as another device driver in Docker, so it's up to the underlying Docker daemon's...

The relevant of https://github.com/containers/podman/issues/19338 here is that that issue is for feature parity: podman support for a docker-compose file like you've shared, noted as working in docker-compose. It's not clear...

Interesting thing I noticed: If I remove the `?` inside the loop, when it fails, the resulting file on disk is only 65472 bytes long; when it does not fail,...

I attempted to implement the above-described solution in #3812, but it didn't appear to fix things, so more debugging is needed. At worst, somehow `GetOverlappedResult` can validly return `TRUE` and...

New theory for future testing: If the write triggered by `WriteFileEx` completes quickly enough, then the number of bytes written is passed to `EmptyOverlappedCompletionRoutine` and then `GetOverlappedResult` reports zero bytes...

I grabbed `WasmEdge-0.14.1-134-gadf6c36b-windows.zip.zip` from #3870's [CI run](https://github.com/WasmEdge/WasmEdge/actions/runs/11792816460) and tried it locally, and it seems to have fixed the issue. ```console > Env:CARGO_TARGET_WASM32_WASIP1_RUNNER="$PWD\WasmEdge-0.14.1-134-gadf6c36b-windows\bin\wasmedge --dir .:." > cargo run --target wasm32-wasip1 --release...

I had assumed the cuda image is a superset of the opengl image, so that seemed like the lowest-friction option. Although a quick check shows that [the cuda images](https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/12.6.3/ubuntu2204/base/Dockerfile?ref_type=heads) use...

Does it make sense to mark this PR as closing #1608? That should cause GitHub to link to this PR from that ticket, rather than relying on the comments. (It...

Hmm. We're just calling out to UE's `Build.sh`, so it _looks_ like a UE-side issue, but perhaps we need to do something to ensure that .dll exists first... Also, poking...