frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Italian historian Carlo Ginzburg dies

https://www.ansa.it/english/news/2026/06/17/italian-historian-carlo-ginzburg-dies_fec83298-b0af-4...
2•omblivion•3m ago•1 comments

DShow HN: AI Bible reader with multiple denominational views on contested topics

1•getlumina•8m ago•1 comments

Show HN: Xpenser – self-hostable personal finance tracker with MCP access

https://github.com/cleverbrush/xpenser
1•andrew_zol•8m ago•0 comments

Show HN: CLI Integrated Latex Editor

https://github.com/VishiATChoudhary/open-prism
1•Vishi_2•10m ago•1 comments

Firefox suggests tab groups with local AI (2025)

https://blog.mozilla.org/en/firefox/ai-tab-groups/
2•Topfi•19m ago•0 comments

AI holds the key to faster battery tech development

https://www.ft.com/content/2dbdf635-7bbc-430d-96ef-ea893e754b6e
1•khutorni•20m ago•0 comments

Highspeed Amateurradio Multimedia NETwork

https://hamnet.eu/site/
1•raffael_de•22m ago•0 comments

The Hacker Sent by Anthropic to Calm the Government's Nerves About AI Safety

https://www.wsj.com/tech/ai/anthropic-mythos-safety-nicholas-carlini-20bceaa3
1•dkobia•26m ago•0 comments

Mini MOSBius

https://tinytapeout.com/news/mini-mosbius/
1•thomasjb•27m ago•0 comments

Friends of gays should not be allowed to edit articles

https://meta.wikimedia.org/wiki/Friends_of_gays_should_not_be_allowed_to_edit_articles
3•mellosouls•29m ago•0 comments

I Built a LaTeXdiff Online tool – using Claude Code (Reddit users Loved it)

https://thelatexlab.com/latexdiff-online/
2•sahiltll•30m ago•2 comments

GLM-5.2 is the leading open weights model on the Intelligence Index v4.1

https://xcancel.com/ArtificialAnlys/status/2067135640249209175
1•alecco•31m ago•0 comments

Matilda: Resource for Intensive Longitudinal Research

https://matilda.fss.uu.nl/
2•Tomte•31m ago•0 comments

Claude Code Skills Turn It into an AI Engineering Team

https://nextweekai.com/blog/claude-code-27-skills-ai-engineering-team/
2•javatuts•32m ago•0 comments

Ucp-Local – Offline RAG for Claude Desktop, Cursor, and LM Studio

https://github.com/akshay2211/universal-context-pipeline
1•akshay2211•35m ago•0 comments

Lovable merges credit balance with Cloud and AI balance

https://lovable.dev/terms
1•doener•36m ago•0 comments

Review PySpark, SQL and dbt models for temporal modeling risks

https://bitemporal-debugger.vercel.app/
1•temp_debugger•36m ago•0 comments

The "superpower" AI unblocked is ability to ask tons of stupid questions

https://old.reddit.com/r/ExperiencedDevs/comments/1u80tnf/the_real_superpower_ai_unblocked_is_abi...
3•destel•38m ago•1 comments

Nginx Explained in Plain English

https://sanyamserver.online/posts/nginx-reverse-proxy/
2•birdculture•40m ago•0 comments

MinIO to SeaweedFS on Hetzner

https://we-manage.de/en/blog/seaweedfs-on-hetzner-self-hosted-s3-storage
2•aamederen•43m ago•0 comments

cc-reflection: teaching Claude Code to reflect

https://provi.me/cc-reflection
2•Bluestein•43m ago•0 comments

Tell HN: Musk doesn't "have" a Trillion, he has the leverage

5•ggm•46m ago•1 comments

Agentic coding and persistent returns to expertise

https://www.anthropic.com/research/claude-code-expertise
1•mellosouls•46m ago•0 comments

Inside FIFA's Race to Move Natural Grass to All 16 World Cup Stadiums [video]

https://www.youtube.com/watch?v=5GLJW2It52s
1•dataflow•47m ago•0 comments

GLM 5.2 ranks #2 in Code Arena: Frontend

https://twitter.com/arena/status/2066957802741043641
2•stared•52m ago•1 comments

Hacker News but for Independent Blogs

https://bubbles.town/
4•headalgorithm•53m ago•2 comments

Mistral AI to produce a larger family of models

https://twitter.com/arthurmensch/status/2066913356548542827
1•acoye•54m ago•1 comments

Monsoon has vanished: Satellite images of rain collapse, India faces 64% deficit

https://www.indiatoday.in/science/story/monsoon-has-vanished-imd-satellite-images-show-rain-colla...
2•koolhead17•55m ago•0 comments

The Eliza Effect

https://medium.com/@firstfromreverse/the-eliza-effect-a9769d817c2a
3•WishingWisp•55m ago•0 comments

Do journalists pay too much attention to Twitter? (2018)

https://www.cjr.org/the_media_today/journalists-on-twitter-study.php
2•downbad_•56m ago•1 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?