Hello thanks for visiting my profile.

For any picture posts I make with the [OC] tag, I provide a license for you to use my photo under the terms of CC-BY-SA-4.0. You may DM me for questions.

  • 2 Posts
  • 81 Comments
Joined 3 years ago
cake
Cake day: March 14th, 2023

help-circle



  • Right but essentially the Anthropic Marketing team made extraordinary claims about what Mythos is, pretended like it’s too dangerous for public use, that it can find and patch vulnerabilities undiscovered by human researchers for 20 years, etc. etc. but it’s own technical team and big firm partners haven’t brought forward evidence that it’s all that much. It’s probably not useless, and it might be an improvement in some ways to its other models, but having an “additional researcher” is not really something that is too scary for public use.

    It’s like if a drug company was hyping up a miracle drug, but it’s really just acetaminophen and ibuprofen in a different dosage combination. It treats pain and fever fine enough, and maybe better in some cases but not as game changing as they say.






  • Aside from the point that Jellyfin is meant to browse your own personal collection of files usually after the fact…

    Some file formats like mkv do work even if partially downloaded, so if you’re downloading a torrent for a free libre open source movie, choose the option to download chunks in sequential order, and I think there’s a way that you can watch while downloading.


  • There aren’t many Linux problems that cannot be fixed in one way or another.

    Even with the messed up resolution on Pop, can you connect to the internet and open a browser? From your desktop, usually you can press the Super (Windows) key on your keyboard, then type firefox and press enter to get the browser. Similar with “terminal” to get the terminal. From there you have a number of options.

    Option 1. Couldn’t you try booting from the same USB you used to install Pop OS again? Then avoid the Proprietary graphics option, use Nouveau graphics instead then install the last version of the Nvidia driver that supports the 1080 ti.

    Option 2. Get another USB stick you don’t need for anything else on hand. Download the software Balena etcher from https://etcher.balena.io/ go into file properties to make the program executable. Then download bazzite and get the version with old nvidia drivers. Then insert the USB and use Etcher to flash the disk image to it. Boot to the USB.

    Option 3. Uninstall and reinstall an older version of the nvidia drivers in the terminal to try to salvage your current Pop OS! installation.











  • Rentlar@lemmy.catoLinux@lemmy.mlBash scripting question
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    6 months ago

    Edit: I think there are better answers downthread than mine, but I hope my first comment spurned them on.

    Not the most experienced bash guru at it but let me see…

    • does the while condition have to be within [ ] brackets?
    • Also I can’t figure out what your condition is, it seems to have an unclosed quotation mark.
    • Most bash while-do-done loops I’ve made have a comparator like -ne for not equal or -le for less or equal to. So for example: while [ $variable -ne 5 ]; do