frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

microui: A tiny immediate-mode UI library

https://github.com/rxi/microui
1•tosh•1m ago•0 comments

Trump Administration Plans to Require Higher Wages for H-1B Visa Holders

https://www.wsj.com/politics/policy/trump-administration-plans-to-require-higher-wages-for-h-1b-v...
1•cebert•1m ago•0 comments

How I vibe-code 10 web services from anywhere

https://www.blynt.com/blog/vibe-coding-from-everywhere/
1•blynt•1m ago•0 comments

How I work without a mouse

https://plo.fyi/blog/working-without-a-mouse/
1•ploMP4•2m ago•0 comments

Druids: Batteries-included library to coordinate and deploy coding agents

https://druids.dev/welcome
1•isaacimagine•3m ago•0 comments

(A Few) Ops Lessons We All Learn the Hard Way

https://netmeister.org/blog/ops-lessons.html
1•rayhaanj•4m ago•0 comments

It's 2026 and infrastructure DevEx is still lacking

https://grafosai.substack.com/p/its-2026-and-infrastructure-devex
1•souvlakius•5m ago•0 comments

I Think Software Development Will Be Automated by 2030

https://blog.vtemian.com/talk/will-ai-automate-the-sdlc-by-2030/
1•vtemian•5m ago•0 comments

Stripe builds interactive docs with Markdoc

https://stripe.dev/blog/markdoc
1•cezarvil•8m ago•0 comments

Spawning VMs for unreasonable workloads (2024)

https://blog.davidv.dev/posts/abusing-firecracker/
1•tlar•9m ago•0 comments

Claude API Error: 529

2•anujbans•9m ago•2 comments

How to Setup Pie for PHP Extensions on macOS

https://stephenjude.me/articles/how-to-setup-pie-for-php-extensions-on-macos
1•stehenjude•10m ago•0 comments

Show HN: Mrxl – Compile Mermaid diagrams into Excel (.xlsx)

https://github.com/v420v/mrxl
1•ibuki256•13m ago•0 comments

mlx-Code: Run Claude Code Locally with MLX-LM

https://www.youtube.com/watch?v=Rba-uTsYuXg
2•JosefAlbers•17m ago•1 comments

I was paid to write fake Google reviews – then my 'bosses' tried to scam me

https://www.theguardian.com/technology/2026/mar/27/paid-write-fake-google-reviews-scammer-cryptoc...
2•mykowebhn•20m ago•0 comments

Study: Space no gravity negatively impact sperm navigation, affecting childbirth

https://adelaideuni.edu.au/about/news/2026/human-sperm-may-get-lost-in-space/
1•giuliomagnifico•24m ago•0 comments

Show HN: HTML Viewer with Bidirectional Highlighting (Code ↔ Highlight Element)

https://html-viewer.org
1•jackxmm•24m ago•0 comments

Blog: Book on AI Agents for the Layman

https://www.investigatingsoftware.co.uk/2026/03/the-best-book-on-ai-agents-for-layman.html
2•phoughton•27m ago•0 comments

Should QA Exist

https://www.rubick.com/should-qa-exist/
9•PretzelFisch•33m ago•9 comments

Riding the Memory Boom and Trying to Avoid the Bust

https://www.nextplatform.com/store/2026/03/24/riding-the-memory-boom-and-trying-to-avoid-the-bust...
3•rbanffy•34m ago•0 comments

Taking Down the Internet's Most Popular HTTP Client with a Single JSON Key

https://www.striga.ai/research/crashing-axios-with-proto
5•traekfuglene•34m ago•1 comments

Pyrite64: N64 Game-Engine and Editor using libdragon and tiny3d

https://github.com/HailToDodongo/pyrite64
3•hexmiles•35m ago•0 comments

ninja: a small build system with a focus on speed

https://github.com/ninja-build/ninja
1•tosh•37m ago•0 comments

Show HN: GameHippo.art – Preserving a lost freeware game directory from 2004

https://gamehippo.art
1•hedin_hiervard•37m ago•0 comments

Scaling a Monolith to 1M LOC: 113 Pragmatic Lessons

https://www.semicolonandsons.com/articles/scaling-a-monolith-to-1m-loc-113-pragmatic-lessons-from...
1•semicolonandson•37m ago•0 comments

Ask HN: Any Tradespeople Here?

4•documentorium•48m ago•0 comments

Hold on to Your Hardware

https://xn--gckvb8fzb.com/hold-on-to-your-hardware/
34•LucidLynx•50m ago•12 comments

Ten C64 Demo [video]

https://www.youtube.com/watch?v=QMDE_Sd98cA
1•Fr0styMatt88•50m ago•0 comments

Comparison of two frameworks: 4.0M vs. 2.5M tokens for the same app

https://wasp.sh/blog/2026/03/26/nextjs-vs-wasp-40-percent-less-tokens-same-app
2•Martinsos•52m ago•1 comments

SimpleLogin CLI

https://github.com/mexcool/simplelogin-cli
2•mexcool•54m 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?