go

Tag

Cards List
#go

monty-go: Pure-Go wrapper for Pydantic's Monty Python Interpreter

Hacker News Top · 2026-08-30 Cached

monty-go is a pure-Go tool that enables running LLM-generated Python code in a sandboxed WebAssembly environment for efficient, safe code execution with Go integration.

0 favorites 0 likes
#go

Concurrent Servers: Part 8 - Go

Eli Bendersky · 2026-08-22 Cached

This article is part 8 of a series on writing concurrent network servers, focusing on implementing concurrency in Go using goroutines and the Go runtime's scheduling.

0 favorites 0 likes
#go

Data races and the memory model in Go

Lobsters Hottest · 2026-08-21 Cached

This article explains data races and the Go memory model, illustrating how unsynchronized access to shared variables in goroutines can cause issues and discussing proper synchronization methods.

0 favorites 0 likes
#go

I gave my agent a search tool and it declined to use it, plus a few other things I got wrong

Reddit r/AI_Agents · 2026-08-20

The author details building a personal AI agent for book recommendations, sharing lessons on tool compliance, cost management, and feedback loops using a Go-based implementation.

0 favorites 0 likes
#go

@ryanlpeterman: Why Microsoft didn't have LLMs do their recent Typescript native rewrite in Go Anders Hejlsberg (Creator of Typescript)…

X AI KOLs Timeline · 2026-08-20 Cached

Anders Hejlsberg explains why Microsoft avoided using LLMs directly for rewriting TypeScript in Go, advocating instead for using AI to build deterministic translation tools.

0 favorites 0 likes
#go

Generic Methods in Go 1.27

Hacker News Top · 2026-08-20 Cached

Go 1.27 adds generic methods, allowing methods to define their own type parameters without modifying the receiving struct, addressing a limitation from Go 1.18 while excluding interfaces due to runtime constraints.

0 favorites 0 likes
#go

Goroutines 101: A basic walkthrough

Lobsters Hottest · 2026-08-20 Cached

This article provides a basic walkthrough of goroutines in Go, explaining how they simplify concurrency and how to use them effectively.

0 favorites 0 likes
#go

Better Batteries

matklad · 2026-08-20 Cached

The article explores how the social architecture of programming language communities influences the design and quality of standard libraries, comparing approaches in Python, Go, and Rust.

0 favorites 0 likes
#go

@ryanlpeterman: Anders Hejlsberg ( @ahejlsberg ) is the creator of TypeScript and C#, and I asked him about how the TypeScript compiler…

X AI KOLs Timeline · 2026-08-17 Cached

Anders Hejlsberg explains the decision to rewrite the TypeScript compiler in Go for 10x performance gains and discusses AI's impact on software engineering in a podcast episode.

0 favorites 0 likes
#go

Re-balancing Deflate Compression Levels

Lobsters Hottest · 2026-08-10 Cached

Klaus Post discusses the process of rebalancing deflate compression levels in the Go compression library to make speed/compression trade-offs more linear and intuitive.

0 favorites 0 likes
#go

Profile-guided optimization in Go

Lobsters Hottest · 2026-08-10 Cached

Daniel Lemire benchmarks profile-guided optimization (PGO) in Go, showing modest speedups of 2-5% when parsing JSON, with the best gains when the training profile matches the workload.

0 favorites 0 likes
#go

What garbage collection actually costs

Hacker News Top · 2026-08-09 Cached

A technical article explains the true performance costs of garbage collection, contrasting tracing GCs, reference counting, and compile-time memory management in languages like Go, Java, Rust, Swift, and Python.

0 favorites 0 likes
#go

Relying on Go

Lobsters Hottest · 2026-08-09 Cached

Solod is a new systems programming language that is a subset of Go, reusing Go's tooling and standard library while compiling to C11, offering manual memory management.

0 favorites 0 likes
#go

mote command

Lobsters Hottest · 2026-08-05 Cached

Introduces `mote`, a Go command-line tool that connects to remote machines via SSH, Tailscale, or other mechanisms to run commands and cross-compiled Go tests, with support for uploading files and integrating with `go run`/`go test`.

0 favorites 0 likes
#go

Cross-compilation with Wails (2025)

Hacker News Top · 2026-08-05 Cached

A developer tests cross-compiling a Wails v2.11.0 Svelte app on Ubuntu, successfully building Windows and Linux executables/installers, and notes issues with static linking for Linux.

0 favorites 0 likes
#go

Soppo - Go, with the features it's missing

Lobsters Hottest · 2026-08-04 Cached

Soppo is a new programming language that extends Go with enums, pattern matching, a '?' error propagation operator, and compile-time nil safety, while maintaining full interoperability with existing Go code and tooling.

0 favorites 0 likes
#go

@googledevs: Keep your agent's context lean without sacrificing expertise. Learn how Agent Skills in Genkit Go package specialized k…

X AI KOLs Timeline · 2026-08-03 Cached

Google's blog post introduces Agent Skills support in Genkit for Go, demonstrating how progressive disclosure lets agents load specialized knowledge on demand to reduce token usage and improve reliability.

0 favorites 0 likes
#go

Going Backward

Lobsters Hottest · 2026-08-03 Cached

This article explores the design evolution of Go's slices.Backward function, illustrating different implementations from simple reversal to callback-based iterators, and explains why the standard library's iterator signature looks the way it does.

0 favorites 0 likes
#go

Show HN: Mu – Tools for Agents

Hacker News Top · 2026-08-02 Cached

Mu gives AI agents 67 everyday internet tools (news, mail, search, markets, etc.) behind a single MCP endpoint, with real implementations rather than API wrappers, and is available as a hosted service or self-hosted Go binary.

0 favorites 0 likes
#go

Uber SubmitQueue: a high-performance speculative merge queue

Hacker News Top · 2026-08-01 Cached

Uber open-sourced SubmitQueue, a high-performance speculative merge queue that validates multiple changes in parallel against predicted future states of HEAD to keep trunk green at scale.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback