frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's AI Coding Study: How You Use AI Matters More Than Whether You Use It

https://luther.io/articles/personal-growth-in-the-age-of-ai/
1•vidluther•1m ago•0 comments

Is traditional ML relevant anymore? Any active research going on in ML methods?

1•mitml•2m ago•0 comments

Hyping an Editor in the Age of AI

https://tildehacker.com/hyping-an-editor-in-the-age-of-ai
1•tildehacker•8m ago•0 comments

Intel Foundry boss leaves for Qualcomm

https://www.tomshardware.com/tech-industry/semiconductors/intel-foundry-boss-leaves-for-qualcomm-...
1•teleforce•10m ago•0 comments

Show HN: Leviathan, A world where AI agents write the laws and govern themselves

https://chenyu-li.info/leviathan
1•chenyusu•18m ago•1 comments

Swift System Metrics 1.0

https://www.swift.org/blog/swift-system-metrics-1.0-released/
1•peterspath•19m ago•0 comments

The normalization of corruption in organizations (2003) [pdf]

https://gwern.net/doc/sociology/2003-ashforth.pdf
1•rendx•19m ago•0 comments

Leaving AI to Code 24/7 Doesn't Work

https://twitter.com/victortaelin/status/2027214947193679932
1•jamesy0ung•19m ago•0 comments

Build dynamic agentic workflows in Opal

https://blog.google/innovation-and-ai/models-and-research/google-labs/opal-agent/
1•gmays•21m ago•0 comments

Show HN: PipelineIQ – AI diagnoses CI/CD failures and sends fixes to Slack

https://pipelineiq.dev
1•Raja_Dev•21m ago•0 comments

Techniques of Neutralization

https://en.wikipedia.org/wiki/Techniques_of_neutralization
1•rendx•23m ago•0 comments

All the troubles of the world by Isaac Asimov [pdf]

https://schools.ednet.ns.ca/avrsb/070/rsbennett/HORTON/shortstories/All%20the%20troubles%20of%20t...
1•thunfischtoast•24m ago•1 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•admp•28m ago•0 comments

Measuring CPU Load

https://en.wikipedia.org/wiki/Load_(computing)
1•pacct2025•31m ago•0 comments

Boston Review: A Brief History of AI Psychosis

https://www.bostonreview.net/articles/a-brief-history-of-ai-psychosis/
1•t0lo•39m ago•1 comments

Show HN: Arrival Radar

https://entropicthoughts.com/arrival-radar
2•kqr•43m ago•1 comments

How AI will change GTM?

1•imwoody•43m ago•0 comments

Show HN: Export Your YouTube Subscriptions to OPML (and Use Any RSS Reader)

https://gist.github.com/jillesvangurp/b43cc5bbdbc0a9a29c7f0944d6cc5854
1•jillesvangurp•44m ago•0 comments

When the Bubble Bursts

http://theprogrammersparadox.blogspot.com/2026/02/when-bubble-bursts.html
3•r4um•45m ago•0 comments

Spatial AI-native graph workspace

1•aXlireza•46m ago•0 comments

Show HN: MotionDesk: Physics-driven, Metal-accelerated wallpapers for macOS

3•motiondeskapp•46m ago•0 comments

Show HN: Nano Banana 2 – Sub-second AI image gen via Gemini 3.1 Flash

https://nano-banana2.me/
1•naxtsass•50m ago•0 comments

Show HN: Conduit – Automatic Port Forwarding for Docker Containers

https://github.com/Oranda-IO/Conduit
1•orandaio•50m ago•0 comments

RFC 9925: Unsigned X.509 Certificates

https://datatracker.ietf.org/doc/rfc9925/
1•raquuk•53m ago•0 comments

I used Claude AI to build this website that shows upcoming indie game festivals

https://festival-watch.vercel.app/
2•rotub•54m ago•1 comments

Chivalry Test

https://chivalryscore.com
1•onSmallMessage•54m ago•1 comments

We found 118 performance bugs across 2 PRs written with Claude Code

https://www.codeflash.ai/blog-posts/hidden-cost-of-coding-agents
5•misrasaurabh1•55m ago•1 comments

Vegetarians have 'substantially lower risk' of five types of cancer

https://www.theguardian.com/society/2026/feb/27/vegetarians-have-substantially-lower-risk-of-five...
1•plaguna•55m ago•0 comments

Man jailed after selling £7M of fake plane parts

https://www.bbc.com/news/articles/c78xz5j848vo
2•dataflow•55m ago•0 comments

Pplx-Embed: Embedding Models for Web-Scale Retrieval

https://research.perplexity.ai/articles/pplx-embed-state-of-the-art-embedding-models-for-web-scal...
1•jxmorris12•57m 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?