frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What US Tech Did to Ireland

https://www.thedial.world/articles/news/ireland-us-tech-meta-google-apple
4•devonnull•8m ago•0 comments

Show HN: An opinionated agentic TUI with a built-in MCP plugin system

https://github.com/hkdb/otui
1•hkdb•11m ago•0 comments

The Surprising Benefits of Giving Up

https://nautil.us/the-surprising-benefits-of-giving-up-1248362/
2•jnord•13m ago•0 comments

Messenger Deprecation for Mac

https://www.facebook.com/help/messenger-app/1789649698300122
1•juliangamble•15m ago•2 comments

Medicaid Insurers Promise Lots of Doctors. Good Luck Seeing One

https://www.wsj.com/health/healthcare/medicaid-insurers-doctor-networks-appointments-72f9c11f
1•nradov•22m ago•0 comments

Beverly Hills Bar Association AI & the Law section: Looking for attorney coders

1•hoag•22m ago•0 comments

A Month of Chat-Oriented Programming, or when did you last change your mind?

https://checkeagle.com/checklists/njr/a-month-of-chat-oriented-programming/
1•Kerrick•26m ago•0 comments

The Bitter Lessons

https://www.hyperdimensional.co/p/the-bitter-lessons
2•gmays•27m ago•0 comments

Back to Basics: Let Denoising Generative Models Denoise

https://arxiv.org/abs/2511.13720
1•dvrp•27m ago•0 comments

Browser-based Lunatic Fringe Clone

https://jackinloadup.github.io/lunatic-fringe/
1•hoag•28m ago•0 comments

We Can Now Track Individual Monarch Butterflies

https://www.nytimes.com/2025/11/17/science/monarch-butterfly-migration-tracking-sensor.html
2•m463•28m ago•1 comments

The Fate of Data Model Dependency

https://medium.com/@HobokenDays/the-fate-of-shared-data-model-cf8a3dc88ac9
1•HideInNews•30m ago•0 comments

Show HN: Waitinglist.to – Let Founders Focus on Building

https://waitinglist.to/
1•ivanramos•31m ago•0 comments

The obvious economics of preserving the Amazon

https://www.economist.com/the-americas/2025/10/23/the-obvious-economics-of-preserving-the-amazon
5•gwintrob•35m ago•1 comments

Fuzzbox: Modern fuzzy finder for Vim with minimal dependencies

https://github.com/vim-fuzzbox/fuzzbox.vim
1•inatreecrown2•36m ago•1 comments

AA-Omniscience: Evaluating Cross-Domain Knowledge Reliability in Language Models

https://arxiv.org/abs/2511.13029
4•declanjackson•38m ago•0 comments

The End of Traditional Industrial Design and Transition into a New Frontier (2021) [video]

https://www.youtube.com/watch?v=fozZfnJCoaE
2•mgh2•38m ago•0 comments

Migrate from Ingress-Nginx Controller to Nginx Ingress Controller

https://docs.nginx.com/nginx-ingress-controller/install/migrate-ingress-nginx/
1•mooreds•39m ago•0 comments

The productivity impact of coding agents

https://cursor.com/blog/productivity
2•todsacerdoti•40m ago•0 comments

SimpleMMO – How I made a hole a home (2021)

https://blog.galahadcreative.com/simplemmo-how-i-made-a-hole-a-home/
1•bdlowery•45m ago•0 comments

Count Cachula – Local-first performance without the complexity

https://countcachula.spooky.click/
1•jakelazaroff•45m ago•0 comments

My Tesla Robotaxi "safety" driver fell asleep

https://old.reddit.com/r/sanfrancisco/comments/1p00wmx/my_tesla_robotaxi_safety_driver_fell_asleep/
3•leoh•52m ago•0 comments

Seekdb,unified search database for AI(relational, vector and full text)

https://github.com/oceanbase/seekdb
1•jinqueeny•52m ago•0 comments

So You Want To Look Rich? How to use museum archives to make large wall art

https://marykateandsmashley.substack.com/p/so-you-want-to-look-rich
3•novia•58m ago•1 comments

Microsoft's AI Strategy Deconstructed – From Energy to Tokens

https://newsletter.semianalysis.com/p/microsofts-ai-strategy-deconstructed
1•nsoonhui•1h ago•0 comments

Rank-balanced trees (2014) [pdf]

https://sidsen.azurewebsites.net/papers/rb-trees-talg.pdf
2•todsacerdoti•1h ago•0 comments

RDMA-Rust: Why another RDMA wrapper

https://rdma-rust.github.io/2025/11/16/why-another-rdma-wrapper/
2•wmf•1h ago•0 comments

PPP-over-HTTP/2: Having Fun with dumbproxy and pppd

https://snawoot.github.io/ppp-over-http2/
1•Snawoot•1h ago•0 comments

Salesforce no longer sells Slack directly in Hong Kong, Macau and Taiwan

4•dt060•1h ago•1 comments

CoreWeave, the AI industry's ticking time bomb

https://www.niemanlab.org/reading/meet-coreweave-the-ai-industrys-ticking-time-bomb/
14•zerosizedweasle•1h ago•4 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!