I’d appreciate it if everyone could just stop burning fossil fuels, please. Thank you for your cooperation.

  • 0 Posts
  • 46 Comments
Joined 2 years ago
cake
Cake day: November 3rd, 2023

help-circle



  • That’s technically within your legal rights I guess, just like (depending what the fine print says) it’s within their rights to throttle all your traffic one way or another to a low speed including the stuff you actually need to go faster. The places that always have low speeds for everyone are like that because they’re designed to cater to people who don’t give a shit about what their fair share might be and just want to max out their connection. Those services are fine for torrenting, useless for everything else. Windscribe isn’t one of those but it could become one if enough of its users think like you and insist on it.

    Hopefully they’ll set a soft 2TB limit or something before they do that, though.









  • Since you’re already on btrfs it’s probably better to actually use the features it has to expand your existing filesystem to cover both drives.

    But if you just want to mount it somewhere and not worry about figuring out anything complicated, what I did is mount my big new cheap disk at /home/bigdisk and then have symlinks pointing to it such as ~/Videos -> /home/bigdisk/Videos.









  • The .tar.xz format decompresses more than twice as fast as .tar.bz2, allowing you to get up and running in no time

    $ time tar xjf firefox-134.0b3.tar.bz2 
    
    real    0m9.045s
    user    0m8.839s
    sys     0m0.450s
    
    $ time tar xJf firefox-135.0a1.en-US.linux-x86_64.tar.xz                                                
    
    real    0m4.903s
    user    0m4.677s
    sys     0m0.510s
    

    Nice! Presumably it’d be twice as fast if disk was infinitely fast or something. Unfortunately by testing this I’ve already used up a hundred times more time than I’ll ever save as a result of it.