Link seems dead, wonder what it was on there lol
Zelaf
Sopuli lover
My interests are mainly music, instruments, tech, Linux and self hosting.
- 7 Posts
- 198 Comments
Maybe poor image compression?
And it is 6 now, I should def be asleep
I saw him typing in his pin code too. It was 3939.
I needed to see this right now. Thank you.
I have and I can whole heartedly say that using Windows 11 on the Deck is an awful experience no one should be attempting as a daily runner.
Zelaf@sopuli.xyzto
linuxmemes@lemmy.world•...wasn't it supposed to be other way around?
4·2 months agoWhere is this meme from?
Zelaf@sopuli.xyzto
Asklemmy@lemmy.ml•What are some of your favorite songs in a language you do not speak?
1·2 months agoHjerteknuser by Kaizers Orchestra but it’s a lil’ cheat since I understand a little Norwegian.
Hoppípolla by Sigur Rós this one sounds so so beautiful.
Jumalan terve by Markus Krunegård when he expanded to Finnish music I was a bit surprised to learn he speaks Finnish natively. So when he then released this album I was very excited. It’s Swedish styled pop but in Finnish.
If someone can read your journal logs and your kernel logs you’re already fucked.
Dmesg requires root. The journal requires group permission. That would mean they’re either hacked in remotely through either your account or through root. Or they have physical access. The latter which can be resolved using LUKS.
If someone is in remotely you’re already screwed as that can mean they can easily get autostarting scripts going or malware.
Zelaf@sopuli.xyzto
No Stupid Questions@lemmy.world•How do you search for "amateurish" song covers?
2·3 months agoI think making higher quality stuff has generally gotten more accessible to do but I what could be a good outlier might be view count and especially subscriber count to be somewhat low. But the longer someone keeps making music, the more they’re gonna yearn for quality.
Zelaf@sopuli.xyzto
Star Trek Social Club@startrek.website•Smart Home? Make It Smart Quarters With This LCARS DashboardEnglish
2·3 months agoI’d love to try and make one of those articulated screens that are shown in the ready room and quarters one day. Would be quite neat!
Zelaf@sopuli.xyzto
Star Trek Social Club@startrek.website•Smart Home? Make It Smart Quarters With This LCARS DashboardEnglish
9·3 months agoThere is this https://github.com/th3jesta/ha-lcars
Its been developed for some time. If you have a screen or a tablet it would definitely worth configuring a dashboard with that.
Zelaf@sopuli.xyzto
Technology@lemmy.ml•UK company sends factory with 1,000C furnace into space
3·4 months agoI’ll come to your material science course
I doooo and I still love it! I haven’t had the time to update to the latest version yet but it’s running very very nicely and has been a big help in my day to day!
Zelaf@sopuli.xyzto
Selfhosted@lemmy.world•How do you healthcheck your containers?English
2·4 months agoSo I’m also using Beszel and Ntfy to track my systems because it’s lightweight and very very easy. Coming from having tried Grafana and Prometheus and different TSDBs I felt like I was way better off.
I’ve been following Beszels development closely because it was previously missing features like container monitoring and systemd monitoring which I’m very thankful for them having added recently and I use containers as my primary way of hosting all my applications. The “Healthy” or “Unhealthy” status is directly reported by Docker itself and not something Beszel monitors directly so it has to be configured, either by the configuration in the Dockerfile of the container image or afterwards using the healthcheck options when running a container.
As some other comments mentioned, some containers do come with a healthcheck built in which makes docker auto-configure and enable that healthcheck endpoint. Some containers don’t have a healthcheck built into the container build file and some have documentation for adding a healthcheck to the docker run command or compose file. Some examples are Beszel and Ntfy themselves.
For containers that do not have a healthcheck built into the build file it is either documented how to add it to the compose or you have to figure out a way to do it yourself. For docker images that are built using a more standard image like Alpine, Debian or others you usually have something like curl installed. If the service you are running has a webpage going you can use that. Some programs have a healthcheck command built into it that you can also use.
As an example, the postgresql program has a built in healthcheck command you can use of that’ll check if the database is ready. The easiest way to add it would be to do
healthcheck: test: ["CMD", "pg_isready", "-U", "root", "-d", "db_name"] interval: 30s retries: 5 start_period: 60sThat’ll run the command inside the container
pg_isready -U root -d db_nameevery 30 seconds but not before 60 seconds to get the container up and running. Options can be changed depending on the speed of the system.Another example, for a container that has the curl program available inside it you can add something like
healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3000/"] interval: 1m retries: 3This will run
curl -f http://localhost:3000/every 1 minute. If either of the above examples would exit with an exit code higher than 0 Docker would report the container has unhealthy. Beszel will then read that data and report back that the container is not healthy. Some web apps have something along the line of a/healthendpoint you can use the curl command with as well.Unless the developer has spent some extra time on the healthchecks it is often just a basic way to see that the program inside the container is running. However, usually the container itself exits if the program it is running crashes or quits. So a healthcheck isn’t always necessary as the healthcheck will be that the container has abruptly stopped. This is why things like Uptime Kuma is something to consider running alongside Beszel because it can monitor when a web address or similar is down as well even if a container exits which as of now Beszel is still sadly lacking.
I would recommend you read up on the Docker Compose spec for healthchecks since with the other options you can also do things like timeouts and what not, combining that with whatever program you’re running with the healthcheck you can get very creative with it if you must.
My personal recommendation would be to sticking with Uptime Kuma regarding proper service availability healthchecks since it’ll be easier to configure and get an overview of things like slow load times of web pages and containers that have stopped while using Beszel to monitor performance and resource usage.
Zelaf@sopuli.xyzto
Lemmy Shitpost@lemmy.world•Lemmy users who say that Lemmy users are smarter than Reddit users
61·5 months agoI think they mean librarian? Or maybe the libyans






When CalyxOS went on their hiatus I decided to go with iodéOS. It’s French based and while it has some paid for features it is features you wouldn’t normally use in CalyxOS anyways so no loss for me.
The updates have been stable and good, lately however they pushed the update for the new Android version which require the bootloader to be unlocked so I have to wipe my phone sadly. But other than that they’ve been good until I can get CalyxOS going again.