• 0 Posts
  • 17 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle
  • Well at some point you encounter a phase change, which complicates things, but mostly the heat capacity (how much energy it takes to raise the temperature) is fairly constant. In an ideal gas it is exactly constant, but that is a bit of an approximation, even if it works quite well for most gases.
















  • Fair. It’s not too hard, but most lemmy UIs make it a bit harder than it needs to be because they want to be a fancy JavaScript-ridden mess of html tags.

    On old.lemmy.world it is supremely easy, you just use the element picker tool of uBlock to select all posts, add the ‘magic’ command :contains(reddit) to filter out the word you don’t want (in this case reddit), and you’ve got your filter. This would result in old.lemmy.world##.post:contains(reddit).

    On lemmy.world it is trickier because it is the kind of HTML no sane person would write. Doing the above you end up with lemmy.world##div.mt-2.post-listing:contains(reddit) which is messy, and misses a line that is used to divide the posts. With some manual tuning you can first simplify the first part to ##.post-listing:contains(reddit) and then add :xpath(.|following::hr[1]) to get rid of the annoying line. This results in ##.post-listing:contains(reddit):xpath(.|following::hr[1]).