Tagged in

Programming

CodeChain
CodeChain
Programmable multi-asset chain
More information
Followers
435
Elsewhere
More, on Medium

Debugging RLP on the Web

RLP(Recursive Length Prefix) is the way of encoding arbitrarily nested arrays of binary data. It was first proposed…


Read-writers lock — Accessing shared resources

In multithreaded programming, when accessing a shared resource, a mutex is used to ensure that not more than one thread is allowed to change resources simultaneously. A mutex guarantees safety because it restricts the number of threads accessing a…


[Rust] _(underscore) Does Not Bind

Rust is a language that utilizes the RAII idiom, resulting in different code depending on when the…