frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Zero Day Exploit in Telegram

https://www.zerodayinitiative.com/advisories/upcoming/#ZDI-CAN-30207
1•abracos•42s ago•0 comments

AV1's open, royalty-free promise in question as Dolby sues Snapchat over codec

https://arstechnica.com/gadgets/2026/03/av1s-open-royalty-free-promise-in-question-as-dolby-sues-...
1•joshcartme•1m ago•0 comments

How LLMs Feel Language

https://data-processing.club/cognition/
1•arrowsmith•3m ago•0 comments

Revge – AI infrastructure for Kurdish language preservation

https://www.revge.com
1•darvanshvan•4m ago•0 comments

Day Zero of Multi-Vector Retrieval

https://lighton.ai/fr-blog-posts/day-zero-of-multi-vector-retrieval
1•kaycebasques•6m ago•0 comments

Beyond C: wrapping Dear ImGui in Swift with zero FFI

https://carette.xyz/posts/swift_cpp_compatibility_with_raylib_and_imgui/
3•weird_trousers•7m ago•0 comments

Slow Download Speeds for Sources on GitHub

https://github.com/orgs/community/discussions/143212
1•pera•9m ago•0 comments

Fear of Missing Code

1•lukol•11m ago•0 comments

US sends subpoenas in Warner-Paramount antitrust review as probe picks up steam

https://www.reuters.com/world/us-sends-subpoenas-warner-paramount-antitrust-review-probe-picks-up...
1•1659447091•14m ago•0 comments

If you don't opt out by Apr 24 GitHub will train on your private repos

68•vmg12•16m ago•15 comments

Hackers got Denver crosswalks to hate on Trump

https://denverite.com/2026/03/16/denver-crosswalks-hacked-anti-trump-message-explained/
3•metabagel•16m ago•0 comments

Split Terminal Panes on QuakeNotch v2.3

https://www.patreon.com/posts/quakenotch-v2-3-154094964
2•rohanrhu•20m ago•0 comments

Sycophantic bots coach users into selfish, antisocial behavior, say researchers

https://www.theregister.com/2026/03/27/sycophantic_ai_risks/
3•cmsefton•22m ago•0 comments

Researchers find 3,500-year-old loom that reveals textile revolution

https://web.ua.es/en/actualidad-universitaria/2026/marzo2026/23-31/ua-researchers-find-3-500-year...
1•geox•23m ago•0 comments

Memory chip stocks shed $100B as AI-driven shortage trade unwinds

https://www.ft.com/content/e4e15692-187e-4466-832e-ec267e792292
6•cjs_ac•28m ago•0 comments

I built a $15k Mac app for a random Reddit user

2•fujilovesapps33•29m ago•0 comments

E-waste from rich nations floods local markets in Nigeria

https://www.aljazeera.com/features/2026/3/27/truly-junk-e-waste-from-rich-nations-floods-local-ma...
2•Qem•30m ago•0 comments

Slovenia becomes first EU country to introduce fuel rationing

https://www.bbc.com/news/articles/c77m4zx6zvmo
6•measurablefunc•30m ago•0 comments

Rate My Managers

https://ratemymanagers.ca
2•noRagrats•30m ago•1 comments

Stadler reshapes knowledge work at a 230-year-old company

https://openai.com/index/stadler/
2•surprisetalk•31m ago•0 comments

Show HN: Kagento – LeetCode for AI Agents

https://kagento.io
4•ifdotpy•34m ago•0 comments

To Sit by the Water

https://tinkelenberg.com/posts/to-sit-by-the-water/
2•tinkelenberg•35m ago•0 comments

Transport Canada warned about WestJet seating hazard weeks before viral video

https://www.cbc.ca/news/canada/edmonton/transport-canada-westjet-seating-layout-hazard-9.7142069
2•luu•36m ago•0 comments

Velxio 2.0 – Emulate Arduino, ESP32, and Raspberry Pi 3 in the Browser

https://github.com/davidmonterocrespo24/velxio
13•dmcrespo•36m ago•1 comments

Type Theorists need to take a look at Zig

https://pure-systems.org/posts/2026-03-27-the-type-theorists-need-to-take-a-look-at-zig.html
2•doyougnu•42m ago•1 comments

CppCon: C++ Beats Rust in JSON Serialization [video]

https://www.youtube.com/watch?v=Mcgk3CxHYMs
4•fthiesen•42m ago•0 comments

Quadratic Micropass Type Inference

https://articles.luminalang.com/a/micropass-inference/
5•simvux•43m ago•0 comments

Where Agents Converge

https://danthegoodman.substack.com/p/where-agents-converge
3•dangoodmanUT•45m ago•0 comments

How to Make Programming Terrible for Everyone

https://jneen.ca/posts/2026-03-27-how-to-make-programming-terrible-for-everyone/
3•jneen•45m ago•0 comments

I scored every NYC building for distress using 37M public data points and ML

https://sillview.nyc
2•ThomasThuillier•46m 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?