HN user

samber

4,519 karma

@samuelberthe https://github.com/samber meet.hn/city/47.2186371,-1.5541362/Nantes

Posts592
Comments45
View on HN
old.reddit.com 26d ago

Trump administration asks OpenAI to stagger release of GPT 5.6

samber
1pts0
www.anthropic.com 1mo ago

Anthropic Policy on the AI Exponential

samber
2pts1
linear.app 1mo ago

Linear Agent

samber
3pts0
newsletter.semianalysis.com 1mo ago

SemiAnalysis: TCO of Space Datacenters

samber
4pts0
www.iea.org 1mo ago

IEA: About Energy and AI

samber
3pts0
github.blog 2mo ago

The engine behind the 100 TB GitHub search engine

samber
8pts0
github.com 3mo ago

UX Research Tooling Landscape

samber
2pts0
github.com 4mo ago

A collection of 35 Golang Agent Skills

samber
3pts2
samuelberthe.substack.com 4mo ago

Go code is leaving 90% of the CPU idle until now

samber
1pts0
github.com 4mo ago

Claude-swarm-monitor: track progress of your Claude Code agents

samber
2pts0
go-mod-graph.samber.dev 6mo ago

Show HN: A web-based visualizer for Go module dependency graph

samber
1pts0
samuelberthe.substack.com 9mo ago

Create illustrations for your GitHub project

samber
1pts0
samuelberthe.substack.com 9mo ago

Go beyond Goroutines: introducing the Reactive paradigm

samber
68pts41
github.com 9mo ago

Samber/lo v1.52.0 – now supports Go 1.23's iterators

samber
1pts0
samuelberthe.substack.com 9mo ago

Why Your 'Optimized' Code Is Still Slow: Faster Time Comparison

samber
1pts0
samuelberthe.substack.com 9mo ago

Critical TTL patterns for in-memory caching

samber
3pts0
github.com 10mo ago

Vibe-coding and open-source: 286k LoC, 2 months

samber
4pts0
www.tensoreconomics.com 10mo ago

Moe Inference Economics from First Principles

samber
2pts0
github.com 10mo ago

Show HN: The Great GPT Firewall

samber
1pts0
www.tylervigen.com 11mo ago

Spurious correlations (correlation is not causation)

samber
3pts0
docs.google.com 1y ago

LLM-d: Prefix K/V Caching

samber
3pts0
docs.google.com 1y ago

LLM-d: Disaggregated Serving northstar

samber
3pts0
huggingface.co 1y ago

MLA: K/V cache compression with low-rank projection

samber
1pts0
www.tensoreconomics.com 1y ago

What does it cost to run a LLM

samber
2pts0
github.blog 1y ago

How the GitHub CLI can now enable triangular workflows

samber
1pts0
kaniuse.gerome.dev 1y ago

Kaniuse – Kubernetes features stage changes in a visual way

samber
1pts0
github.com 1y ago

Background music in your commit messages

samber
1pts0
hackerone.com 1y ago

Gitlab: Account Takeover via Password Reset

samber
5pts3
twitter.com 1y ago

The Cost of Kafka

samber
2pts0
www.oldmapsonline.org 1y ago

Old Maps Online

samber
2pts0
SubQ 1.1 Small 1 month ago

Comparing compute cost versus FlashAttention-2 is not very honest to me.

FlashAttention-2 is not used anymore for at least 2y.

This architecture would have been a massive improvement 3 years ago, but it is a ~solved~ problem IMO.

SubQ 1.1 Small 1 month ago

According to Subquadratic, Needle in a Haystack is strong up to 12m tokens, but RULER has not been tested above 128k tokens ??

`do` builder here

After 2y in beta, I’ve just released v2 of “do”, the dependency injection toolkit for Golang.

This major version introduces a new scope-based architecture, transient services, interface binding, improved dependency tracking, and circular dependency detection.

Error handling and service naming are more consistent, and based on your feedback, a troubleshooting UI has been added.

A new LLM-ready documentation is available, featuring numerous demos you can run in 1 click: https://do.samber.dev/

Read the full changelog here: https://github.com/samber/do/releases/tag/v2.0.0

Migration from v1: https://do.samber.dev/docs/upgrading/from-v1-x-to-v2

I wrote my own error wrapper: github.com/samber/oops

Example:

err := oops. Code("iam_missing_permission"). In("authz"). Tags("authz"). Time(time.Now()). With("user_id", 1234). With("permission", "post.create"). Hint("Runbook: https://doc.acme.org/doc/abcd.md"). User("user-123", "firstname", "john", "lastname", "doe"). Errorf("permission denied")

For easier debugging, the error contains the full stacktrace.