• 3 Posts
  • 78 Comments
Joined 2 years ago
cake
Cake day: October 28th, 2024

help-circle











  • I bet another reason is security. You might not trust the NUT software. It might be proprietary, and even if its open source, it might not be scrutinized enough to be safe.

    Using separate hardware, lets you take in the power loss signal from the NUT and then convert it to a channel you might trust more, like an http request over wireguard. Alternatively you could use a VM with usb passthrough on the main PC…though usb passthrough still has risks.







  • Something I should point out just in case is that 50% success rate is the same as random chance. So when the study says:

    AIs were classified as AI 56% of the time.

    That really means that humans could not tell the difference between AI and human, since their success rate was almost the same as random chance.

    6 language specific tasks. They were programmed and set up specifically to perform whatever specific one task they had to do at the time, that is what computers do.

    Sure, and that task was “imitate humans”, and these computers seem remarkably good at it. That’s what I’m saying. I don’t care that these AI work differently than humans. They can imitate humans so well that humans can’t tell the difference.


  • I believe you can use the command-line tool “adb” for this. It’s been a while since I’ve done it since I use syncthing now, but here’s a quick intro:

    1. on phone, enable developer options
    2. on computer, install android tools, which should come with adb (Do not install full android developer toolkit, it’s huge. You only need adb)
    3. on computer run ‘adb devices’, which should currently print that no devices were found
    4. plug phone into computer, and accept authorization prompt on phone
    5. on computer run ‘adb devices’ again and it should list your phone with the status “authorized”

    Now you should be able to use adb pull -p -a <folder name> to back up folders to your computer, for example adb pull -p -a /sdcard/DCIM.

    Note that you will have trouble backing up the /sdcard/Android folder, which contains a lot of app data. Unfortunately I think you need root to back up that folder. Alternatively you can back up individual apps using adb backup ....

    Personally I think in the long term, automatic backups like syncthing is better. Manual backups are a hassle and because of that, you won’t do them as often.