Benno

Results 11 issues of Benno

[The following snippet yields `63744`](https://runkit.com/embed/9sb9splzbqy5): ``` var asn = require('asn1.js'); var Human = asn.define('Human', function() { this.seq().obj( this.key('firstName').int(), ); }); var output = Human.encode({ firstName: 2500000000, }, 'der'); var human...

Hey, thanks for this awesome library! You describe this library is an alternative to `RwLock` in the README, but I was curious to know what alternative it poses. I didn't...

This: ``` #[derive(Serialize, Deserialize)] enum MyEnum { A { value: u32 }, B { value: u32 }, } pub fn call(ctx: CallContext) -> Result { ctx.env.to_js_value(&MyEnum::A { value: 15 })...

good first issue

One of the uses of `napi_create_reference` is to save a reference (`Ref`) to a constructor (`JsFunction`) for later. From [here](https://nodejs.org/docs/latest/api/n-api.html#n_api_references_to_objects_with_a_lifespan_longer_than_that_of_the_native_method): > For example, to create a constructor and later use...

The `embedded_hal::serial::Read` trait defines its `read` method with a `nb::Result`. This suggests `Read::read` being nonblocking. But, `linux_embedded_hal::Serial` implements this trait by calling `serial_unix::TTYPort::read` which internally uses `ppoll`. By default, the...

When serializing a graph to Turtle, it seems there is an extra unused prefix. Consider the following snippet: ``` const rdf = require('rdflib'); const graph = rdf.graph(); const FOAF =...

question

### Summary Two nodes are connected by WebRTC and start pinging. When one node disconnects, the ping will fail, but the failing connection will never be detected and Ping continues...

bug

Support passing `--locked` to `cargo install`. # Motivation Some binary crates are outdated and have suboptimal `Cargo.toml` files. In that case, it can occur that the dependencies listed in `Cargo.toml`...

enhancement

According to section 2.3.2 in the RP2040 Datasheet: > a lower-priority interrupt can be preempted by a higher-priority interrupt > for interrupts with the same dynamic priority level, the lower-numbered...

question

## Description Implements #4010, which was closed. It was closed because it appeared that the Identify specification doesn't dictate this feature. But, in the discussion on the specs repo (https://github.com/libp2p/specs/pull/597)...