Fory forxforyforx.hashnode.dev·Sep 8, 2023Building a Rest API with GoAPI APIs, or Application Programming Interfaces, play a pivotal role in modern software development by enabling different software components, systems, and services to communicate and interact seamlessly. They serve as bridges that allow developers t...DiscussGo
Diwakardiwakarkashyap.hashnode.dev·Aug 30, 2023Concurrency in Go (Golang)Here's a simpler explanation of Go's concurrency features: Go (or Golang) makes it easy to do many things at once using goroutines, channels, and the select statement. Let's break it down step by step. 1. Goroutines: In Go, a goroutine is like a mini...Discuss·31 readsGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 29, 2023Interfaces and Embedding in Golang (Go)1. Interfaces in Go: 1.1. What are Interfaces? In Go, an interface is a type that specifies a set of method signatures. When a concrete type provides definitions for all the methods in an interface, it is said to implement the interface. 1.2. Definin...Discuss·10 likes·26 readsGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 27, 2023Complex Data Types in Golang (go)let's delve into the world of complex data types in Go: 1. Arrays: An array is a fixed-size collection of elements of the same type. Declaration: var arr [5]int Key Points: Fixed size: The size of an array is defined at declaration and cannot be ch...Discuss·10 likes·30 readsGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 26, 2023Packages and Import in Go (Golang)Packages and Import in Go: Imagine you're cooking, and you have different boxes of ingredients. Each box has a label and contains specific ingredients for a particular recipe. In the Go programming language, these boxes are like "packages." They grou...DiscussGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 23, 2023Step by Step process to learn GolangCertainly! Learning a new programming language like Go (often referred to as Golang) can be a rewarding experience. Go is known for its simplicity, performance, and robust tooling. Here's a step-by-step process to learn Go: Setup and Installation: ...Discuss·50 readsGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 22, 2023How to write my first program in GoWriting a "Hello World" program is a traditional way to start with a new programming language. Here's how you can write and run a "Hello World" program in Go: Installation If you haven't installed Go (often referred to as "Golang"), visit the offici...Discuss·10 likesGo Language
Diwakardiwakarkashyap.hashnode.dev·Aug 19, 2023Use of Golangtoday I start learning Golang so everyday I will write a blog Go, often referred to as Golang (because of its domain name golang.org), is a statically typed, compiled language developed by Google. It was designed to be simple, efficient, and reliabl...Discuss·10 likes·29 readsGo Language
oky saputraoky31.hashnode.dev·Aug 13, 2023Journey #2 - Create UserDari journey #1 saya telah membuat test sederhana untuk handlerCreateUser , tetapi test tersebut ketika dijalankan akan gagal, karena code yang di tulis di handlerCreateUser belum sesuai dengan kebutuhanya. oh iya ada hal yang lupa saya tambahkan di ...DiscussEducational Project (fake-market-place)Go
Sukma Rizkiinfoteknologiuma.hashnode.dev·Jul 24, 2023Penggunaan Mutex di GoMungkin anda bertanya cara menggunakan mutex di golang dan ini article yang mungkin memberi tahu anda cara menggunakannya. Sebelum itu mari kita berkenalan dengan mutex ,Mutex adalah Mutual Exclusion konsep dalam Bahasa pemograman Golang menghindari ...Discuss·27 readsGo Language