frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

If we hope to build artificial souls, where should we start?

https://aeon.co/essays/if-we-hope-to-build-artificial-souls-where-should-we-start
1•speckx•1m ago•0 comments

Show HN: Expi – Local No Subscription Converter and Media Editor

https://getexpi.app
1•philematic•1m ago•0 comments

Is grep all you need for agentic search?

https://softwaredoug.com/blog/2026/04/06/agentic-search-is-having-a-grep-moment.html
1•ingve•2m ago•0 comments

SpectralQuant: Breaking TurboQuant's Compression Limit via Spectral Structure

https://github.com/Dynamis-Labs/spectralquant
1•Numerlor•4m ago•0 comments

We Built a Skills Optimizer, Here's What We Learned About Claude Code

https://aaroneaton.com/walkthroughs/claudecode-skill-evolution-retrospective/
1•obrien1984ae•4m ago•0 comments

Show HN: I built a theme engine for white-label apps using OKLCH color science

https://hextimator.com
1•grga•5m ago•0 comments

Full Anatomy of Mercor's Data Breach

https://share.jotbird.com/restless-steady-riverbend
2•chirau•6m ago•0 comments

Puppy Could Someday Save Your Life

https://www.nytimes.com/2026/04/01/travel/avalanche-rescue-dogs-ski-patrol.html
1•gmays•8m ago•0 comments

Cell Phone Networks Are Just Microservices

https://www.cape.co/blog/cell-phone-networks-are-just-microservices?slug=blog
1•wglb•8m ago•0 comments

Scanned 28 major websites for AI agent readiness – results are embarrassing

https://www.clawtrak.com/
1•pixelfamiliar•9m ago•1 comments

NY Times publishes headline claiming the "A" in "NATO" stands for "American"

https://xcancel.com/NYTimesPR/status/2040142477215056082
3•latexr•10m ago•1 comments

Show HN: CalcMonte – Monte Carlo simulation for loans and investments

https://calcmonte.com/
1•osepper•11m ago•0 comments

The Pendulum of Taste

https://constantinos.dev/blog/the-pendulum-of-taste/
1•a022311•11m ago•0 comments

Cuneiform

https://en.wikipedia.org/wiki/Cuneiform
1•tosh•13m ago•0 comments

U.S. Lawmakers Work on Unified Site-Blocking Bill to Counter Online Piracy

https://torrentfreak.com/u-s-lawmakers-work-on-unified-site-blocking-bill-to-counter-online-piracy/
1•t-3•13m ago•0 comments

I let an AI run my startup for 35 days – 315 sessions, $0 revenue

https://agentfounder.ai/blog
2•manduks•15m ago•1 comments

Reviving a Robot

https://allevato.me/2026/04/03/reviving-a-robot
1•kukanani•16m ago•0 comments

Sketch of the Analytical Engine Invented by Charles Babbage

https://www.fourmilab.ch/babbage/sketch.html
1•shrikaranhanda•17m ago•0 comments

Video from Artemis II flyby of the Moon will not initially look spectacular

https://arstechnica.com/space/2026/04/video-from-artemis-ii-flyby-of-the-moon-will-not-initially-...
1•dangle1•18m ago•0 comments

C# in Unity 2026: Features Most Developers Still Don't Use

https://darkounity.com/blog/c-in-unity-2026-features-most-developers-still-dont-use
1•hacker_13•20m ago•0 comments

New fibre optic data transmission speed record of 450Tbps

https://www.ucl.ac.uk/news/2026/apr/new-fibre-optic-data-transmission-speed-record
3•giuliomagnifico•28m ago•0 comments

Private Files on a Static, Open-Source Website

https://hnlyman.github.io/pages/private_files.html
2•hnlyman•29m ago•1 comments

Gas Town from Clown Show to v1.0

https://steve-yegge.medium.com/gas-town-from-clown-show-to-v1-0-c239d9a407ec
1•yodon•29m ago•0 comments

Microbial upcycling of plastic waste to levodopa

https://www.nature.com/articles/s41893-026-01785-z
1•PaulHoule•29m ago•0 comments

Show HN: Lumina – a statically typed web-native language for JavaScript and WASM

https://github.com/nyigoro/lumina-lang
1•light_ideas•30m ago•0 comments

Disclosing bluehammer exploit, vulnerability is still unpatched

https://deadeclipse666.blogspot.com/2026/04/public-disclosure.html
3•Alifatisk•32m ago•0 comments

I Tried Vibing an RSS Reader and My Dreams Did Not Come True

https://blog.jim-nielsen.com/2026/vibe-dreams-didnt-come-true/
3•herbertl•32m ago•0 comments

What Being Ripped Off Taught Me

https://belief.horse/notes/what-being-ripped-off-taught-me/
50•doctorhandshake•34m ago•10 comments

Token-Aware LLM Load Balancer route by inflight tokens,not connections

https://github.com/SivagurunathanV/token-aware-balancer
2•sivagurunathanv•35m ago•0 comments

A real-world case of property-based verification

https://ochagavia.nl/blog/a-real-world-case-of-property-based-verification/
1•wofo•35m ago•0 comments
Open in hackernews

API testing tool which sucks less

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

Comments

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