RedstoneWizard08

Results 55 comments of RedstoneWizard08
trafficstars

+1 for Raspberry Pi without something like box64

also quick note: this does not work with box64. :( can't wait for this release tho! warp looks amazing!

Yeah. Binfmt/qemu is a temporary solution. Those arm64 images will be made available when arm64 binary builds are.

By the way, if it helps, I think I got filebeat 7.10.2 to package for ARM64 with this patch (its long lol): Show patch content ```patch diff --git a/dev-tools/mage/build.go b/dev-tools/mage/build.go...

Also, while untested, the Wazuh indexer and dashboard package as DEBs successfully with this patch: Show patch content ```patch diff --git a/.gitignore b/.gitignore index 822b7b01..6bbbbe55 100644 --- a/.gitignore +++ b/.gitignore...

I might try to work on this again - I'll have to see if I have the time. I also wanted to say that the patches I made above are...

Linux/arm64?

I just converted QuickHull to TypeScript. QuickHull.ts (expand) ```ts export const dot = (a: number[], b: number[]) => { return a[0] * b[0] + a[1] * b[1] + a[2] *...