• 1 Post
  • 13 Comments
Joined 2 years ago
cake
Cake day: June 1st, 2023

help-circle
  • I’ve got the same Geekworm cases for all my Raspberries. Added some extra thermal pads in some strategic places and have them all without any active cooling at room temperature (20-21℃). They barely go over 55℃:

    The 3B+ has soft-throttling (can be disabled) starting at 60℃, full throttling at 70°C. The 4 starts throttling at 80℃ and the 5 at 85℃. So, with that completely passive cooling I’m still far away from these margins. No need for any moving parts that will make noise at some point in the future.

    Also, since the cases have ribs on both sides, I have my Pis standing upright to hopefully make use of the stack effect - which might contribute to the slightly lower than OP’s values.




  • it seems easier to manage stuff not in docker

    Read into Traefik’s dynamic configuration. Adding something outside of Docker is as easy as adding a new config file in the dynamic configuration folder. E.g. jellyfin.yml:

    http:
    
      routers:
    
        jellyfin:
          rule: Host(`jellyfin.example.org`)
          entrypoints: websecure
          tls:
            certResolver: le
          service: jellyfin
    
      services:
    
        jellyfin:
          loadbalancer:
            servers:
              - url: "http://192.168.1.5:8096/"
    

    The moment you save that file it will be active and working in Traefik.







  • You can configure it to make your author page also your ActivityPub profile (compatible with Mastodon). Once people subscribe to that author account, they will get notified of new posts and see them in their timeline. But IIRC there’s no support for historic entries, i.e. people will only see new entries from the moment they subscribed onwards.

    E.g. my blog is available as @[email protected] within the fediverse. If you go there, you’ll most probably see an empty profile. Only when you follow that account, you’ll see future entries pop up in your timeline.




  • I’d like to track these things:

    • movies/shows I’d like to see at some point
    • movies/shows I have in my collection
    • movies/shows I have watched (and when/how often)
      • and they should automatically get removed from the watchlist once watched

    I believe TMDB only does the first. And self-hosting makes sure the data stays under my control and the service doesn’t vanish or gets paywalled anytime soon.