this post was submitted on 30 Dec 2024
651 points (98.7% liked)

Programmer Humor

19871 readers
178 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
651
AI in reality (slrpnk.net)
submitted 5 days ago* (last edited 5 days ago) by [email protected] to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 31 points 5 days ago (5 children)

And very old. Part of the sales pitch for the COmmon Business-Protected Language was that anyone could learn to code in almost plain English.

Also, the stuff they wind up making is the kind of stuff that people with no coding experience make. Cooking up an ugly website with terrible performance and security isn't much harder than making an ugly presentation with lots of WordArt. But it never was, either.

Between COBOL and LLM-enhanced "low code" we had other stuff, like that infamous product from MS that produced terrible HTML. At this point I can't even recall what it was called. The SharePoint editor maybe?

[–] [email protected] 27 points 5 days ago

Even SQL was originally called SEQUEL, Structured English QUEry Language. They got sued for the name and changed it to SQL. It was also pitched to retrieve data with plain language.

[–] [email protected] 8 points 5 days ago

Microsoft Frontpage?

[–] [email protected] 4 points 5 days ago

the kind of stuff that people with no coding experience make

The first complete program I ever wrote was in Basic. It took an input number and rounded it to the 10s or 100s digit. I had learned just enough to get it running. It was using strings and a bunch of if statements, so it didn't work for more than 3 digit numbers. I didn't learn about modulo operations until later.

In all honesty, I'm still pretty proud of it, I was in 4th or 5th grade after all 😂. I've now been programming for 20+ years.

[–] [email protected] 3 points 5 days ago (1 children)

Even natural-language languages like Inform 7 require a little programming knowledge for when it hates you.

[–] [email protected] 1 points 5 days ago (1 children)

Hey, about out to an interactive fiction dude/dudette!

I programmed in TADS many years ago, but I want to learn and use inform, because I want a Z-code game like my timeless heroes at Infocom.

[–] [email protected] 3 points 5 days ago

I'm not really into writing interactive fiction; I just tried it a little since it seemed neat. It turns out that I'm not great at coming up with things to write about, which makes it hard to actually write. Inform 7 makes some decisions that complicate using it with a programming background; I'm considering trying to write my own language for similar purposes (but different paradigms).