Klaus Post

@klauspost.com

Making Go stuff go brrrrrrrrrrrrrrrrrrr

Search Compressed Data for byte sequences with selective decompression using MinLZ v1.2.0 - available as cli and #golang API. Overhead is a fractional bit per byte, fully customizable and with fixed specification.

Bild

I must say the ability to test out ideas in less than an hour is so addictive. Also I feel much less "attached" to idea and it is much easier to abandon if it doesn't pan out.

Bild

func ifElse[V any](cond bool, trueVal, falseVal V) V { if cond { return trueVal } return falseVal } At least it is more readable than ? :

IMO #golang is missing a clean way to send exact typed (and wrapped) errors across the wire between 2 similar binaries. GOB would be ok, but registration isn't really feasible in big applications.