Both decks of the bus follow the same [code] path. That’s a lot more like increasing the buffer size.
- 0 Posts
- 93 Comments
Please stop trying to explain it to me.
I never understand people rejecting free feedback on social media posts.
Ajen@sh.itjust.worksto
Programmer Humor@lemmy.ml•Software Development is like a Brazilian soap opera
1·15 days agoProduct owner is responsible for making sure the product meets customer needs. Project manager is responsible for making sure the project is completed on time and meets the requirements that are defined by the PO.
Ajen@sh.itjust.worksto
Technology@lemmy.world•Is Fast Charging Killing the Battery? A 2-Year Test on 40 PhonesEnglish
1·19 days agoNot if it’s for oil based paints.
Ajen@sh.itjust.worksto
Asklemmy@lemmy.ml•Have you ever traveled outside of America? (Not to Canada or Mexico)
11·2 months agoDid you know you can be exposed to other cultures without leaving the country? You did a good job of pointing out why travel alone doesn’t make people more open minded, but you didn’t touch on the opportunities Americans have to connect with other cultures without leaving their own country.
Very high latency, though. Great for some use cases, useless for others.
Ajen@sh.itjust.worksto
3DPrinting@lemmy.world•Does the filament path of ruby nozzles degrade + is DUROZZLE any good?English
3·2 months agoRuby is brittle, and if your hotend crashes into the bed due to bad settings, broken ABL, etc it might break. That’s just based on what I read when I was considering buying one, I don’t have any first hand experience.
It wasn’t named by IT people, though. It was named by academics. And it’s not about using computers, it’s about computing. Computer science is older than digital electronics.
Ajen@sh.itjust.worksto
Asklemmy@lemmy.ml•does the new employee eventually stop being the one given the most tasks?
2·3 months agoYou aren’t going to find that in every industry/career. Not sure what other advice I can give, but if I was in that situation I’d be looking for a career/field that uses a similar set of skills but has a better culture.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
1·3 months agoBesides RAM, what resources do you think you’re saving? Not CPU cycles or IO ops, because you’re processing the same amount of DB queries either way. Not power consumption, since that isn’t affected by RAM utilization. Maybe disc space? But that’s even cheaper than RAM.
Or more importantly: the extent to which you can self-host out of sheer luck and ignorance like you suggest is very limited. If you don’t want to engage with a minimum amount of configuration, you might bump into security issues (a much broader and complex subject) long before any of the above has a material impact.
You’re mischaracterizing what I said. My point is that running multiple DB processes on a server isn’t going to have a significant impact on system load, if all other factor are kept constant.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
1·3 months agoYou seem to be obsessed with optimising one resource at the expense of others. Time is a limited resource, and even if it only takes 5 minutes to configure all of your containers to share a single db backend (it will take longer than that even if you just have 2), you’re only going to save a few MB of RAM. And since RAM costs roughly $2.5/GB (0.25 cents/MB) your time would have to be worth very little for this to be worthwhile.
On the other hand, if you’re doing it to learn more about computers then it might be worthwhile. This is a community of hobbiests, after all…
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
2·3 months agoNeither, I’m trying to explain that you don’t need to know the implementation details of the software running on your server to backup the entire thing.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
3·3 months agoWhere are you getting that from? The fastest and easiest way to back up any server is a full filesystem backup, especially if you’re using something like zfs or btrfs.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
1·3 months agoI’m saying this based on real world experience: after a certain point you start to see deminishing returns when optimizing a system, and you’re better off focusing your efforts elsewhere. For most applications, customizing containerized services to share databases is far past that point.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
4·3 months agoDo you have the data to back that up? Have you measured how much of an impact on system load and power consumption having 2 separate DB processes has?
Roughly the same amount of work is being done by the CPU if you split your DBs between 2 servers or just use one. There might be a slight increase in memory usage, but that would only matter in a few niche applications and wouldn’t affect environmental impact.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
23·3 months agoFor most applications the overhead of running a second DB server is negligible.
Ajen@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
117·3 months agoI write software for a living, and have worked with all 3 database options in the past. I don’t know what DB backend my nextcloud server is using, nor do I care.
Ajen@sh.itjust.worksto
Asklemmy@lemmy.ml•What is this generations Nirvana, Limp Bizkit, Tupac, or Rage against the machine?
3·3 months agoIt feels like less and less big artist are less vocal against what is happening. They will speak or make a post but their music is still the same ol same ol.
My point is that artists who are vocal don’t make as much profit for the record labels as they used to, so they’re not being promoted as much as they used to. RAtM only became as big as they are because they were profitable for Sony. Ironic, isn’t it?

If it’s your feature branch, just revert his commits (or reset the remote branch to your local branch)? Not sure why a feature branch would be shared between devs…