

Putting Kali Linux, a Distro specifically for cybersecurity and hackers, anywhere near the “corporate” axis, could be considered a war crime in some places.


Putting Kali Linux, a Distro specifically for cybersecurity and hackers, anywhere near the “corporate” axis, could be considered a war crime in some places.


There’s a lot of options. There’s countless paid services that offer exactly that.
If you wanna build something yourself for free, you could probably set up a site accessible via HTTP on your server and create a script on your phone that pings it every 30 seconds or so. Afaik, termux has a termux-notification function that lets you send a notification.
Codewise, it would look somewhere like this I think:
#!/usr/bin/env bash
# Config
NOTIFY_TITLE="Server Alert"
NOTIFY_MESSAGE="Server returned a non‑200 status."
HOST="funnysite.com"
PORT=8080
PATH="/healtcheck"
URL="http://${HOST}:${PORT}${PATH}"
# Config
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "$URL")
if [[ "$HTTP_CODE" != "200" ]]; then
termux-notification -t "$NOTIFY_TITLE" -c "$NOTIFY_MESSAGE $HOST:$PORT"
fi
exit 0
Afaik, termux doesn’t ship the cron daemon, but you can install cronie or use an external task scheduler. There, just set to run the script every 60 seconds or so. Whatever you need.
I haven’t tested anything of this, but in my head, it sounds like it should work fine.


Because most people apparently don’t know the difference between a system manager and an operating system.
“Manual configuration is exhausting” my brother in christ that’s the whole fun of having a fucking computer


I don’t think there’s any irony in people trying to make money with their work. And I’d much much MUCH rather have them insert multiple sponsors in a video that I can just skip over than worry about ads and their constant tracking.


I’m never going to understand how people can be so addicted to a game that they would rather deal with ads and AI on OS level
Many people are overwhelmed by too much choice. It’s called “choice fatigue”. I think path of exile 1 massively overhauled the skill tree to be substantially smaller in the early game in order to not completely overwhelm new players.