Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
NeoVim: liblua5.1-luv.so.0 Not Found on Debian
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
liblua5.1-luv.so.0
is not present under /lib/x86_64-linux-gnu/
.
Manually make a symbolic link from
liblua5.1-luv.so.1.0.0
resolved the problem.
AI-first Programming Languages
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Mojo
Bend
https://github.com/HigherOrderCO/Bend
https://higherorderco.com/
References
Design Pattern and Productivity for Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
derive_more
derive_more
adds `#[derive(x)]
macros for more traits.
derive_builder
derive_builder
provides Rust macro to automatically implement the builder pattern for arbitrary structs.
A simple #[derive(Builder)]
will generate a FooBuilder …
Dev Tools for Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Online Tools
Rust Dev Tools
cargo-show-asm
cargo-show-asm is a cargo subcommand showing the assembly, LLVM-IR and MIR generated for Rust code …