• 6 Posts
  • 21 Comments
Joined 11 months ago
cake
Cake day: August 2nd, 2023

help-circle






  • DeuxChevaux@lemmy.worldOPtoPrivacy@lemmy.mlGoogle-Amazon connection?
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    3 months ago

    Also, don’t use YouTube directly, use Invidious or Piped, and this particular issue would be gone.

    It’s the convenience. If you want to run a channel, you’re kind of damned to sell your soul. 🙃 The question is for how much you’d sell yourself out completely.

    Not sure, if these apps run on a desktop computer, though, which is my main workhorse.






  • I use DokuWiki for this type of thing. With a few add-ons it is nicely configurable (galleries, discussions etc), could be run from any webspace, and doesn’t need a database. You can have ACLs that make sure that only registered users get access. But it is a bit of a DIY solution, and takes a bit of work to set up.


  • My oldest “security camera” of this type has been online 24/7 since June 2019 and permanently connected to a charger of the smallest type I could find at that time. The battery still holds a charge when I take the phone down for cleaning. Not sure how old the phone itself is (a small Kyocera), probably a 2014 or 2015 model. So, for my requirements, I’d say, it’s reasonably reliable.

    OTOH, you may be right, and they don’t make them like they used to in the olden days, haha.


  • My cheap and cheerful, but not very secure homebrew solution is a used smartphone, then load any of the motion-detection apps onto it, plus an FTP server app. Then place the phone anywhere within Wi-Fi reach. Run a script once a day on my home server that downloads and deletes the videos from the phone via FTP, and also deletes that footage after 30 days. So the “system” can run indefinitely without running out of memory. The old phones just need to be rebooted once in a while for some odd reason.







  • AFAIk, on Lemmy there are no “private communities” like they can exist on Reddit or most other forum-software, unless you build your own instance. I think, private spaces do have a good reason to exist e.g. for families or other closed groups who’d like to talk about an illness or other sensitive topic, but Lemmy seems not (yet?) to cater for that, unfortunately.







  • Thre could be two other things that I can think of:

    Permissions maybe: Try “sudo chmod +x /path/yourscript.sh” to make your script explicitly executable.

    Also, the environment of cron doing something may be different from when you do it as root or user. So you should always use the full path to every command in your script; like “/bin/tar” instead of just “tar”. To find out, where things are, you can use “whereis tar”, and it will tell you, whether it’s in /bin, /usr/bin or elsewhere.