• 1 Post
  • 83 Comments
Joined 2 years ago
cake
Cake day: June 15th, 2022

help-circle
  • Hello fellow fish user.

    Disown is. I even have a fish function written so I can do ‘launch foo’ and it’ll run foo, redirect everything to /dev/null (not sure that’s necessary, but doesn’t hurt), and then disowns the process. Mostly because I have a habit of running stuff using whatever terminal I happen to have in front of me.


  • Vivaldi is pretty nice and was my main browser until the announcement about MV3, but Vivaldi isn’t going to support it beyond whenever google removes MV2 from the source (IIRC, Vivaldi folks expected it around June next year). But I saw the way the wind was blowing and decided to jump ship while I could still do it and take my own sweet time doing so. In retrospect, glad I did. Still miss some features like markdown notes and sidebar web pages, but it’s still better than being buried in ads.










  • Trent@lemmy.mltoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    4 months ago

    Unless it’s all you have. Speaking as someone that’s at times been poor af, sometimes people just have to cobble up a frankensystem from whatever parts they can scrounge.

    One of the things I love about linux is that it makes this reasonably possible.









  • Compiling code converts it from human readable source code into optimized machine code which the processor understands how to execute. For a lot of software you can just unpack the source code, run ./configure, run ‘make’, and then ‘make install’. This can vary a lot and is a simplified explanation, but it’s a start…