Notes for Go and tools related.
2023-08-13 | #Words: 476
Using Go to get URL parses is easy, but Go has strict package manage. So recommend you use `goimports` tools or shortcut key Command + S to auto complete the package. Because now use `net/url` or `net/http`, but in future maybe change.
2023-07-12 | #Words: 1020
Surprisingly, Go provides an offline version (available in various languages). After downloading and installing, you can compile and run locally to view the results. You do not need to connect to the Internet to use a remote server, which improves efficiency and performance (details on this will be discussed separately later). There is a section on comparison.