oleid @programming.dev
Posts 0
Comments 5
Do people use git alternatives? 5 0
Afaik GitHub is for git only. While you can import existing git projects, pijul has its own web frontend called nest.
Reply
Do people use git alternatives? 1 0
Everything else is significantly inferior
Which ones did you try?
Reply
Do people use git alternatives? 13 0
There is pijul.
- Pijul's defining feature is its innovative algebra of patches model for version control, allowing changes to be applied in any order without creating conflicts, thus simplifying collaborative work.
- It efficiently handles branches and merges, with its patch theory often enabling it to automatically resolve conflicts, eliminating much of the headache typically associated with merge conflicts.
- Pijul is also free and open-source
Check this out: https://stackoverflow.blog/2023/05/23/for-those-who-just-dont-git-it-ep-573/
Reply
Anyone have suggestions for a good Rust template engine? 1 0
Check out these benchmarks. https://github.com/rosetta-rs/template-benchmarks-rs
Particularly the implementation of the benchmark for each crate.
Reply
Anyone have suggestions for a good Rust template engine? 2 0
When you say "best in class performance", do you have particular benchmarks in mind?
I only found this one: https://github.com/rosetta-rs/template-benchmarks-rs
Askama was neither fastest not slowest. Purely based on benchmarks sailfish seems to be interesting as well
Reply
Next