- 7 Posts
- 11 Comments
KissYagni@programming.devto
UMPC - Handheld and palmtop computing@programming.dev•Abxylute 3D One Brings 3D Without Glasses to PC Handhelds
1·3 months ago“Next-gen AI computing for seamless 3D Gaming”
What’s AI has anything to do with 3D ? Apart maybe for DLSS and Neural Radiance Field, AI has nearly no application in current 3D gaming. Stop putting AI into fucking everything just to look cool !
KissYagni@programming.devto
Programming@programming.dev•Don't make Clean Code harder to maintain, use the Rule of Three
601·3 months ago“Bad abstraction is worse than duplication”
Oh shit, thank you so much for this part ! I don’t even count number of time I had to face enthusiasts developers saying "These lines of code are very similar, let’s factorize them ! "
And that’s how MathManagerHelper class is born…
KissYagni@programming.devto
Programming@programming.dev•Let's Make Sure Github Doesn't Become the only Option - Edward Loveall
4·4 months agoI gave a try to jj. It’s fine for personal projects or small team and make the workflow a bit easier. No more “git add; git commit; git push” each time you do a modification. You just “jj git push” and everything will be automatically pushed.
However, the biggest criticism I have is that he doesn’t encourage to push every time. It really encourages you to keep your modif locally and push only to create a PR, and that’s not a good approach.
Even if you code is WIP, even if everything crash, you really should push your code to backup it. Who cares ? As long as it is not on master branch, it’s your own mess.
KissYagni@programming.devto
GitHub@programming.dev•Copilot generated commit messages on github.com is in public preview
31·5 months agoOk, fine, what’s the point of generating commit message based on what’s already inside the commit ?
Commit messages are supposed to give informations that are not in the modfied code. It’s supposed to be the “why” you did this, not the “what” you did !
KissYagni@programming.devto
Git@programming.dev•Worktrees: Git's best kept secret (and why you should use them)
3·5 months agoI never really understood the advantage of worktree over having just several clone of the repos on different folders.
Can someone explain me ? I should have missed smth.
It was usefull for me. Not everyone is a webdev 🙂
Exactly what I needed !
I recently moved my blog from wordpress to markdown based using pelican and codeberg and I was looking for hosting solution.
I just managed to deploy it to statichost (https://kissyagni-blog.statichost.eu/). I struggled a bit with DNS redirection but it seems to work now. Can anyone confirm ? https://kissyagni.com/
KissYagni@programming.devto
Linux@programming.dev•Fastfetch 2.48 System Information Tool Brings Fedora Variant Support
2·6 months agoYes, unfortunately, we don’t have time to learn everything, we have to choose. Sys engineer is a rabbit hole which is too deep for me, I prefer spending time on other things.
Currently, I’m into quantum computing. I’m configuring the uConsole so I can easily edit my blog on the go.
KissYagni@programming.devto
Linux@programming.dev•Fastfetch 2.48 System Information Tool Brings Fedora Variant Support
1·6 months agoNo, I have a uConsole on which I experiment various things: WM, kernel, tray bar, etc… So yes, when I want a quick and dirty solution to see if it work, I just ask mistralAI for a command. I have a rough idea of what’s going on, but I’m not a sys engineer and I don’t care about all the subtilities of using systemd, init.d, cron, xinit or whatever solution to run a driver at startup.
I don’t care about stability or integrity, as it’s just a toy and I just wipeout the system when it become too unstable 😉
KissYagni@programming.devto
Linux@programming.dev•Fastfetch 2.48 System Information Tool Brings Fedora Variant Support
1·6 months agoI’ve installed several windows managers, bash, kernel, etc… without really knowing what I’m doing. It help me quickly check on which config I am.





Everytine I’ve seen a pre-commit hook in my job, it was something that should have been in integration pipeline.
You should not run linter, test or any static analysis tool in a pre-commit (I’m looking at you husky 😡). Why ? Because:
It takes time. A commit should be instantaneous.
It may change the content of the commit or of the repos without explicite action of the developer.
The developper’s branch is the developper’s mess. He don’t have to respect any convention, any quality gate or any workflow on its branch. Quality gates should happen only when integrating into trunk.
I always commit and push on Friday afternoon before leaving as “WIP”, in case my computer crash during week end. I don’t want to address issues of a WIP job. I just want to backup my work.
I may commit several time per minute, and do a rebase latter. I don’t want to spend 2min each time waiting for eslint to parse the repos. I don’t want to fix styling because I now I will fix it later and rebase -i before pushing.
You can use custom pre-commit in your own workflow, but forcing all developer to have the same pre-commit is a bad idea.