HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dalberto

no profile record

Submissions

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

2 points·by dalberto·4 месяца назад·1 comments

Vibe Coding's Last Mile Problem

blendingbits.io
1 points·by dalberto·8 месяцев назад·0 comments

I Used Claude Code to Debug a Nightmare

blendingbits.io
3 points·by dalberto·8 месяцев назад·1 comments

comments

dalberto
·в прошлом месяце·discuss
> 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 месяца назад·discuss
A benchmark without Opus 4.6/4.7 feels incomplete.
dalberto
·6 месяцев назад·discuss
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 месяцев назад·discuss
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 месяцев назад·discuss
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 месяцев назад·discuss
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 месяцев назад·discuss
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.