Brian Picciano
Brian Picciano
For computing the arbitrary nth root of any number. I also go formatted some unrelated bits of code. I implemented the shifting nth root algorithm in order to compute an...
… receivers I frequently use `Big` as a value, mostly because it's convenient to do so in structs and maps, as the zero value is 0 so it makes business...
So to do a "normal" diff I would get my two different `*object.Tree` instances and use `object.DiffTree`. However with staged changes I'm unsure of how to get a tree, if...
Hi! I'm trying to run [nebula](https://github.com/slackhq/nebula) from within a nix-bundle'd binary (not using the AppImage builder yet) and am getting the following error: ``` ERRO[0000] Failed to get a tun/tap...
For most changes I simply copied whatever was being done for `unsafeRoutes` and fitted it to work for dns resolvers. TODO This does not currently work for iOS, only android,...
I also posted about this in the other repo (https://github.com/slackhq/nebula/issues/356) feel free to delete either one. My description in that issue is actually out-of-date, as of some further testing. Here's...
Cargo.toml: ``` [package] name = "repro" version = "0.1.0" edition = "2021" [dependencies] libc = "0.2.150" ``` flake.nix: ``` { inputs = { fenix.url = "github:nix-community/fenix"; naersk.url = "github:nix-community/naersk/master"; nixpkgs.url...
Hi all, I've begun a fork of this project at the following repo: https://code.betamike.com/micropelago/hyper-reverse-proxy/ I've extended upstream with the following changes: - Fix for #53 - Upgraded to hyper v1...
HRP is currently overwriting the `Host` header on the proxied request in all cases (see [here](https://github.com/felipenoris/hyper-reverse-proxy/blob/e73a76600ce9e51e962de5266b03be596e6c1d50/src/lib.rs#L228)). By doing so it makes it impossible for the caller to set its own...
Example: ```go var ( a = bayesopt.UniformParam{Name: "a", Min: 2, Max: 500} b = bayesopt.UniformParam{Name: "b", Min: 0, Max: 100} c = bayesopt.UniformParam{Name: "c", Min: 0, Max: 100} d =...