• 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: July 9th, 2023

help-circle


  • This is the joke. Absurdist hyperbole only works with a shared assumption or common sense to play against.

    If there’s an intended target of this joke, it’s definitely not medication. It would be the inscrutability of the wording of that clinical guideline, which seems to imply morality is divergent but can be cured with stimulants.












  • Maybe yeah. Also got the sense from the strong opinions that this is a preexisting debate, presumably in the context of continuous workloads or cached arrays with minimal spindown intervals. In that context it’s true that rotational disks still often win in energy efficiency and robustness (assuming we’re comparing them to consumer SSDs and not the latest enterprise u.2 stuff that’s rated for continuous work).


  • Not sure what everyone is arguing about here. Clearly SSD is better for intermittent r/w, whereas HDD can be more efficient at continuous r/w (especially in terms of watts/TB)

    Just looking at specs should be enough to see that. SSDs can idle in ready state at close to 0 draw (~0.05w) whereas HDD requires continued rotation to remain ready. So consider an extreme case of writing for 1 minute then maintaining ready state for the rest of the day. For that the SSD will be far more efficient, obviously.





  • I grew up with traditional/viewport scrolling but IMHO it was better suited for single-layer, static layouts. Natural/content scrolling has the advantage in modal, dynamic layouts with nested scrolling context, which are now the norm.

    Explanation: once we introduce multiple layers of content overflow, scroll events control (at least) one active context inside the viewport. Boundaries of scrolling contexts can be ambiguous, especially when scrollbars are hidden. If the user must “move the viewport over the content” but can’t easily predict which viewport will move, the interface will feel less intuitive to them. Natural/content scrolling bypasses all that: forget the viewport, forget active context, just focus on the content and move it around to see what you want.

    This is how I learned to stop worrying and love natural scroll.