Find bugs with the git bisect command
Nov22

Find bugs with the git bisect command

Find bugs with the git bisect command Dwayne McDaniel Tue, 11/22/2022 – 03:00 Have you ever found a bug in code and needed to know when it was first introduced? Chances are, whoever committed the bug didn’t declare it in their Git commit message. In some cases, it might have been present for weeks, months, or even years, meaning you would need to search through hundreds or thousands of commits to find when the problem was...

Read More
Introducing Rust calls to C library functions
Nov22

Introducing Rust calls to C library functions

Introducing Rust calls to C library functions Marty Kalin Tue, 11/22/2022 – 03:00 Why call C functions from Rust? The short answer is software libraries. A longer answer touches on where C stands among programming languages in general and towards Rust in particular. C, C++, and Rust are systems languages, which give programmers access to machine-level data types and operations. Among these three systems languages, C remains the...

Read More