HP Microserver Gen8 - Install ClearOS remotely

  • 31 October 2020
  • ADM

HP Microserver Gen8 - Install ClearOS on SSD Drive remotely. Step by step installation instructions.


Sending emails with Golang

  • 20 June 2020
  • ADM

To send an email directly from Golang you can use the package smtp which implements the Simple Mail Transfer Protocol (SMTP) as defined in RFC 5321. You also need a mail server, for this tutorial will use the Gmail mail server.


How to install Nginx on Ubuntu

  • 28 April 2020
  • ADM

Nginx is one of the most popular web servers in the world. It is also known to be more resource-friendly than Apache in most cases and can be used as a web server or as a reverse proxy.


Install and use firewalld on Ubuntu

  • 11 May 2020
  • ADM

Firewalld is one of the Linux firewall management tool and it is available on the in the Ubuntu's default repositories, therefore it is available to be installed from these repositories using the apt packaging system.


Strings functions in Golang

  • 19 April 2020
  • ADM

List of Golang string functions tested example and short description.

The strings package provides many useful string-related functions.


Base64 Decode in Golang

  • 15 April 2020
  • ADM

Golang programing language provides built-in suport for base64 decoding. The base64 functions are available into the encoding/base64 package. It provides implementations for both Standard, with or without padding and Filename safe Base64 decoding variant.