Trending

#Godev

Latest posts tagged with #Godev on Bluesky

Latest Top
Trending

Posts tagged #Godev

I am running into an issue with Go docs where cicking on a sidebar nav button is yielding unexpected results.

Any suggestions?

Video of issue below.

Thanks!

www.loom.com/share/7e579c...

#Godev #Golang #Documentation #Bug

0 0 0 0
Post image

making a CLI timer using the standard go lib.

pkg.go.dev/time#Ticker

testing working examples in the docs to build understanding.

my first use of 'case' in Go.

#golang #godev #devops #learning

1 0 0 0
Post image Post image

Day 11 of Go:

I started reading the following book tonight (The Go Programming Language, Donovan & Kernighan) and for some reason, the letter 'c' is omitted from the print when used in a word.

LOL why??

#golang #godev #learning

2 0 0 0

Day 10 of Go:

going through the following youtube course:
shorturl.at/CLJec

currently working on testing in Go.

#golang #godev #learning

0 0 0 0

Day 9 of Go:

working on @codecademy.bsky.social

> Go Module: Introduction to Interfaces

This is the best explainer video I found on the concept:
👉 youtu.be/KXXdYXla7Tc?...

#godev #golang #learning

0 0 0 0
Post image

Day 8 of Go:

spent the day learning about formatting

%d // decimal integer
%s // string
%v // default format
%t // boolean
%p // pointer address

not easy to figure out "%d" is for whole numbers but inidicates decimal (base-10) and "%f" is floats which literally have decimals

#godev #golang

1 0 1 0

Day 7 of Go:

working on @codecademy.bsky.social

> Go Module: Introduction to Interfaces

yeesh. this is a lot to digest. its seems to be OOP for Go but much prettier.

github.com/bootupAbdull...

#learning #godev #golang

0 0 0 0

Day 6 of Go:

working on go.dev:

> Tutorial: Accessing a relational database

imported the sql driver. started writing the code for the interactions with database, that's all I can do tonight. will pick it back up tomorrow.

#learning #godev #golang

0 0 0 0
Post image

Day 5 of Go:

working on go.dev:

> Tutorial: Accessing a relational database

first step has been resetting mysql password 😂 so I am currently on that step. I am trying really hard not to use AI for assistance and do it the old fashioned way.

#learning #godev #golang

0 0 0 0
Post image

Day 4 of Go:

completed the Functions module in Learn Go by @codecademy.bsky.social

last section of the module was learning about pointers, addresses and dereference. lots of fun, really interesting.

#learning #godev #golang

1 0 0 0
Post image

Day 3 of Go:

completed the 'Interstellar Travel' project in the Learn Go: Functions module through the @codecademy.bsky.social course.

#learning #godev #golang

2 0 0 0

Day 2 of Go:

Completed on go.dev:

> Tutorial: Getting started with multi-module workspaces on

I learned about Workspaces which allows you to connect multiple modules together simultaneously and make use of variables, functions, etc. from one module to the next.

#golang #learning #godev

1 0 0 0

Many Go users praise the language's stability, ease of use, and long-term code maintainability. This strong foundation allows projects to thrive. However, discussions also touch on areas like documentation quality and Go's approach to abstractions. #GoDev 3/5

0 0 1 0
Preview
https://blog.stackademic.com/unmasking-the-culprit-how-gos-pprof-became-my-debugging-sidekick-d57ba0de39ae?source=rss----d1baaa8417a4---4 As developers, we’ve all been there. Your application, once a lean, mean, code-executing machine, starts to feel sluggish. Response times…

Developers, uncover performance bottlenecks in your Go application with #pprof. Profile CPU usage and more to optimize your code. #godev #profiling blog.stackademic.com/unmasking-the-culprit-ho...

1 0 0 0
Preview
Go 1.25 Release Notes - The Go Programming Language

Did a quick scan of the draft release notes for @golang.org 1.25, there's a lot to be excited about in a few months! Changes that caught my eye:

* go doc -http
* cgroups respecting GOMAXPROCS
* new GC preview
* DWARFv5
* encoding/json/v2 preview

go.dev/doc/go1.25

#golang #gopher #godev #go

2 0 0 0

Go's specific design choices, like struct tags for metadata and case-insensitive JSON parsing, are debated. Are they pragmatic compromises or sources of potential errors & vulnerabilities when handling external data? #godev 4/6

0 0 1 0

What's your favorite hidden gem in #Golang? 🚀 Whether it's a handy stdlib package, a time-saving tool, or a clever pattern, drop your top Go tips below! Let's help each other code smarter. #golangtips #godev

0 0 0 0
High Performance Go Workshopunnamedcluster_LType: inuse_spaceN1NN1_0N1->NN1_0N2N3N2->N3N3->N1unnamedcluster_LType: alloc_objectsN1NN1_0N1->NN1_0N2N4N2->N4N3N3->N1N4->N3unnamedcluster_LType: inuse_obje...

🚀 ¿Escribes en Go y quieres sacarle TODO el rendimiento posible?

Dave Cheney (sí, ese Dave) tiene un workshop gratuito que es oro puro:
🔗 dave.cheney.net/high-perform...
Aprende a usar pprof, trace, entender el GC y optimizar en serio 💥

#golang #performance #backend #devtools #godev

1 0 0 0
Understanding Go Interfaces I still remember the moment it clicked. I was knee-deep in refactoring a Go CLI (weekend project) for unit testing with mocks, which had become a tangled mess of dependencies when suddenly – 🤯 – the e...

Learn all about #interfaces in #golang in this exciting post!

blog.mikesahari.com/posts/interf...

#godev #softwareengineering #techblog

2 0 1 0
Preview
Escrevendo consultas SQL dinâmicas com Go Você precisa escrever consultas SQL nativas que recebem um número variável de parâmetros de busca e quer evitar o inferno que é ficar concatenando strings. Aprenda a fazer isto com a lib SQL Builder f...

E 2025 começa no Insights com uma receita de Go: como escrever de forma segura consultas dinâmicas em SQL Nativo usando o "SQL Builder for Go"

#golang #godev

(favor RT!)

insights.itexto.com.br/escrevendo-c...

2 0 0 0
Preview
Usando database migrations em Go com Goose Como configurar e executar database migrations em Go usando Goose

Como escrever e executar database migrations em Go usando Goose

#receita #itexto #go #godev #golang #goose

(favor RT!)

insights.itexto.com.br/usando-datab...

2 1 0 0
Preview
Go: uma visão arquitetural Do ponto de vista arquitetural, quais as vantagens e desvantagens de se adotar a linguagem Go na visão da itexto Consultoria

Go: uma visão arquitetural

O que Go nos trouxe de positivo e quais os riscos que vemos na linguagem e seu ecossistema.

#go #golang #godev #arquitetura

(favor RT!)

insights.itexto.com.br/go-uma-visao...

4 1 0 0