Oleksandr VlasovforRoyalZSoftwareroyalzsoftware.de·Nov 26, 2024Building a Web Server in Go: A Beginner's GuideCreating a web server might sound complex, but it's simple with the Go standard library. In this article, we’ll walk through building a minimal web server from scratch. This server will: Respond to requests at the root URL ( / ) by displaying detail...1 likeGo Language
Sundaram Kumar Jhasundaram2023.hashnode.dev·Nov 12, 20242024 Beginner's Guide to Learning Go (Golang)A Journey into Modern Programming Excellence Welcome, fellow developers and coding enthusiasts! Whether you're a veteran programmer exploring new horizons or taking your first steps into the programming world, you're about to embark on an exciting jo...GO Beyondgolang
Sahal Imransahalimran.hashnode.dev·Nov 1, 2024Go: Control Structures, Shadowing, and Looping TechniquesIn my recent exploration of Go, I’ve delved into core concepts that underpin effective Go programming. Here’s a summary of what I’ve learned. Shadowing Variable shadowing occurs when a variable in an inner block has the same name as a variable in an ...learning
Sahal Imransahalimran.hashnode.dev·Oct 8, 2024My Journey into Go ProgrammingToday marked a significant milestone in my learning path as I dove into the world of Go programming. After installing and configuring my Go development environment, I’m excited to share what I learned, including how to build and run a simple "Hello, ...golang
Connect Infosoftconnectinfosofttechnologies.hashnode.dev·Sep 19, 2024How to connect the Golang app with MongoDB — Connect InfosoftIn today’s tech landscape, integrating databases with applications is a fundamental requirement. MongoDB, a popular NoSQL database, provides a flexible and scalable approach to data storage. For developers using Golang (Go), connecting your applicati...golang
Alexander Arlund Nørgaardblog.alexnorgaard.dk·Sep 11, 2024Building an Events Application: Choosing the right toolsSo much water has flowed under the bridge since my last blog post. Mind you that I have been working quite a lot on this project, I just didn't get around to write about it. So, let's pick up where we left off! In my last post I talked about some of ...26 readsgolang
Sachin Borsesachinborse.hashnode.dev·Sep 11, 2024🚀 Announcing goCreate: Your New Go-To Open Source CLI Tool for Go Project Scaffolding 🎉I am excited to introduce goCreate, my first-ever open-source CLI tool (pre-Launch) designed to automate the process of generating Go project structures with a variety of architectural patterns. As a developer who values efficiency, I created #goCrea...golang
Sachin Borsesachinborse.hashnode.dev·Sep 5, 2024Validating Struct Fields in Go: With and Without PackagesValidation is essential for ensuring that the data in your application meets specific criteria. Go offers multiple ways to validate struct fields—both with the help of external packages and through custom-built validation logic. In this article, we'l...2 likes·82 readsgolang
Sachin Borsesachinborse.hashnode.dev·Sep 2, 2024"How to Create and Publish Your Own Go Package"Have you ever wanted to create and publish your own Go package? Whether it’s to share your code with others or to reuse it across projects, publishing a package in Go is simple and can be a great learning experience. In this article, I'll walk you th...54 readsgolang
Gautham Krishnaitsdev24.hashnode.dev·Sep 1, 2024Get GOing with GolangWhat is Golang ? So Golang is a hot language these days. So what actually is Golang. Golang or Go is an open-source programming language developed by Google. The main highlights of golang is its simplicity , high efficiency and mainly strong concurre...Golang Tutorialsgolang