this post was submitted on 03 Jun 2025
461 points (97.9% liked)

memes

15244 readers
4789 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/AdsNo advertisements or spam. This is an instance rule and the only way to live.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 2 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] halvar@lemy.lol 1 points 52 minutes ago

It's in the name, it's a markup languge. Html sites are basically just over-formatted text.

[–] selkiesidhe@lemm.ee 37 points 2 days ago (1 children)

That question just gave me anxiety. That is exactly the type of question I would get. Technically it's not but does the people who wrote that think that? Is it a trap question or a smart question? Omg I gotta not think about this anymore...

[–] camelbeard@lemmy.world 3 points 2 days ago

Exactly, maybe the person who wrote it thinks its a programming language, maybe machine language is defined as a language that can be interpreted by a machine.

[–] Gronk@aussie.zone 105 points 3 days ago (9 children)

Man this question would sink me because of the misnomer that HTML is a programming language.

[–] Ethalis@jlai.lu 77 points 3 days ago (2 children)

It's basically gambling on the nerdiness of the question's writer. Do they think HTML is a programming language? Do they know that people think it's a programming language and trying to trap them? Do they know it's not a programming language but also know most people would think it is one and so are using the common, loose definition of a programming language in order not to trap people?

My brain would melt

[–] Honytawk@feddit.nl 19 points 3 days ago (1 children)

Mine wouldn't.

It is a quiz, they know what they are talking about if they put the question in. And if they don't, you get to call out the quiz master for being wrong.

[–] jaybone@lemmy.zip 30 points 3 days ago (2 children)

But I’d rather have the million dollars than the satisfaction of calling out the show for being wrong.

[–] fushuan@lemm.ee 8 points 2 days ago (1 children)

I would challenge the question right there and demand an expert counsel to explain why HyperTextMarkupLanguage is classified as a programming language when it's not even Turing complete. It's a markup language. Security would have to drag me, I'd die on the specificity hill.

load more comments (1 replies)
load more comments (1 replies)
[–] Ephera@lemmy.ml 7 points 3 days ago

If the question writer was aware, they would have formulated the question differently. It's just not clear-cut whether HTML is a programming language or not, so you wouldn't be quizzing their knowledge, but rather just whether they hold the same opinion as you. Or whether they meta-gamed correctly. Neither of which make for a fun show...

[–] dejected_warp_core@lemmy.world 60 points 3 days ago (1 children)

I would loudly go on the record for my reasoning that Hypertext Markup Language is not Turing Complete, and therefore fails to be a programming language by the only academic and theoretical definition that matters.

They already are going to award me "lawyer up" money, so I'll come after them for damages later if B is the "right' answer.

[–] itslilith@lemmy.blahaj.zone 12 points 3 days ago (1 children)

wrong again! CSS is turing complete, and HTML can include inline CSS, so you can implement a Turing machine in HTML only (without external .js files)

[–] nef@slrpnk.net 22 points 3 days ago (6 children)

It can also include inline JS. HTML alone cannot be turing complete, but HTML+CSS is.

load more comments (6 replies)
[–] chonglibloodsport@lemmy.world 17 points 3 days ago

Don’t worry. They interview you before these shows. If you’re at all tech savvy then they would never ask you this question. They want you to be stumped by the question for legitimate reasons, not to loudly protest that you’ve been cheated by a bad question.

load more comments (6 replies)
[–] Guidy@lemmy.world 79 points 3 days ago (3 children)

It’s right there in the name: it’s a markup language. Hyper Text Markup Language. HTML.

[–] someguy3@lemmy.world 43 points 3 days ago (3 children)
load more comments (3 replies)
[–] dohpaz42@lemmy.world 31 points 3 days ago (1 children)

There is a difference between “markup language” and “programming language”.

[–] Buffalox@lemmy.world 9 points 2 days ago* (last edited 2 days ago)

That's the point isn't it? Or did you mean that with a question mark attached?
The only correct answer is D, and it got the least votes. 😋

[–] lugal@lemmy.dbzer0.com 23 points 3 days ago (4 children)

That's the etymological fallacy. The name itself doesn't determine the meaning. According to that logic, python isn't a programming language either but a snake

[–] vrek@programming.dev 37 points 3 days ago (2 children)

Fun fact python was named after Monty python, not the snake.

[–] jaybone@lemmy.zip 15 points 3 days ago (9 children)

What was Monty Python named after?

[–] lime@feddit.nu 7 points 3 days ago

his parents i think

[–] Little8Lost@lemmy.world 8 points 3 days ago

I think it got inspired by our lord and savior Brian

load more comments (7 replies)
[–] _stranger_@lemmy.world 9 points 2 days ago* (last edited 2 days ago)

If it walks like a snake and quacks like a snake...

[–] Venus_Ziegenfalle@feddit.org 25 points 3 days ago* (last edited 3 days ago) (1 children)

The name itself doesn't determine the meaning.

The name in this case is defined by the meaning if you will. Programming languages are used to write programs. A HTML file is much closer to a PDF than to what can be considered a program.

Also fun fact python is named after the comedy group Monty Python rather than the snake.

[–] modeler@lemmy.world 29 points 3 days ago (3 children)

Actually, PDF is a turing complete programming language.

PDF is a simplification and wrapper around the computer language PostScript - a PostScript or PDF doc literally runs on the printer or computer and outputs the rasterisation of the thing you want to print.

PostScript is language based around a stack. You can define functions (which may be fully recursive) that run on the stack.

Here's a small example:

/ANGLE {
   newpath
   100 0 moveto
   0 0 lineto
   100 50 lineto
   stroke
} def

10 setlinewidth
0 setlinejoin
100 200 translate
ANGLE

1 setlinejoin
0 70 translate
ANGLE

2 setlinejoin
0 70 translate
ANGLE

As such, PDF that's actually similar to Python, and HTML is closer to something like a JSON or XML document.

Note however that HTML can contain Javscript or WASM programs, but these are embedded rather than features of HTML.

[–] Venus_Ziegenfalle@feddit.org 21 points 3 days ago

Consider me outjerked 🎩🤏

load more comments (1 replies)
[–] Kichae@lemmy.ca 19 points 3 days ago (3 children)

Ok, but hear me out. Have you seen most Python code?

load more comments (3 replies)
load more comments (1 replies)
[–] Feathercrown@lemmy.world 39 points 3 days ago (2 children)

Ackshually it's a markup language not a programming language Picks D and loses $1 million

load more comments (2 replies)
[–] absGeekNZ@lemmy.nz 13 points 2 days ago

Well what the fuck is a machine language?

Is is data transmitted between parties (machines) to convey information? HTML fits this definition.

Do they mean machine code? Because some call machine code "machine language".

Either way the answer is D.

[–] dejected_warp_core@lemmy.world 40 points 3 days ago (6 children)

What really has my brain in a knot is: Does option "D: None of these" include or exclude option D?

This statement is false.

load more comments (6 replies)
[–] Rooty@lemmy.world 7 points 2 days ago

WYSIWYG has been around so long that people forget markup languages and batch text processing have been around for a long time. LaTeX and Groff seem to be the sole survivors.

[–] finitebanjo@lemmy.world 4 points 2 days ago* (last edited 2 days ago)

Ah yes, the humour effect bias. In case nobody noticed, everybody chose Alien Language.

[–] palmtrees2309@lemm.ee 7 points 2 days ago

Not expected Amitabh Bacchan and Indian who wants to be a Millonaire or Kaun bane ga Crorepati. Lemmy has got me suprised. Also HTML is markup not a programming language.

[–] Rodneyck@lemm.ee 6 points 2 days ago

Phones a friend = no one answers.

[–] gofsckyourself@lemmy.world 7 points 3 days ago

It looks like this is a photo taken by a potato of a magazine photo that was taken by a potato

load more comments
view more: next ›