frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Plot Ark – Open-source agentic curriculum engine (React/Flask/LightRAG)

https://github.com/Schlaflied/Plot-Ark
3•yuting_•3m ago•1 comments

Taxes: Geopolitics

https://devblogs.microsoft.com/oldnewthing/20051129-00/?p=33173
3•stevefan1999•5m ago•0 comments

The Engineer Who Tried to Put Age Verification into Linux

https://www.sambent.com/the-engineer-who-tried-to-put-age-verification-into-linux-5/
1•stalfosknight•5m ago•0 comments

Kagi Translate's AI answers question "What would horny Margaret Thatcher say?"

https://arstechnica.com/ai/2026/03/kagi-translates-ai-answers-the-question-what-would-horny-marga...
1•gnabgib•8m ago•0 comments

ZX Spectrum Basic controls a lunar lander in Kerbal Space Program [video]

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

When the city becomes the weapon: IoT, AI, and the new face of warfare

https://andreafortuna.org/2026/03/21/when-the-city-becomes-the-weapon
1•fbistrash•10m ago•0 comments

Do Not Turn Child Protection into Internet Access Control

https://news.dyne.org/child-protection-is-not-access-control/
1•smartmic•11m ago•0 comments

Why Building Mega Clusters Is Wrong

https://fireworks.ai/blog/why-building-mega-clusters-is-wrong
1•smurda•12m ago•0 comments

A curated list of open-source projects and resources for the OpenClaw ecosystem

https://github.com/SebConejo/awesome-openclaw-resources
1•stosssik•14m ago•0 comments

Nash Burns Saves the Day

https://www.tbray.org/ongoing/When/202x/2026/03/20/Nash-Burns
1•AndrewDucker•15m ago•0 comments

Modern Family Star Nolan Gould, 14, on Mensa and Starting College Early (2013) [video]

https://www.youtube.com/watch?v=ZOTtGItg2PI
1•joebig•22m ago•0 comments

Bead Sort (Gravity Sort)

https://en.wikipedia.org/wiki/Bead_sort
3•ogogmad•24m ago•0 comments

Apifold – OpenAPI spec in, live MCP server out

https://github.com/Work90210/APIFold
2•KyleFuehri•29m ago•0 comments

I Predicted the 2008 Financial Crisis. What Is Coming May Be Worse

https://www.nytimes.com/2026/03/16/opinion/financial-crisis-private-credit-ai-iran-taiwan.html
2•saikatsg•32m ago•1 comments

Intel GMA 945, Nvidia 8800 GTS, AMD Radeon HD 7350G All Working with ReactOS Now

https://twitter.com/reactos/status/2031439000708202743
1•smurda•33m ago•0 comments

Tinybox- offline AI device 120B parameters

https://tinygrad.org/#tinybox
58•albelfio•35m ago•19 comments

The Ghost in Your Shell

https://github.com/DeepBlueDynamics/hyperia
1•kordlessagain•35m ago•1 comments

Kagi: Small Web Just Got Bigger

https://blog.kagi.com/small-web-updates
2•gxs•36m ago•0 comments

No evidence cannabis helps anxiety, depression, or PTSD

https://www.sciencedaily.com/releases/2026/03/260319044656.htm
8•nothrowaways•37m ago•0 comments

Common Lisp Development Tooling

https://www.creativetension.co/posts/common-lisp-development-tooling
2•0bytematt•39m ago•0 comments

Show HN: vLLM Studio – A macOS app for using vLLM models

https://github.com/agentset-ai/vllm-studio
2•ahmedriad1•40m ago•3 comments

Hawaii's worst flooding in 20 years threatens dam, prompts evacuations

https://www.nbcnews.com/weather/floods/hawaii-worst-flooding-in-20-years-rcna264573
7•geox•48m ago•0 comments

Trying out creating simple and fun games. What do you think?

https://samreedcole.com/about/
2•samreedcole•57m ago•1 comments

Bilderberg Meeting

https://en.wikipedia.org/wiki/Bilderberg_Meeting
2•simonebrunozzi•1h ago•0 comments

6 Facts about obesity and weight loss drugs in the U.S.

https://www.pewresearch.org/short-reads/2026/01/23/6-facts-about-obesity-and-weight-loss-drugs-in...
3•paulpauper•1h ago•0 comments

Be a Sadist

https://twitter.com/robkhenderson/status/2035433329281945974
2•delichon•1h ago•0 comments

The Distaff Texts

https://www.lesswrong.com/posts/pKoDqpfdv4ur8HgZ2/the-distaff-texts
1•paulpauper•1h ago•0 comments

Show HN: Atomic – self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
4•kenforthewin•1h ago•0 comments

Show HN: I ran a language model on a PS2

https://github.com/xaskasdf/ps2-llm
4•xaskasdf•1h ago•2 comments

Just In Time compilation in WebAssembly (2022)

https://www.wingolog.org/archives/2022/08/18/just-in-time-code-generation-within-webassembly
2•QuadmasterXLII•1h ago•1 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?