Golang News http://golangnews.com Jobs, Code, Videos and News for Go hackers - everything about the go programming language Sun, 03 Dec 2023 12:07:00 +0000 Distribuindo uma aplicacao go sem o docker 1 points posted by faabiosr https://dev.to/faabiosr/distribuindo-uma-aplicacao-go-sem-o-docker-p73 4826 Sun, 03 Dec 2023 12:07:00 +0000 Rewrite: a simple and powerful URL rewriter for Go Rewrite is a Go package that lets you rewrite URL paths, subdomains or hosts based on regular expressions. It is inspired by Apache's mod_rewrite module and can be used as a middleware for net/http. 1 points posted by iris-go https://dev.to/kataras/rewrite-a-simple-and-powerful-url-rewriter-for-go-224h 4813 Sun, 09 Jul 2023 13:57:00 +0000 How to add basic authentication in Iris Iris is a fast, simple yet fully featured and very efficient web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website or API. One of the features that Iris offers the middleware/basicauth sub-package, which allows you to implement basic authentication for your web applications. 1 points posted by iris-go https://dev.to/kataras/how-to-use-iris-and-basic-authentication-5hjm 4812 Sun, 09 Jul 2023 13:50:00 +0000 How to Use Iris and PostgreSQL for Web Development #web #database <h5>A guide to using PG middleware, a package for Iris that provides easy and type-safe access to PostgreSQL database.<br></h5> 1 points posted by iris-go https://dev.to/kataras/how-to-use-iris-and-postgresql-for-web-development-3kka 4810 Sun, 02 Jul 2023 15:57:00 +0000 Writing a simple cli program python vs go 5 points posted by kenny https://dev.to/jidicula/writing-a-simple-cli-program-python-vs-go-59kf 4590 Sat, 15 May 2021 10:53:00 +0000 Use mac apis and build mac apps with go 5 points posted by kenny https://dev.to/progrium/use-mac-apis-and-build-mac-apps-with-go-ap6 4530 Wed, 03 Feb 2021 17:40:00 +0000 How to use Google Places API with Caching #api #cache #web How to use Google Places API with Caching ( complete Golang/React Source ) <br> 5 points posted by golangch https://dev.to/golangch/avoid-high-costs-with-google-places-api-go-react-54b2 4528 Sun, 31 Jan 2021 06:55:00 +0000 Infrastructure as Code on AWS using Go and Pulumi 4 points posted by Elton Minetto https://dev.to/aws-builders/infrastructure-as-code-on-aws-using-go-and-pulumi-gn5 4654 Tue, 09 Nov 2021 12:08:00 +0000 Finding and fixing memory leaks in go 4 points posted by kenny https://dev.to/googlecloud/finding-and-fixing-memory-leaks-in-go-1k1h 4615 Thu, 12 Aug 2021 08:19:00 +0000 One year using Go 10 points posted by norbertfuhs https://dev.to/bugfenderapp/one-year-using-go 1970 Tue, 21 Mar 2017 11:47:00 +0000 Golang - Getting Started Blog series by @codehakase about getting&nbsp; started with Go<br> 9 points posted by norbertfuhs https://dev.to/codehakase/golang---getting-started-16c 2944 Sat, 18 Nov 2017 19:20:00 +0000 Using Prometheus to collect metrics from Golang applications In this post, I will talk about a very important feature in the complex projects we work with daily: metrics. Among the various solutions on the market for this purpose, one that has gained more prominence is the duo <a href="https://prometheus.io/">Prometheus</a>&nbsp;+ <a href="https://grafana.com/">Grafana</a>. 7 points posted by Elton Minetto https://dev.to/codenation/using-prometheus-to-collect-metrics-from-golang-applications-35gc 4267 Fri, 13 Mar 2020 13:28:00 +0000 Why I'm so frustrated with Go 7 points posted by daenney https://dev.to/klnusbaum/why-im-so-frustrated-withgo 2335 Thu, 22 Jun 2017 08:43:00 +0000 Profiling Golang applications using pprof 5 points posted by Elton Minetto https://dev.to/codenation/profiling-golang-applications-using-pprof-1c7o 4309 Mon, 20 Apr 2020 13:32:00 +0000 How i built an api with mux go postgresql and gorm <p>I've been seeing a lot of discussion about how fast Go is. According to the <a href="http://benchmarksgame.alioth.debian.org/u64q/compare.php?lang=go&amp;lang2=node" style="color: rgb(85, 125, 232);">Benchmark Game</a>&nbsp;Go is much faster than Node, somewhat faster than Java, and runs laps around Python and Ruby. Despite the performance level, Go still has a relatively nice developer experience. Semicolons are implicit, some typing is inferred, and the non-object oriented nature makes it more flexible. That's not even mentioning the built-in concurrency! I decided that I wanted to build something in Go to see if it would be a viable programming language for my apps in the future.</p> 5 points posted by kenny https://dev.to/aspittel/how-i-built-an-api-with-mux-go-postgresql-and-gorm-5ah8 3073 Thu, 04 Jan 2018 11:40:00 +0000 What is SQL injection and how do I avoid it in Go 5 points posted by daenney https://dev.to/joncalhoun/what-is-sql-injection-and-how-do-i-avoid-it-in-go 2232 Sun, 21 May 2017 11:22:00 +0000 Testing APIs in Golang using apitest 4 points posted by Elton Minetto https://dev.to/codenation/testing-apis-in-golang-using-apitest-1860 4311 Wed, 22 Apr 2020 02:04:00 +0000 Using Golang as a scripting language 4 points posted by Elton Minetto https://dev.to/eminetto/using-golang-as-a-scripting-language-jl2 4068 Fri, 09 Aug 2019 18:42:00 +0000 Object Calisthenics in Golang 4 points posted by Elton Minetto https://dev.to/eminetto/object-calisthenics-in-golang-1h75 3990 Tue, 04 Jun 2019 02:26:00 +0000 Decoupled package communication in Go #pubsub #eventbus #messagebus <p>Decoupled packages help us to write clear code, focus on only one thing at a time. With <a href="https://github.com/mustafaturan/bus"><code>bus</code></a>&nbsp;Go package, you can get benefit of real event bus system and write decoupled packages easily. With <a href="https://github.com/mustafaturan/bus"><code>bus</code></a>&nbsp;package, any handler can listen any events, without knowing who generates the event. Thus, packages can communicate without depending on each other. Moreover, it is very easy to substitute a consumer module. As long as the new module understands the Event struct that are being sent and received, the other modules will never know.</p> 4 points posted by jabber https://dev.to/mustafaturan/decoupled-package-communication-in-go-g39 3951 Wed, 01 May 2019 04:53:00 +0000 My 2 Cents On Go 👩‍💻👨‍💻 Following my post, I decided to take on an action and learn Go. ... 4 points posted by drogo https://dev.to/idoshamun/my-2-cents-on-go-fjl 3618 Mon, 22 Oct 2018 11:56:00 +0000 Go packages developed for and used in commercial games #games 4 points posted by Sean https://dev.to/hajimehoshi/go-packages-we-developed-for-our-games--4cl9 3227 Thu, 08 Mar 2018 17:54:00 +0000 Learning go by examples 3 points posted by kenny https://dev.to/aurelievache/learning-go-by-examples-introduction-448n 4608 Wed, 21 Jul 2021 07:11:00 +0000 Intro to automated testing in Go 3 points posted by kenny https://dev.to/salesforceeng/intro-to-automated-testing-in-go-4mjl 4554 Wed, 10 Mar 2021 09:19:00 +0000 Large type legacy celebrated in 80 lines of go 3 points posted by kenny https://dev.to/progrium/large-type-legacy-celebrated-in-80-line-go-program-1mob 4531 Wed, 03 Feb 2021 19:59:00 +0000 What's the fastest template parser in Go? #article 3 points posted by iris-go https://dev.to/kataras/what-s-the-fastest-template-parser-in-go-4bal 4462 Thu, 01 Oct 2020 14:28:00 +0000 Golang how to unmarshal a subset of nested JSON data 3 points posted by m7shapan https://dev.to/m7shapan/golang-how-to-unmarshal-a-subset-of-nested-json-data-d84 4392 Wed, 01 Jul 2020 08:31:00 +0000 Using go as a scripting language in linux 3 points posted by Tim Donell https://dev.to/ignatk/using-go-as-a-scripting-language-in-linux-4c8c 4307 Sun, 19 Apr 2020 13:02:00 +0000 Run Go code on Adafruit Feather or Arduino How to write Go code and make it run on Adafruit Feather or Arduino - DEV Community 👩‍💻👨‍💻 Getting started with TinyGo - a Go compiler for microcontrollers. 3 points posted by kenny https://dev.to/jimutt/how-to-write-go-code-and-make-it-run-on-adafruit-feather-or-arduino-m3c 4089 Tue, 27 Aug 2019 17:44:00 +0000 Logging approaches in Go Working with and thinking about glog 3 points posted by kenny https://dev.to/chuck_ha/logging-approaches-in-go-58dp 3449 Tue, 24 Jul 2018 05:26:00 +0000 Use cases for persistent logs with NATS Streaming 3 points posted by Brian Flannery https://dev.to/byronruth/use-cases-for-persistent-logs-with-nats-streaming 2647 Mon, 11 Sep 2017 20:15:00 +0000 Internationalization and localization with Go 2 points posted by iris-go https://dev.to/kataras/internationalization-and-localization-with-go-3b56 4468 Wed, 07 Oct 2020 16:02:00 +0000 Iris version 11.2 released #web #dev <b><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">After 6 months of daily development and huge amount of caffeine. I'm proud to announce the new version of Iris.</b> 2 points posted by iris-go https://dev.to/kataras/iris-version-11-2-released-22bc 4057 Thu, 25 Jul 2019 07:57:00 +0000 Calling Swift from Go #Swift #C How to use a C library o call Swift code from Go. 1 points posted by Onderweg https://dev.to/gerwert/calling-swift-from-go-5dbk 3788 Sat, 02 Feb 2019 12:50:00 +0000 Apache rewrite for Go and Iris Web Framework 0 points posted by iris-go https://dev.to/kataras/apache-rewrite-for-go-and-iris-2j86 4467 Wed, 07 Oct 2020 07:57:00 +0000