© 2023 Hashnode
#go
To build software that generates domain names, you need to understand what a domain name is and what a good domain name should look like. What is a domain generator? A domain name generator is a softw…
Do not communicate by sharing memory; instead, share memory by communicating Overview Imagine you are preparing a dinner that includes multiple dishes, such as boiling pasta, sautéing vegetables, and…
Hey there! This blog is all about arrays in Golang. I've already made an intro kind of thing where I explained a little bit about the arrays of Golang. Now we'll dig a bit deep into arrays. Array An a…
Greetings! We're excited to announce that we've unveiled a brand-new cryptography course on Boot.dev. We're convinced that this new experience is truly one of a kind. If you want to learn cryptography…
Hey there! This blog is a continuation of the Learn Go series of my Go learnings. If you want to check out the part-1 then follow this link https://mohanj.hashnode.dev/learn-go Topics to be covered Co…
menyambung dari Session 1 sebelumnya, sekarang kita akan melanjutkan untuk materi docker. Image Tagging and Manajemen Container docker image bisa kita namai sesuai keinginan melalui flag -t $docker bu…
Go Setup Installing GoLang on your system Requires Three Steps: Downloading the installation files from the link. Installing the packages Verifying the GoLang installation by running programs Installing on Linux system: Extract the .t…
Hello World In Go, you have a main function that runs automatically. You create the main function by : Create a file that ends with .go: package main import "fmt" func main() { fmt.Println("…
Golang, or Go, is a powerful programming language that has gained popularity in recent years due to its simplicity, efficiency, and scalability. One of the unique features of Go is its built-in suppor…
Hey folks! This is the first tutorial in our golang tutorial series. In this blog, we will have an introduction and will create a basic hello world program. Let's get started! Introduction Go was deve…