Jonathan Marler

Results 172 comments of Jonathan Marler

Another idea to consider would be to introduce "return value reference semantics". The difference with this would be that we'd be introducing a way to explicitly state the intention of...

I did not know about this option, I love it! (Oh wait, it sounds like it doesn't exist and you're suggesting it be added, in which case I love the...

I just tried to build and got the exact same backtrace. My guess is it's a problem with the ffmpeg version I built? The docs for `BUILDING.md` don't specify a...

This PR should fix the segfault: https://github.com/iizukanao/picam/pull/153 You can get around the requirement for `-latomic` by using ffmpeg version `4.3`. We should update `BUILDING.md` to reflect what version of ffmpeg...

And this PR should clarify what version of ffmpeg to build so you don't get the `undefined reference` errors for missing `-latomic`: https://github.com/iizukanao/picam/pull/155

> which would also solve this issue without limiting audio to the 12-tone scale. Yeah that's why I also proposed we pull in MIDI's pitch bend mechanism. ```c tone(60, ..);...

For extra context, we've successfully integrated this new "pipe" source into our application. Here's an example of how we setup the pipes and launch vector now: ```toml [sources.first] type =...

One thought comes to mind, would we need to support the case where a developer doesn't want the return value of their expression to be printed?