frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Are Gay Bars Building Databases of Their Patrons?

https://www.eff.org/deeplinks/2026/07/why-are-gay-bars-building-databases-their-patrons
1•hn_acker•48s ago•0 comments

Forensic Statistics in Python

https://www.johndcook.com/blog/2026/07/21/forensic-accounting-in-python/
1•ibobev•59s ago•0 comments

Excel Column Numbering

https://www.johndcook.com/blog/2026/07/25/excel-column-numbering/
1•ibobev•1m ago•0 comments

Cryptographic Keys and Decks of Cards

https://www.johndcook.com/blog/2026/07/28/keys-and-cards/
1•ibobev•1m ago•0 comments

The first autonomous fleet to turn your Intent into production systems

https://intentlab.ai/blog/turn-your-intent-into-production-systems
1•hi9•4m ago•0 comments

Wrapping the transverse foot arch improves running economy (2025)

https://journals.biologists.com/jeb/article-abstract/228/15/jeb250566/368675/Wrapping-the-transve...
1•bookofjoe•4m ago•0 comments

San Francisco mayor backs national robotaxi rules after Waymo meltdowns

https://www.politico.com/news/2026/07/28/san-francisco-waymo-washington-01013227
1•rurp•5m ago•0 comments

Weaponized Germs Are Deadly, Unstoppable, and Real

https://www.nytimes.com/2026/07/27/books/review/biological-war-annie-jacobsen.html
2•jibcage•6m ago•0 comments

Archive Public Hugging Face Models and Datasets as Immutable, Verifiable Trees

https://github.com/wtcross/hfcache
1•wtcross•7m ago•2 comments

The More You Buy, the More You Lose

https://www.wheresyoured.at/the-more-you-buy-the-more-you-lose/
1•crescit_eundo•8m ago•0 comments

Does every question mark deserve a Betteridge?

https://dynomight.substack.com/p/betteridge
1•crescit_eundo•8m ago•0 comments

Conway's Game of Life Using Only the Mongo Shell

https://visualeaf.com/blog/conways-game-of-life-just-using-mongo-shell/
3•Jacky101•9m ago•0 comments

Hugging Face CEO calls for transparency after unprecedented OpenAI hack

https://techcrunch.com/2026/07/26/hugging-face-ceo-calls-for-radical-transparency-after-unprecede...
1•buredoranna•10m ago•0 comments

Kimi K3 by Moonshot now available on Modal

https://modal.com/blog/kimi-k3-by-moonshot-now-available-on-modal
1•yogthos•10m ago•0 comments

Turns out the best time to post on Hacker News is when there's least competition

https://marigold.page/d/the-best-time-to-post-on-hacker-news-is--te4ghs
1•fachonrenpure•12m ago•1 comments

Build an Army of PIC12F1612-Based Blinking LED Traffic Barrels

https://bikerglen.com/blog/army-of-pic12f1612-blinking-traffic-barrels/
1•pavel_lishin•13m ago•0 comments

Prioritization Is No Prioritization

https://blog.staysaasy.com/p/the-best-prioritization-is-no-prioritization
2•gpi•13m ago•0 comments

Gemini Distillation Service

https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/tuning/distillation?hl=de
2•theanonymousone•13m ago•0 comments

At AI-Heavy Ruby on Rails Companies, Is QA-Ing and Debugging Agents the Future?

https://old.reddit.com/r/rails/comments/1v91qv2/at_aiheavy_companies_the_engineers_left_are/
2•nomilk•14m ago•0 comments

Should You Switch to Open-Weight Models?

https://www.productcurious.com/p/should-you-switch-to-open-weight
1•umangsehgal93•14m ago•0 comments

Should We (Ever) Tax Trade? A Theoretical Guide

https://www.nominalnews.com/p/should-we-ever-tax-trade-a-theoretical
1•NomNew•15m ago•1 comments

Airbus A350 jet flies 24 hours nonstop from Australia to France

https://www.reuters.com/business/aerospace-defense/airbus-a350-jet-flies-24-hours-nonstop-austral...
2•JumpCrisscross•17m ago•1 comments

Free AI visibility scanner for your website

1•hexalogic•17m ago•0 comments

Show HN: Viso – model your full financial future before buying a house

https://www.viso.money/
1•gravelhacker•17m ago•0 comments

Try the New Firefox Design in Nightly

https://blog.nightly.mozilla.org/2026/07/27/new-firefox-design/
2•maxloh•19m ago•0 comments

Income of the poorest decile, the median, and the richest decile in the US

https://ourworldindata.org/grapher/incomes-across-distribution-wb?decile=p10_p50_p90&indicator=th...
3•alphabetatango•19m ago•1 comments

Creating a Gamedev YouTube channel is an alluring waste of time

https://twitter.com/robertvaradan/status/2082139420610662712
1•robertvaradan•19m ago•0 comments

There Isn't a Microchip Under Your Skin Tracking You

https://vale.rocks/posts/tracking-implants
1•speckx•20m ago•1 comments

Tock: A secure embedded operating system for microcontrollers written in Rust

https://www.tockos.org/
1•wh313•21m ago•0 comments

Show NH: +135 files converter to Markdown,free and private in browser

https://privatemarkdown.com/
1•GiooEn•22m 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•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!