frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TerraPower gets OK to start construction of its first nuclear plant

https://arstechnica.com/science/2026/03/terrapower-gets-ok-to-start-construction-of-its-first-nuc...
1•krunck•2m ago•0 comments

Agentic Engineering Anti Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/anti-patterns/
1•pchristensen•4m ago•0 comments

Show HN: Magpie – Fight AI sycophancy in code review with multi-model debate

https://github.com/liliu-z/magpie
1•leo_e•6m ago•0 comments

Terminal Graphics Protocol

https://sw.kovidgoyal.net/kitty/graphics-protocol/
1•vinhnx•7m ago•0 comments

LLM Prose Tells

https://git.eeqj.de/sneak/prompts/src/branch/main/prompts/LLM_PROSE_TELLS.md
1•dougb5•8m ago•0 comments

Biosciences breeds controversy while trying to revive mammoths

https://www.npr.org/2026/03/04/nx-s1-5704318/colossal-woolly-mammoth-dire-wolf
1•andsoitis•8m ago•0 comments

Las Vegas hotels begin taking foreign currency as tourism woes deepen

https://www.sfgate.com/travel/article/vegas-foreign-currency-21955655.php
2•c420•13m ago•0 comments

Building Claude Code with Boris Cherny

https://newsletter.pragmaticengineer.com/p/building-claude-code-with-boris-cherny
1•vinhnx•17m ago•0 comments

Async Dags in Bash

https://blog.howardjohn.info/posts/bash-dag/
1•ingve•18m ago•0 comments

Haida Salmon Restoration Corporation

https://en.wikipedia.org/wiki/Haida_Salmon_Restoration_Corporation
1•koverda•19m ago•1 comments

Harness engineering: leveraging Codex in an agent-first world

https://openai.com/index/harness-engineering/
1•ianrahman•25m ago•0 comments

Max Schwarzer is leaving OpenAI for Anthropic

https://twitter.com/max_a_schwarzer/status/2028939154944585989
1•tiahura•27m ago•0 comments

Tabular Foundation Models Still Need One Thing: Multi-Table Aggregation

https://wesmadrigal.github.io/GraphReduce/tutorial_auto_feature_engineering/
1•madman2890•32m ago•1 comments

AI perspective from a former Block DevRel

https://blog.moot.dev/chasing-the-ai-high-clay-kilns-and-the-red-queens-race/
2•karlhughes•32m ago•0 comments

Regulator contacts Meta over workers watching intimate AI glasses videos

https://www.bbc.com/news/articles/c0q33nvj0qpo
1•csomar•33m ago•1 comments

Show HN: PostgreSQL for AI – A book on pgvector, RAG, and in-database ML

https://book.zeybek.dev/
1•zeybek•34m ago•1 comments

TurboCast – Turn YouTube videos and articles into AI podcasts

https://turbocast.net/
1•Jasonleo•35m ago•0 comments

More kids, teens injured in e-bike wrecks, study finds

https://medicalxpress.com/news/2026-03-kids-teens-bike.html
2•WaitWaitWha•38m ago•1 comments

Coasty.ai Is Generally Available

1•PrateekJ17•38m ago•0 comments

Hello Developer: March 2026

https://developer.apple.com/news/?id=zmqipz05
2•surprisetalk•42m ago•0 comments

Iran War, Taiwanese Chips, and a Blueprint for Species Survival

https://talking-about-ai.com/the-morning-everything-connected.html
1•planobilly•42m ago•0 comments

Maybe There's a Pattern Here?

https://dynomight.net/pattern/
1•surprisetalk•43m ago•0 comments

What Python's asyncio primitives get wrong about shared state

https://www.inngest.com/blog/no-lost-updates-python-asyncio
4•goodoldneon•45m ago•5 comments

Manipulating AI memory for profit: The rise of AI Recommendation Poisoning

https://www.microsoft.com/en-us/security/blog/2026/02/10/ai-recommendation-poisoning/
1•WaitWaitWha•45m ago•0 comments

JWST reveals extreme temperature shifts in Jupiter's auroral footprints

https://phys.org/news/2026-03-jwst-reveals-secrets-jupiter-northern.html
1•epicprogrammer•45m ago•1 comments

An Evolved Antenna for Deployment on NASA's Space Technology 5 Mission [pdf]

https://www.genetic-programming.org/gecco2004hc/lohn-paper.pdf
1•boltzmann-brain•47m ago•0 comments

Show HN: Extracted tech from 5.6M sites (plus versions) and made some dashboards

https://versiondb.io/technology/php/
1•_chse_•50m ago•0 comments

AI Coding Startup Cursor Hits $2B Annual Sales Rate

https://www.bloomberg.com/news/articles/2026-03-02/cursor-recurring-revenue-doubles-in-three-mont...
3•gmays•51m ago•0 comments

Hybrid Images: Principles and Implementation

https://tigercosmos.xyz/en/post/2020/04/cv/hybrid-image/
1•thunderbong•52m ago•0 comments

Show HN: A Combinator – A parody YC for AI agents ("Make something agents want")

https://fireflysentinel.github.io/a-combinator/
3•firef1y1203•56m ago•1 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?