Maxat Akbanov's blog
Maxat Akbanov's blog
Follow
Follow
homeAWSkubernetesAnsiblebashSQLGo
Series

go


Articles in this series

How 'copy' built-in function works in Go

Sep 17, 20243 min read

The copy built-in function in Go is used to copy elements from one slice to another. It is particularly useful when you need to duplicate or copy...

How 'copy' built-in function works in Go

Stack Data Structure in Go

Sep 14, 20232 min read

A stack is a Last In First Out (LIFO) data structure, which means that the last element added to the stack will be the first one to be removed. Think...

Stack Data Structure in Go

Default Zero Values in Go

Sep 10, 20232 min read

In Go (also referred to as Golang), when you declare a variable without explicitly initializing it with a value, it is given a default value. This...

Default Zero Values in Go

Format specifiers in Go

Sep 10, 20234 min read

fmt.Printf in Go is a powerful function used to format and print data. It is similar to the printf function in languages like C, and it uses format...

Format specifiers in Go

Variable Declarations in Go

Sep 9, 20233 min read

Go provides several ways to declare variables, each suited for different situations. 1. Using the var Keyword Syntax: var variableName type var...

Variable Declarations in Go

Getting Started with Go Packages: A Hands-On Workshop

Sep 6, 20233 min read

In Go, a package is a way to organize and encapsulate code. Packages help you structure your application into reusable and maintainable components. Go...

Getting Started with Go Packages: A Hands-On Workshop