frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Atomic Physics in Pure Anglo-Saxon

https://www.ling.upenn.edu/~beatrice/110/docs/uncleftish-beholding.html
1•xelxebar•49s ago•0 comments

Show HN: Zero Trust Boundary for Agents

https://github.com/Open-AGS/attestor
1•Oxlamarr•55s ago•0 comments

Senator Lindsey Graham, Republican of South Carolina, Dies at 71

https://www.nytimes.com/2026/07/12/us/politics/lindsey-graham-dead.html
1•josefrichter•2m ago•0 comments

Moving Averages (2022)

https://gregorygundersen.com/blog/2022/06/04/moving-averages/
1•tosh•4m ago•0 comments

Lame 4.0 Released

https://sourceforge.net/p/lame/mailman/message/59357706/
2•robin_reala•6m ago•0 comments

Intro to Multiplicative Calculus [video]

https://www.youtube.com/watch?v=O1ds53ADmOU
1•soupspaces•11m ago•0 comments

'I'm not a programmer' anymore: Linus Torvalds on the only two tools he uses now

https://www.zdnet.com/article/open-source-summit-linus-torvalds/
1•makerdiety•13m ago•0 comments

Unify AI Horn alternative using ESP32, WizNet 5500, Poe and a Ti Amp

https://www.hackster.io/c_m_cooper/announce-for-unify-e9c652
1•cromka•14m ago•0 comments

Show HN: Inkfold – workspace across multiple AI providers with shared memory

https://www.inkfold.app/
1•hannan2•16m ago•0 comments

Why Mechanical Sympathy? (2011)

https://mechanical-sympathy.blogspot.com/2011/07/why-mechanical-sympathy.html
1•tosh•20m ago•0 comments

Word Count Benchmarks for Websites and Email

https://medium.com/@thesuperrepemail/word-count-benchmarks-for-websites-and-email-d3a7eb6bbea8
2•rajkverma123•21m ago•0 comments

List of theaters and campaigns of World War II

https://en.wikipedia.org/wiki/List_of_theaters_and_campaigns_of_World_War_II
2•zeristor•22m ago•0 comments

China unveils high-power microwave weapon arsenal with up to 100 gigawatts

https://www.scmp.com/news/china/science/article/3360000/100-gigawatts-china-unveils-its-high-powe...
2•msalsas•24m ago•0 comments

ESDM Is Now Open Source

https://docs.eventsourcingdb.io/blog/2026/07/13/esdm-is-now-open-source/
3•goloroden•27m ago•0 comments

T. rex fossil could become most expensive dinosaur ever sold

https://www.bbc.co.uk/news/articles/c4gykgyn1r4o
2•beardyw•28m ago•0 comments

24-zig

https://en.wikipedia.org/wiki/24-zig
1•Lammy•30m ago•0 comments

Show HN: PalExplorer – peer-to-peer file sharing with no central server

https://palexplorer.com
2•hannan2•31m ago•1 comments

The Caste of Intelligence and the Big Tech Blueprint

https://calcrecipe.com/en/workshop/5
1•wsdn•32m ago•0 comments

Agent Service – promptable AI agents with guardrails and downloadable packages

https://buy.stripe.com/5kQ5kEaUKd8w0qr0FKe3e00
1•mknight2690•37m ago•0 comments

Using Kamal 2.0 in Production

https://rubys.github.io/kamal-in-production/
3•enz•42m ago•0 comments

AI Should Build Its Own Research World Model

https://www.evolvinglab.ai/blog/research-world-model
1•vinhnx•43m ago•0 comments

Cruxcoach – Manage many climbing boards privatly in one app

https://cruxcoach.org/
2•frankzander•46m ago•0 comments

What I learned publishing a paper

https://ramjanarthan.com/what-i-learned-publishing-a-paper/
1•shadowblue•52m ago•0 comments

Best Hiking Boots (2026): Walking Shoes, Trails, Backpacking

https://www.wired.com/gallery/best-hiking-boots/
1•joozio•52m ago•0 comments

6× faster binary search: from compiled code to mechanical sympathy

https://pythonspeed.com/articles/branchless-binary-search/
4•enz•54m ago•0 comments

The secret operation to move the Bayeux Tapestry

https://www.nationalgeographic.com/history/article/bayeux-tapestry-return-england-british-museum
1•Tomte•58m ago•0 comments

Sen. Lindsey Graham dead at 71 after 'brief and sudden' illness, office says

https://www.dw.com/en/us-senator-lindsey-graham-dies/a-77921386
6•rock57•58m ago•5 comments

Parse inbound email to JSON in Node.js – MailKite

https://mailkite.dev/blog/parse-inbound-email-to-json-node/
4•aisendhub•59m ago•0 comments

To Build More Believable Bots, Simulate the Neurochemistry

https://github.com/smithandrewjohn/kindalive
2•beardyw•1h ago•2 comments

Ancient feeding-related neuropeptides regulate alloparenting in ants

https://www.nature.com/articles/s41586-026-10747-6
2•XzetaU8•1h 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?