this post was submitted on 02 Jun 2025
667 points (98.8% liked)

Programmer Humor

24297 readers
434 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
 
you are viewing a single comment's thread
view the rest of the comments
[–] Engraver3825@piefed.social 75 points 2 weeks ago (2 children)

True story:

AI: 42, ]

Vibe coder: oh no, a syntax error, programming is too difficult, software engineers are gatekeeping with their black magic.

[–] towerful@programming.dev 45 points 2 weeks ago
let data = null
do {
    const response = await openai.prompt(prompt)
    if (response.error !== null) continue;
    try {
        data = JSON.parse(response.text)
    } catch {
        data = null // just in case
    }
} while (data === null)
return data

Meh, not my money

[–] Glitch@lemmy.dbzer0.com 5 points 2 weeks ago

Lol good point