Tanmay SarkarforLearned to Sharetanmaysarkar.hashnode.net·Oct 21, 2022FeaturedBuilding a IMDB Web Scraper using GoWelcome all to my homage 🛖 Hi fellows, I have been learning about web scrapers these days and saw there is no many articles on Go itself on Hashnode and building a scraper with it is far away. So I thought about let's build a simple cli tool which w...Discuss·32 likes·515 readsGogolang
Shafaq Israilforshafaq-israil.hashnode.net·Oct 16, 2022Golang as a Backend!?Where speed and scalability are needed, Go is often opted. Particularly for high-performing concurrent services on the server side. Folks are also using it to build the server side of their mobile apps. What is Golang? Go is a statically typed, comp...Discuss·13 likes·154 readsgolang
Mfonobong Umondia (Bella)forGolang With Bellamfonobong.hashnode.net·Jan 7, 2023Purposeful Pivot: Why I Chose GolangAfter working in the design industry for over five years, I decided to pursue a career in Golang programming. Many people were surprised by this decision, and there were many negative comments and some positive ones. Before making the final decision,...Discuss·11 likes·143 readsgolang
Abhishek Singhforabhiisheksingh.hashnode.net·Apr 14, 2023A Comprehensive Golang Tutorial for Beginners and Experienced DevelopersIf you're a software developer looking to learn a new programming language, Golang (also known as Go) might be just what you need. Developed by Google in 2007, Golang has become increasingly popular in recent years due to its simplicity, efficiency, ...Discuss·1 like·59 readsgolang
Isaac MdzforIsaac Méndez Blogmdzcode.hashnode.net·Apr 11, 2023Variables, declaraciones y aclaracionesDicen que si no es por la razón, es por la fuerza. Y durante mucho tiempo le hice el quite a Golang... hasta que llegó lo inevitable. Y aquí estamos, guardando apuntes de Go, que espero les sirvan de igual modo. Diferencias entre = y := El símbolo = ...Discuss·1 like·26 readsGo Devgolang
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 11, 2023Go: CLI & REPLCLI stands for Command Line Interface, which is a type of user interface that allows users to interact with a computer or a software application by typing commands into a terminal or command prompt. The CLI is a powerful tool that developers and syst...Discuss·2 likesGo Languagegolang
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 10, 2023Go: concurrencyConcurrency in Go refers to the ability of a Go program to execute multiple tasks simultaneously, using goroutines and channels. Goroutines are lightweight threads of execution that are managed by the Go runtime, while channels are the primary means ...DiscussGo Languagegolang
Venkata Raviteja GullapudiforRaviteja'svenkataraviteja.hashnode.net·Apr 5, 2023Getting Started with Go Programming: Basic Conventions and Elementary Data TypesIn this article, we will explore some of the basic conventions and elementary data types in Go. Basic Conventions Filename Go source code is stored in .go files. Their filenames consist of lowercase-letters, like first.go. If the name consists of mul...DiscussGo LanguageGo Language
Neenad Ingoleforneenad ingoleiamninad.hashnode.net·Apr 3, 2023Preventing DB Connection Leaks in Golang: Lesson from a Billion Dollar MistakeThis post is about why we need a separate transaction layer? How to extract it, and test it using Unit and Integration Test. In my previous blog post, “A Billion Dollar Go Mistake,”. I discussed a common but naive mistake that developers make in Gol...Discussgolang
Wesley KibagendiforWesley Kibagendiweskibagendi.hashnode.net·Mar 29, 2023How to Set Up Go EnvironmentHow Extreme can you Go with Golang? Golang brought me here, for technical writing purposes, and I'm excited about this. Indeed a journey of a thousand miles start with one step and today I make my first stride. Before starting coding in Go, you need ...Discuss·40 readsGo Language
klnforGOBLOGkln.hashnode.net·Mar 20, 2023Go Basic Concept to Start WithGolang, also known as Go, is a programming language that was created by Google. It is known for its simplicity, efficiency, and scalability, making it a popular choice for software development. If you want to learn Golang do check out the Roadmap Her...Discuss·68 readsGo Language
Timothy EdiboforConcurrency in Golangtimmyedibo.hashnode.net·Mar 10, 2023Concurrency in GoGo or Golang is an open-source programming language developed at Google by a team of engineers. It was released in 2009 and aims to provide efficient programming, focusing on concurrent operations, garbage collection, and low-level memory access. Go ...Discuss·4 likes·70 readsGo Language
Aluko Opeyemi FolajimiforAluko Folachrisentechnology.hashnode.net·Mar 6, 2023Authentication and Authorization with Go Language with JWT.Introduction Authorization and authentication are crucial components of any application that requires secure access to resources. In this article, we will discuss how to implement authentication and authorization in a Go web application. Authenticati...Discuss·34 readsDeveloper