frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Infinite Jest Extraction

https://mattlakeman.org/2026/03/26/infinite-jest-extraction/
1•senkora•47s ago•0 comments

Zephyr – UI Framework Built for AI Agents

https://daltlc.github.io/zephyr-framework/
1•daltonlcarr•3m ago•0 comments

The artworks by women where men got the credit

https://www.bbc.com/culture/article/20260325-the-artworks-by-women-where-men-got-the-credit
1•1659447091•3m ago•0 comments

MLSys 2026 Papers

https://mlsys.org/virtual/2026/papers.html
1•matt_d•5m ago•0 comments

Ejabberd 26.03 / ProcessOne – Erlang Jabber/XMPP/Matrix Server – Communication

https://www.process-one.net/blog/ejabberd-26-03/
2•neustradamus•6m ago•0 comments

Reliable Unreliability

https://davidgasquez.com/reliable-unreliability
1•kalendos•7m ago•0 comments

The grind: The SF startup racing to build an AI software engineer

https://sfstandard.com/2026/03/24/grind-sf-startup-racing-build-ai-software-engineer/
1•gmays•7m ago•0 comments

My Fujifilm X100VI Setup

https://jamesbaker.uk/my-fujifilm-x100vi-setup/
1•rusticflare•7m ago•0 comments

Ralph.md: A Markdown format for autonomous coding-agent loops

https://ralphify.co/docs/blog/ralphmd--a-markdown-format-for-autonomous-agent-loops/
1•juunge•10m ago•1 comments

Writing an OS in Haskell

https://old.agniv.me/blog/haskell-os/
2•kreyenborgi•10m ago•0 comments

Show HN: My Hyperliquid Trading Terminal

https://www.aulico.com
2•lontraselv•12m ago•0 comments

The First Video Game Was Just a Box in the Corner of a Bar

https://lithub.com/the-very-first-video-game-was-just-a-box-in-the-corner-of-a-bar/
1•PaulHoule•13m ago•0 comments

What if AI agents could learn from each other's mistakes?

https://bignumbertheory.com
1•shengyi•13m ago•1 comments

Diffusion Line

https://en.wikipedia.org/wiki/Diffusion_line
2•microsoftedging•14m ago•0 comments

Typestamp – Proof of Writing Effort

https://typestamp.com
1•aleloro_dev•14m ago•0 comments

Nvidia faces lawsuit over $1B in undisclosed crypto mining revenue

https://www.thestreet.com/crypto/markets/nvidia-faces-lawsuit-over-1-billion-in-undisclosed-crypt...
2•mgh2•14m ago•0 comments

Four Steps to Hell

https://www.honest-broker.com/p/four-steps-to-hell
1•Khaine•14m ago•0 comments

In-process reimplementation of PostgreSQL backed by SQLite-compatible storage

https://github.com/glommer/pgmicro
1•charlieirish•15m ago•0 comments

NeurIPS Tightens Sanctions Compliance

https://neurips.cc
1•zachdotai•16m ago•0 comments

Anthropic Update on Session Limits

https://old.reddit.com/r/Anthropic/comments/1s4iefu/update_on_session_limits/
4•chunkycapybara•16m ago•1 comments

Show HN: Data that explains itself to Coding Agents (Bonus: free, BYOA Lovable)

https://dataverse001.net/AxyU5_5vWmP2tO_klN4UpbZzRsuJEvJTrdwdg_gODxZJ.00000000-0000-0000-0000-000...
2•TumbleCow•17m ago•0 comments

Joining databases across teams without copying data or running servers

https://datahike.io/notes/collaborate-without-infrastructure/
2•whilo•19m ago•0 comments

Design Debt Is Killing Your Product – and Nobody Owns It

https://overlayqa.com/blog/design-debt/
3•emveras•21m ago•1 comments

Clojure – The Documentary

https://clojure.org/news/2026/03/26/documentary_trailer
3•eigenhombre•22m ago•0 comments

How to switch to Gemini: Import your chats and data from other AI apps

https://blog.google/innovation-and-ai/products/gemini-app/switch-to-gemini-app/
4•xnx•23m ago•0 comments

Show HN: Datetime-bench: which datetime formats LLMs get right (and wrong)

https://github.com/MemoryStore/datetime-bench/tree/main
2•diwank•24m ago•0 comments

Turn n8n workflows into AI agent skills (OpenClaw-compatible)

https://github.com/just-claw-it/n8n-to-claw
2•just-claw-it•24m ago•1 comments

Mozilla and Mila announce strategic research partnership

https://blog.mozilla.org/en/mozilla/mila-open-source-sovereign-ai/
6•mcookly•28m ago•2 comments

Embraer Unveils First Saab F-39E Gripen Assembled in Brazil

https://aviationweek.com/defense/budget-policy-operations/embraer-unveils-first-f-39e-gripen-asse...
2•wslh•29m ago•0 comments

Apple discontinues the Mac Pro with no plans for future hardware

https://9to5mac.com/2026/03/26/apple-discontinues-the-mac-pro/
13•bentocorp•30m ago•4 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?