frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Symphony: Integrate OpenCode with Linear and get your own dev team

https://github.com/skorokithakis/symphony
1•stavros•34s ago•0 comments

USDA Projects Smallest US Wheat Harvest Since 1972 Due to Plains Drought

https://www.agweb.com/news/usda-projects-smallest-us-wheat-harvest-1972-due-plains-drought
1•littlexsparkee•2m ago•0 comments

The Ackman Act

https://docs.google.com/document/d/1EDezDWvB4wsgfhldNc23dNnSc0cZZfK9GZabjVvkyhg/edit?usp=sharing
1•throwawa1•4m ago•0 comments

Ask HN: How do you defend against supply chain attacks today?

1•elric•4m ago•0 comments

Karakeep – self-hostable bookmark-everything app

https://github.com/karakeep-app/karakeep
1•ano-ther•4m ago•0 comments

Show HN: Diffmode – Tool that builds custom growth tactics for bootstrapped SaaS

https://diffmode.app/
1•vanyaland•5m ago•0 comments

Neanderthal Dentists

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0347662
1•johnp314•6m ago•0 comments

Blocking mobile internet on smartphones improves attention and mental health

https://academic.oup.com/pnasnexus/article/4/2/pgaf017/8016017?login=false
1•jabo•8m ago•0 comments

Microsoft's AI system tops Anthropic's Mythos on cybersecurity benchmark

https://www.geekwire.com/2026/microsofts-multi-agent-ai-system-tops-anthropics-mythos-on-cybersec...
1•kseniamorph•9m ago•0 comments

Beware of Drunk Deer, French Police Say, Announcing Season of Inebriation

https://www.nytimes.com/2026/05/13/world/europe/france-drunk-deer.html
1•bookofjoe•9m ago•1 comments

Why autism pioneer Uta Frith wants to dismantle the spectrum

https://www.newscientist.com/article/2525037-why-autism-pioneer-uta-frith-wants-to-dismantle-the-...
1•donsupreme•9m ago•0 comments

Show HN: FreeFax (iOS) – a data point on shipping solo with Claude

https://apps.apple.com/us/app/freefax-send-fax-from-phone/id6763340737
1•joelsfoster•11m ago•0 comments

Hush – local push-to-talk dictation for macOS, no cloud, pastes at cursor

https://github.com/djmunro/hush
1•djmunro•11m ago•0 comments

DiscordMcp: Controlling Servers Through MCP

https://blog.rastrian.dev/post/discordmcp-controlling-servers-through-mcp
1•SchwKatze•12m ago•0 comments

The Whole Anthropic Kerfuffle

https://twitter.com/josevalim/status/2054887621336174799
3•tosh•12m ago•0 comments

Fight Slop with Clarity

https://blog.vtemian.com/post/fight-slop-with-clarity/
1•vtemian•14m ago•0 comments

Release NetHack 5.0 Atari ST/TT/Falcon (WIP)

https://github.com/ingpaschke/NetHack/releases/tag/v5.0-atari-wip
1•ibobev•15m ago•0 comments

Ubuntu 26.04 LTS Moving the Industry Forward with Linux 7.0 and More

https://www.servethehome.com/ubuntu-26-04-lts-moving-the-industry-forward-with-linux-7-0-and-more/
1•PaulHoule•17m ago•0 comments

BrrrViz – Learn GPU Programming

https://brrrviz.com/
2•sebg•17m ago•0 comments

Claude Account Suspended Seconds After Purchase?

3•AnthropicWHAT•18m ago•0 comments

The Third Hard Problem

https://mmapped.blog/posts/48-the-third-hard-problem
2•surprisetalk•19m ago•0 comments

Show HN: The trading terminal that prices everything in gold

https://pricedingoldelite.com
1•rrwilla•19m ago•0 comments

eBay Price Guesser

https://www.eguessr.com/
1•structuredPizza•21m ago•0 comments

56% merge rate on 316 cold OSS PRs in a week

https://github.com/kimjune01
2•kimjune01•22m ago•1 comments

Computer Hobby Movement in Canada

https://museum.eecs.yorku.ca/exhibits/show/hobby_canada/hobby_canada
2•rbanffy•22m ago•0 comments

Installing Linux on a Dead Badger: User's Notes by Lucy A. Snyder

https://strangehorizons.com/wordpress/non-fiction/articles/installing-linux-on-a-dead-badger-user...
1•speckx•23m ago•0 comments

Building for the Joy of Building

https://jola.dev/posts/building-for-the-joy-of-building
1•shintoist•24m ago•0 comments

Biggest Questions in Biotech

https://shelbyann.substack.com/p/biggest-questions-in-biotech
2•sebg•24m ago•0 comments

Show HN: AIMX – Self-hosted, open-source email server designed for AI agents

https://aimx.email/
3•uzyn•24m ago•1 comments

Green Hills Integrity RTOS: IPCOMShell Telnet Format String (CVE-2019-7711)

https://cxsecurity.com/issue/WLB-2026050002
1•mbanyamer•26m ago•1 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?