this post was submitted on 25 Jan 2025
1390 points (99.1% liked)

Programmer Humor

20039 readers
1230 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
 
(page 2) 31 comments
sorted by: hot top controversial new old
[–] [email protected] 13 points 1 day ago

This has been a problem for a very very long time

[–] BroBot9000 15 points 1 day ago (9 children)

I’m going to have to go down the rabbit hole of making my own website soon. Just curious but would there be an easy way to show a pop up just to people using chrome?

No reason in particular… 😏

[–] Supervisor194 15 points 1 day ago

Not sure if serious, but there's a million ways to do this, some that require importing thousands of lines of code and none of which are guaranteed to work in all possible circumstances. But here's a simple one.

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

Im stupid Stones but I think it's in the user agent information, browser and version and other shit

[–] [email protected] 6 points 1 day ago (1 children)

User agents cannot be fully trusted anymore since every browser puts every possible word in it so they are not excluded by anything.

load more comments (1 replies)
load more comments (7 replies)
[–] [email protected] 12 points 2 days ago (1 children)

In most cases yes.

However I did find this really weird bug where Firefox was caching something to do with sockets (that would disallow connecting a new socket) that could only be cleared by restarting Firefox itself.

[–] [email protected] 8 points 1 day ago

Is that http2? Cause http2 allows for reuse of a connection for additional requests.

This caught me out with envoy reverse proxy doing a few subdomains using a wildcard cert.
The browser would reuse the connection cause the cert authority and IP was the same, but envoy couldn't figure out how to route the request correctly. Absolute head scratcher!

load more comments
view more: ‹ prev next ›