Oh look, its my favorite database !
Im on the fedi doin fedi things.
- 39 Posts
- 179 Comments
mesa@piefed.socialto
Comic Strips@lemmy.world•From The Addams Family Drawn and Quartered by Charles AddamsEnglish
11·11 days agoThis is awesome thanks!
Appreciate you!
mesa@piefed.socialOPto
Programming@programming.dev•GitHub Actions Is Slowly Killing Your Engineering Team - Ian DuncanEnglish
1·17 days agoYep. Ill agree to that lol.
mesa@piefed.socialto
Programmer Humor@programming.dev•Github, the first enterprise cloud solution to reach zero nines reliabilityEnglish
45·24 days agoCloudflare has been pretty bad too lately. Its like the big companies are not even trying anymore. And if a real war broke out…their facilities are all centralized and VERY easy to target. Keeps me up at night sometimes since a vast majority of services at work are all on central servers.
In theory the internet self corrects. But in practice, if AWS/Cloudflare/MS/etc…goes down, a LOT of other services you dont even know about are effected. Last AWS issue took down Azure as well as people were scrambling to get servers back up and running (among other things).
mesa@piefed.socialto
Gaming@beehaw.org•StarCraft-Inspired RTS From Former Blizzard Devs Losing Online Multiplayer Because Server Partner Was Bought By AI Company - Aftermath (Nathan Grayson)English
4·24 days agoIts not the best in my opinion. The graphics are not the best and the single player is pretty boring. But its free so give it a shot.
mesa@piefed.socialOPto
Programming@programming.dev•Copilot is now injecting ads into GitHub pull requests. It's a disaster.English
3·27 days agoHow did you get the CI working in codeberg? last time I checked, you had to get permission to do so(?). I would love to switch when I have time.
mesa@piefed.socialOPto
Programming@programming.dev•Copilot is now injecting ads into GitHub pull requests. It's a disaster.English
26·27 days agoI have a library that has over 2 Million downloads in pip. How do you switch from github to codeberg (or any other git)? I just dont want to break things for everyone :)
mesa@piefed.socialto
Comic Strips@lemmy.world•META POST: MOTION TO MAKE A RULE THAT CROPPING THE ARTIST'S SIGNATURE IS AGAINST THE RULESEnglish
7·27 days agoI like it.
mesa@piefed.socialOPto
Programming@programming.dev•Copilot is now injecting ads into GitHub pull requests. It's a disaster.English
6·27 days agoYeah I like it quite a bit.
mesa@piefed.socialOPto
Programming@programming.dev•GitHub Actions Is Slowly Killing Your Engineering Team - Ian DuncanEnglish
1·29 days agoBash that can do the same job regardless of ci tools is underrated. I likevthat setup too because if your tesm eber needs to run a job/deploy/ect they can with the same exact processes the ci employs.
mesa@piefed.socialOPto
Programming@programming.dev•GitHub Actions Is Slowly Killing Your Engineering Team - Ian DuncanEnglish
10·30 days agoIm not sure about the CI solution they are recommending, but I do agree there are some sharp edges to GH Actions. Its not the greatest at logs and had hidden issues all over the place.
Looks like its not loading properly. Im seeing it on piefed without issues:

but on the original source:

mesa@piefed.socialto
Programming@programming.dev•Looking for good software architecture resources!English
2·1 month agoHope you enjoy!
I like both because, while they have definitive examples with code, they make the lessons the main part of the chapters. And they go over some VERY real world examples. They feel more “real” than theoretical books that I have seen. And as a software dev of 20 years, its the real examples that get me.
mesa@piefed.socialto
Programming@programming.dev•Looking for good software architecture resources!English
7·1 month ago"Build APIs You Won’t Hate: Everyone and their dog wants an API, so you should probably learn how to build them "
Great book, if a bit dated on the coding examples. It goes over common issues with APIs that I have seen play out.
“Working Effectively with Legacy Code” - Excellent book that goes over what to do in plain english when you got stuck with legacy code.
mesa@piefed.socialto
Programming@programming.dev•Dealing with YOLO Vibelord colleaguesEnglish
2·2 months agoIt helps! Ive seen it with two jobs completely change the culture around code review.
- Instead of you/team lead being the bad guy, its now the code/process.
- Code becomes more stable and releases actually become more frequent.
- If something goes wrong, your VM/docker/box/etc… can just be re-spun up by the same process.
- Easier to onboard since the same build process is in the CI. And is constantly being used rather than relying on the README (that may not have been updated in a while).
Mind you its not perfect of course. You can still “Vibe” test and/or remove tests that dont work. And make the project more brittle. Or go overboard with lint rules (I actually had to break up a fight with that one). But its much better than the old process of merge and pray.
mesa@piefed.socialto
Programming@programming.dev•Dealing with YOLO Vibelord colleaguesEnglish
3·2 months agoMake ci/cd part of the process. It stops a lot of people who push huge unmaintanable changes.
If it doesent pass the tests and cant build then it stops them from merging.













Good idea.