Rust Audio Programming: Oscillator – Handle frequency changes smoothly [PART 2]Jan 7, 2026·9 min read
Rust Audio Programming: Oscillator – Exploring the waveforms [PART 3]So what’s an oscillator? An oscillator is a digital or analog component that generates a repeating waveform — think of it as a signal source. In audio programming, it’s the piece of code that spits out samples of a sine wave (or other waveform) over ...Jan 10, 2026·13 min read
Async Rust: Few examples to get it rightBefore we start, I hope you already know how to create a new rust project, add some dependencies and other basic stuff. If not, I recommend to read the Book first :) OK, lets go! In Rust to run code asynchronously you should start the block or functi...Apr 23, 2022·4 min read