frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Old habits die hard: Microsoft tries to limit our options, this time with AI

https://blog.mozilla.org/en/mozilla/ai/microsoft-copilot-ai-user-choice/
1•01-_-•39s ago•0 comments

FBI used iPhone notification data to retrieve deleted Signal messages

https://9to5mac.com/2026/04/09/fbi-used-iphone-notification-data-to-retrieve-deleted-signal-messa...
1•01-_-•1m ago•0 comments

One of the biggest game makers reveals 'uncomfortable truth' about AI

https://www.thegamebusiness.com/p/one-of-the-worlds-biggest-game-makers
1•dude250711•2m ago•0 comments

Why Recycling Nuclear Waste Isn't a Silver Bullet [video]

https://www.youtube.com/watch?v=FWzI72snmE0
1•leonidasrup•3m ago•0 comments

Did the Selective Service Harvest Names from a 'Free Ice Cream' List? (1998)

https://www.snopes.com/fact-check/ice-cream-registration-notice/
1•thunderbong•6m ago•0 comments

Stop Registration Spam with Identity Pre-Verification

https://fusionauth.io/blog/identity-pre-verification
1•mooreds•8m ago•0 comments

Build the thing you wish to see in the world (2025)

https://brittanyellich.com/build-the-thing/
1•mooreds•9m ago•0 comments

Microsoft suspends dev accounts for high-profile open source projects

https://www.bleepingcomputer.com/news/microsoft/microsoft-suspends-dev-accounts-for-high-profile-...
8•N19PEDL2•10m ago•1 comments

DeepInverse: PyTorch Library for Inverse Problems

https://github.com/deepinv/deepinv
1•cl3misch•10m ago•0 comments

A name is succession, legacy and celebration in Japan's Kabuki theater

https://apnews.com/article/kabuki-name-succession-japan-tradition-theater-d1e9621bc91385498314f36...
1•mooreds•10m ago•0 comments

Raon-SpeechChat-9B: A Full-Duplex Speech Language Model

https://huggingface.co/KRAFTON/Raon-SpeechChat-9B
1•BrutalCoding•12m ago•0 comments

I replaced Apple Migration Assistant with a local 122B LLM

https://github.com/genedeng-ca/ai-mac-migration
2•genedeng•13m ago•0 comments

Less Net Work for Networks

https://n0.computer/
1•janandonly•17m ago•0 comments

Is it just me, or Opus 4.6 is sounding bit dumb lately

3•rambrrest•20m ago•0 comments

OmniSearch: Fast Windows file search built with Tauri, Rust, and C++

https://github.com/Eul45/omni-search
2•eyuel_engida•20m ago•0 comments

SKHynix Announces "Strategic Investment" in European Semiconductor Startup

https://www.hpcwire.com/off-the-wire/semidynamics-secures-sk-hynix-investment-to-advance-memory-c...
1•Bluextend•23m ago•0 comments

Amazon Is Pulling Support for Kindles from 2012 or Earlier. What to Do Now

https://www.cnet.com/tech/computing/amazon-pulls-the-plug-on-older-kindle-models/
2•bookmtn•24m ago•0 comments

We put all 4 Gemma 4 models in one Telegram bot. Try it and see how we built it

https://seqpu.com/UseGemma4In60Seconds/
1•fredmendoza•25m ago•1 comments

Essay explainging OpenAI's safety collapse [video]

https://www.youtube.com/watch?v=bta18wTOr_k
1•vincentkriek•26m ago•0 comments

Wild chimpanzees waging 'civil war' with coordinated attacks between groups

https://www.theguardian.com/environment/2026/apr/09/civil-war-chimpanzee-group-closer-to-human-co...
2•cebert•27m ago•0 comments

Show HN: A native Compose Desktop host for macOS

https://github.com/letmutex/compose-native-host
1•letmutex•27m ago•0 comments

Python Is Dead

https://calebfenton.substack.com/p/python-is-dead
5•calebfenton•30m ago•3 comments

Show HN: Creating OCD versions of a yearly calendar

https://calendar-architect.pages.dev
1•szemy2•31m ago•1 comments

PostgreSQL REST API from SQL Scripts

https://npgsqlrest.github.io/blog/sql-rest-api.html
1•vbilopav•35m ago•0 comments

FIFA World Cup's best shirts are 30 years old

https://www.cnn.com/2026/04/10/style/fifa-world-cup-best-shirts
1•Tomte•37m ago•0 comments

Macs crash after 49 days of uptime?

https://sixcolors.com/link/2026/04/macs-crash-after-49-days-of-uptime/
3•jmsflknr•38m ago•0 comments

C++23 Support in MSVC Build Tools 14.51

https://devblogs.microsoft.com/cppblog/c23-support-in-msvc-build-tools-14-51/
1•pjmlp•38m ago•0 comments

Thoughts on AI for Software Development

https://herrherrmann.net/blog/thoughts-on-ai-for-software-development/
1•herrherrmann•39m ago•0 comments

The Skeleton and the Soul

https://postcorporate.substack.com/p/the-skeleton-and-the-soul
2•gnostikka•40m ago•0 comments

Show HN: Realtime Skybox for Camera Background

https://lana-ai.app
1•zilvinassebeika•42m ago•0 comments
Open in hackernews

API testing tool which sucks less

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

Comments

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