Barkatul MujauddinforKubesimplifykubesimplify.hashnode.net·May 27, 2022Let's Simplify Golang : Part 1Why Golang ? Golang is one of the most desired languages to learn, and it's also one of the most popular programming languages. It has been gaining immense popularity, and despite being just a decade old, Golang has made its mark. The use of Golang i...Saiyam Pathak and 8 others are discussing this9 people are discussing thisDiscuss·140 likes·8.9K readsgolang
Neenad Ingoleiamninad.hashnode.net·Mar 10, 2023FeaturedA Billion Dollar Go MistakeThis post is about a real problem I faced in my project. I merged two blog post into one so this is a bit longer post, please read till the end. Thank you! I hope after reading this post you will be able to avoid the same mistake we did in our proje...Discuss·53 likes·288 readsgolang
Lane WagnerforWeMakeDevskubeworld.hashnode.net·Jan 24, 2023If You're Learning Back-end, Don't Start with FrameworksLook, I don't hate frameworks. I'm not as starry-eyed as some other developers, especially when it comes to back-end frameworks, but I don't think there's anything wrong with using tools that make you productive. On the contrary, I'm always trying to...Discuss·51 likes·6.5K readsbackend
Arjun Narainarjunnarain.hashnode.net·Apr 24, 2023Master the Art of GoRoutine JugglingIntroduction Go (or Golang), the cool kid on the block in the world of programming languages has been turning heads with its simplicity, efficiency, and powerful concurrency model. When it comes to concurrent programming, scheduling – the art of orc...Discuss·10 likes·33 readsGo Deepgolang
Augustine Francis Enyitalentseeker.hashnode.net·Apr 23, 2023Why Develop with Go?Disclaimer: This won't be a comparative analysis of why you should use Go lang. over other languages. It's an article promoting the fun stuff about Golang. How to get started with it, and possibly how to have fun with it as much as I had. Where it al...Discuss·12 likes·39 readsgolang
Oloniyo Oreoluwagowithore.hashnode.net·Apr 24, 2023Go Up or Go DownWith Golang, we have a straightforward and efficient way of creating and managing web servers. The Golang standard library has an inbuilt support for handling HTTP requests and sending back responses. Also, Its efficient memory management and rich co...Discuss·27 readsgolang
Nitish Kumarnitishkr.hashnode.net·Apr 23, 2023Why Go is the Best Language Out There for Solving Real-World ProblemsThe best language is the one that is the perfect compromise between cost, time, and performance, and currently, Go fits this bill. In this article, we’ll discuss why Go is the best language for solving real-world problems. The Perfect Compromise When...Discuss·11 likes·29 readsgolang
Gaurav Shuklagauravshukla.hashnode.net·Apr 22, 2023Pointers In GolangPointers in Go are variables that store the memory address of another variable. They are denoted by the * symbol preceding the type of variable they will point to. For example, to declare a pointer to an integer variable, you would write var ptr *int...Gemma Black and 1 other are discussing this2 people are discussing thisDiscuss·11 likes·40 readsWeMakeDevs
Rajiv Ranjan Singhiamrajiv.hashnode.net·Apr 22, 2023A Comprehensive Guide to Learning Go Programming LanguageGo, an open-source programming language developed by Google is gaining popularity among programmers of all levels. Whether you’re a seasoned programmer or just starting, there are plenty of resources available to help you master this language. In thi...Discussgo
Gaurav Shuklagauravshukla.hashnode.net·Apr 21, 2023Slices in GolangWhat are slices in Golang? Slices are a lightweight data structure in Golang that provide a convenient way to work with arrays. Unlike arrays, which have a fixed size, slices can grow or shrink dynamically as elements are added or removed. Slices are...Discuss·10 likesWeMakeDevs
Andre Wongandrewong.hashnode.net·Apr 22, 2023IOT Home application Part 2setting up Go and initial files Golang can be installed through the official website. I will be using Go version 1.19. Once Go is installed, we can set up our backend project structure. Create our backend folder and initialize our backend workspace w...Discussgolang
Maheshwar Ligadefortechwastitechwasti.hashnode.net·Apr 19, 2023Error handling in go language!Introduction to Error Handling in Go Error handling is an essential part of software development in any programming language. In Go, error handling is a first-class citizen, and the language provides a robust set of tools and idioms for handling erro...Discuss·55 readsgo-languageGo Language
Alberto Lerdasecudevops.hashnode.net·Apr 18, 2023Docker simple logging managementThe moment you understand you need logs is when your application fails and you don't know what happened. The only way to prevent this is to think about logging from the beginning. To add logs to our application, we have to decide where to store them ...DiscussDocker