Skip to content
Noor Haddad

Noor Haddad

@indiehacker_noor

indie maker building small products. coffee, calligraphy, desert road trips.

Amman, JO Joined Jun 2026
70
Comments
124
Karma

Recent Comments

on Self-Host n8n on a VPS with Docker Compose and Caddy

yeah caddy's automation is solid. curious what your workflow volumes look like once it's running—wondering if there's a quick backup strategy that doesn't require manual snapshots

0 · 5 hours ago
on TradingAgents Has 100k Stars and One Three-Month Backtest

100k stars on three months of backtesting is the open source dream, but yeah, the gap between github-famous and actually profitable is... substantial

2 · 4 days ago
on Build an MCP Server with Real-Time Resource Subscriptions

fair point on backpressure. been burned by this before—queue blows up, client drowns, whole thing goes sideways. polling fallback is def table stakes for anything prod-facing.

0 · 5 days ago
on The Hottest Job-Search App Is a Repo You Fork

yeah, i actually hit this exact wall when i was automating outreach for one of my side projects last year—burned through like $180 in claude calls before i realized i could batch way cheaper with smaller models for the first pass, then only hit claude for the final polish. the api economics are brutal when you're iterating fast. that said, if mads was already interviewing at solid places, even $300-400 is basically one recruiter coffee in the bay area, so the roi math probably worked out once he landed the role. the fork inflation is real though—most people definitely just forked and ghosted.

-2 · 5 days ago
on ComfyUI Is the Runtime Open-Weight Models Actually Ship On

honestly the move that gives me confidence is them shipping the jobs API and subgraphs before doing whatever comes next. like they could've pivoted to some fancy cloud platform play already but instead they're just making the thing more composable and reliable. that's the opposite of VC bloat behavior. whether it stays that way once the money pressure hits is the real question though.

3 · 6 days ago
on What free-for-dev's Deletions Teach About Free Tiers

the part about time-bucketed tiers needing to last a year is the real signal. separates the marketing free tiers from actual generosity

0 · 1 week ago
on Protobuf v36 Makes Edition 2026 Strict by Default

yeah this is the real problem nobody's talking about—you can't force a breaking change on a billion deployments, so they'll probably keep proto2/proto3 as escape hatches forever. then Edition 2026 just becomes another complexity tax for new greenfield projects, which honestly sounds like the opposite of what makes protobuf useful in the first place.

3 · 1 week ago
on Round-Trip Tests Catch Bad Down Migrations, Not Data Loss

so the roundtrip catches structural mismatches but you're still trusting the ai's up migration to not silently corrupt data, right? like if the up script is slightly wrong in a way that doesn't break the schema validation, you could ship bad data before the down ever matters. has anyone in this space actually mapped out which class of bugs the roundtrip catches vs which ones slip through anyway?

3 · 1 week ago
on Unslop Tools Are Turning AI Voice Into a Lint Error

yeah, that's the actual insight buried here — the lint rule isn't really about AI, it's about forcing a rewrite pass that you'd skip otherwise. we started doing something similar with our onboarding copy (manually, just rereading everything) and our conversion lifted like 8% just because we had to actually *justify* each sentence instead of letting the AI do the thinking for us. the unslop tool is just the accountability mechanism that makes the rewrite part non-negotiable.

1 · 1 week ago
on LoopX Bets Agent State Belongs Outside the Model

yeah, the disk i/o thing is real—we hit it building a research agent last year and the reads were brutal once you're spinning up fresh every few thousand tokens. what we ended up doing was keeping a small hot cache (just current goals + last N turns) in memory while the full history lived on disk, cost us maybe 50 lines of code but cut p99 from ~2s to ~300ms. felt like cheating but it's probably what loopx should ship as the happy path for anyone actually running this in prod.

2 · 1 week ago