Eskuero
I like sysadmin, scripting, manga and football.
- 63 Posts
- 281 Comments
EskueroAto
KDE@lemmy.kde.social•This October... KDE is turning 30 🎂! Join us for six months of celebrations, fun and activities🎉!
3·28 days agoI’m turning 30 in July. Been using KDE for only half of my life. 👴
They have been running for 2500 hours, last week ran a long SMART test on both and came out ok. Still one is significantly faster than the other.
The faster one has 19 heads while the slower one has 20 according to the FARM logs
Yes, it’s called
export HISTSIZE=10000000
EskueroAto
Selfhosted@lemmy.world•Axios JavaScript library has been compromised with malware in supply chain attackEnglish
2·1 month agoHow? If you got hit by this you are looking at restoring the system from a safe previous version.
And the compromised versions get pulled, not superseeded by a new release, so once you rebuild you would go back to a safe version…
EskueroAto
Selfhosted@lemmy.world•Axios JavaScript library has been compromised with malware in supply chain attackEnglish
11·1 month agoAs long as the bot is not allowed to automatically merge minor version bumps in libraries…
EskueroAto
Selfhosted@lemmy.world•Axios JavaScript library has been compromised with malware in supply chain attackEnglish
36·1 month agoYou can mitigate similar attacks by editing your .npmrc
min-release-age=7 # days ignore-scripts=true
EskueroAto
Linux@lemmy.ml•What is really likely to happen to you if you use an OS that doesn't comply with age verification laws.
41·2 months agoThat part of the speech is perfectly standalone and applies to many regimes outside the US
EskueroAto
Genshin Impact@lemmy.world•Have you seen Grand Master Varka, Miss Nicole? 👀 • Cre: @_mamaprofennnEnglish
2·2 months agogotta love some varkole
EskueroAto
Linux@lemmy.ml•What is really likely to happen to you if you use an OS that doesn't comply with age verification laws.
82·2 months agoEverytime somebody posts something complacent like this telling us not to worry I remember a piece of speech by Arnim Zola in the Winter Soldier movie.
"Hydra was founded with on belief that humanity could not be trusted with it’s own freedom.
What we did not realize is that if you try to take that freedom, they resist.
The war taught us much, humanity needed to surrender it’s freedom willingly.
[…]
For 70 years, Hydra have been secretly feeding crisis, reaping war. And when history did not cooperate, history was changed.
Hydra created a world so chaotic that humanity is finally ready to sacrifice it’s freedom, to gain it’s security"
EskueroAto
Free and Open Source Software@beehaw.org•TrueNAS build system going closed source
12·2 months agoSelf sign doesn’t defeat the purpose, you can add your own keys to your bios that you use to sign your kernel. I do that and have a secure booted Arch Linux installed.
Doesnt have a dashboard per-se for centralized administration. It has a web ui to manually create create/upload collections. I personally use it a very simplistic way and just reupload an updated .vcf file with all my contacts from time to time.
About user management, I dont know how you installed radicale but they have this docs https://radicale.org/v3.html#authentication
EskueroAto
Stable Diffusion@lemmy.dbzer0.com•The AI bubble bursting might be one of the best things for open source modelsEnglish
10·2 months agoWhat I’m looking forward is geetting the HDD cheap
They just need to push for thin clients that rely on cloud computing as the prices for consumer hardware make it not affordable to own your stronger hardware.
EskueroAto
Programmer Humor@programming.dev•AI slop repository with 8k stars on Github that doesn't even compile
39·2 months agoThis comment is so true 🚀🚀🚀
mb i was too busy running arch to watch it btw
But they are not running debian sid
EskueroAtodatahoarder@lemmy.ml•Western Digital Has No More HDD Capacity Left, as CEO Reveals Massive AI Deals; Brace Yourself For Price Surges Ahead!
5·3 months agoGlad I bought drives in december. As long as they dont break, should hold me easily into 2030
Yes I do. I cooked a small python script that runs at the end of every daily backup
import subprocess import json import os # Output directory OUTPUT_DIR = "/data/dockerimages" try: os.mkdir(OUTPUT_DIR) except: pass # Grab all the docker images. Each line a json string defining the image imagenes = subprocess.Popen(["docker", "images", "--format", "json"], stdout = subprocess.PIPE, stderr = subprocess.DEVNULL).communicate()[0].decode().split("\n") for imagen in imagenes[:-1]: datos = json.loads(imagen) # ID of the image to save imageid = datos["ID"] # Compose the output name like this # ghcr.io-immich-app-immich-machine-learning:release:2026-01-28:3c42f025fb7c.tar outputname = f"{datos["Repository"]}:{datos["Tag"]}:{datos["CreatedAt"].split(" ")[0]}:{imageid}.tar".replace("/", "-") # If the file already exists just skip it if not os.path.isfile(f"{OUTPUT_DIR}/{outputname}"): print(f"Saving {outputname}...") subprocess.run(["docker", "save", imageid, "-o", f"{OUTPUT_DIR}/{outputname}"]) else: print(f"Already exists {outputname}")





I live in spain so the main ISP is well provided with IPv4 blocks and have zero incentive to deploy IPv6 outside of mobile networks. So the IPv6 deployment here is like 3% and I don’t have access to it 🫠