In Python there is a thing called a context manager. It looks like this: with open('file.txt') as f: # setup code runs here print f.read() # teardown code runs here do_other_thing(f) # error: f is not bound here Inside the indented block t... (more…)
Read more »
Offset payment engine. Contribute to freedomlayer/offset development by creating an account on GitHub. (more…)
Read more »
Recently, we worked on an embedded (STM32) project in Rust
and we got some hands-on experience with
the abstractions commonly used for that.
There's `embedded-hal`, which offers abstractions related to
timing, GPIO pins and
common communication peripheral... (more…)
Read more »
cap-std is a project to create capability-based versions of Rust standard
library and related APIs. (more…)
Read more »
In conjunction with the recent announcement of the GNU tool chain implementation of Rust supported by Open Source Security, Inc. and Embecosm we want to outline how the project will move forward. (more…)
Read more »