frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Floating Piers

https://en.wikipedia.org/wiki/The_Floating_Piers
1•simonebrunozzi•2m ago•0 comments

Peekinduck: AI voice agents that run B2B SaaS demos, onboarding, and support

https://peekinduck.ai/
1•cgchen•2m ago•0 comments

J-Space Oddity: Do VLMs Dream of Text Tokens?

https://ykumar.me/blog/j-space-oddity/
1•ykumards•3m ago•0 comments

Pixar Bears Brunt of Disney Studio Layoffs as Company Axes Several Hundred

https://variety.com/2026/film/news/pixar-layoffs-disney-studios-several-hundred-employees-1236817...
1•ourmandave•5m ago•0 comments

Ask HN: What's your experience with GPT-Live been like?

1•caveman23•5m ago•0 comments

The Sandboxing Manifesto for Agentic Execution

https://www.nofire.ai/blog/the-sandboxing-manifesto
3•spirosoik•6m ago•0 comments

Show HN: A game to get people out in nature and appreciating wild animals

https://playanimalis.com/
2•robert-whiteley•7m ago•0 comments

Show HN: DocCharm – The help center that keeps itself up to date

https://doccharm.com/
1•yakshaving_jgt•7m ago•0 comments

Jack Mallers leaves Twenty One as Strike exits Tether's three-way Bitcoin merger

https://www.theblock.co/post/409075/jack-mallers-leaves-twenty-one-as-strike-exits-tethers-three-...
1•washedup•8m ago•0 comments

Odyssey – A Text Based Adventure

https://odyssey.learntosolveit.com/
1•orsenthil•9m ago•1 comments

Show HN: In Meeting – A native macOS Mic/Cam observer for home automation

https://github.com/fellowgeek/in-meeting
2•pcbmaker20•9m ago•0 comments

Building Service Topology at Scale: Architecture, Challenges, Lessons Learned

https://netflixtechblog.com/building-service-topology-at-scale-architecture-challenges-and-lesson...
1•jjtang1•11m ago•0 comments

Hugging Face discloses breach linked to autonomous AI agent

https://www.bleepingcomputer.com/news/security/hugging-face-breach-autonomous-ai-agent-system-int...
1•Brajeshwar•11m ago•0 comments

Show HN: Imagin Raw – A 9MB Open-Source Alternative to Adobe Bridge for Mac

https://github.com/cristibaluta/Imagin-Raw
3•cristi_baluta•12m ago•0 comments

Augustus raises $180M to build a clearing bank for the AI and stablecoin era

https://www.coindesk.com/business/2026/07/21/augustus-raises-usd180-million-to-build-a-clearing-b...
1•AnhTho_FR•13m ago•0 comments

Google vs. SerpApi: The Court Granted Our Motion to Dismiss

https://serpapi.com/blog/google-v-serpapi-the-court-granted-our-motion-to-dismiss/
2•SerpApi•14m ago•0 comments

Firefox Containers Preview

https://blog.mozilla.org/en/firefox/firefox-containers-preview/
4•twapi•14m ago•0 comments

Show HN: Quartz – A (much) better Voice Memos app (iPhone)

https://www.madebywindmill.com/quartz/
4•jscalo•18m ago•1 comments

Guard-AI – A security linter for AI-generated code

https://github.com/Karthikvk1899/guard-ai
1•karthikvk1899•18m ago•0 comments

Apple to launch 'upgrade' device leasing program with Klarna to spur sales

https://www.bloomberg.com/news/articles/2026-07-21/apple-to-launch-upgrade-device-leasing-program...
6•anigbrowl•18m ago•0 comments

Show HN: I built a command palette for the terminal – 6.2MB, pure Go, no fzf

https://github.com/matheuzgomes/decoreba
11•MarinhoD•20m ago•2 comments

World Labs acquires SceniX

https://twitter.com/drfeifei/status/2079597384510898377
2•dmarcos•20m ago•0 comments

Apache Spark 4.2: Making Your Data AI‑Developer Friendly

https://techstrong.it/featured/apache-spark-4-2-making-your-data-ai-developer-friendly/
5•CrankyBear•20m ago•0 comments

Build a Basic AI Agent from Scratch: Security II

https://www.ruxu.dev/articles/ai/build-an-ai-agent-security-2/
1•ruxudev•20m ago•0 comments

Soulless

https://sebas.fika.bar/soulless-01KVT6WJVSPF5ZTHWNZPZNEGJ9
3•smtx•21m ago•0 comments

SkyPilot Is Out of Stealth

https://skypilot.ai/blog/skypilot-the-company
11•shenli3514•22m ago•0 comments

Delaware judge dismisses UnitedHealth Group lawsuit against the Guardian

https://www.theguardian.com/media/2026/jul/21/unitedhealth-lawsuit-the-guardian-dismissed
4•speckx•22m ago•0 comments

Show HN: Word in Web – Near MS Word Parity Docx Editor in Web

https://word-in-web.com/
3•theRealestAEP•22m ago•0 comments

Hugging Face says it resorted to a Chinese AI model

https://fortune.com/2026/07/20/hugging-face-turns-to-chinese-open-source-ai-to-fend-off-autonomou...
4•danielmorozoff•22m ago•0 comments

Buzz community for folks to test it out

https://startups.communities.buzz.xyz/invite/eyJjIjoiYjllYjBmMWUtNWVlMi00YmZmLWFiNTQtNDhiYjBmZjA5...
2•pdcd•23m ago•0 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?