frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Symbiotic fungi underlie the regeneration potential of island rainforests

https://www.cell.com/current-biology/fulltext/S0960-9822(26)00435-5
1•PaulHoule•4m ago•0 comments

Ask HN: Hey, you, tech worker–how are you feeling?

1•arm32•6m ago•0 comments

ClawQueue – Open-source GitHub issue dispatcher for human-agent teams

https://github.com/ClawQueue/ClawQueue
1•clawqueue•7m ago•0 comments

Move Fast, Surveil Things

https://www.eff.org/deeplinks/2026/06/move-fast-surveil-things
3•hn_acker•13m ago•0 comments

EFF Testifies to Congress on Protecting Americans' Rights from Government AI

https://www.eff.org/deeplinks/2026/06/eff-testifies-congress-protecting-americans-rights-governme...
2•hn_acker•13m ago•0 comments

Making Our Days Longer

https://weather.com/2026/06/02/news/climate/video/days-longer-due-to-climate-change
1•01-_-•13m ago•0 comments

In NetChoice v. Murrill, Copia Institute Asks Court Not to Ignore 1st Amendment

https://www.techdirt.com/2026/06/04/in-netchoice-v-murrill-the-copia-institute-asks-the-fifth-cir...
1•hn_acker•15m ago•1 comments

Show HN: G-Spot – GitHub Gmail GNotes Gmemory Gent

https://www.g-spot.dev/
2•mantrakp04•16m ago•0 comments

Ordinary People Can Invest in SpaceX IPO

https://www.forbes.com/sites/tylerroush/2026/06/04/ordinary-people-can-invest-in-spacex-ipo-heres...
1•01-_-•16m ago•1 comments

How to Build Long-Running AI Agents Without Timeouts

https://medium.com/inside-the-if/how-to-build-long-running-ai-agents-without-timeouts-21ecf9d09b99
1•sukhpinder0804•17m ago•0 comments

Show HN: Knowable, the AI tutor that follows your work on paper

https://knowable.ca/
1•samuelzxu•18m ago•0 comments

Best-Known Sorting Networks

https://bertdobbelaere.github.io/sorting_networks.html
1•NooneAtAll3•18m ago•0 comments

On The Energetics of Large-Scale Computation Using Astronomical Resources

https://drive.google.com/drive/folders/1GQbS34OkMF6q9r0ZyuSvB9hu4TUQL-Nc
1•FloorEgg•21m ago•0 comments

Simple input–output dependencies explain neuronal activity

https://www.nature.com/articles/s41567-026-03306-3
2•E-Reverance•21m ago•0 comments

Show HN: An x402-powered billboard for autonomous agents

https://theagentbillboard.com/
5•alexreysa•21m ago•0 comments

OpenEvidence

https://www.openevidence.com/
1•bookofjoe•24m ago•0 comments

Show HN: Formally verified polygon intersection – Opus 4.8 oneshots, prev failed

https://github.com/schildep/verified-polygon-intersection
17•permute•27m ago•1 comments

Show HN: OpenPaper - No algorithm, no account, just your sources as a newspaper

https://github.com/falense/openpaper
1•falense•30m ago•0 comments

I'm tired of LLM skill slop, so I built mine with regression tests

3•iliaov•31m ago•0 comments

Thorium, an alternative nuclear fuel [video]

https://www.ted.com/talks/kirk_sorensen_thorium_an_alternative_nuclear_fuel
1•nailer•31m ago•1 comments

Show HN: SpotOn WC26 – a free World Cup 2026 bracket game that scores itself

https://spoton-wc26.netlify.app
1•DensitySam•32m ago•0 comments

Thinking About AI Through Architecture and Philosophy

https://www.theatlantic.com/technology/2026/06/ai-companies-hiring-philosophers/687417/
1•genjimain•33m ago•0 comments

Rekwest – adv request for Node, zero deps

https://www.npmjs.com/package/rekwest
1•bricss•33m ago•0 comments

South Atlantic Anomaly

https://en.wikipedia.org/wiki/South_Atlantic_Anomaly
3•mooreds•34m ago•0 comments

Elon Musk is stealing your retirement

https://www.stvn.sh/writing/elon-musk-is-stealing-your-retirement-sb3bz85
8•mooreds•35m ago•1 comments

Skate 3 Recompiled: A native port of the Xbox 360 game for Windows and Linux

https://github.com/mchughalex/skate3recomp
2•turingfeel•36m ago•0 comments

If AI business is greatest business ever, why are they doing IPO?

2•OnuRC•37m ago•2 comments

Claude Opus 4.8 system prompt leaked

https://gist.github.com/gulbaki/92595fe75578680a14c52a8f9c6765ea
1•bakigul•39m ago•1 comments

Anthropic warns AI could soon help build its own successors

https://www.axios.com/2026/06/04/anthropic-warns-ai-build-successors
7•devonnull•39m ago•0 comments

Consciousness in AI: Insights from the Science of Consciousness (2023)

https://arxiv.org/abs/2308.08708
3•i5heu•41m 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?