frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Esqueleto Tutorial

https://entropicthoughts.com/esqueleto-tutorial
1•surprisetalk•36s ago•0 comments

Finalrun – Spec driven testing using plain English and Vision for mobile apps

https://github.com/final-run/finalrun-agent
1•ashish004•1m ago•1 comments

The Wuhan "lab leak" fraud and the institutionalization of anti-science

https://www.wsws.org/en/articles/2026/04/06/jhmx-a06.html
1•atombender•1m ago•0 comments

Show HN: Homebutler – AI manages your homelab without getting shell access

https://github.com/Higangssh/homebutler
1•swq115•2m ago•0 comments

Starfish Space Raises Over $100M Series B

https://www.starfishspace.com/press-release/starfish-space-raises-over-100-million-series-b/
1•doppp•2m ago•0 comments

Show HN: Back2vibing – instantly jump back to your agent's tmux pane / terminal

https://back2vibing.builtby.win/
1•wjellyz•2m ago•1 comments

The asteroid belt contains solar system remnants

https://earthsky.org/space/what-is-the-asteroid-belt/
1•fosterrinehart•3m ago•0 comments

A four-month FDA delay forced a small biotech company to close its doors

https://www.statnews.com/2026/04/06/fda-delay-cited-in-closure-kezar-life-sciences-biotech-startup/
1•brandonb•4m ago•0 comments

Lemonade 10.1 Released for Improvements for Local LLMs on AMD GPUs and NPUs

https://www.phoronix.com/news/Lemonade-10.1-Released
1•breve•5m ago•0 comments

Artemis II in Eclipse

https://images.nasa.gov/details/art002e009301
1•reconnecting•7m ago•1 comments

Where AI Will and Won't Replace Us

https://deadneurons.substack.com/p/where-ai-will-and-wont-replace-us
1•nr378•7m ago•0 comments

What Paddle doesn't tell you about implementing metered billing

https://phare.io/blog/what-paddle-doesnt-tell-you-about-implementing-metered-billing/
1•nicbvs•8m ago•0 comments

"Absolute AI Maximalist" Adam Jacob on Building Software That Builds Software

https://redmonk.com/videos/adam-jacob-ai-maximalist/
1•mooreds•8m ago•0 comments

Show HN: Train ML models for 80% less by always picking the cheapest Spot region

https://spotroute.co/
1•hmontazeri•9m ago•0 comments

Generative Art over the Years

https://blog.veitheller.de/Generative_art_over_the_years.html
1•evakhoury•10m ago•0 comments

Did Test Automation Engineers Just Get Pluto-Ed?

https://testpappy.wordpress.com/2026/04/07/did-test-automation-engineers-just-get-pluto-ed/
1•mooreds•10m ago•0 comments

Educators Share Tips for Saving Time and Boosting Creativity with AI

https://www.aft.org/ae/spring2026/leonard_siebenmark_venagro
1•mooreds•10m ago•0 comments

Power Density at 50 KW/Rack: What It Costs and What It Breaks

https://syaala.com/blog
1•jaynamburi•10m ago•0 comments

How a blind man made it possible for others with low vision to build Lego sets

https://apnews.com/article/lego-bricks-for-blind-audio-braille-instructions-5a2a27de4354a0b144317...
1•speckx•10m ago•0 comments

New codex rate card made OAuth OpenClaw usage impossible

https://help.openai.com/en/articles/20001106-codex-rate-card#codex-rate-card-token-based-pricing
1•pama•11m ago•2 comments

AI Fixes the Bullshit Asymmetry

https://www.konstantinschubert.com/2026/03/31/ai-the-bullshit-defense.html
2•manx•11m ago•1 comments

Save tokens on Opus 4.6 thinking

https://github.com/juyterman1000/entroly
1•ashuabhi•11m ago•0 comments

Puru: A thread pool for JavaScript with Go-style concurrency primitives

https://github.com/dmop/puru
1•thunderbong•14m ago•0 comments

Wireless Festival cancelled after government stops Kanye West entering UK

https://www.bbc.co.uk/news/live/c77e60v0my1t
4•manarth•14m ago•0 comments

Show HN: A tool to turn random screenshots into structured tutorials

https://github.com/naimurhasan/PastePath
1•naimurhasanrwd•15m ago•0 comments

The upper middle class is now the largest income group in the U.S.

https://www.cbsnews.com/news/upper-middle-class-income-us-what-it-takes/
1•danielam•15m ago•1 comments

We Should Revisit Literate Programming in the Agent Era

https://silly.business/blog/we-should-revisit-literate-programming-in-the-agent-era/#footnote-3
1•evakhoury•16m ago•0 comments

Show HN: DeskTalk – talk to your desktop to build and modify local apps

https://www.desktalk.ai/
1•okcdz•16m ago•0 comments

Give an LLM an API and It'll Thrive. Give It a Touchscreen and It Struggles

https://blog.allada.com/give-an-llm-an-api-and-itll-thrive-give-it-a-touchscreen-and-it-struggles/
1•allada•16m ago•0 comments

Artemis II, Apollo 8, and Apollo 13

https://www.johndcook.com/blog/2026/04/02/artemis-apollo/
1•ibobev•16m ago•0 comments
Open in hackernews

Show HN: Pion/handoff – Move WebRTC out of browser and into Go

https://github.com/pion/handoff
49•Sean-Der•2h ago

Comments

Sean-Der•2h ago
I wrote this to make Reverse Engineering WebRTC services easier. Will also let you save/send arbitrary media from WebRTC sessions. The idea is you do all your auth/interaction in the browser, but then do all WebRTC in Go. So you have lots more control. More to do with it, but it is far enough along to share at least.

In the README is an screenshot of sending my webcam, but replacing outgoing video with a ffmpeg testsrc. Handoff sits between so it can replace with any arbitrary video.

czbond•1h ago
Interesting and novel project. I don't have anything constructive to add, but well done.
Sean-Der•56m ago
Thanks :)

No better feeling to work on something and hear it is novel! So many projects that I think will be useful miss the mark.

Hakkin•1h ago
Oh, this is interesting. I have been messing around with a WebExtension for dumping encoded WebRTC media streams by intercepting streams on RTCPeerConnection.addTrack, but it doesn't work reliably since the current WebRTC encoded stream API(s) only supports a single reader, so if the actual website is also using the API, it either breaks the site or it's impossible to intercept the media. This seems like a nice workaround, I had briefly considered some kind of proxy but I wrote it off since WebRTC traffic is encrypted, I never considered proxying the peer connection API calls themselves. Pretty clever.
Sean-Der•44m ago
I can’t wait for https://w3c.github.io/webrtc-rtptransport/ when you talk about pulling vide out seems like the perfect fit.

I ended up doing proxy because Google Meet doesn’t let me hook at any RTCPeerConnection APIs at all. I wanted to send synthetic media in, but couldn’t get it working. Ending up doing a virtual webcam on Linux.

hparadiz•1h ago
Would be interesting for a Wayland DM to catch this and draw to a picture in picture overlay
Sean-Der•54m ago
Oh yes! I will pull together a demo.

With ‘media-send’ I can send it out to ffmpeg/GStreamer and that does all the heavy lifting

hparadiz•46m ago
I made a demo recently with my Google home camera using the official API https://github.com/hparadiz/camera-notif

But your way of grabbing the stream is so much simpler.

Overlay layer is super new in KDE Plasma is the only problem. You can also do v4l2loopback and make it a virtual camera.

Sean-Der•22m ago
Have you tried doing video + pipewire yet?

I am also using v4l2loopback, but its annoying to juggle /dev/video* devices. I wanted to do video stuff in docker containers, and it would be amazing if I could do pipewire in each container and have no global state.

I couldn't get anything to work in Chromium. FireFox saw the device, but video didn't come across.

esafak•17m ago
Is this a good way to improve performance (frame rate, latency, CPU load) ?