dpc

Results 242 issues of dpc

As soon as you enable `RUST_LOG`, even for just a small module that logs infrequently, the performance of your program is going to go drastically downhill. Example: https://i.imgur.com/al4BJUn.png ``` +...

bug
help wanted

I added some debug prints: ``` def _has_root_cert(self): if sys.platform == "darwin": name = self.ca_cert_file_path else: name = "{server} Root CA".format(server=self.server) print("Vaild cert? ") print(self.check_valid_cert(name, usage="CT,T,T", is_root=True)) if self.check_valid_cert(name, usage="CT,T,T",...

I just watched https://www.youtube.com/watch?v=DnA4xNTrrqY and I like the idea. `FLAKE` is a very generic name for an env var and I'd prefer something like `NIXOS_CONF_FLAKE` or `NH_OS_FLAKE` (good practice to...

Include a method to set it without room for typos.

I created a [loglog](https://github.com/rustshop/loglog) for this purpose.

In a context of a larger application AlephBFT crate logs a lot of errors on high levels for things that are normal and expected during typical use, even if "an...

It seems right now `wait()` is implemented only for Linux. Is there a fundamental problem? Any workarounds to make the code work on any platform?

``` The operation has completed successfully. + partprobe /dev/sda1 /nix/store/msdqx0gn7gag7mg4smm7ww3v7a6invh0-disko: line 43: /nix/store/92k36w5ibc909sr3n6aksqqxbawj530q-parted-3.6/bin/partprobe: Input/output error + : + udevadm trigger --subsystem-match=block /nix/store/msdqx0gn7gag7mg4smm7ww3v7a6invh0-disko: line 44: udevadm: command not found + rm...

Hi, I've [reviewed this crate using `cargo-crev`](https://github.com/dpc/crev-proofs/commit/569e00183e9a8e28f97399857c1d06aa101743b3). Some notes: * maybe you should not implement `Debug` for `Seed` and `Mnemonic`. `Debug` makes it easy to accidentally log them somewhere and...