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·قبل 18 يومًا·0 comments

Anthropic Policy on the AI Exponential

anthropic.com
2 points·by samber·الشهر الماضي·1 comments

Linear Agent

linear.app
3 points·by samber·الشهر الماضي·0 comments

SemiAnalysis: TCO of Space Datacenters

newsletter.semianalysis.com
4 points·by samber·الشهر الماضي·0 comments

IEA: About Energy and AI

iea.org
3 points·by samber·الشهر الماضي·0 comments

The engine behind the 100 TB GitHub search engine

github.blog
8 points·by samber·قبل شهرين·0 comments

UX Research Tooling Landscape

github.com
2 points·by samber·قبل 3 أشهر·0 comments

A collection of 35 Golang Agent Skills

github.com
3 points·by samber·قبل 4 أشهر·2 comments

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

samuelberthe.substack.com
1 points·by samber·قبل 4 أشهر·0 comments

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

github.com
2 points·by samber·قبل 5 أشهر·0 comments

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

go-mod-graph.samber.dev
1 points·by samber·قبل 6 أشهر·0 comments

Create illustrations for your GitHub project

samuelberthe.substack.com
1 points·by samber·قبل 9 أشهر·0 comments

Go beyond Goroutines: introducing the Reactive paradigm

samuelberthe.substack.com
68 points·by samber·قبل 9 أشهر·41 comments

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

github.com
1 points·by samber·قبل 9 أشهر·0 comments

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

samuelberthe.substack.com
1 points·by samber·قبل 10 أشهر·0 comments

Critical TTL patterns for in-memory caching

samuelberthe.substack.com
3 points·by samber·قبل 10 أشهر·0 comments

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

github.com
4 points·by samber·قبل 10 أشهر·0 comments

Moe Inference Economics from First Principles

tensoreconomics.com
2 points·by samber·قبل 10 أشهر·0 comments

Show HN: The Great GPT Firewall

github.com
1 points·by samber·قبل 11 شهرًا·0 comments

Spurious correlations (correlation is not causation)

tylervigen.com
3 points·by samber·قبل 11 شهرًا·0 comments

comments

samber
·قبل 28 يومًا·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
·قبل 28 يومًا·discuss
According to Subquadratic, Needle in a Haystack is strong up to 12m tokens, but RULER has not been tested above 128k tokens ??
samber
·قبل شهرين·discuss
OMG. I'm going to recode some of my libraries.
samber
·قبل 4 أشهر·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
·قبل 9 أشهر·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
·قبل 10 أشهر·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
·السنة الماضية·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
·السنة الماضية·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.