hinto-janai

Results 39 issues of hinto-janai

Before ``` This is the command line monero wallet. It needs to connect to a monero daemon to work correctly. WARNING: Do not reuse your Monero keys on another fork,...

# ~~XMRig-Auto-Build~~ see last comment >An interactive bash script that builds the latest XMRig straight from source This script does all the necessary steps to build XMRig and the libraries...

This is a request for P2Pool to support behavior changes via a config file rather than command line arguments, like XMRig. PR changes: 1. Add command line arguments in JSON-form...

Fixes https://github.com/bcmyers/num-format/issues/40. The culprit was `deserialize_bytes()` which was changed to `deserialize_seq()`. Previously working serde operations (JSON, TOML) seem to work fine, and now binary formats work as well. A test...

The [`Buffer`](https://github.com/bcmyers/num-format/blob/81f934ad7ee6351d7318896f6bafccb1136dc695/num-format/src/buffer.rs) type will always fail to deserialize when using it with `serde` and binary formats, the ones I've tested: - [`bincode`](https://docs.rs/bincode) - [`messagepack`](https://docs.rs/rmp-serde) - [`BSON`](https://docs.rs/bson) - [`postcard`](https://docs.rs/postcard) To reproduce...

This PR replaces some `String` allocations with number comparisons and a `format!()` with a compile-time `concat!()`.

Consider the following situation: You have `10,000` audio files you want to probe, totaling to around 500 albums: ```rust for file in files { let probe = lofty::Probe::new(file) let tagged...

enhancement
help wanted
good first issue

Fixes https://github.com/monero-project/monero-gui/issues/4240 ## Problem 1 `monerod` hangs on this line when creating an http connection (for local `json-rpc`): https://github.com/monero-project/monero/blob/ac02af92867590ca80b2779a7bbeafa99ff94dcb/src/common/rpc_client.h#L125 using the generic 3 minutes and 30 seconds connection timeout: https://github.com/monero-project/monero/blob/ac02af92867590ca80b2779a7bbeafa99ff94dcb/src/common/http_connection.h#L42-L45...

When starting `monero-wallet-gui` and starting a local node, it will hang with no indication/error/log if `monerod` itself cannot bind, e.g: ``` 2023-11-07 17:44:20.109 E ZMQ bind failed: Address already in...

This makes `pause` a `Mutex` + `Condvar` combo instead of an `AtomicBool` so that the thread can sleep when paused instead of churning every 5 milliseconds (...!) https://github.com/RustAudio/rodio/blob/9674ea56cfbdef90703833b3c6af7790d32be76e/src/sink.rs#L92 This reduces...