Problem
After joining the network, there is no login screen.

Solution
- Visit address 192.168.1.1 on your browser. This connects to the local router and should present the login screen.
- Change the public DNS server to the default. Remove all entries.
Analysis
- The address 192.168.1.1 causes the browser to connect to the local router…
NewReader
func bytes.NewReader(b []byte) *bytes.Reader
NewReader returns a new Reader reading from b.
NewBufferString
func bytes.NewBufferString(s string) *bytes.Buffer
bytes.NewBufferString
on pkg.go.dev
NewBufferString creates and initializes a new Buffer using string s as its initial contents. It is intended to prepare a buffer to read an existing string.
Difference
// A…
I got go tool: no such tool "compile"
error after installing a local build of go.
The golang
source was in /usr/local
$ cd /usr/local$ ls
total 41240
drwxr-xr-x@ 19 root wheel 608B Oct…