Ian McKenzie

Results 12 comments of Ian McKenzie

Something to look into: Pillow-SIMD (and even plain Pillow) claim better performance than OpenCV (controlled through Python bindings) for most resizing tasks. https://python-pillow.org/pillow-perf/

Example: ``` package main import ( "fmt" "github.com/landlock-lsm/go-landlock/landlock" ) func main() { err := landlock.V3.BestEffort().RestrictPaths( landlock.PathAccess(0b1111111111111, "/dev/null"), ) if err != nil { fmt.Println(err) } } ``` Returns: `populating ruleset...

Looks good to me! It builds and the tests seem to pass. Full output of the Go tests: ``` openbsd-dev$ go test ./internal/... ? github.com/evanw/esbuild/internal/api_helpers [no test files] ? github.com/evanw/esbuild/internal/ast...

Currently testing the cross build in this branch: https://github.com/ikmckenz/esbuild/tree/openbsd-arm64, but ran into a weird issue with Go. I think there may be an issue with go cross building to OpenBSD...

Issue was the Go cross compiler not working correctly for the latest apple silicon chips, but when tested against an M1 it works without issue. That issue has also been...

Instead of a plug-in system, perhaps an easier approach to accomplish this would be to create a way to stream desired prices to the ASB through some kind of IPC,...

Once it's safer to trade larger amounts through atomic swaps, I think makers who want to quote higher volumes and tighter spreads will want features that will be difficult to...

Seems difficult to accomplish this with the current "decompress as the file is downloaded" behavior. https://github.com/comit-network/xmr-btc-swap/blob/c3b474d7db598f3afb6a5ade8264ac0a1f5d0ece/swap/src/monero/wallet_rpc.rs#L234-L237

That's fine with me, but we might lose this "decompress as download is still happening" trick. Not that it's super important I guess, this download is a one time setup...

Since https://www.getmonero.org/downloads/hashes.txt only has the most recent releases hashes and we are rarely on the most recent copy of the cli, I propose just hardcoding the hashes for the version...