Denishdenish.hashnode.dev·Nov 15, 2024Chapter 2: Loops and Strings in Go – Creating Brilliant Code with Style 🚀Welcome back, Go explorers! Ready to dive deeper into Go? So, it is time for our next chapter of Go programming. Today, we’re diving into two fundamental tools in coding: loops and strings. These might sound a bit trivial but these are the real big p...Discuss·34 readsGitHub
Ashwin Gopalsamyashwingopalsamy.hashnode.dev·Nov 7, 2024Understanding Go’s Constants: More Flexible Than They SeemWhen I first got into Go, I thought constants were simple and limited—just fixed values, nothing fancy. But as I delve deeper, I find they're quite versatile. Yes, they're fixed values, but Go handles them in ways that are both flexible and efficient...DiscussGo Programming Languagegolang
Shivam DubeyforGo Tutorialgo-tutorial.hashnode.dev·Nov 5, 2024Getting Started with Go: Your First Steps in Writing, Running, and Building ProgramsWelcome to the world of Go programming language, also known as Golang! If you are new to Go, this guide is perfect for you. We’ll walk you through creating a simple "Hello, World!" program, explain each line of code, and show you how to run and build...Discussgoprogramming
Shainil P Scodeshaine.hashnode.dev·Oct 31, 2024Exploring Web Scraping in Go: A Personal ExperienceWell if you search for web scraping in go, you can get tons of result in the Google. Why should you read mine you may ask ? well the answer is i don’t know, well this blog isn’t about a tutorial on web scraping with go. This is my personal experience...Discuss·1 like·28 readsGo Language
Denishdenish.hashnode.dev·Oct 29, 2024Chapter 1: Embarking on Your Go Programming Adventure 🚀Hello, hello, coding partners! ✨ Welcome to this weekend’s picnic if you are a coding beginner or just interested in expanding your skills. Today, we’re going to start with the very fundamental of Go that you should know. This amazing language is so ...Discuss·39 readsGo Language
Enock Omondidevenock.hashnode.dev·Oct 25, 2024Understanding Basic Types in Go: A Comprehensive GuideIntro Go provides a rich set of basic types that form the foundation of its type system. Let's explore each category in detail with practical examples. Numeric Types Integers Go offers both signed and unsigned integers of various sizes: // Signed int...Discuss·26 readsGo Language
Syed Shazeedul Islamblog.shazeedul.dev·Oct 22, 2024A Beginner's Guide to Golang: An IntroductionWhat is Go? Go is a statically typed, open-source, compiled programming language. We are known for greater efficiency in speed, performance, and usability. The above brief introduction may not be straightforward. So let's break down the definition a ...DiscussProgramminggolang
Mide Dicksonblog.withmide.com·Oct 21, 2024Val-Matching Application 2024 Edition: How I ruined Valentine’s Day For One Thousand PeopleThere was a skill issue… Love is a strong emotion. So strong, it is capable of making you go blind.No, I am not only referring to the blindness of your lovers’ flaws. I mean, it can also make you blind to some silly errors in your codebase. This is t...Discuss·1 likeGo
Nguyen Van Tuantuannguyenhust.hashnode.dev·Oct 10, 2024Two pointer with GolangWrite a function that reverses a string. The input string is given as an array of characters s. You must do this by modifying the input array in-place with O(1) extra memory. Example 1: Input: s = ["h","e","l","l","o"] Output: ["o","l","l","e","h"] ...DiscussBasic algorithmstwo pointers
Rajiv Ranjan Singhiamrajiv.hashnode.dev·Sep 28, 2024Profiling WebAssembly with pprof and wzprofIn modern software engineering, profiling is a critical practice for understanding and optimizing the performance of applications. While languages like Go have powerful built-in tools like pprof, WebAssembly introduces a new realm of cross-platform e...DiscussWebAssembly