318
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 20 Sep 2023
318 points (99.7% liked)
technology
23265 readers
328 users here now
On the road to fully automated luxury gay space communism.
Spreading Linux propaganda since 2020
- Ways to run Microsoft/Adobe and more on Linux
- The Ultimate FOSS Guide For Android
- Great libre software on Windows
- Hey you, the lib still using Chrome. Read this post!
Rules:
- 1. Obviously abide by the sitewide code of conduct. Bigotry will be met with an immediate ban
- 2. This community is about technology. Offtopic is permitted as long as it is kept in the comment sections
- 3. Although this is not /c/libre, FOSS related posting is tolerated, and even welcome in the case of effort posts
- 4. We believe technology should be liberating. As such, avoid promoting proprietary and/or bourgeois technology
- 5. Explanatory posts to correct the potential mistakes a comrade made in a post of their own are allowed, as long as they remain respectful
- 6. No crypto (Bitcoin, NFT, etc.) speculation, unless it is purely informative and not too cringe
- 7. Absolutely no tech bro shit. If you have a good opinion of Silicon Valley billionaires please manifest yourself so we can ban you.
founded 4 years ago
MODERATORS
responsive web design has brought this back a little. I can do almost everything I need to on my linux phone natively or through the browser. it is a hassle tho. frequently need a user agent switcher, etc
Responsive web design is obnoxious. If I'm using a desktop user agent on my phone, that means I want to see the desktop site, even if I have to zoom and pan to see everything. I don't want the site's CSS to decide from my screen's width that it's a mobile device and show me the mobile version anyway.
I think the pure concept of responsive web design is that the same exact content is shown at all resolutions, but with different layout. The issue is that exposing that information lets them discriminate between desktop clients and mobile clients.
But with responsive web design, often the way the same content is presented at a lower resolution is by making it less usable, tracking or no. I don't want a site's navigation bar to become a dropdown on my phone, because then I can't see the site content and the menu at the same time.
Ah yeah I get what you mean. I don't do much web dev except what I need to do for some course projects, so take this with a grain of salt. Usually I try to make things scale nicely for smaller displays with bootstrap classes or whatever, but never go to the point of changing something from a static component into a dropdown or some dynamic component.