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 …
Tips on asyncio in Python
async http client¶
Editing Shell Commands Using Vim
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- Bash supports both Vi mode and Emacs mode.
The default is Emacs mode.
You can turn on the Vim mode by
set -o vi
in.bashrc
.
export EDITOR=vim
A better …