km
km
Tracking same topic over at cmake's issue tracker as well: https://gitlab.kitware.com/cmake/cmake/issues/17847
Got this code setup in vscode for debugging... Here's the details. Appears to be crashing in `nsimage.mm`, Objective C code, in this function: `bool ResizeGivenImage(const char* filePath, PicPrefs myPicPrefs, char*...
I found a workaround to **avoid the segfault**. When I have a jpg at 300 DPI, then AtomicParsley segfaults. If I simply change to 72, then it runs without segfault....
Oh hey, that's great! Thank you so much for that! I'm automating generation of my [catalog](https://www.subatomicglue.com/disco) from source .wavs, this tool is great. Really appreciate this! (I’ll try out the...
I tested and can confirm that this works, thanks! Will this go into the homebrew/`brew` repository?
Check out "Empty", it's a collaboration that I did with Tryad. Vavrek found my electrovibe track on the interwebs from the early 2000's, and sang some amazing haunting vocs on...
I had this cmake module originally working against clang 6.0.0.... looks like clang/LLVM is up to version 12 now I found this: https://stackoverflow.com/questions/52760801/cmake-building-for-windows-clang-cl-using-ninja-generator ``` To compile with clang-cl, it is...
 Also seeing trails: ``` screengif --fuzz 10 --framerate 10 --delay 50 --delay-last 100 -i shaft-coupler-squareToD_20180824181649.mpg -o shaft.gif ``` ``` > gem list screengif screengif (0.0.3) > brew list ffmpeg...
Any table that has an `id` column will work: ``` let options = { attributes: [ 'id', [sequelize.literal( `select 1` ), `has_access`] ], having: {'$has_access$': 1}, } let result =...
Here is some code that implements a full count needed for pagination, and supports virtual (calculated) columns with `having` as shown above: ``` // generate the MySQL query string, without...