frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Free Textbook on Engineering Thermodynamics

https://thermodynamicsbook.com/
2•2DcAf•2m ago•1 comments

China surpasses U.S. in research spending

https://www.upi.com/Voices/2026/04/24/China-surpasses-United-States-in-research-spending/14317770...
1•Bondi_Blue•3m ago•0 comments

Show HN: ReadTube – Turn YouTube subscriptions into a personal Substack

https://www.read.tube/
1•tuliren•4m ago•0 comments

Ed Holding: A 'Barbaric' Problem in American Hospitals Is Only Getting Bigger

https://kffhealthnews.org/health-industry/emergency-room-ed-boarding-hospital-beds-long-waits-cri...
1•randycupertino•5m ago•0 comments

Utah data center will generate and consume more power than state, nears approval

https://www.sltrib.com/news/2026/04/25/hyperscale-data-center-may-be/
1•Jimmc414•5m ago•0 comments

Trump's Canada trade war hits Jack Daniel's/Jim Beam with devastating $143M loss

https://www.fastcompany.com/91531349/trumps-canada-trade-war-hits-jack-daniels-jim-beam-devastati...
2•dj_rock•7m ago•0 comments

Mathematically Optimized Typing

https://cadence.theory-a.com/
1•notShabu•7m ago•0 comments

Kevin Weil and Bill Peebles exit OpenAI as company continues to shed side quests

https://techcrunch.com/2026/04/17/kevin-weil-and-bill-peebles-exit-openai-as-company-continues-to...
1•gmays•7m ago•0 comments

Show HN: SRT-Adapter: 0.99 AUROC, perplexity win and 16.7× recall (0.19%)

https://huggingface.co/RiverRider/srt-adapter-v8a
1•spacebacon•10m ago•0 comments

Project Deal: Our Claude-Run Marketplace Experiment – Anthropic

https://www.anthropic.com/features/project-deal
1•ericol•13m ago•0 comments

Linux May Drop Old Network Drivers Due to Burden of AI-Driven Bug Reports

https://www.phoronix.com/news/Linux-Old-Network-AI
1•birdculture•13m ago•0 comments

Show HN: Semble – Fast code search for agents with near-transformer accuracy

https://github.com/MinishLab/semble
3•stephantul•20m ago•0 comments

TraceFree – unified Apt/Snap/Flatpak package manager with ghost file detection

https://github.com/somranimehdi/TraceFree
1•Somosranos•20m ago•0 comments

Lessons from Building Multiplayer Browsers

https://www.alejandro.pe/writing/sail-muddy-lessons
1•alejandrohacks•20m ago•1 comments

ASML: The Most Complex Machine

https://worksinprogress.co/issue/the-worlds-most-complex-machine/
1•dionysou•24m ago•0 comments

Scientists believe birds' skulls hold clues to inner lives of long-extinct dinos

https://www.theguardian.com/science/2026/apr/26/scientists-believe-birds-skulls-hold-clues-to-inn...
1•hkhn•25m ago•0 comments

Tell HN: Claude Code is unable to respond to this request

1•hmokiguess•27m ago•2 comments

What Is Dyslexia?

https://www.whatisdyslexia.org/
1•hkhn•27m ago•0 comments

Dyslexic thinking made me the scientist I am today. If we could harness its

https://www.theguardian.com/commentisfree/2026/apr/25/dyslexic-thinking-scientist-neurodiversity-...
1•hkhn•27m ago•0 comments

Show HN: Text Trace – Keynote-style SVG text trace animations for the web

https://github.com/Jannchie/text-trace
1•jannchie•28m ago•0 comments

List of personal sites that host Wander Console, a tool to explore the small web

https://susam.codeberg.page/wcn/
1•susam•29m ago•1 comments

Startups only remember backups after the crash

https://orchidfiles.com/backups-after-crash/
1•theorchid•30m ago•0 comments

GPT Image Generation Models Prompting Guide

https://developers.openai.com/cookbook/examples/multimodal/image-gen-models-prompting-guide
1•gmays•35m ago•0 comments

Anthropic created a test marketplace for agent-on-agent commerce

https://techcrunch.com/2026/04/25/anthropic-created-a-test-marketplace-for-agent-on-agent-commerce/
1•Brajeshwar•35m ago•0 comments

Musk Touts Universal Income as Remedy to AI-Driven Unemployment

https://www.forbes.com/sites/siladityaray/2026/04/17/elon-musk-touts-universal-income-as-remedy-t...
1•geox•38m ago•1 comments

Pratt parsing is a black box

https://vinipsmaker.github.io/blog/blog/pratt-parsing-is-a-black-box/
1•vinipsmaker•41m ago•0 comments

A high-performance 2D graphics painter that use SDL3 GPU API

https://github.com/n67094/SDL_gp
1•n67094•44m ago•0 comments

Query neural network weights like a graph database

https://github.com/chrishayuk/larql
1•james_marks•51m ago•0 comments

Network File Systems on Macs

https://eclecticlight.co/2026/04/25/explainer-network-file-systems/
1•chmaynard•52m ago•0 comments

Ask HN: How I find a job where what is needed is solid code, not firefighting?

3•speeder•56m ago•1 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•11mo ago

Comments

MaximosMK•11mo 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!