frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The CP-SAT Primer: Using and Understanding Google OR-Tools' CP-SAT Solver

https://github.com/d-krupke/cpsat-primer/blob/main/README.md
1•scrlk•29s ago•0 comments

A synthetic order analytics pipeline built on CDC from Postgres to ClickHouse

https://github.com/el10savio/ecommrt
1•ugabuga•4m ago•0 comments

An experiment in building accounting around financial actions instead of forms

https://github.com/hisaabo/hisaabo
2•saurabhsinghvi•7m ago•0 comments

Show HN: CoshUI – A backend-agnostic UI engine for Python game development

https://gitlab.com/jylefv/CoshUI
1•jylefv•7m ago•0 comments

The Hardest Kind of Unsafe Rust

https://oxide-and-friends.transistor.fm/episodes/the-hardest-kind-of-unsafe-rust
1•tosh•11m ago•0 comments

Performance Has Layers

https://oxide.computer/blog/performance-has-layers
1•tosh•13m ago•0 comments

The seven methods for delivering instructions

https://claude.com/blog/steering-claude-code-skills-hooks-rules-subagents-and-more
2•twapi•15m ago•0 comments

Rust in Production: ClickHouse

https://corrode.dev/podcast/s06e06-clickhouse/
1•tosh•16m ago•0 comments

Court Transcript Costs

https://hansard.parliament.uk/commons/2023-11-16/debates/942DF7A1-9D96-43A0-AD65-474A0B30BA1D/Cou...
3•mellosouls•18m ago•0 comments

Pappice – a self-hosted support desk in one Go binary

https://github.com/lallero-dev/pappice
1•lallero317•18m ago•1 comments

Show HN: Created On-Page SEO Tool – AI Action Plans for Search Console Data

https://blogr.ai
2•karakhanyans•22m ago•0 comments

Show HN: APK-interceptor – Android deeplink, Intent assessment helper

https://github.com/sterrasec/apk-interceptor
1•tkmru•24m ago•0 comments

Show HN: Local automation runner with built-in LLM steps – YAML pipelines

https://rorlikowski.github.io/stepyard/
2•rorlikowski•32m ago•0 comments

Show HN: WhatsKept – Searchable,agent-queryable WhatsApp history from iOS backup

https://github.com/alkait/whatskept
1•tenthead•33m ago•0 comments

Maria Isabel Sánchez Vegara on Her 100th "Little People, Big Dreams" Book

https://www.amightygirl.com/blog?p=36753
1•zeristor•40m ago•0 comments

Show HN: F1l0 – Fitness Logger

https://f1l0.nickyreinert.de/
1•y42•40m ago•0 comments

Data Center Warfare: Defending AI Infrastructure

https://mwi.westpoint.edu/data-center-warfare-defending-the-key-terrain-of-ai-infrastructure/
1•Alien1Being•44m ago•0 comments

Show HN: I'm building a free TradingView alternative

https://www.aulico.com
2•rendernos•45m ago•0 comments

Banned

https://netwars.pelicancrossing.net/2026/06/19/banned/
2•ColinWright•52m ago•0 comments

Most indie devs build the wrong features. Here's one pattern that helps

https://featurebuddy.com/
2•dvanach•53m ago•1 comments

Nvidia Vera CPU Performance Compares to the Ampere Altra Max

https://www.phoronix.com/review/ampere-altra-nvidia-vera
1•rbanffy•54m ago•1 comments

EPEX: Matrix-free coefficient expansion for low-memory LWE experiments

https://zenodo.org/records/20743190
1•TomIRN•58m ago•0 comments

QuEra's Libra Fault-Tolerant Quantum System Heading to Amazon Braket Service

https://www.nextplatform.com/compute/2026/06/16/queras-libra-fault-tolerant-quantum-system-headin...
1•rbanffy•58m ago•0 comments

Fli -a tiny (18KB) easy to read file listing tool. Rust no_std and Libc

2•tracyspacy•59m ago•0 comments

Show HN: SciCollab – A platform where research happens, together

https://www.scicollab.org/
1•pixelatedRudy•1h ago•0 comments

Maptap.gg – Daily Geography Game

https://maptap.gg/
1•Gathering6678•1h ago•0 comments

Microsoft discovers new lightweight backdoor that steals cryptocurrency

https://arstechnica.com/security/2026/06/microsoft-spots-new-self-propagating-malware-for-stealin...
1•rbanffy•1h ago•0 comments

Nigeria's Babylon System [video]

https://www.youtube.com/watch?v=5vlmEuIPRIs
1•daesorin•1h ago•0 comments

Taste and judgement are lies we tell ourselves

https://technotes.substack.com/p/taste-and-judgement-are-lies-we-tell
3•mkagenius•1h ago•0 comments

"Show HN" " alternative to dark matter, tested across galaxy to cosmic scales"

2•SPruynIDR•1h 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?