this post was submitted on 18 Aug 2025
552 points (99.1% liked)

Programmer Humor

25776 readers
2045 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
[–] tyler@programming.dev 14 points 4 hours ago (2 children)

You shouldn’t be validating emails yourself anyway. Use a library or check for only the @ and then send an email confirmation.

[–] zurohki@aussie.zone 4 points 2 hours ago

Even if it's a completely valid address and the domain exists, they still might've fat fingered the username part. Going to extreme lengths to validate email addresses is pointless, you still have to send an email to it anyway.

[–] TomasEkeli@programming.dev 2 points 3 hours ago

This is the way.