this post was submitted on 25 Jan 2025
83 points (87.4% liked)

Ask Lemmy

27799 readers
1366 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

From my experience, most FOSS software is very ~~user friendly~~ user-centric / user-focused, while proprietary stuff is shit. What is the most notable exception to this rule that comes to your mind?

Edit: With user friendliness, I don't mean UI design, but things like how the software is handling user privacy, whether it sees its users as users or as money-making cattle, how it handles user feedback, compatibility with other software the user uses (vs. vendor lock-in), configurability, and similar issues.

Edit2: I was made aware that user friendliness is a defined term: https://en.wikipedia.org/w/index.php?title=Userfriendliness

you are viewing a single comment's thread
view the rest of the comments
[–] tal@lemmy.today 7 points 5 days ago* (last edited 5 days ago)

Not really a user-friendliness issue, but pet peeve about one thing that I can't patch because it's not open source. Steam doesn't let me cap the number of concurrent TCP connections when downloading updates. Like, TCP degrades reasonably gracefully under contention; each connection gets something like an equal amount of bandwidth. But with Steam downloads -- which are bulk, noninteractive, and which I definitely don't want to take priority for available bandwidth -- the package uses a ton of connections. If you have 30 connections, it gets ~97% of the available bandwidth when contending with a more-conventional protocol that uses a single connection. The Steam downloader logic, as I understand from past reading, keeps adding more until it doesn't see any significant degree of increase in speed, which is exactly what I don't want to have it doing. And Valve doesn't provide any way to turn this off.

Steam does provide some other mechanisms to try to limit its bandwidth usage, but none are very satisfactory.

  • You can hard-limit the rate of downloads. But I don't want that -- if there's no contention for bandwidth, I want Steam to use it. I just want it to back off when there is contention.

  • You can limit the time of downloads. But I don't always know when there's going to be demand for bandwidth.

  • You can limit downloads to not run when playing games. That addresses the very specific case of downloads interfering with Steam games that have latency-sensitive demands, like multiplayer FPSes. But that's far from the only situation where there's something contending for bandwidth.

I mostly use open-source software, so it's really frustrating when I run into behavior in proprietary software that I can't reasonably fix. Plus, usually if it bothers me, it's bothered someone else in the past, and they've gone and fixed it, so I don't even need to do so.