Unlock the Power of Windows Keyboard Shortcuts: The Ultimate Cheatsheet

  • 25 April 2023
  • ADM

Discover the most useful Windows keyboard shortcuts to save time and boost productivity. Master system, text editing, and web browsing shortcuts with this comprehensive guide.


How to iterate over a Map in Golang

  • 16 November 2020
  • ADM

How to iterate over a Map in Golang using the for range loop statement.


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.


Switch case statements in Golang

  • 20 April 2020
  • ADM

The switch statement is an easier way to have a sequence of if-else statements. In Golang you don't need to have break at the end of each case, it breaks implicitly. Also the golang switch statement work on values of any type.