Pyry Kontio

Results 93 comments of Pyry Kontio

I use `cargo outdated -R/--root-deps-only` quite often, because the standard output is a bit verbose.

This would streamline some of my Dockerfiles and build scripts quite nicely.

Just to note in case it helps others: for the time being, the version 2.6 seems to work. (Using Mojave.)

Such a feature would be welcome, and, I imagine, also more efficient, since there would need to be less copying memory around processes.

It seems that it's possible to get the encryption method from the file like this: https://github.com/apache/poi/blob/2b4f9448830a532c91d9c41f67241ae89debdcf1/src/java/org/apache/poi/poifs/crypt/EncryptionInfo.java#L105 So, either you use XOR padding, or then you can read a `versionMajor` and...

I'd like to also have CSRF protection by default on when accessing the site with any mutating HTTP method, like POST, PUT or DELETE. At least check the origin +...

Maybe we could sandbox macros and build.rs using WebAssembly -it's intended to be sandboxed anyway, and forcing the build tooling to use it would bring development synergy for the emerging...

For information, there is a new-ish unstable API `split_inclusive` on slices that would help implementing such a thing. (The normal `split` API doesn't include the "split marker" in either of...

https://github.com/rust-lang/rust/issues/72360 Tracking issue created.

I think it's because supposedly people are thinking about some kind of heterogenous variadicity (like the case of println, which is currently done with macros), and that isn't possible with...