Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Run Shell Command in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on Security
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
General Tips
- Proxy is not as secure as VPN.
Websites for Checking Vulnerabilities and Data Breaches
Shodan - Search Engine for the Internet of Everything
NATIONAL VULNERABILITY DATABASE
http://vulnhub.com/
https …
Useful Golang Packages
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Data Structure
- github.com/deckarep/golang-set provides a hashset implementation (which is missing in the Golang standard library) .
Database
- gorm.io/gorm is a fantastic ORM library for Golang, aims to …
Set in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
Golang does NOT have sets natively. github.com/deckarep/golang-set is a popular 3rd-party set implementation.
Map in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
- Please refer to Ordered Map in Golang for discussions on ordered maps in Golang.