this post was submitted on 01 Apr 2025
785 points (97.8% liked)

Microblog Memes

7288 readers
3773 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.
  4. Posters are encouraged to link to the toot or tweet etc in the description of posts.

Related communities:

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] alcoholicorn@lemmy.ml 15 points 2 days ago (2 children)

Also assembly is even older than COBOL.

[–] kautau@lemmy.world 4 points 2 days ago (2 children)

I’m unsure if this is also an April fools joke

[–] felbane@lemmy.world 11 points 2 days ago

In broad terms it's true, though there are some variants of assembly that are newer than COBOL.

Assembly language is one step above machine code, and was the first large step toward a world where people write server-side code in Javascript.

[–] alcoholicorn@lemmy.ml 8 points 2 days ago* (last edited 2 days ago) (1 children)

Assembly is a way of writing machine code, but with words and hexideci numbers instead of 1s and 0s and comments/white space, it's barely a language, from the 40s.

COBOL is a compiled language from the 60s. The compiler turns the somewhat human-readable code into assembly the computer can read.

[–] kuberoot@discuss.tchncs.de 2 points 2 days ago

it's barely a language

Maybe barely, but I imagine most assembly variants have conveniences like labels for jumps, labels for referencing data included in the executable, and at least some also have things like simple macros or calculating mathematical expressions at compiletime.

[–] poplargrove@lemmy.world 1 points 2 days ago

Assembly isnt a single language though. I could write assembly for riscv or a recent arm ISA and that would be quite new.

I wondered if maybe "assembly" gets used to mean x86 but apparently thats a bunch newer than COBOL so I dont think Im being pedantic :)