Axel Wagner
Axel Wagner
You can generate a private key with a tool of your choice, for example: ``` openssl genpkey -algorithm EC -out private.key -pkeyopt ec_paramgen_curve:P-384 -pkeyopt ec_param_enc:named_curve ``` You can then import...
Personally, I don't think there is a practical way to support a writable `fs.FS`. Or it's at least extremely non-trivial. When it comes to *reading* files, OS-dependent semantic differences can...
@hherman1 Yes, I believe the `os` package is such an abstraction and yes, it has many of the same problems, stemming from "writing files is subtle". See for example [@bcmills...
@fgm The way I read those docs, that depends what is used for `dwShareMode`, also based on what other processes have opened those files. But in any case, that list...
Personally, my workflow is a) I find the github (or whatever) page of the package I'm interested in, b) I type `go get github.com/foo/bar` (by hand) into my shell and...
I’d also like a setting to *not* have a specific notification sound and just use the system default.
@arvidfm > since as far as I can tell the only "variable-like" operations needed are: On what basis? Because AFAICT it would be pretty useful to also have a `len`...
> But I was trying to think of what the minimum requirements would be specifically for the kind of function wrapping that I'd like to see, ISTM you are trying...
> For the record, this already works in Go: Yes. Note that the `...` you added into the `Printf` call significantly changes the meaning. I intentionally didn't put it into...
> Note that we should either accept or reject #57348 before we accept this proposal. If we accept #57348, the appropriate change will be made here. Out of interest: Is...