frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NIH Directors Decide, Except When HHS Says No

https://formernih.substack.com/p/nih-directors-decide-except-when
1•SubiculumCode•1m ago•0 comments

Scientific spat erupts over claim that bones have key immune vessels

https://www.science.org/content/article/scientific-spat-erupts-over-claim-bones-have-key-immune-v...
1•prabal97•1m ago•0 comments

Please don't use "win" as an abbreviation for Microsoft Windows

https://www.gnu.org/prep/standards/standards.html#Trademarks
1•dyzone•2m ago•0 comments

Proton Mail now sorts emails into "Primary," "Social," and more, like Gmail

https://www.neowin.net/news/proton-mail-is-finally-now-able-to-sort-your-emails-into-different-ca...
1•bundie•4m ago•0 comments

Are you good at AI, or just using it?

6•ppezaris•8m ago•0 comments

Buoyant software – improves when models improve

https://blog.rajivayyangar.com/buoyancy/
2•rajivayyangar•9m ago•1 comments

Anchors: A simple daily ritual app

https://anchors.wallets.company
2•johnoke•10m ago•0 comments

Bitflash: A Tor-native revival of Bitcoin 0.1.0, mined on CPUs with RandomX

https://bitflash.network/
2•bitflash•10m ago•0 comments

Trading Correlation: From Parlays to Dispersion

https://viniciusesposito.com/notes/dispersion/
2•1htfp•10m ago•0 comments

Hola AI Agent

https://cloudgpu.io/agent/hola-ai-agent
2•seejay•11m ago•0 comments

Pulse: Track your spending as it happens.

https://pulse.wallets.company
2•johnoke•11m ago•1 comments

Academic who accused Jason Arday of plagiarism suspended by university

https://www.bbc.co.uk/news/articles/cevmrjd9lj1o
2•bushwart•12m ago•0 comments

Show HN: WaveHouse – Supabase for ClickHouse

https://wavehouse.dev
4•ericandr•13m ago•0 comments

The government's strategic plan for autism

https://27unihted.substack.com/p/hhss-strategic-plan-for-autism-just
2•SubiculumCode•14m ago•0 comments

Show HN: Skilldocs – Figma for Markdown

https://skilldocs.dev/tour
2•rajivayyangar•16m ago•1 comments

Optimizing Things in the USSR

https://chris-said.io/2016/05/11/optimizing-things-in-the-ussr/
4•cassepipe•17m ago•1 comments

Route the Work, Not Just the Data: GPUs, CPUs, and the Rise of AI-Native Storage

https://research.triunalabs.com/articles/ai-native-ssd/
3•paulwoll•18m ago•0 comments

Israeli man ordered hummus in Berlin and was thrown out over his accent

https://www.ynetnews.com/jewish-world/article/bkicumziml
2•Tomte•19m ago•1 comments

The Foothills of Bay Area House Party – By Scott Alexander

https://www.astralcodexten.com/p/the-foothills-of-bay-area-house-party
6•haritha1313•20m ago•0 comments

Reading Together, Unsupervised

https://brian.abelson.live/log/2026/08/12/feederss.html
2•speckx•21m ago•0 comments

America's Colleges Are Hurtling Toward an Enrollment Cliff

https://www.wsj.com/us-news/education/college-admissions-demographic-cliff-16dec51f
4•fortran77•21m ago•2 comments

Internal Agents Map

https://github.com/steel-experiments/internal-agents-map
2•nkko•22m ago•2 comments

I should have loved biology

https://jsomers.net/i-should-have-loved-biology/
5•tyre•23m ago•0 comments

Richard Heinberg Has Died

https://www.resilience.org/stories/2026-08-04/devastating-news-the-loss-of-richard-heinberg/
3•dredmorbius•24m ago•1 comments

High-speed star is whipping around the black hole in the middle of our galaxy

https://www.npr.org/2026/08/19/nx-s1-5936479/fastest-star-galaxy-black-hole-sagittarius-a-milky-way
3•colinprince•25m ago•0 comments

Taylor Farms 2009 to 2026: Outbreaks and the Recalls That Did and Did Not Follow

https://www.marlerblog.com/case-news/update-taylor-farms-2009-to-2026-the-outbreaks-and-the-recal...
2•speckx•26m ago•0 comments

vLLM Running Natively on Windows with ROCm for AMD RDNA2 (RX 6000)

https://github.com/sebastianmechno-sys/vllm-rocm-windows-rdna2
2•esseba-dev•26m ago•0 comments

Show HN: Halmos.Science - Hacker News for math, the server checks the proofs

https://halmos.science/
2•nadermx•27m ago•0 comments

Why does the U.S. military seem stymied in the war with Iran?

https://www.npr.org/2026/08/19/nx-s1-5937516/why-does-the-u-s-military-seem-stymied-in-the-war-wi...
2•colinprince•28m ago•0 comments

UK cinemas are now restricting Meta smart glasses over film piracy concerns

https://www.neowin.net/news/uk-cinemas-are-now-restricting-meta-smart-glasses-over-film-piracy-co...
6•bundie•28m ago•0 comments
Open in hackernews

API testing tool which sucks less

https://github.com/hissssst/hxxp
1•hissssst•1y ago

Comments

hissssst•1y 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•1y 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•1y ago
What are .http files?