Go
July 28, 2023

Memory Management in Go: Best Practices and Techniques

Memory management is a critical aspect of any programming language, and Go, being a modern and efficient language, has its own memory management mechanisms. Understanding how memory is allocated, used, and deallocated in Go is essential for writing performant and scalable applications. In this article, we will delve into the memory management techniques used in […]

Go
July 28, 2023

Getting Started with Go: An Introduction to the Go Programming Language

Go, also known as Golang, is a modern programming language developed by Google that has gained significant popularity in recent years. Designed with simplicity, performance, and concurrency in mind, Go provides a powerful and efficient toolset for building robust and scalable applications. In this introduction, we will explore the key features and principles of the […]

Go
July 18, 2023

How to Create a CLI in Golang

TL;DR Some developers like to read and make sense of the code. So if you are that kind of developer then you can have a look at my repository on GitHub: https://github.com/ufukguler/spotify-go-cli Since I’m the kind of developer I just mentioned, I’ll keep it short and straightforward. Let’s Get Started First of all; start a […]