Sven

Results 279 comments of Sven

Crates depending on `termcolor`: - [x] cargo - [x] ripgrep Crates depending on `colored`: - [ ] color-eyre - [x] cargo-make - [ ] cargo-geiger (does not compile) Crates depending...

color-eyre: ^1.2.1 hex-rgb: ^1.1.3 If not installed with the `--locked` flag they both would resolve to the newest minor which would be 1.3.0, which makes this even weirder... 1.3.0 added...

It's just easier to parse JSON in other languages than it is to parse some arbitrary text columns. `awk` is fine for what but if I want to use Python...

Found it on the issue tracker: https://github.com/rust-lang/cargo/issues/3289

Looks like your implementation does not get re-composed if the input data changes. I collect my state from a Kotlin `Flow` using `collectAsState(initialState = emptyList())`. The lazy grid initializes with...

@dsifford That would need special configuration for windows users though as people might use dotbot for non-unix/linux OS'.

No idea, aren't there protected directories too? o.O Anyway, I just had a small idea. Maybe link each normal file first and after that, re-run the script (automatically) passing it...

Thanks! Would I need to specify the esprima library as the parser by passing it in the hash? `{ parser: esprima }`?

I've taken a look at the [specification](https://csrc.nist.gov/publications/detail/sp/800-78/4/final) and it seems that PIV does not support curve25519, only P256 and P384. However, it does support RSA 1024/2048. The yubikey, according to...

Maybe a downside worth mentioning is that the `u*` implementation would be limited to 64/128 fields for a given struct. Could be something being mentioned in the docs as a...