- 0 Posts
- 9 Comments
Maintaining vacuum is difficult and most likely more expensive than just using a cheap energy source
For example, a solar salt distillation system can be totally passive, even if slow and space inefficient: https://en.m.wikipedia.org/wiki/Solar_still
If the goal is evaporative distillation, it makes no sense to use a process that begins with filling and conaminating the entire system with contaminated water
You’d have more success keeping the container clean (full of air) and pumping all the air out of it, which is still probably less efficient than other means like boiling
Kache@lemm.eeto Asklemmy@lemmy.ml•I (M32) gained 140lbs in a year from bad choices, almost all in my belly (now 69-inches) due to rare genetics. With my unique proportions, I’ve outgrown most off-the-rack clothing options. Advice?6·3 months agoIMO wardrobe concerns should come far behind health. Is this not a serious “all hands on deck” health situation? Are you sure considering custom tailoring is the correct life prioritization to take right now?
For me, the more relevant adage here is “a bad abstraction is worse than no abstraction”.
IMO many abstractions in Java are terrible in this regard, either via commonly proliferated patterns or via language design issues. Abstractions large and small are all forcibly locked into place very early on in the name of formalism and safety, ultimately leaving us with poor versions of the former and weakened versions of the latter. Where is “encapsulation” when certain classes only work when hooked up in very particular ways to other distant classes? Where is “type safety” when certain methods simply raise “not implemented for this sub/super-type”?
These faults are often hand-waved as “all ecosystems have rough patches”, but my point is that Java’s bad abstractions in particular are supremely more stubborn and persistent in comparison with other ecosystems. I understand many consider this a strength aka stability, but IMO at the extreme being unable to shed the past means negatively hindering progress. I think modern Java versions show a budding shift in mentality, but I’ve already moved on – it’s just not for me.
I’ve had to resort to “do not disturb” 100% of the time, with the “allow contacts to bypass DND”
In my experience, LLMs aren’t really that good at summarizing
It’s more like they can “rewrite more concisely” which is a bit different
Kache@lemm.eeto Programming@programming.dev•What is OOP, really? Why so many different definitions?1·2 years agoYou’re getting a lot of conceptual definitions, but mechanically, it’s just:
keeping state (data) and behavior (functions) that operate on that state, together
At minimum, that’s it. All the other things (encapsulation, message passing, inheritance, etc) are for solidifying that concept further or for extending the paradigm with features.
For example, you can express OOP semantics without OOP syntax:
foo_dict.add(key, val) # OOP syntax dict_add(foo_dict, key, val) # OOP semantics
But IMO that’s one reason weird UX/design is not uncommon and can persist in dev ecosystems. The intended users are more proficient than average and most are able to work around most issues.