Fred Akalin

Results 24 comments of Fred Akalin

Writing the equation as "A = (ε_0 + H)/2\text{,}" does work in this case, but it would be nice not to have to do that. (Also, I'm not 100% sure...

Ah, cool, glad to hear this is a known thing. I was considering modifying auto-render, too, but I don't quite understand what #604 has to do with it. My idea...

Also worth noting that omitting the leading whitespace enables the regexp to match errors from `go install` too, in case one has a trimmed `compilation-error-regexp-alist` (like I do).

Yeah, I'm open to this, but first I'd like to ask what the use case of this would be. Is the intent to replicate the command-line app exactly in some...

Yeah, having separate functions for the major operations would be the way I'd do it, I think. For example, Create would look like `(CreateResult, err) Create(parFile string, inputFiles []string, options...

Wow, thanks for the PR! I'll try and take a close look this weekend. :)

Yeap, it's a known problem, I just implemented the most basic thing that could have worked! 😅 Definitely would like everything to be stream-based -- `io/fs` might be a good...

Can you pass in the path to the .par2 file directly, e.g. `~/go/bin/par v /mnt/casa/storage/1/Full-0005.par2`? Currently the par1 vs. par2 detection is very dumb and will treat it as par1...

Hmm, the I/O for gopar is quite unoptimized, since it just loads everything into memory, so it's entirely possible it's just running out of memory and getting killed. I'll take...

One thing you can try: it seems it's running out of memory when trying to load all of the recovery packets, but you only need one. If you move all...