frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WebFPGA

https://webfpga.io/
1•gurjeet•3m ago•0 comments

Games look real now. We're in the future

https://twitter.com/r00t404t/status/2094871766304751799
1•razodactyl•3m ago•0 comments

Yume – A game launcher for PC and emulators

https://komorebidesigns.dev/
1•DevRen•3m ago•1 comments

FixMonorepo – Fix a monorepo by splitting it into single-file repos

https://github.com/twigg-vc/fixmonorepo
1•andrebianchessi•6m ago•0 comments

mst3k-anything

https://github.com/jgbrwn/mst3k-anything
1•indigodaddy•9m ago•0 comments

How is AWS console so broken?

1•anuptalwalkar•12m ago•0 comments

Testing Grok 4.6's Enhanced Biology Safeguards

https://blog.latch.bio/p/analyzing-grok46-safeguards
1•fourfire•15m ago•0 comments

Shopify's agent-commerce category filter didn't filter on any of 190 stores

https://shelfglance.com/research/ucp-category-filter
1•BruceM2007•19m ago•0 comments

Conduct react interviews with a shared coding workspace

https://www.reactpair.com/
1•vijayst•19m ago•0 comments

Huawei Became China's Nvidia [video]

https://www.youtube.com/watch?v=Jbq4wrZn-DI
1•deterministic•20m ago•0 comments

B.C. boaters warned to avoid mysterious floating island

https://cheknews.ca/b-c-boaters-warned-to-avoid-mysterious-floating-island-1345202/
2•ehxor•23m ago•0 comments

XGBoost from Scratch

https://randomrealizations.com/posts/xgboost-from-scratch/
2•auraham•26m ago•0 comments

High-performance lossless floating-point compression in pure Rust

https://crates.io/crates/fastalp
2•rmw-link•30m ago•0 comments

Contest announcement – Build on BareMetal Cloud Sep 7-20

https://returninfinity.com/blog/sep2026-build-on-baremetal-contest
1•varunmadhokRetI•38m ago•1 comments

OpenRCT on GitHub Pages

https://atapifire.github.io/OpenRCT2-Web/
1•websim_api•39m ago•0 comments

Another Tesla on Autopilot Stopped on Freeway, Driver Died: Report

https://gizmodo.com/another-telsa-on-autopilot-stopped-on-freeway-driver-died-report-2000805742
4•kamaraju•41m ago•4 comments

AI Made Writing Code Free. It Made Reading Code Expensive

https://medium.com/c-sharp-programming/ai-made-writing-code-free-it-made-reading-code-expensive-e...
2•sukhpinder0804•44m ago•0 comments

RollerCoaster Tycoon Needs Early Access Users

https://store.steampowered.com/app/4734550/RollerCoaster_Tycoon_Wonderworks/
3•kamphey•45m ago•0 comments

A Bicycle for the Mind

https://pulkomandy.tk/_/_Life/_A%20bicycle%20for%20the%20mind
1•vinhnx•46m ago•0 comments

Aviation Herald sued; editor forced to sell home of 40y and move into his office

https://avherald.com/h?article=53c8958a
3•gnuplustoejam•49m ago•0 comments

One in three AI scribe notes carries a verified clinical error

https://arxiv.org/abs/2608.31017
2•sbulaev•51m ago•1 comments

Command and Conquer Series Retrospective (4.5 Hours) [video]

https://www.youtube.com/watch?v=3EwZelaQ78c
1•nomilk•51m ago•0 comments

Russian Sanctions Are Fueling a Canadian Car Theft Epidemic

https://www.nytimes.com/2026/08/27/world/canada/canada-car-theft-russia-sanctions.html
3•lxm•59m ago•0 comments

life hacks in devil daggers and general yap about homing timings [video]

https://www.youtube.com/watch?v=wqMEnSWjrCs
3•lelandfe•59m ago•0 comments

Fake Books (2022)

https://blog.coredump.cx/p/fake-books
1•surround•1h ago•0 comments

Open Source X Algorithm Integrates First Public Contribution

https://github.com/xai-org/x-algorithm/pull/55
3•nomilk•1h ago•1 comments

Piloting the first double-blind AI evaluations

https://deepmind.google/blog/piloting-the-worlds-first-double-blind-ai-evaluations/
1•williamtrask•1h ago•0 comments

Show HN: Markdown Gatekeeper – one current source per topic for AI agents

https://github.com/nanlogic/markdown-gatekeeper
3•sacravenger•1h ago•0 comments

TrackerControl for Android

https://trackercontrol.org/
2•uoaei•1h ago•0 comments

What we've learned building cloud agents

https://cursor.com/blog/cloud-agent-lessons
1•shenli3514•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?