Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The package main
tells the Go compiler that
the package should compile as an executable program instead of a shared library.
The main
function in the main
package is the entry point of the program.
Strings in Golang Are UTF-8
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!