Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
- Cobra support groups of flags which appear together or are mutually exclusive. For detailed discussions, please refer to Flag Groups .
Quickly Start a Cobra-based project¶
Below is an example of creating a cobra-based project "icon".
Hands on the Standard Library HTTP in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Website for Making Profile Pictures
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Option vs Result in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
- Prefer
Option<&T>
to&Option<T>
as data APIs. for more discussions, please refer to Choose the Right Option .
Parse Command Line Arguments in Go
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
flag is a Go standard library for parsing command-line arguments. It is simple but limited. For more discussions, please refer to Parse Command Line Arguments Using Flag in Go .
Engine and Runtime for JavaScript
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
JavaScript Engines
v8
V8 is Google's open source JavaScript engine.
Starlight
Starlight is a JS engine in Rust which focuses on performance rather than ensuring 100% safety of JS runtime.