HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gkoos

no profile record

Submissions

[untitled]

1 points·by gkoos·2 months ago·0 comments

[untitled]

1 points·by gkoos·3 months ago·0 comments

[untitled]

1 points·by gkoos·3 months ago·0 comments

Show HN: Fetch Reliability Arena – Compare HTTP clients under chaos

fetch-kit.github.io
4 points·by gkoos·3 months ago·1 comments

[untitled]

1 points·by gkoos·4 months ago·0 comments

[untitled]

1 points·by gkoos·4 months ago·0 comments

[untitled]

1 points·by gkoos·4 months ago·0 comments

Show HN: Ffetch v5 – TypeScript-first fetch client

npmjs.com
1 points·by gkoos·4 months ago·0 comments

Show HN: A novel pattern for handling in-flight requests in distributed caches

infoq.com
1 points·by gkoos·5 months ago·0 comments

[untitled]

1 points·by gkoos·6 months ago·0 comments

Modern JavaScript Concurrency – 2025 Edition

blog.gaborkoos.com
1 points·by gkoos·9 months ago·0 comments

[untitled]

1 points·by gkoos·9 months ago·0 comments

[untitled]

1 points·by gkoos·9 months ago·0 comments

[untitled]

1 points·by gkoos·9 months ago·0 comments

Show HN: Chaos-fetch – TS library for simulating network chaos in fetch requests

github.com
3 points·by gkoos·10 months ago·0 comments

Chaos Proxy – Simulate API failures, latency, and rate limits for testing

3 points·by gkoos·10 months ago·0 comments

[untitled]

1 points·by gkoos·10 months ago·0 comments

Show HN: Browser extensions for my privacy-first temporary email service

1 points·by gkoos·10 months ago·0 comments

Ffetch 2.0 – fetch() wrapper with timeouts, retries, circuit breaker

npmjs.com
1 points·by gkoos·10 months ago·1 comments

comments

gkoos
·2 months ago·discuss
[dead]
gkoos
·3 months ago·discuss
This post runs three controlled chaos scenarios against the same endpoint to compare retry-only, Retry-After-aware retries, and hedging. One recurring result is that reliability gains can come with significantly worse p95/p99, while 429-aware retry behavior outperforms blind retries under rate limiting.
gkoos
·3 months ago·discuss
[dead]
gkoos
·3 months ago·discuss
[dead]
gkoos
·3 months ago·discuss
[dead]
gkoos
·4 months ago·discuss
Why debouncing input reduces call volume but does not prevent stale-response race conditions.
gkoos
·4 months ago·discuss
I implemented atomic hot config reload in both Node and Go with the same external contract, then reran benchmarks on the same machine and methodology. In this setup, Go remains about 1.92x higher throughput, while both versions show steady-state overhead from reload-safe runtime design.
gkoos
·6 months ago·discuss
Summary: Explains backpressure as producer–consumer rate control in JS, covering Node.js streams (write()/drain, pipe()), Web Streams, and pitfalls with async/await and Promise.all().
gkoos
·10 months ago·discuss
I got tired of reimplementing timeout/retry logic, so I built a thin fetch() wrapper.

const client = createClient({ timeout: 5000, retries: 3, circuit: { threshold: 5, reset: 30000 } }) const response = await client('/api/data') // exactly like fetch()

Drop-in replacement, zero deps, ~2KB. Has lifecycle hooks for auth/logging, exponential backoff with jitter, respects Retry-After headers, and proper AbortSignal composition. Preserves all native fetch behavior.

https://github.com/gkoos/ffetch

Thoughts?
gkoos
·11 months ago·discuss
I guess the more organised you are, the better off with just a textfile. I'm not, so I use layers: - postit notes - google (I know!) calendar if it's time sensitive - paper or text file notes - if it's a longer thing, maybe obsidian (I know!)

The point is, I don't think one app, any app can solve all mankind's all scheduling problems.