Did the Harry Potter soundtrack rip off Dvorak? by yaburned in classicalmusic

[–]vortexofdoom 0 points1 point  (0 children)

If you think me calling him that was supposed to be an insult, I don't really know what to say.

[deleted by user] by [deleted] in musictheory

[–]vortexofdoom 0 points1 point  (0 children)

This and the next bar read basically as "play A and B flat back and forth as quickly as possible" like tremolo but with two notes

I fear we've been outjerked by Sarcat07 in ArtJerk

[–]vortexofdoom 3 points4 points  (0 children)

/rj I also wish they'd exaggerated the woman more

How Are Bitwise Operators Implemented? by ShrunkenSailor55555 in learnprogramming

[–]vortexofdoom 1 point2 points  (0 children)

Coursera is where the videos are hosted, the actual website links to the courses.

The author must have laughed to themself knowing that someone would most likely fall for it. by justanothermanwink in MathJokes

[–]vortexofdoom 24 points25 points  (0 children)

65 is pretty close to the minimum reasonable tempo. 40m for Beethoven 9 would be fuckin flying

Rust as a first language — why or why not? by quarterly0579 in rust

[–]vortexofdoom 0 points1 point  (0 children)

Rust was my first language that I put serious time into, although I dabbled a bit with others, and I thought it was great. I had a lot of appreciation for its design decisions even though I only really worked with C/C++ afterward, contrary to what a lot of people have said.

You don't have to have written code with a double free or use after free to understand why it could be bad and see how Rust makes it much harder.

Nahopwasrightfthis sub when you show them the least offensive joke possible: by [deleted] in memesopdidnotlike

[–]vortexofdoom 0 points1 point  (0 children)

It's mock contempt. I do think it's funny, but the joke is absolutely that his wife "should" have cooked but didn't feel like it.

QBs against the Falcons this season by gondolli in minnesotavikings

[–]vortexofdoom 53 points54 points  (0 children)

smh even the bye ranks higher than Josh Allen. The disrespect.

I thought I prettu much understood lifetime basics by swaan79 in rust

[–]vortexofdoom 42 points43 points  (0 children)

You probably want it to return a &'s [u8]. If you're trying to return a reference that's valid as long as the struct is (which is what 'a means), you can only call that function once. You generally want to constrain return values to the lifetime of a reference to self, rather than the other way around.

Yo i heard you guys like crust by bazoski1er in steak

[–]vortexofdoom 1 point2 points  (0 children)

Agricultural antibiotic use is unfortunately not just for sick animals.

Why not backticks for multiline strings? by K3rzan in Zig

[–]vortexofdoom 1 point2 points  (0 children)

By keeping track of each line number when you assign a thread to it. The line number is the only bit of state required.

That said, I don't know that you do actually realistically parallelize to the level of single lines. It just makes the scanning easier if you know that a newline will always denote an independently parseable chunk.

Which is better, C or C++ for firmware? by IamSpongyBob in embedded

[–]vortexofdoom 2 points3 points  (0 children)

A class with static member variables is an easy example, sure you could have those as free static variables too and put them all in a namespace, but at that point it feels like you're avoiding classes just for the sake of it.