Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Unicode¶
Tips on crosvm
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
crosvm is a virtual machine monitor (VMM) implemented in Rust with a focus on simplicity, security, and speed.
Hands on the filepath Library in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Install the Latest Version of Software on Ubuntu
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Using PPA
Using snap
The snap version of a software is usually more up-to-date
than the version installed using apt-get
.
For example,
NevoVim (installed using apt-get
) on Ubuntu 20.04 is …
Send and Sync in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
Send
andSync
are 2 thread-safty related marker traits in Rust.A type is
Send
if and only if it can be transferred across thread boundaries. A type isSync
if and only if&T