HackerTrans
トップ新着トレンドコメント過去質問紹介求人

dalberto

no profile record

投稿

Show HN: TakeHome – LLC vs. S-Corp tax calculator for solopreneurs

2 ポイント·投稿者 dalberto·4 か月前·1 コメント

Vibe Coding's Last Mile Problem

blendingbits.io
1 ポイント·投稿者 dalberto·8 か月前·0 コメント

I Used Claude Code to Debug a Nightmare

blendingbits.io
3 ポイント·投稿者 dalberto·8 か月前·1 コメント

コメント

dalberto
·先月·議論
> Postgres as it's built now lacks any semblence of extensibility

PostGIS. pgvector. TimescaleDB. Citus. pg_cron. pgmq. Apache AGE. ParadeDB. hstore. plv8. postgres_fdw. pg_partman. pg_stat_statements...

The extension API is the thing making your thesis possible. Rewriting it away would mean deleting the exact feature you're asking for.
dalberto
·2 か月前·議論
A benchmark without Opus 4.6/4.7 feels incomplete.
dalberto
·6 か月前·議論
I generally agree that one database instance is ideal, but there are other reasons why Postgres everywhere is advantageous, even across multiple instances:

- Expertise: it's just SQL for the most part - Ecosystem: same ORM, same connection pooler - Portability: all major clouds have managed Postgres

I'd gladly take multiple Postgres instances even if I lose cross-database joins.
dalberto
·8 か月前·議論
Async django is not for the faint of heart, but it's definitely possible in 2025.

I recently wrote about issues debugging this stack[1], but now I feel very comfortable operating async-first.

[1] https://blendingbits.io/p/i-used-claude-code-to-debug-a-nigh...
dalberto
·9 か月前·議論
Haven't deployed production Java in years, so I won't speak to it. However, even with Go's static binaries, I'd like to leverage the same build and deploy process as other stacks. With Docker a Go service is no different than a Python service. With Docker, I use the same build tool, instrument health checks similarly, etc.

Standardization is major. Every major cloud has one (and often several) container orchestration services, so standardization naturally leads to portability. No lock-in. From my local to the cloud.
dalberto
·9 か月前·議論
Even when running things in their own box, I likely want to isolate things from one another.

For example, different Python apps using different Python versions. venvs are nice but incomplete; you may end up using libraries with system dependencies.
dalberto
·9 か月前·議論
Hard disagree. I've used Docker predominantly in monoliths, and it has served me well. Before that I used VMs (via Vagrant). Docker certainly makes microservices more tenable because of the lower overhead, but the core tenets of reproducibility and isolation are useful regardless of architecture.