DeedleFake
DeedleFake
I've managed to get my node back up and running by rolling back to `v0.7.0` with `v0.6.0` of the plugin, but I'd definitely like to know how to update, if...
@Stebalien > Otherwise, you could try building the migration tool with s3 support. If this doesn't work, I can try walking you through that process. I think that I'm going...
I tried building it against `dd295e456085` by modifying `go.mod`, but it didn't help. Is there some way that I can manually build and run a version of `fs-repo-migrations` that has...
I finally managed to get around to getting this working. I had to make manual changes to the `build-plugin.sh` script in order to force it to use Go 1.16 instead...
> My question was "what is the type of a variable that is derived from a variadic type parameter list?". Making variadic type parameters useful requires us to be able...
> We could also produce a set of vet analyzers that can suggest fixes that would safely transform pre-generic code using explicit allocations/loops into calls to these new functions. That...
Replace is also fairly new: https://github.com/golang/exp/commit/a1e5550cf13efb62a5f12f594abb7a7f238b38a6
I made this exact mistake recently. I'm working on a pure Go Wayland protocol implementation. Wayland, despite being essentially a network protocol, is constrained to Unix domain sockets for various...
> You have to be careful with alignment on some archs with that sort of unsafe cast. How so, and how does a `NativeEndian` implementation help with that? If you...
What actually happens if you attempt to do ```go v.hdrLen = *(*uint16)(unsafe.Pointer(&b[2])) ``` on something like MIPS and the alignment isn't correct? Do you just get junk data? Does it...