- 1 Post
- 335 Comments
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Self-Host Weekly (17 April 2026)English
5·14 days agoall my back ups are what they should be
Are you sure? While the cloud backups may not affect you the exclusions might, afaict no one even knows what exactly is excluded.
From the link:
This annoyed me. Firstly I needed that folder and Backblaze had let me down. Secondly within the Backblaze preferences I could find no way to re-enable this. In fact looking at the list of exclusions I could find no mention of .git whatsoever.
Which strongly implies that there might be other important folders that aren’t backed up. (Without .git inside a git folder it is no longer a git repository)
I don’t use backblaze but from the outside it looks like they’re cutting costs by worsening the backups to reduce storage usage.
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Self-Host Weekly (17 April 2026)English
15·14 days agohttps://rareese.com/posts/backblaze
Backblaze quietly stopped backing up .git, mounted remote storage and maybe more without showing the user what they’ve stopped backing up?
Dread it. Run from it. Enshitification arrives all the same.
InnerScientist@lemmy.worldto
Technology@lemmy.world•‘I want to cancel’: YouTube Premium quietly hikes its US prices for the first time in three years, forcing many users to consider the unthinkableEnglish
21·20 days agoforcing many users to consider the unthinkable “Do I really need 300 subscriptions?”
InnerScientist@lemmy.worldto
Technology@lemmy.world•DRAM pricing is killing the hobbyist SBC market - Jeff GeerlingEnglish
4·28 days agoWell, normally I’d agree but in this case I’d guess that more people have watched the video than read the blog. That’s the order in which I stumbled on it too.
Edit: Also:
I’m working more with older SBCs and microcontrollers now, and I think that’s the direction many in the hobbyist space are going.
InnerScientist@lemmy.worldto
Technology@lemmy.world•DRAM pricing is killing the hobbyist SBC market - Jeff GeerlingEnglish
2·28 days agoIn the embedded video he talks about it from 4:40-5, then talks about microcontrollers and mentions used hardware (though says it’s also affected by price hike).
InnerScientist@lemmy.worldto
Technology@lemmy.world•DRAM pricing is killing the hobbyist SBC market - Jeff GeerlingEnglish
8·28 days agoThe thing that these complaints about RPi pricing complaints always seems to miss is that that was talked about in the blog.
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Jellyfin critical security update - This is not a jokeEnglish
6910·1 month agoUse a VPN, it’s not ideal but it’s secure.
When does your Server actually pull the repo though?
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•How do you capture things quickly across devices in a self-hosted setup?English
1·1 month agoI have linkwarden set up for this.
On Android I share to the linkwarden app to save, on pc i use the Firefox addon.
Sure it’s fragmented but I’m already used to doing things different between mobile and pc anyways.
InnerScientist@lemmy.worldto
Technology@lemmy.world•The FCC decided that all foreign-made consumer-grade Internet routers are prohibited from receiving FCC authorization and are therefore prohibited from being imported for use or sale in the US.English
27·1 month agodoesn’t cover ISP or commercial equipment
The foreign backdoors will stay for critical infrastructure
because all the other programs, protocol are working fine.
With the shown firewall configuration nothing but NTP should work? You’re dropping outgoing packets by default.
Update your nftables rulefile or use nft commands to update your firewall to the following:
# extract chain OUT { type filter hook output priority 0; policy drop; udp dport 123 accept limit rate 3/second log prefix "Nftables Blocked: OUT: " } chain IN { type filter hook input priority 0; policy drop; ct state established, related accept limit rate 3/second log prefix "Nftables Blocked: IN: " }Blocked pakets will show up in the kernel log (dmesg/journalcl)
If you want more information on why it is blocked then enable nftrace for those packets
nft add rule inet/ip/ip6 tablename OUT udp dport 123 meta nftrace set 1 nft add rule inet/ip/ip6 tablename IN udp dport 123 meta nftrace set 1 nft monitor traceOr
nft add rule inet/ip/ip6 tablename OUT meta nftrace set 1Or maybe even
nft add rule inet/ip/ip6 tablename PREROUTING udp dport 123 meta nftrace set 1Additionally you can use tcpdump -i <interface> to show network packets before they enter the firewall, there you should be able to tell what it’s a trying to do.
InnerScientist@lemmy.worldto
Linux@lemmy.ml•Systemd preparing to comply with age verification laws
92·1 month agoSuccessfully merging this pull request may close these issues.
None yet
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Your logging is probably downEnglish
3·2 months agoPro tip: If you’re using openwrt or other managed network components don’t forget to automatically back those up too. I almost had to reset my openwrt router and having to reconfigure that from scratch sucks.
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Your logging is probably downEnglish
6·2 months agoIf logging is down and there’s no one around to log it, is it really down?
InnerScientist@lemmy.worldto
Selfhosted@lemmy.world•Your logging is probably downEnglish
5·2 months agoThat won’t work in most cases, all https traffic isn’t cached unless you mitm https which is a bad idea and not worth it.
Only cache updates those are worth it and most have a caching server option.


I used dawarich but switched to geopulse because dawarich broke too often on updates. I only rarely use it but it works well enough.
So now you have three options that you can compare, good luck?