BLOG

Latest Articles

bash: curl: command not found [SOLVED]

The most common causes for bash: curl: command not found error is either curl package is not installed or the PATH variable does not contain the path to curl …

By omercakmak · 3 min read · Tips and Tricks

Declare new error in Golang [SOLVED]

There are various ways to declare new error in golang such as using errors.New() function or Using Errorf() with fmt package to return an error, Define a custom …

By tuannguyen · 4 min read · GOLANG Solutions

Golang sha512 Hashing Examples

Use golang sha512 package to generate sha512 encrypted hash for text, string and files.

By tuannguyen · 3 min read · GO

Golang io.ReadCloser Examples

Golang io.ReadCloser interface is built out of an io.Reader and an io.Closer:

By tuannguyen · 4 min read · GO