• GoLang - Tutorial

    How to Create an Empty Array in Golang (With Examples)

    Learn how to create an empty array in Golang using different methods. Understand the difference between arrays and slices with practical examples and best practices. In Golang (Go), arrays are one of the most fundamental data structures in any programming language, and Go (or Golang) is no exception. Understanding how to create and manage arrays efficiently is key to writing performant Go code. In this post, we’ll explore several ways to create an empty array in Go, discuss how arrays differ from slices, and review some best practices for using them. What Is an Array in Golang? An array in…

  • Programming - Technology Trends

    History of Go Programming Language

    Discover the history of Go (Golang). Learn how Rob Pike, Ken Thompson, and Robert Griesemer created it at Google to solve complexity, and see how goroutines and simplicity led to its rise. Go, also known as Golang, is a statically typed, compiled programming language designed for simplicity, efficiency, and scalability. Known for its high performance and ease of use in concurrent programming, Go has become a popular choice for cloud computing, DevOps tools, and modern web applications. Understanding its history helps developers appreciate its design philosophy and evolution in the software landscape. History of Go: Origins and Motivation Go was…

  • GoLang - Tutorial

    How to Add Number of Days to Current Date in Golang

    Learn how to add number of days to current date in Go using the time package. Step-by-step example with code snippet and explanation. Perfect for Go developers on Linux, Windows, and macOS. Working with dates and time in Go (Golang) is a common task in software development — especially for handling schedules, deadlines, logs, and report generation. If you’re looking to add a specific number of days to the current date in Go, this guide will show you a simple and efficient way to do it using the time package. Why You Need to Manipulate Dates in Go? In real-world…

  • Tutorial - GoLang

    How to Write a ‘Hello World’ Program in GoLang

    If you’re exploring Go (Golang) for building web applications, you’ve probably heard about Fiber one of the fastest web frameworks for Go, inspired by Express.js. In this tutorial, you’ll learn how to create Go module and build a simple “Hello World” web service using Fiber on an Ubuntu system. What Is Fiber? Fiber is a lightweight, fast, and expressive web framework built on top of Fasthttp, which makes it one of the most efficient frameworks in the Go ecosystem. It is ideal for developing REST APIs, microservices, and production-grade web applications. Why Use Fiber for Go Web Services Step 1:…