Fibbonachosfibbonachos.hashnode.dev·Sep 29, 2023A Beginner's Guide to GoThis article is intended for individuals who want to get started with Go, often known as Golang. Google developers Robert Griesemer, Rob Pike, and Ken Thompson created Go, a statically typed, compiled language. It is well-known for its simplicity, ef...Arjun and 5 others are discussing this6 people are discussing thisDiscuss·51 likes·75 readsgolangLet's GO 🐼 10
Nathan.LuforMicroFIRE's team blogganhua.wang·5 hours agoCommon mistakes with for loops in Go先來一段程式 func main() { done := make(chan bool) values := []string{"a", "b", "c"} for _, v := range values { /* 在每次loop中,此程式碼會啟動一個Goroutine來執行匿名函數。 該函數將當前的值v輸出出來,然後將true發送到done通道。 */ go func() { ...DiscussGo Language
Nathan.LuforBulldogBytesblog.ganhua.wang·5 hours agoCommon mistakes with for loops in Go先來一段程式 func main() { done := make(chan bool) values := []string{"a", "b", "c"} for _, v := range values { /* 在每次loop中,此程式碼會啟動一個Goroutine來執行匿名函數。 該函數將當前的值v輸出出來,然後將true發送到done通道。 */ go func() { ...DiscussGo Language
محمّدsuperhack.hashnode.dev·10 hours agoGo Errors are Joha's NailGo's error handling has been a subject of criticism numerous times. While I appreciate its simplicity of treating errors as values, no one denies that Rust's Result type is undoubtedly superior, but that ship has long sailed. Regardless, errors in Go...DiscussGo Language
Rishabh Kumar Bahukhandirishabhdev.hashnode.dev·Oct 3, 2023Learning Go BasicsGo Programming language Introduction Go a.ka. golang is a statically-typed compiled high-level programming language as you can find on google yourself. Now let's look at some other aspects of go. Go is a procedural language which means that we define...Discuss·10 likes·101 readsGolangGo Language
Fibbonachosfibbonachos.hashnode.dev·Oct 3, 2023Golang’s net/http Package: An In-Depth LookGo, commonly referred to as Golang, is notable for being a powerful, effective, and simple-to-use language for developing web applications. The net/http package is one of the essential ones that makes this feasible. This package offers a selection of...Vineet Bhasin and 1 other are discussing this2 people are discussing thisDiscuss·31 likes·41 readsGo Language🙏🙏 10
sourav ojhasourav-ojha.hashnode.dev·Oct 3, 2023Discovering the World of Go (Golang): OverviewWelcome to the world of Go (Golang)! In this beginner's guide, we will explore the basics of Go programming language and help you take your first steps into the exciting world of software development. Whether you're a curious 12-year-old or someone w...Discuss·10 likesGo Language
Keigo Kidamoonorange.hashnode.dev·Oct 3, 2023Write a Large Amount of Data to CSV File with Go (Golang)Introduction Have you ever found yourself in a situation where you needed to prepare a substantial amount of data for testing your code? If so, you're not alone. Working with large datasets is a common requirement in software development, and Go prov...Discuss·3 likesGo Language
Devang Tomardevangtomar.hashnode.dev·Oct 2, 2023Building a Simple Web Server with Go 🐭Are you a beginner eager to explore the world of web servers using the Go programming language? 🚀 In this comprehensive guide, I’ll take you on a journey to create a basic web server that not only serves static files but also handles essential HTTP ...Discuss·26 readsgolang
Nirdosh Gautamnirdoshgautam.dev·Oct 1, 2023A Guide to Effective Go DocumentationIn this post, we’ll explore Go documentation, tools and techniques to make it effective, and ways to share it. What should be documented? Any exported type, function, constant, and variable become visible for public use, so they should be well docume...Discuss·57 readsGo Language
Vic Shóstakkoddr.hashnode.dev·Oct 1, 2023🔥 A next-generation CLI tool for building amazing web apps in Go using htmx & hyperscriptThis CLI tool can easily build amazing web applications with Go on the backend, using htmx & hyperscript and the most popular atomic/utility-first CSS frameworks on the frontend. 🌟 GitHub repository: https://github.com/gowebly/gowebly 📚 Documentati...Discuss·29 readsGo Language