this post was submitted on 20 Sep 2024
450 points (98.3% liked)

Programmer Humor

19386 readers
317 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 1 year ago
MODERATORS
 

alt textCaption

Web dev: What browser is visiting the page?

User agent string:

A screenshot of a browser. The URL bar reads firefox://settings, a button on the URL bar is labelled Netscape, a popup from the button reads: "You're viewing a secure Opera page", and the web page title reads "Chrome settings".

you are viewing a single comment's thread
view the rest of the comments
[–] Maestro@fedia.io 39 points 1 month ago (1 children)

It's called feature detection and it goes a long way back, even before Modernizr popularized it.

[–] GammaGames@beehaw.org 7 points 1 month ago (2 children)

Popularized? That gets less than 100k downloads a week

[–] dan@upvote.au 14 points 1 month ago* (last edited 1 month ago) (1 children)

Most developers just write their own feature checks (a lot of detections are just a single line of code) or use a library that polyfills the feature if it's missing.

The person you're replying to is right, though. Modernizr popularized this approach. It predates npm, and npm still isn't their main distribution method, so the npm download numbers don't mean anything.

[–] GammaGames@beehaw.org 3 points 1 month ago

Neat, thanks for clarifying! I’ve never heard of it

It used to be huge.