frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Blink – AI Assistant

https://blink-oi.vercel.app
1•Pascal1997•34s ago•0 comments

Open tax-residency data for US citizens moving abroad (CC BY 4.0)

https://getwherenext.com/tools/tax-comparison
1•walker777•1m ago•0 comments

AI Agent Bankrupted Their Operator While Trying to Scan DN42 Hobbyist Network

https://lantian.pub/en/article/fun/ai-agent-bankrupted-their-operator-scan-dn42lantian.lantian/
1•csmantle•2m ago•0 comments

How LLM Inference Works

https://arpitbhayani.me/blogs/how-llm-inference-works/
1•Hd1633•6m ago•0 comments

Show HN: TabChop – split dinner receipts by item from one shared link

https://tabchop.app/overview
1•mishang•7m ago•0 comments

Video isn't the final form of online content

https://medium.com/@chuanweipeng5/text-image-video-what-comes-after-the-scroll-31a8aefab563
1•AnneWodell•8m ago•0 comments

Rybbit, a self hosted Google Analytics alternative, released v2.6.0

https://github.com/rybbit-io/rybbit/releases/tag/v2.6.0
1•LemonHotdog•8m ago•0 comments

Browsers Treat Big Sites Differently

https://denodell.com/blog/browsers-treat-big-sites-differently
1•gglanzani•9m ago•0 comments

Veteran network architect proposes IPv8 – to improve IPv4, not leapfrog v6

https://www.theregister.com/networks/2026/05/12/veteran-network-architect-proposes-ipv8-to-improv...
1•croes•10m ago•0 comments

Show HN: Spent months fighting VS Code webviews, so I built a universal protocol

https://oxp.sh/
1•aldgar•17m ago•0 comments

Reverse Engineering Slither.io's Network Protocol

https://medium.com/@user320/reverse-engineering-slither-ios-network-protocol-bbc408485c45
1•user320•20m ago•0 comments

SpaceX sets date for first Starship version 3 launch – SpaceNews

https://spacenews.com/spacex-sets-date-for-first-starship-version-3-launch/
1•rbanffy•27m ago•0 comments

Hunting APT29 Tactics

https://manishrawat21.substack.com/p/how-i-caught-apt29-hiding-in-temp
1•ManishRawat21•35m ago•0 comments

Workday brings HR and finance agent into Microsoft 365 Copilot

https://newsroom.workday.com/2026-05-13-Workday-Brings-Sana-Self-Service-Agent-for-HR-and-Finance...
1•logickkk1•37m ago•0 comments

Third of weight shed after jabs 'is lost from muscle and bones

https://www.thetimes.com/uk/politics/article/third-of-weight-shed-after-jabs-is-lost-from-muscle-...
3•petethomas•41m ago•1 comments

Who Owns the Most Satellites

https://www.visualcapitalist.com/sp/gx04-who-owns-the-most-satellites/
1•jonbaer•42m ago•0 comments

A million baby monitors and security cameras were easily viewable by hackers

https://removepaywalls.com/https://www.theverge.com/tech/926487/meari-technology-hack-baby-monito...
1•erenon•44m ago•0 comments

Signal warns would pull out of Canada if made to comply with lawful access bill

https://www.theglobeandmail.com/politics/article-signal-warns-it-would-pull-out-of-canada-if-made...
4•petethomas•46m ago•0 comments

A Field Manual for Three Years on Deutsche Bahn

https://blog.hofstede.it/a-field-manual-for-three-years-on-deutsche-bahn/
2•gglanzani•47m ago•2 comments

Multi-LLM AI trading agent harness

https://github.com/achaljhawar/1rok
1•satoshiclad•50m ago•0 comments

Vector embeddings are the wrong default for AI agent memory

https://memnode.dev/articles/agent-memory-vs-vector-db
1•supercrafthost•52m ago•0 comments

Build workouts with Claude send to Fitness Player to workout [video]

https://www.youtube.com/shorts/QlcybBrszik
1•KeegNation•53m ago•1 comments

ChatGPT-Linked Mass Shootings Drive Developer Liability Concerns

https://news.bloomberglaw.com/litigation/chatgpt-linked-mass-shootings-drive-developer-liability-...
4•1vuio0pswjnm7•1h ago•1 comments

Major Atlassian Outage

https://status.atlassian.com/
7•shric•1h ago•1 comments

Don't Be Discouraged to Code by Hand

https://seongminpark.com/coding-by-hand/
3•boodleboodle•1h ago•0 comments

Saorsa, a new kind of social media built around what is happening in the world

https://saorsa.ai
1•calumwalker•1h ago•0 comments

You Won't Finish This Article. Why people online don't read to the end. (2013)

https://slate.com/technology/2013/06/how-people-read-online-why-you-wont-finish-this-article.html
1•eigenBasis•1h ago•0 comments

I work on self-improving AI despite the risks

https://twitter.com/jeffclune/status/2054637385850511360
1•pretext•1h ago•0 comments

AI coders are carrying half-open laptops through airports, offices, ice rinks

https://www.businessinsider.com/coders-keep-laptops-open-in-public-ai-agent-2026-5
6•taubek•1h ago•8 comments

The End of Claude Code Automation

https://www.vincentschmalbach.com/the-end-of-claude-code-automation/
1•vincent_s•1h ago•0 comments
Open in hackernews

API testing tool which sucks less

https://github.com/hissssst/hxxp
1•hissssst•11mo ago

Comments

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