frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Is Hollowing Out Higher Education

https://www.project-syndicate.org/commentary/ai-will-not-save-higher-education-but-may-destroy-it...
1•DyslexicAtheist•38s ago•0 comments

They're Giving People $12,000 to Do Nothing in New York

https://medium.com/@anwarzaid76/theyre-giving-people-12-000-to-do-nothing-in-new-york-54c2d592b1a3
2•MindBreaker2605•3m ago•0 comments

Why Are Software Engineers (Not) Engineers?

https://brainbaking.com/post/2022/10/why-are-software-engineers-engineers/
1•BinaryIgor•5m ago•0 comments

It's Hard to Feel the AGI

https://tensorlabbet.com/2025/11/30/hard-to-feel-agi/
2•tarolangner•6m ago•0 comments

Why $30B in settlement money goes unclaimed – and how I started fixing it

https://claim.watch/
1•ma1or•8m ago•1 comments

Zig Book – An open, technical and introductory book for Zig

https://github.com/pedropark99/zig-book
2•rob•11m ago•0 comments

Show HN: Mitsuki, a Python web framework as fast as Node or Java

https://github.com/DavidLandup0/mitsuki
2•DavidLandup0•12m ago•0 comments

C64g.com removed from Google Search index

https://c64g.com
1•darqis•15m ago•1 comments

They Found Relatives on 23andMe–and Asked for a Cut of the Inheritance

https://www.wsj.com/personal-finance/they-found-relatives-on-23andmeand-asked-for-a-cut-of-the-in...
2•fortran77•16m ago•0 comments

Term-keys – Lossless keyboard input for Emacs

https://github.com/CyberShadow/term-keys
2•harryday•18m ago•0 comments

EWD 1094 – The undeserved status of the pigeon-hole principle (1991)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1094.html
2•vismit2000•18m ago•0 comments

Advent of Code 2025

https://adventofcode.com/2025/about
3•vismit2000•19m ago•0 comments

Revisiting Jill of the Jungle, the last game Tim Sweeney designed

https://arstechnica.com/gaming/2025/11/revisiting-jill-of-the-jungle-the-last-game-tim-sweeney-de...
1•jamesbelchamber•20m ago•1 comments

Data Center Boom Sparks Gold Rush for Construction Workers

https://www.standardarena.co.ke/data-center-boom-sparks-gold-rush-for-construction-workers/
1•david_emmett•21m ago•0 comments

Show HN: Pinakes – Open-source library system with built-in public catalog

https://github.com/fabiodalez-dev/Pinakes
1•fabiodalez•22m ago•0 comments

OpenBSD: Free, Functional, and Secure

https://www.openbsd.org/
14•brynet•23m ago•1 comments

Show HN: Free and open-source platform to invest credit card rewards

https://github.com/henrynsmbl/micro-investing
1•hg30•25m ago•0 comments

I built a free FTC compliance scanner for creators in 10 hours

https://guardia-scan-suite.lovable.app
1•justicedevloper•26m ago•1 comments

Batman in subway makes people more helpful

https://science.slashdot.org/story/25/11/29/2233245/scientists-discover-people-act-more-altruisti...
1•Flundstrom2•28m ago•1 comments

From hiring at Gett to JobHire AI: building job search automation

https://medium.com/@dmitry_titov/the-job-search-process-is-outdated-how-getts-former-cpo-is-build...
1•Dmitry_Titov•28m ago•0 comments

Busting Legacy Code with AI Agents and Test Driven Development

https://yonatankra.com/busting-legacy-code-with-ai-agents/
1•krayonatan•36m ago•0 comments

Show HN: OgBlocks – It lets anyone create beautiful UIs with just copy and paste

https://ogblocks.dev/
1•thekarank•41m ago•0 comments

Crash Team Racing

https://en.wikipedia.org/wiki/Crash_Team_Racing
2•tosh•41m ago•0 comments

Show HN: A free metatag, sitemap and web manifest generator

https://metagen.top
1•wstaeblein•42m ago•0 comments

Schubfach: The smallest floating point double-to-string impleme

https://vitaut.net/posts/2025/smallest-dtoa/
2•fanf2•44m ago•0 comments

Show HN: SolveMyPainPoint – A single place to post and discover real problems

https://www.solvemypainpoint.com/
2•Chrizzby•44m ago•0 comments

The Thinking Game – Full Documentary – Tribeca Film Festival Official Selection

https://youtu.be/d95J8yzvjbQ
1•doppp•47m ago•0 comments

Skeuomorph

https://en.wikipedia.org/wiki/Skeuomorph
3•mkl95•48m ago•0 comments

Show HN: Guide – to help me get moving and keep the momentum going

https://github.com/nextfiveinc/guide
1•4mitkumar•51m ago•1 comments

I Trained an LLM to Dream. It Remembers Everything. [video]

https://www.youtube.com/watch?v=YA3hAGtfMs4
1•kissgyorgy•52m ago•0 comments
Open in hackernews

API testing tool which sucks less

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

Comments

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