frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Use and share Skills for SAP and contribute

https://skills.cloud.sap
1•yogananda•13s ago•1 comments

Show HN: I built TrackMyMetro, a fast, ad-free metro router for India

https://trackmymetro.com
1•HelloShiv•3m ago•0 comments

Best EC2 Instance for PostgreSQL

https://postgres.saneengineer.com/best-ec2-instance-for-postgresql
1•b-man•3m ago•0 comments

Open Sauce 2026 – Exhibits

https://www.opensauce.com/exhibits
1•brokensegue•8m ago•0 comments

Show HN: Wolbarg – Local-first shared memory for AI agents using SQLite

https://wolbarg.com/blog/why-sqlite-is-enough-for-local-ai-agent-memory
1•atharvmunde•9m ago•0 comments

Kimi K3 may be an important inflection point for AI

https://twitter.com/GavinSBaker/status/2078110934740980193
1•jger15•16m ago•0 comments

Cross Compiling Rust To openwrt `mipsel-unknown-Linux-musl` on Mac OS

https://gabrielfalcao.github.io/blog/cross-compiling-rust-to-openwrt-mipsel-unknown-linux-musl-on...
1•gfalcao•16m ago•0 comments

Eusend keeps your email data in the EU

https://www.eusend.dev/blog/how-eusend-keeps-your-email-in-the-eu
1•sharecrow•17m ago•0 comments

EU loosens carbon market rules to let industry pollute for longer

https://www.politico.eu/article/eu-loosens-carbon-market-rules-to-allow-industry-to-pollute-for-l...
1•leonidasrup•18m ago•0 comments

Anthropic Thinks Its Own Success Is Key to Making AI Safe

https://www.wired.com/story/anthropic-thinks-ai-can-only-be-safe-under-its-control/
2•1vuio0pswjnm7•19m ago•0 comments

Show HN: Hearth, an open-source local AI that runs your PC (files, apps, voice)

https://github.com/0pen-Sourcer/Hearth
1•SwagKing•21m ago•0 comments

More Bounce to the Ounce – By Maciej Cegłowski

https://mceglowski.substack.com/p/more-bounce-to-the-ounce
2•pavel_lishin•23m ago•0 comments

Video Game Critic

https://videogamecritic.com/
1•helloplanets•23m ago•0 comments

Pattern Matching on Compressed Strings Without Decompression

https://spiraldb.com/blog/pattern-matching-strings-without-decompression
1•surprisetalk•24m ago•0 comments

PennyLane is an open-source quantum software platform for quantum

https://github.com/PennyLaneAI/pennylane
2•donutloop•24m ago•0 comments

Soft Dorothy Software: Unfinished Tales (Vol 1)

https://github.com/EngineersNeedArt/SoftDorothy-UnfinishedTales-Vol1
1•gregsadetsky•24m ago•0 comments

Multi-region data and service mesh operated by a Makefile

https://github.com/neospe/autoops
2•renk•25m ago•0 comments

Some Thoughts on AI and Art

https://insertchaos.bearblog.dev/thoughts-on-ai-and-art/
1•snorbleck•25m ago•0 comments

A multipurpose, private personal AI on a dedicated AWS instance

https://purposemapped.com
1•BuddyPerry•26m ago•0 comments

Document intelligence platform – share files, track views, collect signatures

https://tinidrop.com
1•santosh_premi•26m ago•0 comments

V1 of OpenTelemetry Go Compile-Time Instrumentation

https://opentelemetry.io/blog/2026/go-compile-time-instrumentation-v1/
1•svrnm•26m ago•0 comments

Glider Classic Returns

https://www.softdorothy.com/gliderclassic/gliderclassic.html
1•gregsadetsky•27m ago•0 comments

Regular expression speed and error rates

https://www.johndcook.com/blog/2026/07/17/regex-speed-error/
1•ibobev•28m ago•0 comments

Egerton MS 1995

https://quuxplusone.github.io/blog/2026/07/16/egerton-ms-1995/
2•ibobev•28m ago•0 comments

Why Org Social is the ethical Fediverse alternative

https://en.andros.dev/blog/734c56f2/why-org-social-is-the-ethical-fediverse-alternative/
4•ibobev•29m ago•2 comments

Unigent SDK – universal cross-harness, cross-session agent workflow scripting

https://github.com/gintasz/unigent
1•gintasz•30m ago•0 comments

Curry-Howard Correspondence – How proof assistants work [pdf]

https://cklixx.people.wm.edu/teaching/math400/Wesley-P1.pdf
1•max-amb•33m ago•0 comments

The Auditor's Opinion

https://www.cringely.com/2026/07/16/the-auditors-opinion/
1•mhb•33m ago•0 comments

Lenovo announces first laptop with inkjet-printed OLED

https://www.tomshardware.com/monitors/lenovo-announces-worlds-first-laptop-with-inkjet-printed-ol...
1•HardwareLust•35m ago•1 comments

The troubling Russian connections of a 'European' password manager

https://www.lemonde.fr/en/pixels/article/2026/07/17/the-troubling-russian-connections-of-a-europe...
1•Sami_Lehtinen•37m ago•0 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?