Glowing Bear

Get certs ready

  • Get Letsencrypt with git clone https://github.com/letsencrypt/letsencrypt

  • Enter git directory, and ./letsencrypt-auto certonly -d <your domain>

  • Find your certs in cd /etc/letsencrypt/live/<your domain>, you will see the following

certs

  • You will need to combine privkey.pem and fullchain.pem, fire up the …

View comments.

more ...

A Tour Of Go - My First Step To Golang

Basic Types

  • bool(true/false)

  • string

  • int int8 int16 int32 int64 / and uint equivalences, uintptr

  • byte(alias for uint8)

  • rune(alias for int32, represents a Unicode code point)

  • float32 float64

  • complex64 complex128

Operators

  • := is used to set a new variable without declaring it, like this new_var := 1

  • << is used to …

View comments.

more ...