frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Eight Short Studies on Excuses

https://www.lesswrong.com/s/XsMTxdQ6fprAQMoKi/p/gFMH3Cqw4XxwL69iy
1•microsoftedging•1m ago•0 comments

Show HN: Piruetas – A self-hosted diary app I built for my girlfriend

https://piruet.app
2•patillacode•4m ago•0 comments

ChessUnlock – Automating Chess Learning

https://chessunlock.app
1•YassineChahdi•8m ago•0 comments

Developer Education at Jane Street

https://blog.janestreet.com/developer-education-at-jane-street-index/
1•ned1010•10m ago•1 comments

Ask HN: Best way to develop games for beginners

1•Jean-Philipe•12m ago•0 comments

Spirit Airlines says it's going out of business after 34 years

https://apnews.com/article/spirit-airlines-trump-bailout-bankruptcy-37a4818e1b71c0905d022f669d85948c
2•geox•13m ago•0 comments

Why eldest siblings are brainier

https://www.economist.com/graphic-detail/2026/04/16/why-eldest-siblings-are-brainier
1•pseudolus•19m ago•1 comments

The Rooks Have Returned

https://en.wikipedia.org/wiki/The_Rooks_Have_Returned
2•ustad•19m ago•0 comments

Nicholas Carlini – Black-hat LLMs – [un]prompted 2026

https://www.youtube.com/watch?v=1sd26pWhfmg
1•swolpers•21m ago•0 comments

Pequod – A colour palette for reading and code, rooted in Moby-Dick

https://github.com/tiagojct/pequod
1•tiagojct•23m ago•0 comments

Show HN: Mljar Studio – local AI data analyst that saves analysis as notebooks

https://mljar.com/
9•pplonski86•25m ago•1 comments

A Dark-Money Campaign Is Paying Influencers to Frame Chinese AI as a Threat

https://www.wired.com/story/super-pac-backed-by-openai-and-palantir-is-paying-tiktok-influencers-...
1•SockThief•26m ago•0 comments

Leading journal finds AI is flooding academic publishing with lower quality work

https://phys.org/news/2026-05-journal-ai-academic-publishing-quality.html
2•pseudolus•28m ago•0 comments

Why TUIs are making a comeback

https://wiki.alcidesfonseca.com/blog/why-tuis-are-back/
2•alcidesfonseca•30m ago•0 comments

ICANN opens applications for new top-level domains for the first time since 2012

https://www.theregister.com/2026/05/01/icann_new_gtld_applications/
1•thunderbong•31m ago•0 comments

Inverse Sapir-Whorf and programming languages

https://lukeplant.me.uk/blog/posts/inverse-sapir-whorf-and-programming-languages/
2•birdculture•34m ago•1 comments

The AI Race Is Charged by the Fear of Being Left Behind

https://thewalrus.ca/the-ai-race-is-charged-by-the-fear-of-being-left-behind/
3•pseudolus•40m ago•0 comments

"Gazump"

https://notoneoffbritishisms.com/2026/05/01/gazump/
2•jjgreen•44m ago•0 comments

We migrated 100 services from Nginx to Envoy in one month

https://www.qovery.com/blog/alan-from-nginx-to-envoy-what-actually-happens-when-you-swap-your-pro...
1•ev0xmusic•44m ago•0 comments

Bep/gallerydeluxe: Fast Hugo gallery theme/module suitable for lots of images

https://github.com/bep/gallerydeluxe
1•Tomte•50m ago•0 comments

PgAdmin: The Most Popular PostgreSQL Admin Tool

https://www.pgadmin.org/
2•doener•51m ago•0 comments

Some Notes on AI

https://www.math.columbia.edu/~woit/wordpress/?p=15672
1•jjgreen•54m ago•0 comments

RAG isn't memory. It's Ctrl+F with embeddings

https://medium.com/@vbcherepanov/rag-isnt-memory-it-s-ctrl-f-with-embeddings-c461b90ac7b1
2•vbcherepanov•57m ago•0 comments

Show HN: Manage Casio G-Shock watches from the browser

https://github.com/izivkov/gshock-smart-sync-webapp
1•izivkov•58m ago•0 comments

How GitHub lost its way

https://substack.com/@usiddique09/p-196195940
3•usmansidd•58m ago•0 comments

clang-format configurator v2

https://clang-format-configurator.site/
1•gjvc•1h ago•0 comments

Apple just gave a clue that a big AI acquisition may be in the cards

https://www.marketwatch.com/story/apple-just-gave-a-subtle-clue-that-a-splashy-ai-acquisition-may...
2•dalvrosa•1h ago•0 comments

First Nations students are teaching themselves

https://www.cbc.ca/news/canada/edmonton/frog-lake-cree-language-app-9.7185348
3•01-_-•1h ago•0 comments

Convicted former Harvard scientist rebuilds brain computer lab in China

https://www.reuters.com/world/china/convicted-former-harvard-scientist-rebuilds-brain-computer-la...
3•01-_-•1h ago•0 comments

Looking for Employers for the job fair and hiring with Meeting C++

https://www.meetingcpp.com/meetingcpp/news/items/Looking-for-Employers-for-the-job-fair-and-hirin...
1•dalvrosa•1h ago•0 comments
Open in hackernews

API testing tool which sucks less

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

Comments

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