Spent about 30 minutes getting command line argument detection to work. So far it only include -h/–help which displays some placeholder text for now, and -v/–verbose that prints extra information during the execution. I also spent a good while getting OS detection to work, although since I am using miniaudio as my audio recording and likely player, I likely wont need it, unless I want to send notification when its running which is something I want to implement once the core functionality is down. I then spent the rest of the 2 hours figuring out how to record audio to a file. ChatGPT was a great boon during this, I still only half understand the code but hopefully by the time this is over I will fully understand the ins and outs of recording audio. Next I need to send the audio to whisper, which turns out does not have a C library, but instead a python one, so we’ll have to figure that out manually.