frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Trillion Transactions [video]

https://www.youtube.com/watch?v=y2_BqkKTbD8
1•sgt•1m ago•0 comments

Middle East Conflict Is Rewiring Global Supply Chains

https://www.eetimes.com/middle-east-conflict-is-rewiring-global-supply-chains/
1•giuliomagnifico•4m ago•0 comments

Show HN: triad.js – A toolset for creating web apps

https://codeberg.org/joexo/triad.js
1•joexo•6m ago•0 comments

Six Roads to World War III

https://thekochicompass.substack.com/p/six-roads-to-world-war-iii-b69
1•shreshthdugar•9m ago•0 comments

Garmin data archive – local, offline, Ollama-ready

https://github.com/Wewoc/Garmin_Local_Archive
1•Wewoc•10m ago•1 comments

100+ Kernel Bugs in 30 Days

https://substack.com/home/post/p-188916866
2•someplaceguy•10m ago•0 comments

My Own Personal Claws

https://www.bstjohn.net/blog/claws/
1•danab3791•11m ago•0 comments

Paul Graham, Founder, Y Combinator [video]

https://www.youtube.com/watch?v=2Q2uh1BlqKA
1•tim333•14m ago•1 comments

Probiotic cream that ramps up heat production could prevent frostbite

https://www.newscientist.com/article/2520006-probiotic-cream-that-ramps-up-heat-production-could-...
1•Brajeshwar•15m ago•0 comments

Claudy Day

https://pages.oasis.security/rs/106-PZV-596/images/claudyday-vulnerability.pdf?version=0
1•jeisc•19m ago•1 comments

The Reason Windows Hate Is Exploding: It's the End of Personal Computing [video]

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

Introducing DoorDash Tasks

https://about.doordash.com/en-us/news/introducing-doordash-tasks
1•pramodbiligiri•20m ago•0 comments

Molly Holzschlag's archived blog remake

https://mollyholzschlag.com/
1•vietyork•20m ago•0 comments

Show HN: I built a super simple email reminder inspired by the RemindMe! bot

1•santah•22m ago•0 comments

Whiplash: When people stop taking GLP-1s

https://nautil.us/whiplash-heart-attack-and-stroke-risk-jumps-when-people-stop-taking-glp-1s-1279029
1•I_Nidhi•22m ago•0 comments

A static site generator and website transferring under 20kB

https://theconsensus.dev/blog/2026/03/19/a-static-site-generator.html
1•ibobev•24m ago•0 comments

The Rise of Fake Casio Scientific Calculators

https://hackaday.com/2025/12/29/the-rise-of-fake-casio-scientific-calculators/
1•bookofjoe•24m ago•0 comments

AI (2014)

https://blog.samaltman.com/ai
19•bjornroberg•25m ago•5 comments

Kanban TODO: a textfile based Kanban board in a single HTML file

https://www.youtube.com/watch?v=yyBZceJG-Ls
1•nialse•25m ago•0 comments

A visual way to explore startups that raised recently

https://iraised.io
1•damiannn•28m ago•0 comments

Missile strikes close to reporter during Israeli attacks in Lebanon

https://www.aljazeera.com/video/newsfeed/2026/3/19/missile-strikes-close-to-reporter-during-israe...
4•0x54MUR41•30m ago•0 comments

Surveillance in Africa: Mapping Chinese AI Surveillance Across 11 Countries

https://www.ids.ac.uk/publications/smart-city-surveillance-in-africa-mapping-chinese-ai-surveilla...
1•giuliomagnifico•30m ago•0 comments

AI's impact on mathematics is analogous to the car's impact on cities

https://mathstodon.xyz/@tao/116252708577614828
2•birdculture•31m ago•0 comments

Entso-E final report on Iberian 2025 blackout

https://www.entsoe.eu/publications/blackout/28-april-2025-iberian-blackout/
4•Rygian•32m ago•0 comments

Places to Look for Alien Life

https://ras.ac.uk/news-and-press/research-highlights/best-places-look-alien-life-scientists-ident...
1•NKosmatos•33m ago•1 comments

50 Years of Thinking Different

https://www.apple.com/50-years-of-thinking-different/
1•logicallee•35m ago•0 comments

China mobilizes "one-person company" AI startups

https://restofworld.org/2026/china-ai-one-person-companies-incentives/
2•donohoe•35m ago•0 comments

MöbiusNumber: 0.1 and 0.2 = 0.3

https://github.com/JustNothingJay/mobius-number
1•SECS_Sovereign•35m ago•0 comments

If You're Going to Drink, Make It This Kind of Alcohol

https://nautil.us/if-youre-going-to-drink-make-it-this-kind-of-alcohol-1279091
1•Brajeshwar•36m ago•1 comments

Ask HN: Are you using a Pivotal Tracker successor? Which one?

1•antfarm•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•10mo ago

Comments

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