frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Is Not the Point

https://quillium.bryanhu.com/blog/ai-is-not-the-point
1•thatxliner•1m ago•0 comments

Glances is a cross-platform system monitoring tool written in Python

https://nicolargo.github.io/glances/
1•wiradikusuma•11m ago•0 comments

How deep-sea mining is growing China's influence in the Pacific

https://www.cnn.com/interactive/2026/03/world/china-deep-sea-mining-military-vis-intl/
1•kburman•11m ago•0 comments

Multitail

https://www.vanheusden.com/multitail/
1•wiradikusuma•13m ago•0 comments

Log File Viewer for the Terminal

https://lnav.org/
1•wiradikusuma•15m ago•0 comments

Artemis II: Inside the Moon mission to fly humans further

https://www.bbc.co.uk/news/resources/idt-86aafe5a-17e2-479c-9e12-3a7a41e10e9e
1•nairteashop•20m ago•0 comments

MiniMind: End-to-end GPT-style LLM training pipeline in pure PyTorch

https://github.com/jingyaogong/minimind
1•dmonterocrespo•22m ago•1 comments

Personaplex – voice room where AI personas hear and respond to each other

https://personaplex.aifly.club/en
2•pplex_builder•22m ago•0 comments

The Artifact Paradox

https://intervue.fyi/blog/artifact-paradox
1•dennis3124•24m ago•0 comments

Doom over DNS

https://blog.rice.is/post/doom-over-dns/
1•bouncingbunny•24m ago•0 comments

Uni-1 Is Launched

https://uni1ai.app
1•Jenny249•26m ago•0 comments

GPT from GPT: de novo microgpt

https://github.com/Entrpi/microgpt-denovo
2•easygenes•34m ago•1 comments

I made Aplix, but need honest reviews about it

1•itsmsr•34m ago•0 comments

Model-based linguistic space for transmitting our thoughts from brain to brain

https://pubmed.ncbi.nlm.nih.gov/39096896/
1•Anon84•35m ago•0 comments

Microsoft blocks trick to unlock native NVMe driver, but workarounds still exist

https://www.tomshardware.com/software/windows/microsoft-blocks-the-registry-hack-trick-that-unloc...
2•josephcsible•47m ago•0 comments

Ask HN: AI companies' bots are making my server slow, what do you do?

1•aabbcc1241•49m ago•1 comments

Alibaba Unveils New Chip Design to Meet Surging Demand for AI

https://www.bloomberg.com/news/articles/2026-03-24/alibaba-unveils-new-chip-design-to-meet-surgin...
1•voxadam•52m ago•1 comments

Show HN: ArXiv metadata as Parquet files (2.99M papers, 1.44GB, 417 files)

https://huggingface.co/datasets/open-index/open-arxiv
1•tamnd•54m ago•0 comments

FCC Clearing the Air on Wi-Fi Software Updates (2015)

https://www.fcc.gov/news-events/blog/2015/11/12/clearing-air-wi-fi-software-updates
1•walterbell•59m ago•0 comments

Sovereign AI OS and SAMN Introduction

1•twocats7701•1h ago•0 comments

How Do US Men and Women Spend Their Time?

https://www.pewresearch.org/social-trends/feature/how-do-u-s-men-and-women-spend-their-time/
3•gmays•1h ago•0 comments

Firefox ext: Bkmker · Your bookmarks, encrypted and private

https://addons.mozilla.org/en-US/firefox/addon/bkmker/
2•fullstacking•1h ago•0 comments

OpenTarget Core: Laser Shooting Platform for Raspberry Pi Using OpenCV

https://github.com/JSK-Project/OpenTarget-Core
1•laurieg•1h ago•0 comments

Aspect Ratios with Sinners Director Ryan Coogler (2025)

https://www.youtube.com/watch?v=78Ru62uFM0s
1•hbcondo714•1h ago•0 comments

Halo-Gravity Traction

https://www.childrenshospital.org/conditions-treatments/halo-gravity-traction
1•walterbell•1h ago•0 comments

California bill aims to help vibe coders

https://www.semafor.com/article/03/20/2026/california-bill-aims-to-help-vibe-coders
2•gnabgib•1h ago•1 comments

A city that wasted nothing [video]

https://aeon.co/videos/the-extraordinary-efficiency-of-japans-edo-economy
4•billybuckwheat•1h ago•1 comments

Show HN: Locro – Fast and accurate local OCR through Chrome's screen_ai

https://github.com/sergiocorreia/clv-locro
1•zzleeper•1h ago•0 comments

'Microshifting' puts a new spin on 9-to-5 schedules

https://apnews.com/article/microshifting-work-time-flexible-schedule-balance-97a98519916b447cd60c...
1•donutshop•1h ago•0 comments

California bill to stop 'dominant platforms' from blocking competition

https://yro.slashdot.org/story/26/03/22/2025249/tech-leaders-support-california-bill-to-stop-domi...
4•MilnerRoute•1h 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?