this post was submitted on 21 Aug 2025
1348 points (95.4% liked)

memes

16997 readers
4964 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/Ads/AI SlopNo advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] moseschrute@lemmy.world 3 points 4 days ago* (last edited 4 days ago) (1 children)

I guess between C and assembly there’s abstract syntax trees and maybe LLVM, which is probably also written in C. Idk I skipped compilers in college.

I also know the networking stack has a bunch of layers, but that felt like its own separate thing to “computers”. I think UDP makes more errors than TCP but UDP also go brrrrr

[–] jatone@lemmy.dbzer0.com 2 points 4 days ago (1 children)

Hehe, llvm is a compiler framework, basically provides all the utilities for processing an AST.

ASTs have various flavors but they're all the same thing an intermediate representation for a program that optimizers and linkers use to create binaries.

The network stacks meh, 6 or 7 layers depending on what protocol you use but in brief: physical, transport, application. More and more functionality has moved into the transport in the name of efficiency, see quic. But in general not worth worrying about most of the abstraction was nonsense anyways.

And you missed out compilers was one of the most useful classes in cs circulums since it teaches you how languages work.

[–] moseschrute@lemmy.world 1 points 3 days ago* (last edited 3 days ago)

I KNOW! My biggest mistake in college was worrying about my GPA and that worry keeping me from taking harder classes. But I did learn about ASTs.