frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Code responsibly, don't drink and vibecode

https://usama.leaflet.pub/3mpdjez6cz22g
1•iarchetype•6s ago•0 comments

Show HN: Rendering Markdown with LaTeX in the Terminal

https://mil.ad/blog/2026/latex-in-markdown.html
2•playnext•8m ago•1 comments

Show HN: Looped Whisper (FOSS) – Voice transcription menubar app for macOS

https://github.com/loopedautomation/whisper
1•RatulMaharaj•8m ago•0 comments

Build System Improvements, Centralized Overview, etc.

https://gist.github.com/rcalixte/0afb119cbcc130c21063839f65b53ab7
1•rcalixte•13m ago•0 comments

The Number Nobody Knows

https://motplot.app/helloworld
1•jamwise•14m ago•1 comments

Show HN: Adipoli: a hand-wired keyboard for opposable thumbs

https://codeberg.org/sudobangbang/adipoli
2•sudo_bangbang•21m ago•0 comments

Jimmy is a tool to convert your notes from different formats to Markdown

https://marph91.github.io/jimmy/
3•CTOSian•27m ago•0 comments

Microsoft Bought a Nuclear Plant

https://moai.studio/blog/posts/microsoft-bought-a-nuke-plant.html
2•ionwake•29m ago•2 comments

France Is Too Hot for Shutters and Ceiling Fans

https://www.theatlantic.com/ideas/2026/06/france-air-conditioning-failure/687723/
3•paulpauper•30m ago•0 comments

Higher Ed Is Sorry

https://www.theatlantic.com/ideas/2026/06/higher-education-universities-public-trust/687714/
2•paulpauper•30m ago•0 comments

Show HN: Drift, write LLM agents in English and transpile to async Python

https://github.com/rileyq7/drift
2•rileyq12•32m ago•0 comments

The Memory Tax

https://bycig.substack.com/p/the-memory-tax
2•paulpauper•32m ago•0 comments

Token Capital Efficiency

https://kmad.ai/Token-Capital-Efficiency
2•kmad•34m ago•0 comments

Utility boss warns US faces blackouts due to power supply shortfall

https://www.ft.com/content/14d2e591-7cd5-4456-904f-1b7fdc5cbc1a
3•Geekette•35m ago•2 comments

Mel Brooks is 100 today

https://www.theatlantic.com/culture/2026/06/long-live-mel-brooks/687730/
10•shellback3•36m ago•0 comments

I made a tool to check out open source websites

https://github.com/Frenxys/portfolio-finder
2•Frenea•36m ago•0 comments

Visual Basic on the PC with Windows 3.1

https://stonetools.ghost.io/visualbasic-win31/
2•TMWNN•40m ago•0 comments

Rats and mice are mutating and becoming resistant to poison, researchers warn

https://www.independent.co.uk/news/world/americas/rats-mice-mutating-poison-resistance-warning-b3...
3•Vaslo•44m ago•0 comments

Show HN: NameSnag – Get alerted when a watched domain appears available

https://namesnag.io
2•pro_methe5•47m ago•0 comments

Strong Relationships, Loosely Held

https://www.jerry.wtf/posts/strong-relationships-loosely-held/
3•personjerry•48m ago•1 comments

There are 5.7M more childless women of prime child-bearing age than expected

https://carsey.unh.edu/publication/factors-contributing-demographic-cliff-more-us-women-childbear...
2•loughnane•51m ago•1 comments

My First Encounter with a Political Spambot

https://tombedor.dev/political-spam/
3•jjfoooo4•52m ago•0 comments

Question: Is matching fixed regexes with back-references in P?

https://branchfree.org/2019/04/04/question-is-matching-fixed-regexes-with-back-references-in-p/
1•fanf2•54m ago•0 comments

Ask HN: Books about Genetic Algorithms

6•andyjohnson0•56m ago•1 comments

POSIX Is Not a Shell

https://alganet.github.io/blog/2026-06-28-12-POSIX-Is-Not-A-Shell.html
2•gaigalas•57m ago•0 comments

Show HN: I reverse-engineered the RLF log format used by REMUS underwater drones

https://github.com/isaacgerg/remus-rlf-reader
1•ipunchghosts•58m ago•0 comments

Technology and Power

https://www.chrbutler.com/technology-and-power
3•delaugust•58m ago•0 comments

Attention is all we have: A conjectural theory of cognitive inequality

https://davidbessis.substack.com/p/attention-is-all-we-have
3•Luc•1h ago•0 comments

Startup Wants to Sell a U.S.-Built Tiny Truck for $21,500

https://www.roadandtrack.com/news/a71667299/reo-industries-runabout-aims-to-simplify-the-truck-ma...
4•rmason•1h ago•1 comments

Claude Code now uses dark UI patterns to gain Google account access via MCP

https://claude.com/docs/connectors/google/gmail
2•janpeuker•1h ago•1 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?