this post was submitted on 10 Mar 2024
817 points (96.9% liked)

Memes

8108 readers
381 users here now

Post memes here.

A meme is an idea, behavior, or style that spreads by means of imitation from person to person within a culture and often carries symbolic meaning representing a particular phenomenon or theme.

An Internet meme or meme, is a cultural item that is spread via the Internet, often through social media platforms. The name is by the concept of memes proposed by Richard Dawkins in 1972. Internet memes can take various forms, such as images, videos, GIFs, and various other viral sensations.


Laittakaa meemejä tänne.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 6 months ago (1 children)

Take a look at what Kaze Emanuar is doing with SM64 if you're curious what the N64 can do with modern software practices ;D

[–] [email protected] 1 points 6 months ago (1 children)

Yeah I've seen his videos - very impressive. He's spent years working on it though (way more than most N64 devs that built commercially released games), and compiler optimizations that exist today didn't exist back then.

[–] [email protected] 1 points 6 months ago (1 children)

I don't think compiler optimizations matter much - supposedly the final build was compiled without optimizations, presumably by mistake, and the N64 has very specific hardware which compilers don't know how to optimize for.

What we certainly do have are much more powerful machines and software in general, letting you test, analyze and profile code much more easily, as well as vast amounts of freely available information online - I can't really imagine how they did it back then.

[–] [email protected] 1 points 6 months ago

Some optimizations help a lot. There's a bunch of general optimizations that compiler do that work for any CPU. A simple example would be unrolling small loops. Compilers are fast enough today that they can brute force the best optimization for a given piece of code if needed.