frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A New Share Button

https://blog.joinmastodon.org/2026/03/a-new-share-button/
1•robin_reala•22s ago•0 comments

You Can Meditate in a Coffin in Japan. They'll Even Give You a Cute One

https://www.vice.com/en/article/you-can-meditate-in-a-coffin-in-japan-theyll-even-give-you-a-cute...
1•herbertl•59s ago•0 comments

Ask HN: What are you actually using openclaw for?

1•thisismyswamp•1m ago•0 comments

CLI tool that adds semantic search to any existing Postgres database

https://github.com/varmabudharaju/pgsemantic
1•varmabudharaju•3m ago•1 comments

OpenAI's "compromise" with The Pentagon is what Anthropic feared

https://www.technologyreview.com/2026/03/02/1133850/openais-compromise-with-the-pentagon-is-what-...
1•joozio•4m ago•0 comments

Bitter winter drags on for Kyiv residents as Russia wipes out power

https://www.theguardian.com/world/2026/feb/13/everything-is-frozen-bitter-winter-drags-on-for-kyi...
1•PaulHoule•5m ago•0 comments

Quantifying the Swiss Marriage Tax

https://gendx.dev/blog/2026/03/02/swiss-marriage-tax.html
1•gendx•6m ago•0 comments

Show HN: Minit Games, a feed-first platform for short-form HTML5 games

https://minit.games/
1•oleschaper•6m ago•0 comments

Show HN:Turn any GitHub .MD into a collaborative editor by replace "g" with tune

https://www.get-colibri.com/
1•jannesblobel•6m ago•0 comments

Linux Flies into Space

https://www.windriver.com/blog/Linux-Flies-into-Space
2•CrankyBear•7m ago•0 comments

Show HN: Alpha of a Speech to Text iOS App (Feature Requests Welcome)

https://kaikunze.de/aimemo/
1•kgarten•7m ago•0 comments

OpenPolicy – Policy-as-Code. Finally

https://www.openpolicy.sh/
2•jamie_davenport•8m ago•0 comments

90% of human expertise is not verifiable

https://twitter.com/phoebeyao/status/2027117627278254176
1•gmays•9m ago•0 comments

Poland Plans Social Media Ban for Kids in Challenge to US Tech

https://www.bloomberg.com/news/articles/2026-02-27/poland-plans-social-media-ban-for-kids-in-chal...
3•danielam•9m ago•0 comments

I code more from my phone than my Mac now

https://macky.dev/#architecture
1•eureka_boy•10m ago•1 comments

Show HN: Tensor Spy: inspect NumPy and PyTorch tensors in the browser, no upload

https://tensorspy.com/
1•jacobn•11m ago•0 comments

Four questions agents can't answer

https://blog.marcua.net/2026/02/25/four-questions-agents-cant-answer.html
2•abnercoimbre•14m ago•0 comments

Show HN: I built a free alternative to Gravit Designer after it shut down

https://studio.wladradchenko.ru
1•wladradchenko•14m ago•0 comments

Making large Postgres migrations practical

https://clickhouse.com/blog/practical-postgres-migrations-at-scale-peerdb
1•__s•15m ago•0 comments

Show HN: Product Model – A structured grammar for bridging PRDs and code

https://github.com/pmTouchedTheCode/product-model
1•jace_yoo•16m ago•0 comments

Google tests new Learning Hub powered by goal-based actions

https://www.testingcatalog.com/google-tests-new-learning-hub-powered-by-goal-based-actions/
1•gmays•17m ago•0 comments

The Vanishing Giants [Coaling Towers] of America's Steam Age

https://thereader.mitpress.mit.edu/the-vanishing-giants-of-americas-steam-age/
2•samizdis•17m ago•0 comments

The Vegetarian Offset

https://hydroindulgence.com/s
1•Dithilli•18m ago•1 comments

Show HN: Grabchars 2.0 – get keystrokes direct, first update in 36 years

https://github.com/DanielSmith/grabchars
2•buckydigital•18m ago•1 comments

History Rhymes: Large Language Models Off to a Bad Start?

https://michaeljburry.substack.com/p/history-rhymes-large-language-models
1•next_xibalba•20m ago•0 comments

GitHub – Maderix/ANE: Training Neural Networks on Apple Neural Engine

https://github.com/maderix/ANE
2•bilsbie•20m ago•0 comments

Show HN: Engram – Give your terminal an eidetic memory with local AI

https://github.com/TLJQ/engram
2•tljq•21m ago•0 comments

Malus: Clean room engineering of any open-source dependency

https://malus.sh/blog.html
2•ahub•22m ago•1 comments

Euros

https://my-notes.dragas.net/2026/02/22/179-euros/
1•speckx•23m ago•0 comments

5 Takeaways on America's Boom in Billionaires

https://www.nytimes.com/2026/03/02/us/billionaire-boom-takeaways.html
1•bookofjoe•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•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!