• 1 Post
  • 30 Comments
Joined 1 month ago
cake
Cake day: June 5th, 2025

help-circle



  • infeeeee@lemmy.ziptoSelfhosted@lemmy.worldSelf-hosted meteo apps ?
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    7 hours ago

    There is a history dashboard where you can change the date and which sensors you want to display: https://www.home-assistant.io/integrations/history/ You don’t zoom but you have to add dates, same 2 sensors look like this there:

    But it depends on the sensor if it supports this long term statistics, by default all data is saved only for 10 days, you can change these settings.

    If filtering and zooming is the most important aspect for you this may be not the best solution, as this graph displays are not the best. The most powerful feature is that you can add local data sources.




  • On Arch we have AUR, which is basically this. It doesn’t have this approval workflow, but you can vote for packages. Every package has a maintainer, who is responsible. pacman notifies you before update if a package became unmaintained, and you can apply to become a new maintainer, that’s how I became a maintainer of 2 packages.

    Since I started using arch I never installed anything the way you describe, everything is already in the AUR.


  • You cannot follow everything from everything.

    • From Mastodon you can follow Lemmy communities and Lemmy users. Some Lemmy communities name gets hashtags on mastodon, e.g. if you follow #idm there, you will see posts from [email protected]
    • From Lemmy you cannot follow/subscribe to anything from Mastodon. You can see replies and posts of Mastodon users in Lemmy communities

    If you want to follow all from one account with a Lemmy-like interface, the closest you can get is with Mbin. There you can follow Lemmy communities, Mastodon and Lemmy users. You cannot follow Mastodon hashtags though.







  • Very nice project! Thank you for using OpenStreetMap! I love it when the project I contribute to gets used in interesting projects like this!

    But some quick notes, related to the map display: It’s called OpenStreetMap, there is no s at the end, written in CamelCase without spaces. The other more important problem is you forgot to include the attribution text on the map. For using OSM there is only one requirement, you have to display “© OpenStreetMap” somewhere on a corner of the map. More info about this on the website of the OSM foundation: https://osmfoundation.org/wiki/Licence/Attribution_Guidelines

    I see the attribution text is displayed on http://trails.tchncs.de/ but not on https://demo.wanderer.to/ so I don’t know what’s going on.

    The basemap display on the demo website uses the tile server from openstreeetmap.org. This is very discouraged, and also can give bad experience to users. The tiles on osm.org are raster tiles, they are regenerated automatically after a change in the map data, they are aimed as a tool for map contributors, not end users. You can read more about this here: https://operations.osmfoundation.org/policies/tiles/

    There is a new totally free maplibre compatible vector tile provider, which uses the same map data, I recommend to switch to OpenFreeMap. Users can also self host OpenFreeMap, so some really privacy minded users could totally self host the full project this way.




  • External 80 to internal 80 and external 443 to internal 443

    With this config you don’t have to deal with ports later, as http is 80, https is 443 by default.

    If you run some container on port 81, you have to deal with that in the reverse proxy, not in the router. E.g. redirect something.domian.tld to 192.168.0.103:81

    If you use docker check out nginxproxymanager, it has a very beginner friendly admin webui. You shouldn’t forward the admin ui’s port, you need to access it only from your lan.




  • infeeeee@lemmy.ziptoLinux@lemmy.mlJellyfin assistance
    link
    fedilink
    arrow-up
    9
    ·
    edit-2
    24 days ago

    Install docker, grab the official docker compose file, then docker compose up -d.

    Details: Look up how to install docker on elementary (I guess it’s sudo apt install docker), than you don’t have to care about the distro after that, docker works the same way everywhere. You can find countless tutorials on this, and they should work