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.


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 use JSON Object in JavaScript

  • 06 February 2020
  • ADM

JSON is part of JavaScript programming language and is the main choise when it comes to data manipulation in JavaScript.

JSON is used from storing data, transfering data between client and server to configuring data.


How to read CSV file in Golang

  • 23 December 2019
  • ADM

How to read CSV file in Golang using reader from encoding/csv package. For this example we took an simple example of a CSV file containing three columns name, address and phone.


How to write CSV file in Golang

  • 21 December 2019
  • ADM

How to write CSV file in Golang using writer from encoding/csv package. For this example we took an simple example of a CSV file containing three columns name, address and phone.