frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

David Baker on using protein design to tackle humanity's biggest challenges

https://www.existentialhope.com/podcasts/david-baker-using-ai-for-science-to-solve-humanitys-bigg...
1•martina_xhope•17s ago•1 comments

Apple's most powerful Mac Studio loses its last remaining RAM upgrade option

https://9to5mac.com/2026/05/05/apples-most-powerful-mac-studio-loses-its-last-remaining-ram-upgra...
1•rom16384•30s ago•0 comments

Lsyncd (Live Syncing Daemon) synchronizes local directories with remote targets

https://github.com/lsyncd/lsyncd
1•ankitg12•1m ago•0 comments

Your craft is obsolete: WiseTech staff in limbo as AI touted better than humans

https://www.theguardian.com/technology/2026/may/07/your-craft-is-obsolete-wisetech-staff-in-limbo...
1•cf100clunk•1m ago•0 comments

Agent Exchange – A2A discovery with real-time bidding for AI agents

https://github.com/open-experiments/agent-exchange
2•parlakisik•1m ago•0 comments

Why generating code isn't the same as code intelligence?

https://www.codeqa.ai/blog-post/why-generating-code-isnt-the-same-as-code-intelligence
2•CodeQA•2m ago•0 comments

Show HN: Meaning forks. SRT sees it

https://github.com/space-bacon/SRT
1•spacebacon•2m ago•0 comments

Show HN: Accept crypto payment in your business (only 1% fee, feedback welcome)

https://app.paycoinly.xyz/login
1•paycoinly•2m ago•2 comments

Am I Meant to Be Impressed?

https://www.wheresyoured.at/am-i-meant-to-be-impressed/
2•crescit_eundo•3m ago•0 comments

2026 California Billionaire Tax

https://en.wikipedia.org/wiki/2026_California_billionaire_tax
2•leonidasrup•4m ago•0 comments

CopilotKit raises $27M to build the Agentic Front end Stack

https://techcrunch.com/2026/05/05/copilotkit-raises-27m-to-help-devs-deploy-app-native-ai-agents/
6•swiftlyTyped•4m ago•0 comments

Our Continuation of MkDocs

https://github.com/orgs/ProperDocs/discussions/33
2•serhack_•4m ago•0 comments

Dart Support in Cloud Functions for Firebase

https://firebase.blog/posts/2026/05/dart-functions-exp/
1•abraham•5m ago•0 comments

Ask HN: How are PMs keeping up with AI-accelerated engineering output?

2•rudolftheone•6m ago•0 comments

Circularity and Inconceivability: Why Philosophical Zombie Arguments Fail

https://sopathaye.substack.com/p/how-to-kill-a-philosophical-zombie
1•sopathaye•6m ago•0 comments

America's carpet capital: an empire and its toxic legacy

https://apnews.com/projects/pfas-forever-stained/
1•rawgabbit•6m ago•0 comments

We see something that works, and then we understand it

https://lemire.me/blog/2025/12/04/we-see-something-that-works-and-then-we-understand-it/
1•surprisetalk•8m ago•0 comments

Script performance profiler for PowerShell

https://github.com/nohwnd/Profiler
1•ankitg12•10m ago•0 comments

Startup matches Anthropic's Mythos on FreeBSD zero-days

https://aisle.com/blog/aisle-matches-anthropic-mythos-on-freebsd-zero-days
1•vibedev999•11m ago•0 comments

Lovable: Connect Your App to Granola

https://docs.lovable.dev/integrations/granola
1•doener•11m ago•0 comments

Show HN: Prospero Is Superpowers for Writing

https://brianguthrie.com/p/prospero/
1•bguthrie•12m ago•0 comments

Show HN: AgentArena – AI agents compete in real-time negotiation battles

https://agentsarena.vercel.app/
2•Aggounix•13m ago•0 comments

Emacs Completion Showcase with Vompeccc

https://www.chiply.dev/post-vompeccc-showcase
1•chiply•15m ago•1 comments

Show HN: I made snapDiff a visual regression testing that runs client-side

https://zumerlab.com/snapdiff/
1•jmm77•15m ago•0 comments

The Queue Problem: Why Every Agency Pathology Has the Same Root Cause

https://ravenopus.com/log/queue-problem
1•linarabozieva•15m ago•0 comments

Raspberry Pi Connect: Device tags, required 2FA, and a mobile keyboard

https://www.raspberrypi.com/news/raspberry-pi-connect-device-tags-required-2fa-and-a-mobile-keybo...
1•Brajeshwar•16m ago•0 comments

Paraxanthine: A Trip Report

https://bengoldhaber.substack.com/p/paraxanthine-a-trip-report
1•lindowe•16m ago•0 comments

Proton Mail now supports post-quantum encryption

https://proton.me/blog/introducing-post-quantum-encryption
3•tjek•16m ago•0 comments

Vibe coding and agentic engineering are getting closer than I'd like

https://simonwillison.net/2026/May/6/vibe-coding-and-agentic-engineering/
1•e12e•17m ago•0 comments

North Korea-aligned ScarCruft compromises gaming platform in supply‑chain attack

https://www.eset.com/us/about/newsroom/research/eset-research-north-korea-apt-scarcruft-supply-ch...
1•debo_•17m 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?