frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There are only two paths left for software

https://www.a16z.news/p/there-are-only-two-paths-left-for
1•7777777phil•4m ago•0 comments

Experimenting with Starlette 1.0 with Claude skills

https://simonwillison.net/2026/Mar/22/starlette/
2•TheTaytay•4m ago•0 comments

Show HN: Aerko_ – An offline-first, Vanilla JavaScript fitness PWA with local AI

https://github.com/SrPakura/AERKO_PWA
1•SrPakura•5m ago•1 comments

GrapheneOS won't force users to verify their age

https://twitter.com/GrapheneOS/status/2034957604682621229
1•ianrahman•6m ago•0 comments

UN issues new climate warning as El Niño looms

https://www.bbc.com/news/articles/c203rdxkezwo
1•blondie9x•6m ago•1 comments

Repairing Programs with AI Agents

https://penberg.org/blog/rp.html
1•penberg•7m ago•0 comments

PostgreSQL 19 will have pg_plan_advice contrib module (query hints)

https://www.depesz.com/2026/03/22/waiting-for-postgresql-19-add-pg_plan_advice-contrib-module/
1•tanelpoder•7m ago•0 comments

If Dspy is so great, why isn't anyone using it?

https://skylarbpayne.com/posts/dspy-engineering-patterns/
2•sbpayne•8m ago•1 comments

VisionClaude – Open-Source AI Vision for iPhone and Meta Ray-Ban Glasses

https://github.com/mrdulasolutions/visionclaude
1•mrdulasolutions•8m ago•0 comments

Meta faces potential billions in fines in trial over children's safety practices

https://www.latimes.com/business/story/2026-03-23/meta-faces-potential-billions-in-fines-in-trial...
3•1vuio0pswjnm7•8m ago•0 comments

The Rise of the Ray-Ban Meta Creep

https://www.wired.com/story/the-rise-of-the-ray-ban-meta-creep/
1•sharkweek•8m ago•0 comments

Wizards of Leroy and Wrico Lettering

https://kleinletters.com/Blog/wizards-of-leroy-and-wrico-lettering/
1•speckx•9m ago•0 comments

Show HN: An extension opens any Goodread book on Anna's arc,Z-Lib in one click

https://github.com/NubPlayz/GoodLib-Zlib-Goodreads-extension
1•NubPlayz•10m ago•0 comments

An AI game teaser commented by an AI bot

https://old.reddit.com/r/ArtificialSentience/comments/1ry37s0/im_making_a_game_where_you_play_as_...
1•stared•10m ago•0 comments

Traffic Genius Review: Get 100K+ Traffic Using a Stupidly Simple 7-Minute System

https://websites2know.com/traffic-genius-review/
1•WallaceWalley•10m ago•0 comments

Deliberate Reflection: Meditation to speed up learning and problem-solving

https://www.seanmuirhead.com/blog/deliberate-reflection
1•seany62•10m ago•0 comments

Show HN: Columbo – a CLI that finds forgotten K8s pods using a suspicion score

https://github.com/k-krew/columbo
1•kreicer•13m ago•0 comments

Ask HN: How many of you are profiting with LLM wrapper apps?

1•general_reveal•15m ago•0 comments

The Em Dash Conununundrum

https://skryblans.com/the-em-dash-conununundrum/
1•speckx•16m ago•1 comments

Ask HN: If there has been no prompt injection, is it safe?

1•sayYayToLife•17m ago•0 comments

NASA sets 'impossible' ground rules for relocation of 'flown space vehicle'

https://www.theregister.com/2026/03/23/nasa_rfp_shuttle_relocation/
1•Brajeshwar•18m ago•0 comments

Software engineer who scaled a startup from 10 → 500, seeking early-stage roles

2•vampiregrey•21m ago•0 comments

Agentic AI. Demystified

https://www.youtube.com/watch?v=MQW3vYVqEPk
2•frag•21m ago•0 comments

BIO: The Bao I/O Coprocessor

https://www.bunniestudios.com/blog/2026/bio-the-bao-i-o-coprocessor/
1•winkywooster•23m ago•0 comments

FoodPilot – weekly meal planner that pulls in Canada local grocery deals

https://www.foodpilot.ai/index-en.html
1•cedricyul•23m ago•0 comments

Set intersection and difference at the command line

https://www.johndcook.com/blog/2026/03/23/intersection-difference/
1•leephillips•24m ago•0 comments

Study: 'Security Fatigue' May Weaken Digital Defenses

https://www.albany.edu/news-center/news/2026-study-security-fatigue-may-weaken-digital-defenses
2•giuliomagnifico•24m ago•0 comments

RocksDB unit test finds a CPU bug

https://rocksdb.org/blog/2026/02/17/cpu-bug.html
3•shay_ker•24m ago•0 comments

SEVI: Silent Data Corruption of Vector Instructions in Hyper-Scale Datacenters

https://dl.acm.org/doi/10.1145/3779212.3790217
1•matt_d•25m ago•0 comments

Building the Good Web

https://brennan.day/building-the-good-web/
1•darccio•26m 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?