219
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 10 Mar 2026
219 points (100.0% liked)
Programmer Humor
41338 readers
72 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 6 years ago
MODERATORS
In C++ land, I lived in Qt for 20 years. It did... most things, so if you "just" imported Qt (or Boost or massive API environment of your choice) you could usually do most things "just" importing one or two additional external libraries. I frequently would split a system into "micro-ish-services" with each service importing one or a few of these novel external libraries, partly to isolate them so unexpected interference at least wasn't coming from within the process, also as damage control incase one behaved badly it could be excised at runtime without taking down the larger system.
Rust feels even more like a case for cooperating microservices, but it does seem to bulk them up fast - faster than Qt, and that's saying something.