Thibault Geoffroy

Results 9 comments of Thibault Geoffroy

> @nebularnoise Have you submitted an issue upstream yet? [I just did](https://github.com/microsoft/monaco-editor/issues/3128)

@D-I-S-K-U-S That OP1 effect sounds like Linear Predictive Coding, as used in the Speak&Spell, or Bitspeek for instance. I have some material on that, I'll try and see what I...

LPC is far from trivial for me to implement from scratch, but there are a couple of open source DSP libraries that do it. We could either import it, or...

Yeah, I've opened a ticket myself. I'm fairly certain this has to do with the LEDs

yep. I've built 5 proks. They consistently do this, and indeed, the pitch changes with the firmware.

Hi! I'm interested in taking this one (trying hacktoberfest for the first time) In almost all case, it seems this function is called to instantiate an fstream, so it would...

@CalebHeydon In terms of the exposed API, maybe adding a "suffix" argument would work? On top of that, as @wwmayer suggested, if the function returns a TemporaryFile object, it would...

Yes, I assume in many cases, the file is ultimately deleted. For that, an fstream is inadequate. The original comment suggests one workaround, using a `std::FILE*` directly. https://github.com/FreeCAD/FreeCAD/blob/cb1093ef305010d218c74868e65d64e261fce3fb/src/Base/FileInfo.cpp#L140-L141 While that...

`unique_ptr` applies the RAII philosophy to memory allocation, this class would do the same but for files on the filesystem. I've been playing with the idea on Compiler Explorer, here's...