yaroto98
@yaroto98@lemmy.world
- Comment on The FCC Just Banned the Sale of New Wi-Router Models Made Outside US 12 hours ago:
I wonder if this has anything to do with them clawing back WiFi7 spectrum for resale.
- Comment on Now this is an interesting question. What sound would you like it to make? 4 days ago:
That sound a pump shotgun makes.
Chi-chick.
- Comment on Firefox 149 adds built-in free VPN with 50GB monthly data 5 days ago:
Yep!
- Comment on Bet you wish you had one of these in your car 5 days ago:
Non smoker? Free coin pouch!
- Comment on TrueNAS build system going closed source 2 weeks ago:
Always blaming security bullshit. I anxiously await a community fork.
- Comment on What is Radicale and how do I use it? 2 weeks ago:
It’s how you can copy/backup/sync calendar and contacts.
on my phone I installed davx3 which does the copying over to my radicale instance on my server. Then my server backs up my calendar and contacts.
When I get a new phone I can sync all of it over easily. Bonus points, google doesn’t have that data.
- Comment on Popular self-hosting services worth running 2 weeks ago:
You can go semi-advanced mode by using regex to ignore certain line changes. Some sites require you to go super-advanced mode by using playwright running in a headless-v2 container rather than just plain text mode.
It’s nice being able to see the history of changes. Especially when there’s multiple rapidfire changes.
- Comment on SelfHosting Guilty Pleasure(s) 2 weeks ago:
Maybe it’s a pretty graph/reports thing? I enjoy looking at the pihole dashboard and reviewing top blocked domains. I even look at the top allowed domains and add some to the blacklist.
- Comment on Popular self-hosting services worth running 2 weeks ago:
Recently discovered changedetection.io. It nicely filled the need I had. I have it watching a few static forum posts for updates that are communicated that way.
- Comment on Windows 12 Reportedly Set for Release This Year as a Fully Modular, Subscription-Based, AI-Focused OS 2 weeks ago:
Does that prevent Windows just ninja installing it in a random update?
- Comment on Windows 12 Reportedly Set for Release This Year as a Fully Modular, Subscription-Based, AI-Focused OS 2 weeks ago:
Windows 12 could be released as early as this year and will be a modular OS, meaning users will have the option to add or remove features, aiming to provide more flexibility.
Does this mean I can remove the AI? /s
- Comment on Man accidentally gains control of 7,000 robot vacuums 4 weeks ago:
I have a few! They’re, just not, you know, allowed to connect to the internet…
- Comment on Matrix messaging gaining ground in government IT 5 weeks ago:
Oh, is that why everyone hates matrix so much? I’ve been rocking it for years for me and my wife to communicate. It’s been pretty solid. Calls/video calls are hit and miss, but the chat has been great. I’ve never federated it. Account creation is locked down, local auth, etc.
- Comment on Follow the rules! 1 month ago:
As former QA I also agree with this chart.
- Comment on which library for a selfhosted simple matrix bot? 1 month ago:
I’m not sure about bots, but if you don’t shy away from python, I just use the requests library:
homeserver_url = “XXX”
access_token = “XXX”
room_id = “!XXX”
url = f{homeserver_url}/_matrix/client/r0/rooms/{room_id}/send/m.room.message"headers = {“Authorization”: f"Bearer {access_token}",“Content-Type”: “application/json”,}
data = `“msgtype”: “m.text”,“body”: “Question of the day!”,}
response = requests.post(url, headers=headers, data=json.dumps(data))
- Comment on YSK facts about renewable vs fossil, and more 1 month ago:
Was about to watch it, then read “Please watch til the end. I guarantee you will not regret it.”
If I had a nickle fot every time I’ve been promised that, and regretted it, I’d be a rich man.
- Comment on How long does it take for pregnancy to become noticeable? 1 month ago:
Depends on the girl and the number of babies you’ve had. If you’re on your 4th baby people will be able to tell sooner than your first.
Generally it’s unnoticeable for everyone in the first trimester. Second trimester is probably pretty safe too, this is when you might start looking a little fat by the end, but not really pregnant. Third trimester is when the majority of the weight is gained, and the baby grows the fastest. In the last month of the third trimester the baby gains like a pound per week.
- Comment on Looking for job listing internet tool submitted to Lemmy about 6 months ago 1 month ago:
I don’t think this is it, but maybe?
- Comment on Why do you need a launcher? (asking older gamers actually) 1 month ago:
Depending on how you make the game some launchers can make sense. You can set disolay options before launching the game. Back in ye olden times some games would launch by default in a set resolution which often made changing that in-game difficult as it would be off screen. Also makes your first time launching it a better experience than some low-res garbage. Also, without a platform like steam they can handle updates.
That being said, I don’t think most modern games need those functions. Graphics engines are pretty good at getting screen resolution from your os (not perfect). And platforms handle patches and updates.
- Comment on Im stupid but have money 1 month ago:
You interested in home improvement? Buy the shitty flat, slowly fix it up the way you like, and if you ever decide to sell, it’ll likely be worth a little more.
- Comment on PC game recommendation for my partner and I 1 month ago:
It takes two split fiction
These two were the top two favs of my wife and I last year. Played it takes two on our steam decks, and split fiction on our PCs. One of them is older and handled it great. Both pcs run linux.
- Comment on Finished Dying Light: The Beast, it was a good game. 2 months ago:
I will admit to enjoying splatting zombies as I drive through them. If they brought the parquor/fighting challenges back, I’d probably seek out the driving/splatting challenge.
- Comment on Finished Dying Light: The Beast, it was a good game. 2 months ago:
I agree with the truck mechanic. The map would have been too big without them. I also would have been cool with a fast travel mechanic from one unlocked safe zone to another.
My biggest complaint was arrow retrieval. It’s not just me, but it’s either bugged or only working worse than DL1. Arrow retrieval for me is 1 in 20. I loved DL1 bow/arrows. I’d run around and gather a big group, jump up somewhere high and rain down headshots, and retrieve most if my spent arrows.
- Comment on 2 months ago:
Yep, I think the only thing github actions has over jenkins is built in versioning. I wish in jenkins I could edit a pipeline and easily roll it back. Or even better have tags so if I break something the team can just use the previous tag while I figure it out.
- Comment on 2 months ago:
And the Actions in the marketplace aren’t?
My employers have only allowed a very small subset of each. It’s super frustrating having to reinvent the wheel constantly.
- Comment on 2 months ago:
You can install the github actions runner locally and use it, however all that does is eat your cpu cycles and prevent them from charging you. It doesn’t help you debug that blackbox at all.
- Comment on 2 months ago:
Not saying it’s perfect, but every job I’ve been at they’re migrating away from Jenkins. And they never have a reason to do so other than shiny new toy. Jenkins has it’s own problems, but I personally think it’s litterally decades ahead of github actions.
I do like runners better than the default jenkins run baremetal on the server, however the runners are too blackbox. I wish there was a debug toggle on runners. Pause at step, then provide a console into the runner. Some runs litterally take hours, so adding some debug output, and rerunning makes troubleshooting tedious.
- Comment on 2 months ago:
Huh, I was expecting more. There’s so much to hate with github actions!
- Sometimes you can pass a list, or boolean, but for composite actions you can only pass strings.
- Open bugs that github actions just doesn’t care to fix (I’ve run across about 3). Most recently, concurrency flag cancel_in_progress doesn’t work, and they aren’t fixing it.
- variables often not accessable until next step.
- API is slow to update. Running jobs querying themselfs won’t see themselves as running 50% of the time
- Inability to easily pass vars from one job to another. (output in step, output from job, needs, call) it’s 4 lines of code to get a single var accessable in another job.
- UI doesn’t show startup errors. Depending on the error if you make a dumb syntax error in the workflow file, the UI will just say failed to startup. Won’t tell you what happened, won’t even link it to your PR which kicked it off, you have to go hunting for it.
- Workflow Dispatch is a joke. Can’t run it in a branch, no dynamic inputs, no banners.
- Can’t run schedules in branches.
- Inconsistant Event Data labels and locations across triggers. Want to get the head sha? It’s in a different place for each trigger, same for so many things.
- Merge Queues have the worst Event Data. They run off a autogenerated branch, and so they fill everything in with actor=mergequeuebot and garbage that is unhelpful. Good luck trying to get the head sha and look up the real info like say the branch name you’re merging in. You have to parse it out from a head_ref’s description or some junk.
- No dynamic run names. Well, you can, but you have to call the api and update it. It’s a hassle. Why not just let me toss in an @actor, or @branch in the run name? That way when a dev is looking for their instance of “Build Job” from a massive list, they can actually find theirs.
I could go on. I do CI/CD for work and gha is the tool they are having us use. I have no say in the matter.
- Comment on Guys there's a message in my Apple Jacks! 2 months ago:
You have an oompa-loompa dick?
- Comment on Pet Peeves with Games? 2 months ago:
Menu -> Exit Game -> Yes Scroll Down - > Exit Game -> Yes Scroll Down -> Exit to Desktop -> Yes Exit Launcher -> Yes
Jackbox is one of the worst offenders of this. Have to exit 4 times to actually exit the game.