Seth Hoenig
Seth Hoenig
I finally got around to setting up goreleaser for this project; pre-compiled binaries are now available on the [releases](https://github.com/shoenig/bcrypt-tool/releases) page
> Would it be reasonable to bundle the binary as part of this library, calling it in the M1 case Including a compiled binary in a prevalent Go library would...
FWIW I also got the naive implementation working, but it basically amounts to a PRNG between [0, max_freq] ``` ➜ cat main.go package main // #include // #include // #include...
For reference here's a simple C version we use for Go https://github.com/shoenig/go-m1cpu/blob/main/cpu.go
FWIW https://github.com/shoenig/test was lifted out of the HashiCorp Nomad project as a generics based re-imagination of testify. It leverages Google's `go-cmp` library and integrates with specifying custom `cmp.Option` values (particularly...
@mikenomitch looks like the linter is unhappy you should be able to run `make check` yourself locally and see the same thing ``` ==> Linting source code... Error: drivers/shared/validators/validators.go:73:29: unnecessary...
1.5.2 included https://github.com/hashicorp/nomad/pull/16289/files which was supposed to fix a bug where we would attempt to deregister services twice. The key difference is we now set a flag that the services...
https://github.com/hashicorp/nomad/pull/16905 should contain a fix for this - I've checked with a simple `alloc restart` and `job stop` repro described by @fredwangwang, but if other folks want to build the...
@rgruyters a fix went into 1.5.6
CNI support is deprecated in Podman v4 and is being removed in v5. Regardless, you should be able to configure your CNI plugin using [Nomad's CNI support](https://developer.hashicorp.com/nomad/docs/networking/cni), rather than configuring...