Programming Leftovers
-
Machine Learning in Linux: Text generation web UI
Text generation web UI is software that offers a web user interface for a variety of large language models such as LLaMA, llama.cpp, GPT-J, OPT, and GALACTICA.
-
Week 9 report on porting Gentoo packages to modern C
Hello all, hope you’re doing well. This is my week 9 report for my
project “Porting Gentoo’s packages to modern C”Similar to last week, I picked up bugs at random and started submitting
patches. But this time I made sure to check out the upstream and send in
patches whenever possible, if it turned out to be difficult or I
couldn’t find upstream I made sure to make a note about it in the PR
either via commit message or through a separate comment. This way it’ll
help my Sam keep track of things and my progress. -
How to handle transactions in Node.js reference architecture
In many applications, completing more than a single update as an atomic unit (transaction) is needed to preserve data integrity. This installment of the ongoing Node.js Reference Architecture series covers the Node.js reference architecture team’s experience with integrating transactions into your application to satisfy this requirement.
-
Bash Basics Series #8: For, While and Until Loops
In the penultimate chapter of the Bash Basics series, learn about for, while and until loops.