Ben

Results 106 comments of Ben
trafficstars

That's what we have been using, but we have realised that async in our code-base was a mistake, and we are migrating away from it. What we ended up doing,...

I've been using `embedded-time` on a project of mine to introduce a constraint that the implementer must be able to get some sort of time-representation. basically: ```rust impl MyTimeAwareTrait for...

I've put together an RFC in the embedded rust working group that proposes setting up a standard interface for reading counter peripherals. I explicitly had clocks in mind when putting...

Much the way esp-hal `GpioPin`s implement embedde-hal traits `InputPins`, I hope for a future where things like clock, pulse count, and other counting peripherals can be used as implementors of...

This looks like a possible availability attack vector, no? Have I found the right loop code [here](https://github.com/massalabs/massa/blob/bd3b1230b48abfde30a9635ab9fb4ec5098434b1/massa-bootstrap/src/server.rs#L591) It is called [here](https://github.com/massalabs/massa/blob/bd3b1230b48abfde30a9635ab9fb4ec5098434b1/massa-bootstrap/src/client.rs#L27), and the request is configured with [this "struct"](https://github.com/massalabs/massa/blob/bd3b1230b48abfde30a9635ab9fb4ec5098434b1/massa-bootstrap/src/messages.rs#LL531) From...

Do we have any "institutional knowledge" on how to choose a threshold, such as existing tools, experience from watching the testnet, etc?

My thinking at this point is to look at the logs of our bootstrap servers, put together something that filters the relevant lines, and start putting together some statistics.

I've been looking into making the results of the getters return a byte-slice instead of a vec as well. The issue is that the library uses the `DBPinnableSlice` struct to...