Ever since I stumbled upon the GenMDM project I wanted to try it but it seemed impossible to get my hands on one. So a few years ago I tried to clone one. By just looking at all the images I could find I was able to reconstruct the connections between the Teensy and the [read more]
In case you want to convert a youtube video to a MP3 file, you could use one of the many online solutions. But if you don’t want all the advertising mess and are not afraid of using your terminal with bash, you can use the following solution. If you have not already installed HOMEBREW do [read more]
This command finds all Flac files and then converts them to mp3 with FFMPEG keeping meta data. find . -name “*.flac” -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \; [read more]
Back in 2010 I made this midi controller for my live performances and dj-sets. I used it mainly with Traktor. I made this so I didn’t have to carry CD’s and Vinyls. I actually used it for about 2 years. [read more]