frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Club Penguin made by Google Gemini 3

https://gemini.google.com/share/f52d257f7c6b
1•th1nhng0•41s ago•0 comments

Verification Is Not the Silver Bullet

https://alperenkeles.com/posts/verification-is-not-the-silver-bullet/
1•zdw•1m ago•0 comments

Free Calculator for Sales Profitability

https://dealmayker.com/free-tools/free-outreach-roi-calculator
1•aleksam•7m ago•0 comments

Cloudflare Considered Harmful

https://www.devever.net/~hl/cloudflare
2•pabs3•8m ago•0 comments

Native Sysmon functionality coming to Windows

https://techcommunity.microsoft.com/blog/windows-itpro-blog/native-sysmon-functionality-coming-to...
2•OlivOnTech•8m ago•0 comments

Google Chief Warns over Trillion-Dollar AI Bubble

https://www.findarticles.com/google-chief-warns-over-trillion-dollar-ai-bubble/
2•zerosizedweasle•8m ago•0 comments

Rebecca Heineman – from homelessness to porting Doom

https://corecursive.com/doomed-to-fail-with-burger-becky/
2•birdculture•8m ago•0 comments

Have You Heard of the Extinct Banana?

https://www.treehugger.com/extinct-banana-5201723
1•niklasbuschmann•10m ago•0 comments

AI-powered opportunity identification from authentic entrepreneur discussions

https://foundry-iq.com
1•salkahfi•10m ago•0 comments

Doctective: Auto-Updating Docs and Codebase Guide

https://doctective.app
1•johnnymedhanie•11m ago•1 comments

Every time I write about a single board computer, half the internet goes down

https://ounapuu.ee/posts/2025/11/18/self-hosting/
1•pabs3•14m ago•0 comments

Quantile regression as a sanity check on asset valuation

https://yegortkachenko.com/posts/quantile_valuation.html
1•yegortk•15m ago•0 comments

The Greeks

https://gregorygundersen.com/blog/2023/10/08/greeks/
1•niklasbuschmann•17m ago•0 comments

Azure delivers the first cloud VM with Intel Xeon 6 and CXL memory

https://techcommunity.microsoft.com/blog/sapapplications/azure-delivers-the-first-cloud-vm-with-i...
1•howdyhowdy•17m ago•0 comments

The Cloudflare outage was a good thing

https://gist.github.com/jbreckmckye/32587f2907e473dd06d68b0362fb0048
1•jbreckmckye•20m ago•0 comments

Traces of old farm chemicals contaminate water across the US

https://www.thenewlede.org/2025/10/trump-administration-pesticide-monitoring/
1•PaulHoule•25m ago•0 comments

Persona Collapse: LLMs All Like the Same Things

https://substack.com/inbox/post/178128961
1•johnsillings•26m ago•0 comments

We are replacing OOP with something worse

https://blog.jsbarretto.com/post/actors
2•zdw•26m ago•0 comments

Jeffrey Epstein Pursued Swiss Rothschild Bank to Finance Israeli Cyberweapons

https://www.dropsitenews.com/p/jeffrey-epstein-ariane-de-rothschild-ehud-barak-swiss-bank-israeli...
6•sporkxrocket•26m ago•0 comments

AI attacks demand a mental shift

https://softbeehive.com/blog/ai-attacks-demand-a-mental-shift
1•softbeehive•27m ago•0 comments

Guild Wars Reforged

https://www.guildwars.com/en/
1•pndy•28m ago•1 comments

Having Fun with Complex Numbers: A Real-Life Journey for Upper Elementary Studen

https://mathwonder.org/Having-Fun-with-Complex-Numbers/
1•smm16r•29m ago•1 comments

OpenAI's Tax Subsidy Efforts Amount to Silicon Valley Socialism

https://news.bloombergtax.com/tax-insights-and-commentary/openais-tax-subsidy-efforts-amount-to-s...
2•tldrthelaw•29m ago•0 comments

Active open mindedness and mindfulness – Vervaeke

https://www.youtube.com/post/UgkxKaLgwF230quMs_lDXNZIoS8VgTcWmQWc
2•lukeplato•29m ago•0 comments

Time, Layers, and Climate Futures: A Conversation with Dr. Gavin A. Schmidt

https://worldsensorium.com/time-layers-and-climate-futures-a-conversation-with-dr-gavin-a-schmidt/
1•dnetesn•30m ago•0 comments

The Ochre Origins of Art

https://nautil.us/the-ochre-origins-of-art-1247923/
1•dnetesn•32m ago•0 comments

System Security Adversarial Capability Eval of iOS, Android, HarmonyOS (2024)

https://www.darknavy.org/blog/avss_report_kernel/
1•transpute•34m ago•0 comments

Multicloudj – open-source by Salesforce for open cloud development in Java

https://github.com/salesforce/multicloudj
1•palsandeep•37m ago•0 comments

Foundation-SEC-8B Instruct Model (64k context)

https://huggingface.co/fdtn-ai/Foundation-Sec-1.1-8B-Instruct
2•radii-llm•37m ago•0 comments

Paul Graham Isn't a Simple Writer, and Here Are Some of His Cool Tricks

https://sashachapin.substack.com/p/paul-graham-isnt-a-simple-writer
2•eatitraw•38m 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•6mo ago

Comments

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