frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google's Gemini threatened me once disagreed with the "trump-putin-orban" axis

https://gemini.google.com/share/fdf648344c11
1•drops•1m ago•0 comments

Move over, Labubu. The new Silicon Valley status symbol is a tiny Apple computer

https://sfstandard.com/2026/03/12/mac-mini-bro-new-matcha-latte-guy/
1•MrJagil•9m ago•0 comments

Third places are disappearing as the world goes more online – The Week

https://theweek.com/culture-life/third-places-disappearing
1•janandonly•9m ago•0 comments

Belgian prime minister calls for EU to normalise ties with Russia

https://www.ft.com/content/4ce01938-a671-4433-83a7-dada2b3bac01
1•KnuthIsGod•10m ago•0 comments

Show HN: cn-variants – Tailwind CSS variants in 3 lines of code

https://npmx.dev/package/cn-variants
1•bastianplsfix•17m ago•0 comments

Capacity Is the Roadmap

https://yusufaytas.com/capacity-is-the-roadmap/
10•yusufaytas•20m ago•0 comments

ZippyType – A typing speed trainer with adaptive code-syntax drills

https://zippytype.vercel.app
1•afundeveloper•20m ago•0 comments

Laws of UX – in the age of AI vibe coding

https://lawsofux.com/
1•dheerajmp•23m ago•0 comments

Why Cloudflare rule order matters?

https://www.brzozowski.io/web-applications/2025/03/11/why-cloudflare-rule-order-matters.html
2•redfr0g•23m ago•0 comments

Never knew news websites could survive without ads

https://text.npr.org/
3•dheerajmp•23m ago•2 comments

Google.org Future of Work: 5 years of impact and lessons for the AI era

https://blog.google/company-news/outreach-and-initiatives/google-org/future-of-work-impact-report/
1•salkahfi•26m ago•0 comments

Custom AI Smart Speaker

https://openhome.com
1•edf13•27m ago•0 comments

Ask HN: Ten YoE as a software engineer, what's next with LLMs coming in fast?

2•Tmkly•29m ago•1 comments

Finding Hope in the Shape of Failure: Bottling Infinity in Distributed Systems

https://forkracefold.com/
1•taylorbuley•31m ago•0 comments

WebMCP

https://github.com/webfuse-com/awesome-webmcp
2•tonysurfly•33m ago•0 comments

Given a narrator

https://andrewshawcare.com/given-a-narrator/
1•andrewshawcare•33m ago•0 comments

Mr. Nobody for Putin

https://ru.themoscowtimes.com/2026/02/27/gospodin-nikto-za-putina-a188312
1•profstasiak•37m ago•1 comments

Ask HN: Did GitHub remove Opus and Sonnet from their Copilot Pro subscription?

3•lgl•39m ago•1 comments

Web Rewind – A Touch of Nostalgia

https://www.web-rewind.com/
1•mistat•40m ago•0 comments

Echoed – A Lightweight Discord Alternative

https://echoed.gg/
1•shaongitbd•40m ago•0 comments

The State of Allocators in 2026

https://cetra3.github.io/blog/state-of-allocators-2026/
2•ashvardanian•42m ago•0 comments

ASAT (Advanced Spreadsheet Alteration Tool)

https://github.com/okt4v/ASAT
1•okt4v•43m ago•1 comments

Show HN: Generate, Clean, and Prepare LLM Training Data, All-in-One

https://github.com/OpenDCAI/DataFlow
2•Junnn•45m ago•0 comments

Would maintaining such an open-source project be helpful to my career?

https://github.com/keminze/volo-data
1•kkmz•45m ago•0 comments

BriefMe – AI meeting briefs auto-generated from your calendar (no manual input)

https://www.briefme.wtf
1•Dev_Alex•46m ago•0 comments

Claude – Ask me 10 clarifying questions

https://zencapital.substack.com/p/claude-ask-me-10-clarifying-questions
1•zenincognito•49m ago•1 comments

If AI Writes the Code, Who Builds the Next Open Source Project?

https://blog.scottlogic.com/2026/03/15/if-ai-writes-the-code-who-builds-the-next-open-source-proj...
1•ColinEberhardt•49m ago•0 comments

Would You Help Me?

https://comuniq.xyz/post?t=860
2•01-_-•50m ago•1 comments

3D tic tac toe – coded via WhatsApp massages to OpenClaw

https://arthur-ficial.github.io/tictactoe-3d/
1•franze•52m ago•0 comments

Ask HN: Claude Code Phantom Usage

1•randoments•53m 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?