Posts

Cross building Rust applications for Raspberry Pis

In this article, we will demonstrate how to build Rust code for Raspberry Pi single-board computers (SBCs). We’ll cover how to use libraries that require both an assembler and a C toolchain for the target platform.

Coding in C++ like it's Golang (Part 2)

Golang has some nice features such as multiple return values, the defer keyword, and channels. This article shows how to implement Golang’s defer statement in Modern C++.

Integrating Lab Equipment into pytest-Based Tests

This article is about integrating lab equipment into pytest. By doing so, we can automate setting electrical parameters and implement sequences such as operating devices in edge cases.

Coding in C++ like it's Golang (Part 1)

Golang has some nice features such as multiple return values, the defer keyword, and channels. This article shows how to implement multiple return values of functions in Golang and C++.