Tv
Tv
https://entropymine.wordpress.com/2018/05/27/the-cpio-trailer-problem/ makes a great point, cpio gives special meaning to certain filenames. Add that to list. I'm not regenerating the generated code because, frankly, they were already out of date,...
**Description** Github's scanner doesn't recognize your `LICENSE.md`. The right sidebar just has `License [ View license](https://github.com/stepchowfun/toast/blob/main/LICENSE.md)`. For a moment I feared someone had written yet another license, but it seems...
Go constants are larger than `int` ("Represent integer constants with at least 256 bits." https://go.dev/ref/spec#Constants). If you try to use `.Lit` with even `int64`, jennifer makes it a typed constant....
This came up on reddit: https://github.com/zippoxer/petname/ https://www.reddit.com/r/golang/comments/bfjhhe/petname_a_go_package_that_generates_silly_pet/ He seems to "credit" you but that's not the same as following your license. He's had 3 days to fix it. He's commented...
Editing the main source file is just evil. It makes diffs harder to read, it messes with the files open in my editor, and what go generate stuff is out...
``` $ ls gencode.schema main.go $ cat main.go package main //go:generate gencode go -schema gencode.schema func main() { var x Foo x.Unmarshal([]byte{}) } $ cat gencode.schema struct Foo { Bar...
``` $ cat foo.schema garbage $ gencode go -schema foo.schema $ echo $? 0 ```
This is easy to demonstrate using https://mzohaibqc.github.io/svelte-toasts/ Select light theme. Adjust window / text size so that theme etc selection comes close to right edge of window. Click "Show Toast"...
The tests do things like read (expect "one"), sync, read again (expect "two"). If the `Release` from the first `open`+`read`+`close` is delayed, the sync can run at a time where...