The Go Dev (@thegodev) 's Twitter Profile
The Go Dev

@thegodev

Tweeting out the best Go posts from dev.to. Part of the @ThePracticalDev family ❤️

ID: 1118611522283036672

linkhttps://dev.to/t/go calendar_today17-04-2019 20:25:44

2,2K Tweet

6,6K Followers

0 Following

The Go Dev (@thegodev) 's Twitter Profile Photo

Use Go to build a neural network from scratch, step through its core concepts, code structure, and see it classify the Iris dataset. #DEVCommunity #GoLang dev.to/leapcell/from-…

The Go Dev (@thegodev) 's Twitter Profile Photo

Introducing VarMQ’s tune API: adjust your worker pool size on the fly: scale up under load, scale down when idle to optimize resources. #DEVCommunity #GoLang dev.to/fahimfaisaal/v…

The Go Dev (@thegodev) 's Twitter Profile Photo

Learn how to benchmark Go code: measure speed and memory, compare functions and track regressions with the testing package. #DEVCommunity #GoLang dev.to/ankitmalikg/go…

The Go Dev (@thegodev) 's Twitter Profile Photo

In Go false sharing occurs when goroutines update side-by-side struct fields in one cache line, negating parallel speed. Padding can help. #DEVCommunity #GoLang dev.to/kelvinfloresta…

The Go Dev (@thegodev) 's Twitter Profile Photo

Encore v1.47 adds an MCP server so AI tools can introspect your app’s architecture, APIs, infra and traces for code suggestions #DEVCommunity #GoLang dev.to/encore/encores…

The Go Dev (@thegodev) 's Twitter Profile Photo

Learn how to add simple heartbeats to Go goroutines so you can track silent failures and keep background workers alive { author: Archit Agarwal } #DEVCommunity #GoLang dev.to/architagr/how-…

The Go Dev (@thegodev) 's Twitter Profile Photo

Optimize Go performance by reusing buffers and decoders with sync.Pool and reducing heap allocations via escape analysis. #DEVCommunity #GoLang dev.to/leapcell/optim…

The Go Dev (@thegodev) 's Twitter Profile Photo

Efficient file transfer in Go microservices with gRPC streaming 🔹 HTTP/2 🔹 protocol buffers 🔹 chunked, resumable, memory-efficient { author: Enyinnaya } #DEVCommunity #GoLang dev.to/dialaeke/strea…

The Go Dev (@thegodev) 's Twitter Profile Photo

Skip ORM/ODM and use MongoDB's Go driver for direct, idiomatic access to all features with clear, low-overhead code #DEVCommunity #GoLang dev.to/mongodb/skip-t…

The Go Dev (@thegodev) 's Twitter Profile Photo

Deep dive into Go slices: uncover the slice struct, how append triggers reallocation, what capacity rules mean for performance and memory #DEVCommunity #GoLang dev.to/leapcell/the-a…

The Go Dev (@thegodev) 's Twitter Profile Photo

Explore how Go manages concurrent tasks with lightweight goroutines and channels for safe data exchange. Efficient multitasking made simple #DEVCommunity #GoLang dev.to/trulyursdelv/u…

The Go Dev (@thegodev) 's Twitter Profile Photo

Build a precise countdown timer in Go with time.Ticker, goroutines and channels. Extend it with pause, resume and stop for flexible timing. #DEVCommunity #GoLang dev.to/rezmoss/practi…

The Go Dev (@thegodev) 's Twitter Profile Photo

An in-depth look at Go’s sync.WaitGroup: how it uses Add, Done and Wait to synchronize goroutines and view its source code. #DEVCommunity #GoLang dev.to/leapcell/how-d…

The Go Dev (@thegodev) 's Twitter Profile Photo

Step through a complete TLS handshake in Go: from ClientHello capture to certificate setup and encrypted sessions in one clear guide #DEVCommunity #GoLang dev.to/leapcell/compl…

The Go Dev (@thegodev) 's Twitter Profile Photo

Nikita Rykhlov’s new blog covers scalable backend design with Go, Kafka, microservices and real-world architecture tips for engineers. #DEVCommunity #GoLang dev.to/nikita_rykhlov…

The Go Dev (@thegodev) 's Twitter Profile Photo

5 Go libraries you’ll wish you knew sooner to simplify common tasks 🔹 HTTP 🔹 CLI 🔹 Validation 🔹 Logging 🔹 Testing { author: Tobiloba Ogundiyan } #DEVCommunity #GoLang dev.to/ogundiyantobil…

The Go Dev (@thegodev) 's Twitter Profile Photo

Day 4 balancing Go and deep learning: clarifying pointers & structs, writing ANN code in PyTorch, restructuring project for cleaner code #DEVCommunity #GoLang dev.to/shivamchhuneja…

The Go Dev (@thegodev) 's Twitter Profile Photo

See how Go’s bufio buffers reads and writes to reduce system calls and boost I/O speed for files, logs and network streams #DEVCommunity #GoLang dev.to/peymanahmadi/i…

The Go Dev (@thegodev) 's Twitter Profile Photo

Go function reference: syntax, calls, parameters, return values, closures, scope and best practices in one concise sheet #DEVCommunity #GoLang dev.to/jad_core/go-fu…