frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Miniffi: Call Rust code from JavaScript/Swift/C++ with minimal setup

https://github.com/evanw/miniffi
1•mustaphah•27s ago•0 comments

Why Nvidia's Bet on Intel Could Reshape the AI Tech Landscape

https://www.hpcwire.com/2025/09/29/the-silicon-symbiosis-why-nvidias-bet-on-intel-could-reshape-t...
1•rbanffy•39s ago•0 comments

One Star Review Tour – The Browser Extension

https://xn--p3hcaaa.yugo.at
1•bobbiechen•1m ago•0 comments

Socket Firewall: Free, Proactive Protection for Your Software Supply

https://socket.dev/blog/introducing-socket-firewall
1•feross•1m ago•0 comments

Show HN: Sparky as a simple orchestrator for self hosted clusters

https://github.com/melezhik/sparky/blob/master/posts/SparkyAsSimpleOrchestratorforSelfHostedClust...
1•melezhik•1m ago•0 comments

Valuing Land: The Simplest Viable Method

https://progressandpoverty.substack.com/p/valuing-land-the-simplest-viable
1•surprisetalk•2m ago•0 comments

Arctic sea ice extent has remained steady for almost 2 decades

https://nsidc.org/sea-ice-today
1•bilsbie•3m ago•0 comments

Show HN: ChannelyTV – turn YouTube videos into linear TV

https://channely.tv/
1•jantap•4m ago•0 comments

Unstract: Open-source platform to ship document extraction APIs/MCPs in minutes

https://github.com/Zipstack/unstract
1•naren87•4m ago•0 comments

Frank Chimero: I think we're in the lemon stage of the internet

https://frankchimero.com/blog/2025/selling-lemons/
2•gregwolanski•4m ago•0 comments

An Essay on Wank

https://deadsimpletech.com/blog/essay_on_redacted
1•cainxinth•4m ago•0 comments

Statement: Update on Imgur Investigation

https://ico.org.uk/about-the-ico/media-centre/news-and-blogs/2025/09/statement-update-on-imgur-in...
1•ColinWright•5m ago•0 comments

Printable Puzzles by KrazyDad

https://krazydad.com/
1•surprisetalk•6m ago•0 comments

Things You Don't Have to Do

https://quarter--mile.com/Things-You-Don-t-Have-to-Do
1•surprisetalk•6m ago•0 comments

Deml: The Directed Acyclic Graph Elevation Markup Language

https://github.com/Mcmartelle/deml
1•todsacerdoti•6m ago•0 comments

Codes of Conduct in Open Source

https://dropletdrift.com/codes-of-conduct-in-open-source/
1•skilled•7m ago•0 comments

More than half the forests fragmented in 20 years – but protection works

https://news.mongabay.com/2025/09/more-than-half-the-worlds-forests-fragmented-in-20-years-but-pr...
1•PaulHoule•8m ago•0 comments

Building a retrieval API to search my Obsidian vault from LibreChat

https://laurentcazanove.com/blog/obsidian-rag-api
1•Strift•8m ago•0 comments

Minimalist LLM OS Watch

https://www.aris.chat/rist-waitlist
1•andrewdug•8m ago•1 comments

Setting up my federated fleamarket with flohmarkt

https://neilzone.co.uk/2024/10/setting-up-my-federated-fleamarket-with-flohmarkt/
1•nogajun•9m ago•0 comments

It's time to prepare for AI personhood

https://www.theguardian.com/commentisfree/2025/sep/30/artificial-intelligence-personhood
1•ryan_j_naughton•10m ago•0 comments

Samsung Pilots Making Its Smart Fridges Billboards After People Bought Them

https://www.techdirt.com/2025/09/29/samsung-pilots-making-its-smart-fridges-billboards-after-peop...
1•speckx•10m ago•0 comments

IBM and Vanguard explore quantum optimization for finance

https://www.ibm.com/quantum/blog/vanguard-portfolio-optimization
1•rbanffy•10m ago•0 comments

Custom LNAddress with Self-Hosted AlbyHub

https://emre.xyz/posts/custom-lnaddress/
1•delirehberi•13m ago•0 comments

Spotify founder Daniel Ek is stepping down as CEO

https://www.theverge.com/news/788278/spotify-founder-daniel-ek-stepping-down-ceo-executive-chairman
2•chanux•13m ago•0 comments

Amazon and Google tip off Jensen Huang before announcing their AI chips

https://www.tomshardware.com/tech-industry/amazon-and-google-tip-off-jensen-huang-before-announci...
3•mandeepj•15m ago•0 comments

The Software Essays That Shaped Me

https://refactoringenglish.com/blog/software-essays-that-shaped-me/
2•mtlynch•17m ago•0 comments

Show HN: Spot Canvas – AI-Powered trading charts for learning and automating TA

https://spotcanvas.com
3•anssip•18m ago•0 comments

Show HN: AI OCR API that handles complex IDs, like Brazil's many card types

https://www.100ocrapi.com/
1•draculazmm•19m ago•0 comments

First mushroom-powered toilet could replace stinky porta-potties

https://www.popsci.com/environment/first-mushroom-powered-toilet/
1•latexr•19m ago•0 comments
Open in hackernews

Show HN: WebhookBox – Test webhooks instantly, no signup required

https://webhookbox.io
3•skrid•1h ago
I've been using online webhook tools for years, but always thought they felt slow and cluttered. Figured I could build something cleaner with modern tools.

Spent the past week building WebhookBox.

How it works:

Go to webhookbox.io, click the button, you get a URL like webhookbox.io/w/abc123. Send webhooks to it. They show up instantly. That's it.

No signup needed for testing (anonymous, 24hr retention). If you do sign up, you get persistent URLs, history, API access, etc.

What I built:

- Real-time request viewer (Supabase Realtime is honestly pretty slick for this - saved me from building custom WebSocket infra)

- See headers, body, query params - everything

- Custom responses if you need to return specific status codes or test error handling

- Export as cURL/Python/JS/whatever

Tech decisions:

Next.js + Supabase + Vercel edge functions. Used edge to get ~50-80ms global response times. Postgres JSONB for flexible payload storage. Rate limiting via Vercel KV to prevent abuse (100 req/hour per anonymous endpoint).

Free tier is 3 endpoints, 100 requests/month. Pro is $9/mo if you need more.

Thinking about adding webhook forwarding to localhost next - basically a WebSocket tunnel to forward webhooks directly to your dev server, skip ngrok entirely. Would that be useful or is the current approach good enough?

Comments

tasn•1h ago
Congrats on the launch! We built all of this at Svix[1], feel free to repurpose our CLI for the websocket tunnel. It's OSS!

1: https://svix.com/play