

i was for the most part only heating a single room
Have you made sure that your other rooms are not getting moldy? Cold air can’t carry as much moisture so your walls, furniture, etc. might be getting damper than they should be.
i was for the most part only heating a single room
Have you made sure that your other rooms are not getting moldy? Cold air can’t carry as much moisture so your walls, furniture, etc. might be getting damper than they should be.
They should have focused on the name change, to prove that there is a demand for “GIMP but with another name”. Everything else can be done in the main project or any fork, and that those don’t exist show that the manpower needed for that isn’t really available.
There was a separate project that changed the name to “Glimpse”, and then got too many other great ideas for the few people they had to actually get somewhere and it dissolved.
Make sure to disable Windows hybrid sleep. If your system isn’t shutdown properly and you access the Windows partition from another system that can destroy data.
If you just want to keep the data on the Windows partition and usually don’t need to run Windows, I’d remove the Windows drive and keep it somewhere safe, and get another SSD for Linux. That way, the two systems are completely separate and can do nothing to each other.
Swap is mostly a crutch for too little RAM, if the system doesn’t have enough the best solution would be an upgrade. If that’s not possible, consider zram-swap, or if you have to, swap to an SSD (that will reduce its lifespan, though maybe not in a relevant manner). If you swap to an old HDD you won’t have much fun using the system.
Audiobooks have a simple workaround if you can find a version of the book in text format to download, just index that.
Calibre can create a full text index to search through everything (well, for files that actually contain the text, and it needs a lot of space).
GNU parallel, to run commands on all cores, and for its filename pattern substitution.
For example:
ls *.flac | parallel ffmpeg -i {} {.}.mp3
encodes a directory of FLAC files to MP3.parallel -a <(ls *.flac) -a <(ls *.mp3) --xapply copytags {1} {2}
then copies each FLAC file’s metadata to the corresponding MP3 file (which ffmpeg already does, just to illustrate the--xapply
option).edit:
copytags
is https://github.com/DarwinAwardWinner/copytags if that’s useful for anyone.