Did Deadmau5 hit a seagull with a truck in "Outta My life (deadmau5 Touch Remix)"?

Did Deadmau5 hit a seagull with a truck in "Outta My life (deadmau5 Touch Remix)"?

I was listening to this classic track when I suddenly heard a seagull get hit by a truck at 5:45. I was wondering did Joel use a real truck to hit a live seagull? I was hoping that it is a fake seagull. Or maybe it was a fake truck and a real seagull? I suppose that wouldn't be as bad, but still worse than a real truck and a fake seagull. Can anyone confirm that either the truck or the seagull was fake?

youtu.be
u/MrKahoobadoo — 3 days ago

Satisfying latching buttons/keys

I'm not exactly doing synthdiy, but midi-controller diy. I wanna make a sequencer, and I was wondering if anyone knows of any latching buttons that have a really satisfying feel? Bonus points if they have an LED built-in, but if not I can just add that to the circuit pretty easily.

reddit.com
u/MrKahoobadoo — 24 days ago

Clang linter finds hundreds of errors in JUCE C++ files, but code builds fine

SOLVED: I shut off clangd. Don't really know what it is or how it is different from clang-tidy, but unchecking it in settings worked. Idk if this will have negative effects in the future, but clang-tidy is still running and it looks like normal linting is still happening in the IDE. There are some random irrelevant warnings, but not hundreds of warnings and errors talking about undeclared functions and variables.
----------------------------------------------------------------------------------------------------------------------

I'm using CLion and Clang on a windows PC to learn programming in JUCE. I am following a video tutorial series and I am using their template code, and it builds fine with no errors.

However, the linter says a bunch of the files don't have a target project, that all of the functions and classes referenced don't exist, and gives me completely wild and fake errors, too. One time it told me to add a comma somewhere, only for that to make the build fail because there actually WASN'T supposed to be a comma, which was especially wacky. Of course when I deleted the comma, it just kept saying I needed it there.

Anyway, does anyone have any knowledge on how I can fix this? Other people have the same issue online, but I have found no fixes. It makes programming really hard because my code is just red everywhere (as you can see in the code below) and I can't tell what errors are real or fake.

Thank you

https://www.reddit.com/media?url=https%3A%2F%2Fpreview.redd.it%2Fclang-linter-finds-hundreds-of-errors-in-juce-c-files-but-v0-tfji3hwtyh5h1.png%3Fwidth%3D1912%26format%3Dpng%26auto%3Dwebp%26s%3D5151a729ec686d2bf3549a91b65acaa9a9eaaba3

EDIT:
Here's the course and github repo:
https://www.wolfsoundacademy.com/products/official-juce-audio-plugin-development-course
https://github.com/juce-framework/tremolo-juce-course

specifically the .clang-tidy file:
https://github.com/juce-framework/tremolo-juce-course/blob/main/.clang-tidy

CMakeLists:
https://github.com/juce-framework/tremolo-juce-course/blob/main/complete/CMakeLists.txt

u/MrKahoobadoo — 1 month ago
▲ 3 r/JUCE

Clang linter finds hundreds of errors in JUCE C++ files, but code builds fine

SOLVED: I shut off clangd. Don't really know what it is or how it is different from clang-tidy, but unchecking it in settings worked. Idk if this will have negative effects in the future, but clang-tidy is still running and it looks like normal linting is still happening in the IDE. There are some random irrelevant errors, but not hundreds talking about undeclared functions and variables.
----------------------------------------------------------------------------------------------------------------------

I'm using CLion and Clang on a windows PC to learn programming in JUCE. I am following a video tutorial series and I am using their template code, and it builds fine with no errors.

However, the linter says a bunch of the files don't have a target project, that all of the functions and classes referenced don't exist, and gives me completely wild and fake errors, too. One time it told me to add a comma somewhere, only for that to make the build fail because there actually WASN'T supposed to be a comma, which was especially wacky. Of course when I deleted the comma, it just kept saying I needed it there.

Anyway, does anyone have any knowledge on how I can fix this? Other people have the same issue online, but I have found no fixes. It makes programming really hard because my code is just red everywhere (as you can see in the code below) and I can't tell what errors are real or fake.

Thank you

Template from tutorial: https://github.com/juce-framework/tremolo-juce-course
Tutorial series: https://www.wolfsoundacademy.com/products/official-juce-audio-plugin-development-course

https://preview.redd.it/tfji3hwtyh5h1.png?width=1912&format=png&auto=webp&s=119330e99d2b0f60e44f57297d731e66780ad1e9

Solution: shut off clangd. Don't really know what it is or how it is different from clang-tidy, but unchecking it in settings worked. Idk if this will have negative effects in the future, but clang-tidy is still running and it looks like normal linting is still happening in the IDE. There are some random irrelevant errors, but not hundreds talking about undeclared functions and variables.

reddit.com
u/MrKahoobadoo — 1 month ago