• 5 Posts
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle

  • How long before power is available on the job site? I have been involved in building houses and the power panel is the first wall to be built so that power is available to the crew. Could you strap the device to a tree and power off of a car battery until the on site power is available?

    Using a large external power source with a power on/off timer, running only during daylight hours could save lots of watts.

    I’ve looked into solar for a bird house camera and it was not a trivial project when you get to the short winter days and potentially cloudy skies.










  • Yes. It’s the “put a copy somewhere else” that I’m trying to solve for without a lot of cost and effort. So far, having a remote copy at a relative’s is good for being off site and cost, but the amount of time to support it has been less than ideal since the Pi will sometimes become unresponsive for unknown reasons and getting the family member to reboot it “is too hard”.



  • I think you’re missing the point.of the essay. He seems to be saying that Apple has decided what content you should be viewing and that they have captured the “free market” because no amount of consumer crying will change it.

    Consuming the content another way won’t affect Apple in any way since they’ll keep repeating their behavior. The author is saying that the government regulators need to get involved to restore your rights on what you can do with a device that you purchased. Near the end he even goes on to say that you (a consumer) have implicitly waived your right to sue Apple for this.

    I guess the only option is to vote or maybe not use Apple products (but are the alternatives any better?)




  • I had one from Sony a long time ago. It even had a cable you could attach between two of 'em (600 CDs!) so that it could seamlessly start playing another track while loading the next song. I dropped it during a move and the next time I opened the door, it spit gears at me. I had intended to fix it some day, but started watching Hoarders and decided it wasn’t worth it.





  • It depends on what you do with Docker. Podman can replace many of the core docker features, but does not ship with a Docker Desktop app (there may be one available). Also, last I checked, there were differences in the docker build command.

    That being said, I’m using podman at home and work, doing development things and building images must fine. My final images are built in a pipeline with actual Docker, though.

    I jumped ship from Docker (like the metaphor?) when they started clamping down on unregistered users and changed the corporate license. It’s my personal middle finger to them.


  • I’m using Kubernetes and many of the apps that I use require environment variables to pass secrets. Another option is the pod definition, which is viewable by anybody with read privileges to K8s. Secrets are great to secure it on the K8s side, but the application either needs to read the secret from a file or you build your own helm chart with a shell front end to create app config files on the fly. I’m sure there are other options, but there’s no “one size fits all” type solution.

    The real issue here is that the app is happy to expose it’s environment variables with no consideration given to the fact that it may contain data that can be misused by bad actors. It’s security 101 to not expose any more than the user needs to see which is why stack dumps are disabled on production implementations.