frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why is open source software so badly designed? (2022)

https://www.kooslooijesteijn.net/blog/why-is-free-open-source-software-badly-designed
1•doubletwoyou•1m ago•0 comments

Night Java (San Francisco)

https://www.nightjava.com/
1•danielmorozoff•3m ago•0 comments

Show HN: Paloma – Intelligent Autocomplete for Mac

https://trypaloma.app
1•hydrohelium•4m ago•0 comments

Inside the grey market for online accounts

https://www.ft.com/content/576c1b70-bf51-45d2-a5f0-eca2e9acc256
1•petethomas•5m ago•0 comments

Niche expert AI fine-tuning data set in clean JSON format

https://headwater.gumroad.com/l/jxvjh
1•PunkiePal•6m ago•0 comments

SWE-Touch: Benchmarking Coding Agents When Users Touch the Code

https://trae1oung.github.io/SWE-Touch/
1•in-silico•6m ago•0 comments

Context Compaction Theory

https://arxiv.org/abs/2608.01326
1•jadidbourbaki•9m ago•0 comments

The Youth AI Privacy Act's Privacy Paradox

https://www.eff.org/deeplinks/2026/08/youth-ai-privacy-acts-privacy-paradox
1•mdp2021•10m ago•0 comments

Tattoo the Earth, one pixel at a time

https://earth.tattoo/
2•whatsupdog•17m ago•0 comments

Did Iran hack water systems in seven US states?

https://www.bbc.com/news/articles/c934dq95zpgo
1•dabinat•20m ago•0 comments

As a Windows user, it's a surreal way to install a program

https://unsung.aresluna.org/as-a-windows-user-its-a-very-surreal-way-to-install-a-program/
1•allenc•21m ago•0 comments

The 11 Types of Washington, DC, Metro Station Architecture (2018)

https://ggwash.org/view/68565/metro-has-11-types-of-station-architecture.-learn-them-all-with-thi...
2•quuxplusone•32m ago•0 comments

Show HN: Benzi – An AI coding assistant grounded in a live code map

https://benzi.fly.dev/
1•showhz•37m ago•0 comments

Spherical Codes Application in Fiber Optics (2024)

https://arxiv.org/abs/2404.04776
1•silver92bullet•39m ago•0 comments

The AI Boom Is Transforming the American Economy Beyond Recognition

https://www.wsj.com/economy/the-ai-boom-is-transforming-the-american-economy-beyond-recognition-c...
3•mapping365•45m ago•2 comments

At least we're warming the planet for a good reason

https://old.reddit.com/r/codex/comments/1vev2fl/vibecoded_ios_app_reached_35k_loc_and_i_no_longer/
2•johnnyApplePRNG•55m ago•2 comments

Real-time LuaTeX: Recompiling large documents in 1ms [video]

https://www.youtube.com/watch?v=C1gpjPm-Rns
1•eigenblake•57m ago•0 comments

Lego deploys Hubble Space Telescope as detailed desktop model

https://www.collectspace.com/news/news-080226a-lego-icons-hubble-space-telescope-details.html
1•Tomte•1h ago•1 comments

Startup Marketing 101

https://skeptrune.substack.com/p/startup-marketing-101
1•iacguy•1h ago•0 comments

ATS Resume Scorer and Cover Letter Generator – Matchflo

https://apps.apple.com/us/app/matchflo-ai-resume-tailor/id6786483718?mt=12
1•jsrothwell•1h ago•1 comments

Advanced Harmonic Analysis in Roundness Metrology

https://www.taylor-hobson.com/resource-center/blog/2020/september/advanced-harmonic-analysis-in-r...
1•num42•1h ago•0 comments

ScalarDB: Universal HTAP Engine

https://github.com/scalar-labs/scalardb
2•feeblefakie•1h ago•0 comments

Personal taste fell out of fashion

https://www.theguardian.com/media/2026/jun/14/have-i-been-influenced-personal-taste-out-of-fashio...
2•herbertl•1h ago•1 comments

AI Agent Ecosystem Trends 2026 H1: Analysis of 15K+ Agents Submission

https://www.deepnlp.org/blog/ai-agent-marketplace-intelligence-report-2026-h1-trends-insights-eco...
1•aiagenta2z•1h ago•1 comments

Virtual Mac on Jailbroken M1/M2 iPad

https://github.com/nfzerox/VirtualMacOniPad
1•tech234a•1h ago•0 comments

Why Estonians invite strangers into their back gardens each summer

https://www.bbc.com/travel/article/20260731-why-estonians-invite-strangers-into-their-backyards-e...
2•koolhead17•1h ago•0 comments

I Helped Run Lululemon. Companies Need to Stop Kidding Themselves About A.I

https://www.nytimes.com/2026/08/03/opinion/ai-hype-tech-layoffs.html
1•joebuckwilliams•1h ago•5 comments

I asked Claude Opus to recreate The Matrix opening scene in Lego

https://marksmayo.github.io/lego-matrix/
3•beatthatflight•1h ago•4 comments

Tinytouch: Fingerprint Based Authentication for Apple

https://github.com/zimengxiong/tinytouch
1•Quizzical4230•1h ago•0 comments

Show HN: Manhwa AI – Create webtoons with consistent AI characters

https://www.manhwaai.net
1•era4d•1h ago•2 comments
Open in hackernews

API testing tool which sucks less

https://github.com/hissssst/hxxp
1•hissssst•1y ago

Comments

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