Fibbonachosfibbonachos.hashnode.dev·Sep 29, 2023A Beginners 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·50 likes·39 readsgolangLet's GO 🐼 10
Vishnuarvikh.hashnode.dev·Sep 29, 2023The Go-lang hand bookGo, also known as Golang, is a modern programming language developed by Google in 2009. It is a compiled, statically typed language that is designed to be simple, reliable, and efficient. Go is used to build a wide range of software applications, inc...Discussgolang
Redha Bayu Anggararedhabayuanggara.hashnode.dev·Sep 29, 2023Rest API Pattern - GolangThe most comfortable and effective from the point of view of system design is Design first pattern. Starting review the different approaches base on what I have seen.To tell about advantages and disadvantages and to solve one unpleasant problem in on...Discussgolang
Albert Riodigitalogyllc.hashnode.dev·Sep 29, 2023Battle of the Titans: Will Golang Surpass Python in the Programming World?In the dynamic world of programming languages, two giants are vying for dominance: Python and Golang (Go). Python's immense popularity among developers can be attributed to its well-known reputation for being both simple and versatile. In contrast, G...DiscussPython
Lonnie McRoreyforNearshore Software Development Companynearshore.fwscience.us·Sep 28, 2023GoLang in 2024: What CTOs Need to KnowExecutive Summary Go, also known as Golang, is a relatively new programming language first released in 2009. However, it has quickly become one of the world's most popular and in-demand programming languages. Go is a statically typed, compiled langua...Discuss·66 readsSoftware Engineering Newsgolang
Aditya Hebbarhebbaraditya.hashnode.dev·Sep 28, 202301-Understanding Variables in Go (Golang) - A Beginner's GuideIntroduction: In the world of programming, variables serve as essential building blocks. They enable us to store and manipulate data, making it possible for a computer program to perform useful tasks. In this beginner-friendly guide, we will explore ...Discussgolang
Lucas Katayamahashnode.lucaskatayama.com·Sep 27, 2023Hello World with TemporalRequirements Install Temporal https://docs.temporal.io/dev-guide/go/foundations#add-your-sdk Start Temporal dev server $ temporal server start-dev Access Temporal UI Go to URL http://localhost:8233/ Create a basic Go app Create project folder <proj...DiscussTemporaltemporalio
Lucas Katayamahashnode.lucaskatayama.com·Sep 26, 2023Go Vanity URLsHave you ever seen this type of import? ... import ( "go.uber.org/fx" ) ... Since I came from Java, I always thought Uber had a type of "Maven Central" for Golang. But that is not the case. And it is cleaner. What do I need? One thing: a page wi...Discuss·29 readsGolanggolang
Taylor Browndumpster.hashnode.dev·Sep 24, 2023Using Interfaces in GoLearning how to use interfaces in Go will help you write flexible and simpler code. When I was first learning Go I found the posts about interfaces to be lacking. The examples weren't practical (Stringer, Geometry, Animal - these posts are great, but...Discuss·1 like·765 readsgolang
Taylor Browndumpster.hashnode.dev·Sep 24, 2023Unit-like testing your database with Docker in GoYesterday I responded to a thread on Reddit where a user asked how people test their database interactions. There are a lot of different ways to do this and after explaining what I did there was interest in an example, so this will be the example :) ...Discussgolang