frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US and allied missile stockpiles 'bare' as Iran war heads into weeks

https://www.news.com.au/world/middle-east/us-and-allied-missile-stockpiles-bare-as-iran-war-heads...
1•atombender•30s ago•0 comments

It's time for open source to retire

https://malus.sh/blog.html
1•Nolski•46s ago•0 comments

Hyman Rickover built the first American nuclear plant

https://www.worksinprogress.news/p/how-hyman-rickover-built-the-first
1•pietergaricano•54s ago•0 comments

Russia Is Big Winner as Iran War Drains Supplies That Ukraine Needs

https://www.wsj.com/world/europe/russia-ukraine-iran-war-9722d527
1•JumpCrisscross•3m ago•0 comments

DBSM – BahnBet

https://bahn.bet/about
1•benlaxer•3m ago•0 comments

Selfie: Self-like environment with TiddlyWiki-style saving

https://github.com/pavel-krivanek/Selfie
1•xkriva11•4m ago•0 comments

The State of Consumer AI. Part 1 – Usage

https://apoorv03.com/p/the-state-of-consumer-ai-part-1-usage
1•begemotz•4m ago•1 comments

There Will Never Be AGI

https://lovelaceanalytics.com/posts/never-be-generalised-ai/
1•gabemusker•4m ago•0 comments

Hacktivists claim to have hacked Homeland Security to release ICE contract data

https://techcrunch.com/2026/03/02/hacktivists-claim-to-have-hacked-homeland-security-to-release-i...
1•hentrep•7m ago•0 comments

Show HN: Arbor – a CLI that shows what breaks before you refactor

https://github.com/Anandb71/arbor
1•anandbiju71•8m ago•0 comments

What does it take to map the world [video]

https://www.youtube.com/watch?v=M8G44b0mljw
1•marklit•9m ago•0 comments

Large forest fire emissions are hidden underground

https://www.eurekalert.org/news-releases/1118263
1•consumer451•10m ago•0 comments

Show HN: Turn GitHub commits into a publish-ready changelog

https://heyemit.com
1•alexkuchar•10m ago•0 comments

Show HN: BidWix – one-shot price agreement using secret max/min

https://bidwix.com/
1•audiosampling•14m ago•0 comments

Every Single Board Computer I Tested in 2025

https://bret.dk/every-single-board-computer-i-tested-in-2025/
2•speckx•14m ago•0 comments

BullshitBench v2: LLMs answering nonsense questions

https://github.com/petergpt/bullshit-benchmark
1•nkko•15m ago•0 comments

Build to Last – Chris Lattner Talks with Jeremy Howard [video]

https://www.youtube.com/watch?v=WJS2YDZO-vc
1•tosh•17m ago•0 comments

Show HN: 3D linear and nonlinear WebGL Schrödinger numerical solver

https://marl0ny.github.io/split-operator-simulations/js/3d-low-res.html
1•marl0ny•17m ago•0 comments

BaZi – Deterministic life-charting from the Chinese calendar

1•chenzige•17m ago•0 comments

Show HN: HiTank – A skill manager for Claude Code, written in pure Ruby

https://github.com/alanalvestech/hitank
1•alanalvestech•18m ago•1 comments

Ask HN: How do you give AI agents real codebase context without burning tokens?

2•donhardman•18m ago•0 comments

World is entering an era of 'water bankruptcy'

https://www.newscientist.com/article/2511979-world-is-entering-an-era-of-water-bankruptcy/
1•speckx•18m ago•0 comments

Show HN: PeekAPI – API analytics middleware, 7 languages, zero dependencies

https://peekapi.dev
1•konstantinkai•19m ago•1 comments

The coming war on general-purpose computation (2011)

https://lwn.net/Articles/473794/
2•rzk•20m ago•0 comments

Show HN: NiroDB – A key-value storage engine built from scratch in Go

https://github.com/nirodbx/niroddb
1•nirox•20m ago•0 comments

Show HN: MCP server for KubeCon EU 2026 – AI-powered conference planning

https://github.com/njoerd114/kubecon-eu-mcp
1•njoerd•22m ago•0 comments

The cruelty of teaching computing science (1988)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1036.html
1•Cyphase•22m ago•0 comments

Self-evolving software is the future

https://errgent.com/blog/self-evolving-software-is-the-future/
1•nwby•23m ago•0 comments

Sherlup, a tool to let LLMs check your dependencies before you upgrade

https://www.castignoli.it/tecnologia/sherlup-a-tool-to-let-llms-check-your-dependencies-before-yo...
1•marcocastignoli•24m ago•0 comments

Log into Windows with a Bitwarden Passkey

https://bitwarden.com/blog/log-into-windows-with-a-bitwarden-passkey/
1•vdelitz•25m ago•0 comments
Open in hackernews

API testing tool which sucks less

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

Comments

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