HackerTrans
TopNewTrendsCommentsPastAskShowJobs

samber

no profile record

Submissions

Trump administration asks OpenAI to stagger release of GPT 5.6

old.reddit.com
1 points·by samber·vor 18 Tagen·0 comments

Anthropic Policy on the AI Exponential

anthropic.com
2 points·by samber·letzten Monat·1 comments

Linear Agent

linear.app
3 points·by samber·letzten Monat·0 comments

SemiAnalysis: TCO of Space Datacenters

newsletter.semianalysis.com
4 points·by samber·letzten Monat·0 comments

IEA: About Energy and AI

iea.org
3 points·by samber·letzten Monat·0 comments

The engine behind the 100 TB GitHub search engine

github.blog
8 points·by samber·vor 2 Monaten·0 comments

UX Research Tooling Landscape

github.com
2 points·by samber·vor 3 Monaten·0 comments

A collection of 35 Golang Agent Skills

github.com
3 points·by samber·vor 4 Monaten·2 comments

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

samuelberthe.substack.com
1 points·by samber·vor 4 Monaten·0 comments

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

github.com
2 points·by samber·vor 5 Monaten·0 comments

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

go-mod-graph.samber.dev
1 points·by samber·vor 6 Monaten·0 comments

Create illustrations for your GitHub project

samuelberthe.substack.com
1 points·by samber·vor 9 Monaten·0 comments

Go beyond Goroutines: introducing the Reactive paradigm

samuelberthe.substack.com
68 points·by samber·vor 9 Monaten·41 comments

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

github.com
1 points·by samber·vor 9 Monaten·0 comments

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

samuelberthe.substack.com
1 points·by samber·vor 10 Monaten·0 comments

Critical TTL patterns for in-memory caching

samuelberthe.substack.com
3 points·by samber·vor 10 Monaten·0 comments

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

github.com
4 points·by samber·vor 10 Monaten·0 comments

Moe Inference Economics from First Principles

tensoreconomics.com
2 points·by samber·vor 10 Monaten·0 comments

Show HN: The Great GPT Firewall

github.com
1 points·by samber·vor 11 Monaten·0 comments

Spurious correlations (correlation is not causation)

tylervigen.com
3 points·by samber·vor 11 Monaten·0 comments

comments

samber
·vor 28 Tagen·discuss
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.
samber
·vor 28 Tagen·discuss
According to Subquadratic, Needle in a Haystack is strong up to 12m tokens, but RULER has not been tested above 128k tokens ??
samber
·vor 2 Monaten·discuss
OMG. I'm going to recode some of my libraries.
samber
·vor 4 Monaten·discuss
35+ atomic skills covering all aspects of the language (conventions, common errors, top libraries, testing, benchmarks, performance, troubleshooting, etc.).

Benchmarks I ran on Opus 4.6 show a 43% reduction in Go errors and bad practices.

Install with: npx skills add -g https://github.com/samber/cc-skills-golang --skill '*'
samber
·vor 9 Monaten·discuss
IMO, this is much more readable.

So many Go developers ignore some tools because they consider them "not idiomatic".

But why not use abstractions when available ??? Did we forget to be productive ?
samber
·vor 10 Monaten·discuss
`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
samber
·letztes Jahr·discuss
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.
samber
·letztes Jahr·discuss
Elasticsearch is a good bet, if you need to use multiple filters with your queries, and when you grow above the acceptable size of an in-memory database.