frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

QSOE: QNX-inspired OS with dual-kernel architecture

https://qsoe-dev.blogspot.com/2026/06/qsoe-project-v01-is-released.html
1•ymz5•25s ago•0 comments

Never Give Them Your Face

https://nevergivethemyourface.com/
1•audiodude•1m ago•0 comments

Former Unreal Engine 'Lead Evangelist' Sjoerd De Jong Leaves Epic Games

https://www.pcgamer.com/gaming-industry/former-unreal-engine-evangelist-and-level-design-legend-s...
1•Michelangelo11•1m ago•0 comments

Show HN: GeoTag Photos – Add GPS coordinates to photos in the browser

https://geotagphotos.app
1•zylics•1m ago•0 comments

Why European housing politics should be Americanized

https://worksinprogress.co/issue/should-european-housing-politics-be-americanized/
1•surprisetalk•2m ago•0 comments

Retrieval Debt: The Technical Debt Your Agent Is Paying

https://sohit.substack.com/p/retrieval-debt-the-technical-debt
1•sohitkeshri•2m ago•0 comments

The Coming Enshittification of AI

https://www.damianmr.com/posts/the-coming-enshittification-of-ai
1•Pattaya•2m ago•0 comments

Have Data Centers Raised Your Electric Bill? Causal Evidence from the US

https://arxiv.org/abs/2606.19777
1•atlasunshrugged•3m ago•1 comments

DNA from 2k-year-old grape seeds points to origins of modern winemaking

https://www.theguardian.com/world/2026/jun/14/dna-from-2000-year-old-grape-seeds-points-to-origin...
1•speckx•3m ago•0 comments

Keogram: The Sky in 2025

https://apod.nasa.gov/apod/ap260621.html
1•mef51•3m ago•0 comments

Chevron signs 20-year power agreement with Microsoft for West Texas data center

https://www.chevron.com/newsroom/2026/q2/chevron-signs-20-year-power-agreement-with-microsoft-for...
1•cdrnsf•3m ago•0 comments

Is Time Slowly Dying?

https://www.facebook.com/share/r/1CfnJ9UQoT/
1•Asheed•4m ago•0 comments

Pledging Another $400k to the Zig Software Foundation

https://mitchellh.com/writing/zig-donation-2026
1•tosh•4m ago•0 comments

Domain Understanding Is Moat

https://sohit.substack.com/p/domain-understanding-in-moat
1•sohitkeshri•5m ago•0 comments

PenTest Toolkit V2 – Open-Source Penetration Testing Toolkit

https://github.com/mhmmuneef/PenTest-Toolkit-V2
1•mhmmuneef•6m ago•0 comments

Integrated SigInt System Identify Suspects by the Electronic Devices They Use

https://www.leonardocompany-us.com/lpr/elsag-signaltrace
1•_____k•6m ago•0 comments

Die analysis of the 8087 math coprocessor's fast bit shifter

https://www.righto.com/2020/05/die-analysis-of-8087-math-coprocessors.html
3•Jimmc414•7m ago•1 comments

Optimization Catalog: How 4 bytes of padding make array clearing 49% faster

https://blog.andr2i.com/posts/2026-06-22-optimization-catalog-how-4-bytes-of-padding-make-array-c...
1•theanonymousone•7m ago•0 comments

Learning Some Logarithms (2023)

https://entropicthoughts.com/learning-some-logarithms
1•kqr•9m ago•0 comments

LMMs should alert you when they begin to suffer from Context-Rot

1•ross-sec-audio•9m ago•0 comments

Ask HN: Is Fable Back?

1•taspeotis•10m ago•0 comments

SiliconScope: Local-AI Cockpit for Apple Silicon

https://github.com/kennss/SiliconScope
1•rippeltippel•10m ago•0 comments

Verification Debt is the new Tech Debt

https://12gramsofcarbon.com/p/agentics-cost-to-implement-vs-cost
1•theahura•11m ago•0 comments

Mesh – a P2P Git daemon and issues and cicd

https://kaizen-hq.github.io/mesh/
1•joeyguerra•14m ago•1 comments

What It Means to Rebuild Your Cognitive OS

https://kunyuan.substack.com/p/04concept-entrywhat-it-means-to-rebuild
1•hufdr•16m ago•0 comments

The Structural Return Argument Against Value Investing

https://mdickens.me/2026/03/02/structural_return_argument_against_value_investing/
1•surprisetalk•16m ago•0 comments

How One Code Change Reduced CPU Usage by 97%

https://blog.duolingo.com/reduce-cpu-usage-97-percent/
1•soheilpro•16m ago•0 comments

Klovr – a Hyperliquid-style funded trading challenge with an auditable ledger

https://klovr.xyz/
2•Jimmy6929•17m ago•2 comments

Local LLM Inference Optimization: The Complete Guide

https://carteakey.dev/blog/local-inference/local-llm-optimization/
1•victormustar•18m ago•0 comments

Branko Milanovic, economist: 'There will be no return to neoliberal ideology'

https://www.lemonde.fr/en/opinion/article/2026/06/22/branko-milanovic-economist-there-will-be-no-...
1•rawgabbit•18m 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?