go podcast()-logo

go podcast()

Technology Podcasts

15 minutes news, tips, and tricks on the Go programming language.

Location:

United States

Description:

15 minutes news, tips, and tricks on the Go programming language.

Language:

English


Episodes
Ask host to enable sharing for playback control

037: Is Go a good choice for your Startup?

5/9/2024
I've been building SaaS since 2008 and built two with Go. Big spoiler, the technology you choose has a little impact in the early stage of a software business. There's some danger to over-engineer and use complex construct while you still does not even know if what you're building is desirable. Heck, you don't even know what you're building at first. I'm giving some example of common traps and pitfails technical founder tend to fail into when jumping into a startup venture for first times. And yes, times is plural, because it takes multiple attempt before learning lessons. If you enjoy the pod please consider sharing / talking about it. You may also contribute by purchasing my courses Build SaaS apps in Go and Build a Google Analytics in Go courses, they're at 50% off for listeners of the show.

Duration:00:32:30

Ask host to enable sharing for playback control

036: Game UI in Go with EbitenUI maintainer Mark Carpenter

5/2/2024
I'm joined by Mark Carpenter, the maintainer of EbitenUI, a UI library you may use with your Ebitengine Go game. Game dev is slowly making its way to Go with game library like Ebitengine and Raylib. The nice thing about Ebitengine is that it's built in Go, have great cadance in its development and is simple to use. EbitenUI is a UI library that allows you to build UI for your games. It's a simple library that integrates smoothly with the programming model of Ebitengine games. Links: EbitenUI on GitHubEbitenUI documentationEbitenUI on RedditEbitenUI on DiscordAwesome Ebitengine As always if you want to support my efforts with this show please talk about it, share it. You may also purchase my online courses Build SaaS apps in Go and Build a Google Analytics in Go, there's a 50% discount for listeners of this show.

Duration:01:05:05

Ask host to enable sharing for playback control

035: Going deeper into Encore with its founder André Eriksson

4/16/2024
A follow-up episode on last week episode. We go a little bit deeper into Encore with André Eriksson. Encore can do a lot for your Go project and infrastructure. It allows your team to focus on your product and provides local development and DevOps tooling that help your team go faster. Links: Encore.dev - websiteEncore on GitHubAndré on Twitter How to support the show: Build SaaS apps in GoBuild a Google Analytics in Go@dominicstpierre

Duration:01:11:27

Ask host to enable sharing for playback control

034: Encore, domain design in Go with Bill Kennedy

4/10/2024
This week I'm joined by Bill Kennedy. Bill makes me discover Encore which can handles service-to-service communication while programmers focus on their application. We talk about domain design in Go and how to architect an isolated system following the 3-tier layer design. Links: Encore GitHub repoArdan Labs Encore GitHub repoArdan Labs Service GitHub repoBill on TwitterArdan Labs As always if you enjoy the show consider sharing it / talking about it. If you'd want to support the effort the best way is by purchasing my courses, Build SaaS apps in Go and Build a Google Analytics in Go. Those links have a 50% discount coupon applied to them for listeners of the show.

Duration:01:12:07

Ask host to enable sharing for playback control

033: Deployment orchestrator in Go, part of my upcoming SaaS

4/2/2024
My upcoming SaaS product at first wasn't suppose to be rolled out as a product, but was for my own usage. Turns out as I was using it and selling my online courses that it appears to me as being fairly usefull and could compete against existing course selling platform. The hic is that it wasn't built as a SaaS in mind, so I have to deploy one application per customer. It's completely multi-tenant. To help with automating the deployment of a new tenant, I wrote and orchestrator with agents to facilitate the deployment of a new application. I thought this part could be interesting to hear about as it's written in Go. Want to support the show? The best way is by purchasing my courses Build SaaS apps in Go and Build a Google Analytics in Go. Listeners of this show get a 50% discount on all store product.

Duration:00:36:52

Ask host to enable sharing for playback control

032: Go cryptography with John Arundel

3/19/2024
In this episode I talk with John Arundel about cryptography in Go. John wrote a great book on the subject called Explore Go: Cryptography. Security is a growing concerns and you should up your game as a Go programmer. We're lucky to have such a solid crypt package in the standard library. I'd encourage you to get familiar with it if you haven't yet. Links: Explore Go: CryptographySubscribe to John's contentJohn on Twitter As always, if you want to support this show the best way (other than talking about it) is by purchasing my courses: Build SaaS apps in Go and Build a Google Analytics in Go, here's a 50% direct discount for listeners of this podcast.

Duration:00:55:26

Ask host to enable sharing for playback control

031: Using shim on API to prevent breaking changes

3/14/2024
In 2021 Twilio sent a termination email on their Fax services. I was consulting as the CTO in a credit bureau that was in the start of an acquisition process with Equifax Canada. There was just no time to "waste" on changing provider and rewriting this part of the system to satisfy the new provider API. Would have been grand if the provider would have offered a shim that replicated Twilio's API and map that to their own API. Imagine how many companies needed to rewrite this part at the same time. Offering this as the provider that receives X thousands new customers would have been a superb engineering experience. So maybe we can apply this concept internally as well. When a team needs to introduce breaking changes, a good solution might be for them to provide a shim over the old API so no other teams need to do anything. This is obviously a tad dangerous and might introduce some technical debt. But as everything, it depends.

Duration:00:17:08

Ask host to enable sharing for playback control

030: gRPC in Go with Chris Shepherd

3/7/2024
I receive Chris Shepherd and we talk about gRPC in Go. If you're building systems with lots of micro-services, gRPC is a good way to provide strong contracts between your services and improve communications. Links: Chris on TwitterThe Buf CLIExample protobuf registry The best way to support this show, other than talking about it, is by purchasing my online courses on Go: Build SaaS apps in Go and Build a Google Analytics in Go. Here's a direct link with a special discount for the pod listeners.

Duration:00:46:58

Ask host to enable sharing for playback control

029: I've a confession to make, I've wrote 2 apps in Django

2/28/2024
This episode was supposed to be focussing on templ, the tempalte library, but as I was going in details I found it hard not to explain the back story of why I started looking for something to help html/template be more "fun" to build rapid side projects, you know, CRUD heavy web application. Links: If you'd like to support this show the best way is to puchase my courses, I've one call Build SaaS apps in Go and another one called Build a Google Analytics in Go. Here's a direct discount for listener of this show.

Duration:00:31:43

Ask host to enable sharing for playback control

028: To TDD or not... or when

2/16/2024
Quick solo episode on TDD and when I experienced it was used best and when I personally not use it but use an approach of writing a bit of code, than tests, thant another bit of code, etc. Buying my courses is the way to support this show, here's a direct discount for listeners.

Duration:00:19:35

Ask host to enable sharing for playback control

027: Debugging in Go with Matt Boyle

2/5/2024
I chatted with Matt Boyle about debugging Go code. Matt is creating a course about this topic and discussing debugging as a tool you may add to your toolbelt. Links The Ultimate Guide to Debugging With GoDomain-Driven Design with GolangMatt on Twitter aka XGoland Insiders (Go Twitter community) As always, if you'd like to support this podcast the best way is to purchase my courses / talk about them. I have 2 courses on Go and here's a direct discount for podcast listeners.

Duration:00:39:01

Ask host to enable sharing for playback control

026: We can do better with interviews and onboarding

1/25/2024
I believe we can do better regarding software engineer interviews and this entire process (also including onboarding). I think companies that will be mediocre at those two aspects will have a hard time with younger programmers, which I fully support.

Duration:00:20:41

Ask host to enable sharing for playback control

025: Iterators are coming to Go

1/17/2024
Iterators are going to be useful to process large amount of data without having to load an entire slice or maps in memory but instead create iterators that can be used from a for item := range myIterators(). If you'd like to support this show and/or are interested in Go courses I have, here's a direct discount link specially for listeners of this show.

Duration:00:17:10

Ask host to enable sharing for playback control

024: Do you understand this weird production behavior?

1/10/2024
Something absurd happened in 2024 for one of my consulting client's production web application, and this code for a time. The time zero value is behaving differently than it has been since 2018. {{if .TimeField}} Date has a value: {{ .TimeField }} {{else}} No date, zero value {{end}} I launched my new course Build a Google Analytics in Go, if you're interested and/or want to support this show that's how to do it.

Duration:00:18:49

Ask host to enable sharing for playback control

023: Reaction to reddit post on null pointer error in Go

1/3/2024
I react to the post on the Go subreddit of last week talking about a null pointer error occuring in production for a Go program. This is the YouTube video I made. If you'd want to support this podcast, I have Go courses available for purchase here, I just launch my latest course Build a Google Analytics in Go with a 50% discount for listener of this show.

Duration:00:19:05

Ask host to enable sharing for playback control

022: What to answer to "Why Go?"

12/19/2023
Typical reasons to use Go might sounds exciting for us used to Go, but might not be as attractive for people that haven't experienced Go yet and might not realize they have some small heritants that Go fixes/improves. I've pre-launched my new course call Build a Google Analytics in Go, as listener to this podcast you're getting a 50% off during pre-sale, the course is due to launch before the end of December. If you want to support this show, purchasing the course is the best way, also talking about it ;).

Duration:00:24:53

Ask host to enable sharing for playback control

021: Why I had to work 30h straight in 2002

12/6/2023
Things were very different when I started as a junior developer. This is a story of an out of the ordinary day where worked from ~9h am to 11am (the next day), the two of us that were in charge of everything at a small financial company. This one has nothing to do with Go, but I thought it was worth telling as a story. I'm soon to launch (pre-launch) my next course Build a Google Analytics in Go. If you're interested make sure to sign-up for the newsletter on my store. https://store.dominicstpierre.com/

Duration:00:20:23

Ask host to enable sharing for playback control

020: Discipline is required to build long-live software

11/23/2023
As we're building more and more of distributed systems I believe that one trait / culture successful team will require is discipline. Personal opinion, we tend to complicate our lives in the last decade compare to what things were before. But without an extra attention to some details, it will be a nightmare to maintain systems in the long run. As always, if you'd like to support the show the best way is to purchase my course. Sharing it also very much appreciated.

Duration:00:16:04

Ask host to enable sharing for playback control

019: Dependencies maintenance in Go

7/14/2023
I talk about dependencies management in Go. How to keep your dependencies up-to-date and how to check if there's any updates available. What to do when a package change their major version. List all packages and latest versions: $ go list -m -u all Update all packages to their latest minor versions: $ go get -u ./... If you'd like to support this podcast consider buying a copy of my course Build SaaS apps in Go.

Duration:00:13:54

Ask host to enable sharing for playback control

018: WebAssembly runner, a real-world use case

6/30/2023
I was toying with the idea of using WebAssembly runner as a plugin / extension mechanism from a Go (host) program to extend the capabilities of a program at runtime. * min/max bult-ins coming in 1.21: https://tip.golang.org/ref/spec#Min_and_max * wazero: https://github.com/tetratelabs/wazero * wasmr: https://github.com/wasmerio/wasmer-go * StaticBackend: https://github.com/staticbackendhq/core

Duration:00:22:11