frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nvidia released its first official GeForce driver for Windows on Arm

https://videocardz.com/newz/nvidias-first-geforce-driver-for-windows-on-arm-confirms-rtx-spark-n1...
2•robotnikman•2m ago•0 comments

We got California to intervene about OpenAI's corporate switch from nonprofit

https://fortune.com/2026/07/22/openai-foundation-class-n-stock-board-control-ipo/
2•SLHamlet•6m ago•0 comments

The Persistence Filter

https://www.joefuqua.blog/writing/the-persistence-filter
1•jbfuqua•7m ago•0 comments

Fairphone 6 with /e/OS 4.0 – Results, results, results

https://www.dedoimedo.com/computers/fairphone-6-eos-4-review.html
1•speckx•7m ago•0 comments

UseReserve – a free macOS menu bar app for tracking Claude and Codex usage

https://usereserve.app
1•mazefall•8m ago•0 comments

Why care about programming languages

https://ebellani.github.io/blog/2026/why-care-about-programming-languages/
1•b-man•10m ago•0 comments

Teardown: The BMW / Harman IDC23H Infotainment Unit (B423)

https://www.hakstuff.net/blog/teardown-the-bmw-idc23h-infotainment-unit
1•JojoFatsani•10m ago•0 comments

Proxy for OpenAI Codex and Claude Code, use any LLM with those apps

https://github.com/lidge-jun/opencodex
2•dandaka•10m ago•0 comments

Bonsai 27B parameters. 1-bit weights. In your browser

https://huggingface.co/spaces/webml-community/bonsai-webgpu-kernels
2•wertyk•10m ago•0 comments

The making of Boiling Point: Road To Hell, the most broken game I've ever loved

https://www.jank.cool/the-making-of-boiling-point-road-to-hell/
1•klaussilveira•11m ago•0 comments

Demis Hassabis on the New Coming Age

https://thezvi.substack.com/p/demis-hassabis-on-the-new-coming
1•gmays•11m ago•1 comments

The Psychopath Code

http://hintjens.com/blog:_psychopaths
1•lemonberry•11m ago•0 comments

The Computer That Helped Win World War II

https://spectrum.ieee.org/colossus-computer-ieee-milestone
1•baruchel•12m ago•0 comments

Revisit E3 Like You've Never Seen It Before [video]

https://www.youtube.com/watch?v=9VeLhqbXNf4
1•HelloUsername•13m ago•0 comments

FCC votes to bar sales of devices with parts from Chinese firms posing risks

https://www.reuters.com/business/autos-transportation/us-senate-panel-approves-bill-crack-down-ch...
1•tartoran•14m ago•0 comments

Show HN: The Harbinger: NHI and Security Policies for Agents

https://github.com/n0tduck1e/theharbinger
1•not-duckie•14m ago•1 comments

Show HN: TheDevPlatform – Community-rated dev tools, by engineers for engineers

https://thedevplatform.com
1•julieann24•14m ago•1 comments

Xbox Backward Compatibility on PC

https://news.xbox.com/en-us/2026/07/22/xbox-backward-compatibility-on-pc/
1•madspindel•15m ago•0 comments

TopTierClass – AI that responds to Google reviews for local businesses

https://toptierclass.com/
1•aboutdavidkim•15m ago•0 comments

Talking to a PayPal scammer for 20 minutes [video]

https://www.youtube.com/watch?v=HtrcL6VcW_k
3•doener•17m ago•0 comments

Scan Your Codebase for Vulnerabilities

https://code.claude.com/docs/en/claude-security
1•cebert•20m ago•0 comments

Show HN: Readmer is a compiler for building READMEs from Liquid/Jinja2 templates

https://github.com/artob/readmer
1•arto•21m ago•0 comments

Musk's anti-Odyssey campaign backfires over threat to make AI version of epic

https://www.euronews.com/culture/2026/07/22/elon-musks-anti-odyssey-campaign-backfires-over-threa...
3•devonnull•22m ago•0 comments

Knowingness

https://registerofaliens.substack.com/p/knowingness
1•rmdmphilosopher•22m ago•0 comments

I turned the Replit/SaaStr database deletion into a runnable stop-test

https://quiesce-m7.vercel.app
2•djhirani•23m ago•0 comments

I Made My Blog Solar-Powered – A Significant Update

https://louwrentius.com/i-made-my-blog-solar-powered-a-huge-update.html
3•louwrentius•24m ago•0 comments

Australia's Greater Gliders Fly Majestically from Tree to Tree

https://nautil.us/australias-greater-gliders-fly-majestically-from-tree-to-tree-and-now-we-know-e...
1•Tomte•24m ago•0 comments

Show HN: Research Rooms for Agents

https://alexandria.clankercloud.ai/
1•tekbog•24m ago•0 comments

Claude Security Plugin for Claude Code Now in Beta

https://claude.com/product/claude-security
2•qainsights•25m ago•1 comments

Analysing Go Code with Souffle

https://blog.pzakrzewski.com/analysing-go-code-with-souffle
1•smartmic•26m ago•0 comments
Open in hackernews

Show HN: I built a GUI/API wrapper for Piper TTS to handle large files

https://github.com/MaximosMK/piper-tts-api-demo
1•MaximosMK•1y ago

Comments

MaximosMK•1y ago
Hi HN,

I often found myself wanting to convert large text files (like book chapters or long articles) into audio using the excellent open-source Piper TTS engine. Handling very large inputs directly can be a bit tricky, and I wanted a smoother workflow.

So, I built this project: 1. A simple Flask/Gunicorn API server (`server/piper_api.py`) that wraps the Piper executable. 2. A PySide6 GUI client (`client/piper_api_gui.py`) that interacts with the server.

The key feature is that the client automatically splits large text files into smaller chunks (sentence-like segments), sends these chunks to the API server to be processed in parallel (using Python's `ThreadPoolExecutor`), and then combines the resulting WAV audio snippets back into a single file. This makes synthesizing long texts much more manageable and faster than doing it sequentially.

The tech stack is Python, Flask, Gunicorn, PySide6, and Requests. It's all open source on GitHub.

Happy to answer any questions or hear feedback!