Tag Archives: golang

GO lang installation on FreeBSD

Working mostly on Windows 11 I found that cross compilation for FreeBSD does not work. I’ve got error message go: unsupported GOOS/GOARCH pair FreeBSD/AMD64 Good solution is actually install it on FreeBSD itself. So here are commands from FreeBSD terminal.

Posted in golang, workday | Tagged | Leave a comment

Go webserver on Apache

Go language allows create very easily webserver. Let’s consider a full working example of a simple web server at https://golang.org/doc/articles/wiki/ implemented in the file web8080.go: Code above could be one of the several web application implemented in go language. Each … Continue reading

Posted in golang, workday | Tagged , , | Leave a comment

Short decimal ASCII characters table

Seven bit characters ASCII table is with us long time. Once a while we need to know value of ASCII character, mostly out of the alphabet characters. For example on Windows it’s possible to type any character by pressing <ALT> … Continue reading

Posted in golang, workday | Tagged , | Leave a comment