

our hero! (Assuming the ratio keeps getting better)


our hero! (Assuming the ratio keeps getting better)


They don’t let you export smut? D:
But please nsfw flag this


I can’t speak for myself, but I’ve seen some children/young teenagers with ADHD being already too focused on what’s next. Or they go to the toilet with a handheld gaming console or smartphone to begin with, and never diverted their attention except for the bare minimum required when going to the toilet.
Made me laugh!
But why is my first thought that this is a critique is the military industrial complex 😅
✨ Presenting the next gen of the IDF Caterpillar D9 ✨
now with integrated lasers, pew pew!


I attune your family has human identifiable faces? Do you have a machine learning service container running? If so and if its enabled, it should just work. Otherwise, maybe try tweaking the parameters?


Right down the memory lane 😭❤️ Love to Razor 0x777, their style and dedication is unmatched


That’s a interesting approach. It kind of backdoors a lot of private communication efforts. I can’t even be sure, if disabling notifications for signal would avoid them from showing up in the database anyways


I haven’t tried it, but NTH on the SmartTube telegram chat recommended https://github.com/webosbrew/youtube-webos


I don’t use such terms, but I’ll try a possible explanation: There is indeed a certain tendency. Articles are mostly written by speakers of that language. For example English articles by English-spreading editors tend to be influenced by western ideology. If you’d look at, I dunno, Russian Wikipedia, I’d assume it’s a similar situation.
It’s known that there are indeed paid government agents editing Wikipedia. But even those that are not are influenced by the Zeitgeist, which itself is informed by state propaganda. So we don’t need to assume intentional malice.
Ideally, people complaining about Wikipedia would have the time and skill to improve it. But that’s easier said than done.


That’s a serious issue! But you can work around it using asynchronous communication: you may not see her/him/them anymore, and only communicate using letters. Send them a letter using the US Postal Service, and by the time of arrives, age will have inevitably closed the age gap.
note: this is not US centric advice, using the US postal service will add sufficient delay from/to anywhere in the world.


the post already links to a summary, but tl;dr
the state seeks to charge Meta for supporting grooming of minors, because adding chat encryption obstructed law enforcement. Criminalizing the design decision to add encryption might deter all companies.
Some of the most damaging evidence in both trials came from internal company documents where employees raised concerns about safety risks and discussed tradeoffs. […] the rational corporate response is to stop putting anything in writing. Stop doing risk assessments. Stop asking hard questions internally. […] That makes everyone less safe.


To be fair, he deserved it (at least once)


It’s fake. It’s based on this photo, the picture is the poster was uploaded on reddit a day after. There’s no other photos of this poster.


At work I use kubernetes and quite like that (upgrading containers without downtime FTE), but I didn’t bother trying to set up the infrastructure myself. Some argue, it’s not with the efford for self hosting, I dunno.
What I do like to use is Dockge, to keep docker but also keep your sanity. It even offers a single button for “docker compose pull”, which is great of you don’t have to many compose files / stacks. Combine with a simple shell script to batch pull/build all stacks in one go, plus some backup solution, and it’s actually nice to use and does all that I need. I love CLIs, but I’ve had situations where the GUI came in very handy.
#! /bin/bash
# note: this will update and START all dockge stacks, even if you stopped them before
shopt -s nullglob
for proj in /opt/dockge /opt/stacks/*/; do
echo "> $proj"
docker compose -f "$proj/compose.yaml" up --pull always --build --detach
echo ""
done
I guess some really don’t


As a new user, I’ll just say thank you
I haven’t tried any out-of-the-box solution or setup script, so I can’t talk about them. if you go diy or want to edit any solution to have internet access exclusively over VPN (or not at all otherwise), I can recommend gluetun. Other than that, I just have a simple docker compose file and a reverse proxy. I recommend not exposing it to the www, but to keep it only accessible in your local network, or tailscale, if your use case allows it. Note: if you set up https, you might be leaking your subdomains in permanent certificate transparency records.