All Posts
Introduction to Go Programming LanguageUnderstand basic syntax of Go by exampleGolangGoroutine and Channel Explainedwo of the key concepts in Go are Goroutines and Channels, which are used for concurrent programming and communication between Goroutines.GolangMethod Chaining in GoMethod chaining is a programming concept that allows developers to chain together multiple function calls into a single line of code. This programming technique is often used to simplify code, reduce the amount of lines required, and make the code more readableGolangMethods in Go (with Example)Methods are functions that are attached to a specific type. They are used to manipulate the values of that type and to provide an easy way to reuse code. In Go, methods are declared using the func keyword followed by the receiver type, which is the type the method will be attached to.GolangMultiple Return Values in GoOne of the key features of Go is its ability to return multiple values from a single function. This feature enables Go developers to write cleaner and more concise code, which can be more readable and easier to maintain.GolangSlice in GoA slice in Go is a data structure that provides a dynamic and flexible way of working with arrays.GolangVariables in Go (With example)In Golang, variables play a crucial role in holding data for processing. This article will explain the concept of variables in Golang, how to declare and initialize variables, and how to use them in programs.GolangBash Cheat Sheet - Master Bash ScriptingThis Bash cheat sheet will show you all useful bash commands that anyone can use for their reference.CheetSheetVim Cheat Sheet (Master Vim)This Vim cheat sheet will show you all useful vim commands that anyone can use for their reference.CheetSheetHow to check that a time value is a specific day of the week in Go?Snippet