frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Local, deterministic, version-controlled knowledge graph

https://www.getdraft.dev/blog/local-graph-engine/
1•mayurpise•18s ago•0 comments

The PHP License, Simplified

https://ben.ramsey.dev/blog/2026/05/the-php-license-simplified
1•gslin•9m ago•0 comments

Open source intelligence about Palantir

https://palantirwatch.org
1•seb1204•10m ago•0 comments

Using the "Sandwich Method" to Teach Mathematics

https://pikuma.com/blog/sandwich-method-math-education
1•atan2•12m ago•0 comments

Kloak keeps secrets out of your application's memory

https://getkloak.io/blog/kloak-50000-feet-view/
1•spinningfactory•13m ago•0 comments

PyFlue – Python-Native Agent Harness Framework (Python Clone of Flue)

https://super-agentic.ai/pyflue
1•sebst•14m ago•0 comments

Show HN: Zuma Portable

https://drive.google.com/drive/folders/1hDRvlY707VrO_UztEtIt1EoPgKBICL8Q?usp=sharing
1•zeeeeeebo•18m ago•0 comments

Simpson's Paradox

https://en.wikipedia.org/wiki/Simpson%27s_paradox
3•basilikum•21m ago•1 comments

California man uses elaborate drone show to help delivery drivers find his house

https://www.dexerto.com/entertainment/california-man-uses-elaborate-drone-show-to-help-delivery-d...
2•gnabgib•23m ago•0 comments

Exit, Voice, and Loyalty

https://en.wikipedia.org/wiki/Exit,_Voice,_and_Loyalty
2•akyuu•24m ago•0 comments

Why should a Trace-ID be 128 bits? (A Surprisingly Long Answer)

https://newsletter.signoz.io/p/why-should-a-trace-id-be-128-bits
2•birdculture•24m ago•0 comments

HN Signal (Last 24 hours) | Curated top stories from HN in the last 24 hrs

https://www.heydebrief.com/dubkc/hn-best-24
1•baetylus•30m ago•2 comments

DeepClaude – Claude Code agent loop with DeepSeek V4 Pro, 17x cheaper

https://github.com/aattaran/deepclaude
2•alattaran•33m ago•0 comments

Show HN: Triggering anti-cheats with just a browser tab title

https://github.com/elliott-diy/DontTrustTitles
4•Elliott-Diy•33m ago•1 comments

Broadcasting GPS on the Local Network

https://evertpot.com/broadcasting-gps-on-local-network/
1•treve•35m ago•0 comments

Brutal in production, lands like a verdict

1•Non_Von_Neumann•35m ago•0 comments

ReactOS Introduces Unified Live/Install Media, New Storage Driver

https://www.phoronix.com/news/ReactOS-Unified-ISO
1•kykat•37m ago•0 comments

Introduction to Atom

https://validator.w3.org/feed/docs/atom.html
2•susam•37m ago•0 comments

The Google Cloud Knowledge Catalog

https://cloud.google.com/blog/products/data-analytics/introducing-the-google-cloud-knowledge-catalog
2•laxmena•38m ago•0 comments

Next-Token Predictor Is An AI's Job, Not Its Species

https://www.astralcodexten.com/p/next-token-predictor-is-an-ais-job
1•optimalsolver•39m ago•0 comments

Seriously, Anthropic? [video]

https://www.youtube.com/watch?v=J8O9LLpJNrg
4•dp-hackernews•44m ago•0 comments

Sato – AI desktop companion for macOS with multi-provider support

https://www.sato.host/
2•vitalune•48m ago•0 comments

The Long Road To Windows 95 [video]

https://www.youtube.com/watch?v=u8k66A9n8gE
1•st_goliath•49m ago•0 comments

Transport access reduces deprivation: When colocation misleads

https://pnas.scienceconnect.io/error?msg=ewogICJpZCIgOiAiNmU3ZTA0MTEtMWQ1Yi00NDhjLTg0MDgtZGE4NjI4...
2•Anon84•51m ago•0 comments

March 2026 Top New Cran Packages

https://rworks.dev/posts/march-2026-top-40-new-cran-packages/
2•ionychal•51m ago•0 comments

How Synthesize_capability Works

https://ninjahawk.github.io/blog/posts/synthesize-capability.html
1•ninjahawk1•56m ago•0 comments

Early and Late-Stage Hypergrowth

https://lethain.com/early-late-stage-hypergrowth/
1•milkglass•1h ago•0 comments

No Smoking Gun

https://notoriousbfg.com/no-smoking-gun/
4•trwhite•1h ago•0 comments

Scientists Gave Cocaine to Salmon

https://www.wired.com/story/cocaine-fueled-wild-salmon-swam-twice-as-far-as-sober-ones/
5•ohjeez•1h ago•2 comments

Building a Web Framework from Scratch

3•NewSmoke38•1h ago•0 comments
Open in hackernews

API testing tool which sucks less

https://github.com/hissssst/hxxp
1•hissssst•11mo ago

Comments

hissssst•11mo ago
Remember HTTP? The plaintext protocol? Making an HTTP request used to be as simple as echo "GET / HTTP/1.0\r\n\r\n" | nc ... . Well, it's not anymore. We fucked it up with electron applications which require subscriptions, login pages, fail to work with basic headers, have fucking cloud versions and use some ultra-smart collaboration sync.

But HTTP is still plaintext. And even though HTTP 2 and 3 are not plaintext, they are still can be expressed as one (most of the times).

So I returned the plaintext back, just wrapped the curl and called it hxxp. The most similar program to hxxp is hurl, but hxxp is much simpler and much more straightforward, with regular shell interpolation and no testing framework inside. Just write the HTTP request and execute it, that's it.

echo "GET https://example.com/ HTTP/1.1" | hxxp -

motorest•11mo ago
The comparison section seems to be lacking even the most cursory search for alternative API testing tools. It features insomnia but somehow fails to list postman or bruno. Tools like httpyac in particular or .http files in general are conspicuously missing. Not very informative.
hissssst•11mo ago
What are .http files?