frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•cruftbox•26s ago

Show HN: An open database of 1,355 global problems with a zero-auth API

https://www.worldsolve.org/
1•pep-6067•2m ago•0 comments

The Trust Ceiling: The invisible limit on what AI is allowed to do

https://williamtp.substack.com/p/the-ai-trust-ceiling
2•unlikelyai•4m ago•0 comments

Manna – Two Views of Humanity's Future

https://marshallbrain.com/manna
2•le-mark•4m ago•1 comments

Watching AI agents build a new business

https://michii.dev/live
2•sontbv•4m ago•0 comments

Show HN: We let Muse Spark 1.1 vibe code itself to produce 2048

https://github.com/awesoftsolutions/idea_meta-muse-2048-game
2•favurdev•4m ago•1 comments

Transformer Is an EOT Solver

https://elonlit.com/scrivings/your-transformer-is-secretly-an-eot-solver/
2•surprisetalk•7m ago•0 comments

Surgical DevOps – Prevent LLM context drift and regressions

https://github.com/bonushora/surgical-dev-ops/blob/main/README_EN.md
1•melembre•7m ago•0 comments

What Is AI Good At?

https://unstack.io/what-is-ai-good-at
1•ScottWRobinson•7m ago•0 comments

Show HN: The Plato Programming Language

https://github.com/cdiggins/plato
1•d166e8•8m ago•0 comments

Show HN: VoxThermic – A macOS journaling app that uses Apple's Foundation Models

https://voxthermic.jbri.workers.dev/
1•midnightbobarun•8m ago•0 comments

GetOfflineDeviceUniqueID: How Windows Derives Its Offline Device ID

https://iretq.com/inside-getofflinedeviceuniqueid-how-windows-derives-its-offline-device-id/
1•mschuster91•10m ago•0 comments

4playerchess: I launched a chess game that four people can play (easily)

https://4playerchess.plus
1•emilemoureau•12m ago•1 comments

Controlling Reasoning Effort in LLMs

https://magazine.sebastianraschka.com/p/controlling-reasoning-effort-in-llms
2•ibobev•13m ago•0 comments

Ask HN: I stopped fighting AI over-reliance and built a workflow around it

2•dimonb19a•13m ago•0 comments

Profunctor Optics

https://bartoszmilewski.com/2026/07/19/profunctor-optics/
1•ibobev•14m ago•0 comments

Of forks and clones and package management

https://theconsensus.dev/p/2026/07/11/of-forks-and-clones-and-package-management.html
1•ibobev•14m ago•0 comments

ASML to offer employees €20k retention bonus for staying in 2027-2030

https://www.reuters.com/business/world-at-work/asml-offer-employees-20000-retention-bonus-staying...
1•tartoran•15m ago•0 comments

FDA says Taylor Farms cyclospora finding was a false positive

https://www.reuters.com/business/healthcare-pharmaceuticals/fda-says-taylor-farms-cyclospora-find...
1•NelsonMinar•16m ago•1 comments

Show HN: Compare public holidays across countries side by side

https://worldholidays.me
1•weijunext•16m ago•0 comments

I Forgot to Get Excited

1•bkaae•17m ago•0 comments

Stagnant Germany Considers the Unthinkable: Sunday Shopping

https://www.wsj.com/world/europe/stagnant-germany-considers-the-unthinkable-sunday-shopping-13b4651c
1•jacooper•17m ago•0 comments

Help: Using reflection to discovery and invoke methods

1•ddddazed•18m ago•0 comments

Google Images: 25 years of visual search innovation

https://blog.google/products-and-platforms/products/search/google-images-25th-anniversary/
1•gmays•19m ago•0 comments

Standalone webserver written in pure PHP. No more need for nginx, php-fpm, etc.

https://github.com/Qbix/webserver
1•EGreg•19m ago•4 comments

Logsum compresses log files to summary that matters, then ask your LLM

https://github.com/flouthoc/logsum
1•fl_git•20m ago•0 comments

After five failed products, this founder quit his job and hit $7.5k/mo

https://www.indiehackers.com/post/tech/after-five-failed-products-this-founder-quit-his-job-and-h...
2•jimwilson•20m ago•0 comments

Bits of Advice That, in Murky Light, Might Pass as Wisdom

https://bastian.rieck.me/blog/2026/40/
1•Pseudomanifold•22m ago•0 comments

Police searched Twin Cities Flock cameras during ICE surge

https://www.startribune.com/police-search-immigration-twin-cities-flock-license-plate-cameras-ice...
5•bradleyankrom•22m ago•1 comments

Majority of US voters link extreme weather to climate crisis

https://www.theguardian.com/environment/2026/jul/19/climate-crisis-us-voters-study
7•speckx•23m 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•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!