Mattias Wadman

Results 831 comments of Mattias Wadman

Hello, do you have a test file you can attach or link to somehow? so the files starts with "ID3" magic header but then there is flac file? is it...

Aha sorry understood it was being weird that is it, it's just a FLAC file with a valid ID3v2 tag prepended. Both seems to have more or less the same...

No sure i follow, if some tag info was changed the hash should change also?

Ok sorry, i read "hashed" as hashing the whole file, not using the `Sum*()` functions. As i mention in #53 i think the issue is that `sizeToEndOffset` does something wrong....

> I changed the tags with Windows, so idk if that matters at all - if windows changes the footer for some reason. I don't know much about audio file...

Did a quick hack just to verify. This gives same sha1 for the files for me: ```go func SumID3v2(r io.ReadSeeker) (string, error) { n, err := sizeToEndOffset(r, 128) if err...

Maybe run with strace could help see what is going on `strace -f devd ...`. Look for bind failure, going thru lots of files etc

Did some digging. I suspect that https://github.com/cortesi/devd/pull/95 caused devd to always add a watch for the current working directory, the `**` include pattern i think will make `moddatch.Watch` add it...

Maybe can proxy to caddy etc that does the rending (https://caddyserver.com/docs/json/apps/http/servers/errors/routes/handle/templates/#markdown) and devd can insert live reload script if that if what your looking for?

Hi, this sounds like what was fix in https://github.com/cortesi/devd/pull/83 ?