frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Getting Out of the Loop: 8 Months Solo-Building with AI

https://github.com/patforna/writing
1•patforna•2m ago•0 comments

Early Data Indicates an A.I.-Generated Drug Could Slow Aging

https://www.nytimes.com/2026/09/07/science/ai-generated-drug-longevity.html
1•bookofjoe•2m ago•1 comments

Windows 11 users are getting full-desktop ads as wallpapers from Microsoft

https://www.neowin.net/news/windows-11-users-are-getting-full-desktop-ads-as-wallpapers-from-micr...
1•bundie•4m ago•0 comments

GTP6-Astra-Low in Codex launched a rocket in Factorio, on track for next planet

https://www.reddit.com/r/codex/comments/1wakicq/comment/p8ixq7l/
1•psihius•5m ago•1 comments

One Document, Two Hands

https://sunilpai.dev/posts/one-document-two-hands/
1•handfuloflight•6m ago•0 comments

Show HN: A Free AI Plugin for Google Ads, Console and Analytics

https://unfetch.com/plugin
1•timm37•6m ago•0 comments

Show HN: Stateful AI agent on Cloudflare Workers free tier, with evals

https://github.com/DomWane/workers-personal-agent
1•DomWane•7m ago•0 comments

Show HN: I've Translated Linear Algebra Done Right by Axler to Hebrew

https://twitter.com/AxlerLinear/status/2097188716091674804
1•tzury•8m ago•0 comments

NASA Sea Level Change

https://sealevel.nasa.gov/
1•simonebrunozzi•8m ago•0 comments

Show HN: Nexconn – Free cross-platform chat SDK with native push

https://www.nexconn.ai/free-chat-api
1•mia_tech•9m ago•0 comments

Show HN: Gat – Version large files with Git, store them anywhere

https://getgat.dev
1•davnn•9m ago•0 comments

Game publisher lies to its users and claims its graphics are hand-made

https://system3.com/news/from-retro-pixels-to-the-pondversethe-bovine-bomber-recreated-in-3d/
1•joemanaco•10m ago•1 comments

Show HN: AI Agent for Google Play Submissions [video]

https://www.youtube.com/watch?v=tSSPdkp0QVI
1•Harish_0089•11m ago•0 comments

PeaZip is an open-source file archiver that supports strong AES-256 encryption

https://digitalescapetools.com/tools/tool.html?id=peazip
1•xabd•12m ago•0 comments

Show HN: Fraise: a memory database for AI agents

https://docs.getfraise.dev
1•airejie•12m ago•0 comments

My dream is to become a chairman who only gave KPIs for AI, not tasks

1•nohuman-labs•15m ago•0 comments

On the 25th anniversary of 9/11, editor remembers the heroes of Flight 93

https://stateline.org/2026/09/08/on-the-25th-anniversary-of-9-11-states-newsroom-editor-remembers...
1•chmaynard•15m ago•0 comments

Pâro: The feeling that everything you do is somehow wrong

https://www.youtube.com/watch?v=w7l2hUp0CkQ
1•Arodex•15m ago•0 comments

Stop Killing the Internet: No Digital ID and No Age Verification

https://eci.ec.europa.eu/066/public/#/screen/home
1•miohtama•15m ago•0 comments

The Rich Climate Distraction

https://www.wsj.com/opinion/the-rich-worlds-climate-distraction-fe33cf14
1•mpweiher•17m ago•0 comments

Show HN: Deja - predicts your next shell command without an LLM

https://github.com/Giammarco-Ferranti/deja
1•giammiferr•18m ago•1 comments

Name Here

https://publicdomainreview.org/collection/your-name-here-1960/
1•ustad•18m ago•0 comments

Show HN: V0.1.0 of tula, which weighs what you hold

https://usetu.la/
1•hsnice16•19m ago•0 comments

Scanned, segmented, and animated my keyboard. Now you can type on my keyboard

https://chyuang.com/gaussian-splats/
1•yongyongyong•19m ago•0 comments

Nvidia Personal AI Router (Pair)

https://www.nvidia.com/en-us/ai-on-rtx/personal-ai-router/
1•florianherrengt•22m ago•1 comments

Show HN: Lini – one language for diagrams, charts, floorplan, schematic, drawing

https://lini.rs/
2•monfared•22m ago•0 comments

WebAssembly Security: The Sandbox That Is Not What You Think

https://aquilax.ai/blog/webassembly-wasm-security-risks
2•dagurp•23m ago•0 comments

Codex on GPT6 Astra Low launched a rocket into space in Factorio Space Age 2.1

https://www.reddit.com/r/codex/comments/1wakicq/codex_on_gpt6_astra_low_tonight_launched_a_rocket/
2•epaga•26m ago•0 comments

America's Arsenal Runs on Two Clocks

https://gadallon.substack.com/p/americas-arsenal-runs-on-two-clocks
1•JumpCrisscross•26m ago•0 comments

Show HN: WFY24 A performance weather widget with 2km hyper-local forecasting

https://www.wfy24.com/en/widgets
1•weatherfun•27m 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?