motruck
@motruck@lemmy.zip
- Comment on ‘Pokémon Go’ players have been unknowingly training delivery robots 3 days ago:
Nothing is free and everything will be stored.
AI already knows who you are online only the few can see those results but you bet your ass they are making machine generated profiles of you to sell ads.
Ephemeral communication is only way forward.
- Comment on Claude Code deletes developers' production setup, including its database and snapshots — 2.5 years of records were nuked in an instant 1 week ago:
Ever hear of a backup?
- Comment on California introduces age verification law for all operating systems, including Linux and SteamOS — user age verified during OS account setup 2 weeks ago:
No matter how hard they try, you can’t legislate parenting.
- Comment on How "heavy" is self-hosting matrix really? 2 weeks ago:
Nothing requires kubetnetes. Can you scale with kubetnetes easier? Maybe, but then you’d have to learn kubetnetes. Even super scalers like Netflix ran for decades without kubetnetes and then for other reasons they moved. Self hosters only need kubetnetes if they want to learn it.
- Comment on Simple inexpensive cloud backup? 2 weeks ago:
By your parents a computer and put it on their network and back up locally and remotely on their system. Bonus run immich for them also.
I get all my back up redundancy but helping others host.
- Comment on I Spent a Year Replacing My Subscriptions by Self Hosting. Here’s How. 2 weeks ago:
Why not just straight wireguard?
- Comment on Sell your RAM, and quickly go from COD to the real world. 2 weeks ago:
Got any suggestion for actual bows? Might be fun to learn.
- Comment on Server randomly locked up. Trying to find out why 2 weeks ago:
Look at dmesg?
Look at the last boots:
journalctl -o short-precise -k -b -2
- Comment on Best reverse proxy with ACME to run in docker 2 weeks ago:
I run it in a container without problems. All you have you do is bind it to port 80 and 443. I prefer the container to running it directly within the host OS for ease of portability.
Also strongly recommend building it with support for DNS based validation. Using DNS validation you can have multiple instances running across the different servers you ha e to easily switch to or provide better local routing. For example please. I run one caddy frontend on a VPS that routes my traffic most of the time, but when I’m at home my DNS points me at a very instance that is running on my server on my home network avoiding the path of lit to the internet and back home. Using http based validation would require me to sync certs around.
- Comment on 3 weeks ago:
Alternative android OSes also not withstanding.
- Comment on Mike Hardaker accuses Reddit of holding organic posting ‘hostage’ unless he buys ads, shares email screenshot 3 weeks ago:
You mean a company that owns a platform is operating it only to make money? Shocking. You already were fooled once with the first reddit exodus. Now it is just shame on you for expecting things not to go this way.
- Comment on Don't we all hate this 3 weeks ago:
They do not get credit for facilitating your donation. This is a misunderstanding of how donating works based on when I looked it up after saying the same thing. They do it mainly to virtue signal.
- Comment on Womp womp womp. 3 weeks ago:
Yo dawg pardon my french but fuck that bitch. Stay strong and sorry someone played with your heart like that. Your example speaks volumes for your son.
- Comment on Tesla Robotaxis Reportedly Crashing at a Rate That's 4x Higher Than Humans 4 weeks ago:
Are people getto g wttlements who are involved in a crash sounds like a potential payday with obviously risky odds.
- Comment on Discord's Disturbing Ties to Global Surveillance | ID Verification, Palantir, & Thiel 4 weeks ago:
What surge in nice clients?
- Comment on This past week, Lemmy has gotten really good 4 weeks ago:
Bots vs people
- Comment on Elon Musk's xAI loses second cofounder in 48 hours 4 weeks ago:
Yes please. Heads better roll or the people better rise up or both. There is not the future we want.
- Comment on Western Digital Has No More HDD Capacity Left, as CEO Reveals Massive AI Deals; Brace Yourself For Price Surges Ahead! 4 weeks ago:
In other news grocery stores are out of tomatoes, because AI.
- Comment on Spotify says its best developers haven't written a line of code since December, thanks to AI 4 weeks ago:
They ate lying without a question.
- Comment on Google criticizes Europe's plan to adopt free software 4 weeks ago:
And googles transformation is complete marking the end to an idyllic era that has been barely hanging on.
- Comment on Why are people disconnecting or destroying their Ring cameras? 4 weeks ago:
Check out frigate.
- Comment on Vaultwarden security update Feb 10 2026 5 weeks ago:
Renovate? Hrmmmm
- Comment on Discord will require a face scan or ID for full access next month 5 weeks ago:
Matrix as adequate but not easy to set up. Their encryption dance is terrible and bites you eventually. However, the install is top notch if you have a server you can dedicate to it and are familiar with editing flatfiles and running commands. Literally all kinds of difficult addons enabled with a config option.
- Comment on How to Use Local IP for Services when at Home? 5 weeks ago:
Are you routing DNS over wireguard the whole time or do the DNS servers change when you go from public internet to your home network?
If you are using the same DNS servers i.e. always using DNS over wireguard then there isn’t really a lot you can do.
The way I do this is when I am on my home network I use the DNS on that network, i.e. the adguard instance I set up and also override DNS names with, when I am on some public internet i.e. via cellular, I use whatever DNS server they have. So on home network jellyfin.bob.com returns 192.168.8.3 (for example) and on the public internet jellyfin.bob.com will return 68.32.23.11 (i.e. my public IP address).
However that requires multiple DNS servers.
What is an example server where you’d like to do this (it may give us more options) and how is your DNS set up?
- Comment on How to Use Local IP for Services when at Home? 5 weeks ago:
Your home router knows nothing about your wireguard VPN unless it is also configured to be a peer in it. So in short no it will not recognize and route your connection locally unfortunately.
Are you using TLS here at all? Can you give me an example of how you access this on your phone when remote vs when local.
e. g. From my phone on cellular I go to Firefox and type in jelly.bob.com which resolves to my wireguard ip hitting the VM in the cloud that then using nginx as a reverse proxy to reach jellyfin over my network.
Remote network: jellyfin.bob.com Phone - > VM - > Home Server where Jellyfin is running
Is each hop is over wireguard i.e from phone to VM from VM to Home Server?
On the local network: jellyfin.bob.com Currently looks the same as the above and what youx like it to do with the same name is go: Phone->Home server
Even when wireguard is on, correct?
- Comment on How to Use Local IP for Services when at Home? 5 weeks ago:
DNS server you use from your home network retuns 192.168.1.20 for your service hosted at jellyfin.Bob.org
The DNS server you hit when publically looks up jellyfin.Bob.org and gets the IP from the nameserver you have set with your domain registrar often just theirs and you set this to your home WAN ip.
You have to configure both. I use opentofu / terraform to configure both all from the CLI. Any software like DNS that has a bunch of implementations that doesn’t have Open-Tofu support gets skipped and an alternative is found at this stage. You just can’t beat config as code for this type of set up.
You can also use NAT reflection which will effectively reroute the connection from within your network to your external IP to work on your local network.
I started with reflection and ended up going to the multiple DNS servers as it felt cleaner and I already was running Adguard so why not.
Both adguard and pihlle have opentofu modules.
- Comment on Alternatives to Mattermost 5 weeks ago:
I was using conversations and from what I understood the server handles syncing of history from clients that have all the history so of one disappears your history disappears. That is what played out in my tests.
- Comment on 'No One Should Have a Copyright on Vance Being Booed': Video From Olympics Blocked on X 5 weeks ago:
They don’t need doctored video to make that claim.
- Comment on 'No One Should Have a Copyright on Vance Being Booed': Video From Olympics Blocked on X 5 weeks ago:
Uh. Stop using TV. They fucked that platform already.
- Comment on Alternatives to Mattermost 1 month ago:
Yep. I tried xmmp over matrix and while was relatively solid and straightforward to configure the clients and lack of central history were too much of a step back so I went back to matrix.