frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An unofficial Muse Code extension for VS Code

https://marketplace.visualstudio.com/items?itemName=corona10.muse-code-unofficial
1•dongheena•2m ago•0 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
1•tosh•2m ago•0 comments

Reverse Engineering an ASIC

https://kjartanvandriel.github.io/asic/
1•burekqueen•4m ago•0 comments

Oura-bun: Oura client for Bun with automatic OAuth token rotation

https://github.com/jcpsimmons/oura-bun
1•joshcsimmons•5m ago•0 comments

Riding Technology Waves

https://staysaasy.com/strategy/2026/06/22/riding-technology-waves.html
1•fagnerbrack•5m ago•0 comments

UN rights chief calls for international red lines on AI

https://thenextweb.com/news/un-rights-chief-ai-red-lines-existential-risk
1•geox•8m ago•0 comments

Heterodox C++

https://meridional.xyz/blog/heterodox-manifesto
1•rfgplk•9m ago•0 comments

Nördlinger Ries Impact Crater

https://en.wikipedia.org/wiki/Nördlinger_Ries
1•cromulent•10m ago•0 comments

OpenAI and the Wiki Incident

https://thezvi.substack.com/p/openai-and-the-wiki-incident
1•paulpauper•14m ago•0 comments

How to Make More Prodigies

https://unpublishablepapers.substack.com/p/how-to-make-more-prodigies
1•paulpauper•15m ago•0 comments

Bing Wallpaper showing Ad for Harry Potter and Fantastic beasts box set

https://www.thurrott.com/forums/microsoft/windows/thread/bing-wallpaper-showing-ad-for-harry-pott...
7•neogodless•15m ago•1 comments

The Last Thing Teenagers Will Let You Teach Them

https://www.theatlantic.com/family/2026/09/teen-driving-lessons/688534/
1•paulpauper•16m ago•0 comments

How to find out if a website looks vibe coded

https://wasitvibed.com/
2•brambleworks•17m ago•0 comments

DPP-Flash – Automated Digital Product Passports (DPP) for EU Compliance

https://dppflash.de/
1•bergstreiser•18m ago•0 comments

The postmodern build system (updated 2025)

https://jade.fyi/blog/the-postmodern-build-system/
1•e-topy•18m ago•0 comments

The Machine (1968) [video]

https://www.youtube.com/watch?v=iwVu2BWLZqA
2•ai_critic•19m ago•0 comments

Agencies Without Agency: How Dispersed Power Derails Transportation Infra

https://americanaffairsjournal.org/2026/08/agencies-without-agency-how-dispersed-power-derails-tr...
1•godisdad•20m ago•1 comments

Show HN: I have created a browser FPS game with kamikaze drones

https://sectorlock.com/
2•canerg•25m ago•1 comments

C Is Not a Low-Level Language (2018)

https://queue.acm.org/doi/10.1145/3212477.3212479
3•tosh•26m ago•0 comments

Billionaire tries untested longevity therapy to restore daughter's vision

https://science.slashdot.org/story/26/09/07/0036234/she-lost-her-sight-her-billionaire-father-bet...
3•gumby•29m ago•1 comments

Show HN: Send flowers from your AI agent and make your mum happy

4•fabian_shipamax•31m ago•1 comments

Linux Lost the Human Desktop. Can It Win the Agent Desktop?

https://alexander.holbreich.org/posts/2026/linux-agent-desktop/
2•aholbreich•33m ago•0 comments

Show HN: Titles – Can you write a better Hacker News title?

https://www.orangecrumbs.com/hn-titles
2•oyster143•37m ago•0 comments

Bill Gates tries to install MovieMaker

https://www.techemails.com/p/bill-gates-tries-to-install-movie-maker
4•highfrequency•39m ago•3 comments

Animals fear human voices more than lions (2023)

https://www.bbc.com/news/world-africa-67023033
2•maxloh•39m ago•0 comments

Burrows–Wheeler Transform

https://en.wikipedia.org/wiki/Burrows%E2%80%93Wheeler_transform
2•theanonymousone•41m ago•0 comments

Aging U.S. demographics jolt labor market data

https://www.axios.com/2026/08/13/labor-market-demographics-boomers
2•toomuchtodo•41m ago•0 comments

Jujutsu–A Version Control System

https://docs.jj-vcs.dev/latest/
3•Bluestein•41m ago•0 comments

Show HN: A fast, private, cross-platform Markdown editor built with Tauri/Rust

https://github.com/skanga/mdedit
2•skanga•43m ago•1 comments

An outliner sync engine that is right for the use case

https://k22i.com/journal/outliner-sync-engine/
1•krszwsk•44m ago•0 comments
Open in hackernews

Show HN: Qumra – Screen recorder that uploads while you record

https://qumra.io
1•trafargarlaw•48m ago
I built Qumra 3 years ago for myself. It's a Loom like desktop screen and camera recorder for Mac and Windows.

I used Loom at the time and had a problem with the pricing, and the editor never did what I needed. As a software developer I record a lot of short videos for clients: showing a bug, a fix, an example. After recording I usually needed edits. Cut a part where something showed up on screen that shouldn't be there. Silence the filler words instead of cutting them. Remove parts of the video by deleting them from the transcript. So the editor is built around those three things. Later, with AI getting better, I picked the project back up and wanted to make it usable by other people.

The other idea is that I neeeded the video to be uploaded while recording. The recorder produces WebM/VP9 chunks from MediaRecorder. A worker batches them into 2 MB pieces and sends them in order to a Mux resumable upload URL. Mux used to reject out-of-order chunks, so concurrency is 1, with retries. It runs in a worker because slicing blobs on the main thread caused frame drops. When you stop, only the last piece is left to send. Mux then transcodes for a few seconds before playback starts, so the link exists the moment you stop but the video plays a few seconds later.

I needed system audio to work out of the box, without a virtual driver. The Electron main process spawns a small Rust helper. On macOS it uses ScreenCaptureKit. On Windows it uses WASAPI process loopback, which taps the audio engine rather than the default output device, so audio enhancement software and virtual drivers don't break it. It streams raw PCM over stdout into an AudioWorklet that mixes it with the mic.

Viewers open the link in a browser, no account, and can leave comments pinned to a timestamp. The AI edits work by sending the transcript words to OpenAI and getting back mute and cut commands for the timeline. Filler words get muted, long pauses get cut.

Things it doesn't do:

- You need an account to record. Recordings need an owner. Viewers don't need one.

- The Windows build isn't code signed, so SmartScreen will warn you. The Mac build is signed and notarized because that's what I use.

- No Linux build.

- Not open source.

- Anyone with the link can watch the video.

Free plan is 30 recordings of up to 5 minutes each. Premium is $14.99/month and unlocks AI transcription, the editor, and removes the caps.

Stack: Electron and React for the app, Convex for the backend, Mux for video, Remotion on Lambda for rendering edits.

Download: https://qumra.io/download

Two things I'd like to know. If you record short videos to show someone, what do you use today and what's missing from it? And for people using Loom at work: do the Jira and Confluence integrations matter day to day, or is it mostly the recorder?