frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Practical MS‑DOS Problem Contributed to C++

https://freshsources.com/blog/files/0efc66caabe2cb443a6acae6aca0f707-0.html
1•pjmlp•39s ago•0 comments

Fail or Not? Unrealistic Game

https://pdfearn.blogspot.com/
1•iLzKiiSG•45s ago•0 comments

The Asymptote of Intent

https://beforetheprompt.substack.com/p/the-asymptote-of-intent
1•marcuscog•2m ago•0 comments

NimbleRx Acquired by Swoop

https://swoop.com/blog/swoop-acquires-nimble-adding-prescription-fulfillment-and-pharmacy-connect...
2•zelias•3m ago•0 comments

MCP: Security Design Considerations for AI-Driven Automation by NSA [pdf]

https://www.nsa.gov/Portals/75/documents/Cybersecurity/CSI_MCP_SECURITY.pdf
1•myworkaccount2•4m ago•0 comments

FIFA World Cup turns up gentrification pressures in Mexico City, say experts

https://www.cbc.ca/news/world/mexico-gentrification-fifa-9.7200235
1•simojo•5m ago•0 comments

As Trump Politicizes Justice Dept., Prosecutors Struggle with Grand Juries

https://www.nytimes.com/2026/05/26/us/politics/trump-justice-department-grand-juries.html
1•duxup•5m ago•1 comments

Iana-Data

https://github.com/case/iana-data/
1•mooreds•7m ago•0 comments

A Chinese Peasant's Italian Roots (2001)

https://www.latimes.com/archives/la-xpm-2001-dec-23-mn-17560-story.html
1•thunderbong•7m ago•0 comments

The Causal Effect of Income Is (Often) Zero

https://www.maximum-progress.com/p/the-causal-effect-of-income-is-often
2•surprisetalk•8m ago•0 comments

Battery-powered Starlink Mini is likely on the way

https://www.theverge.com/tech/937090/battery-powered-starlink-mini-rumor
1•bookofjoe•9m ago•1 comments

The Baby Fund

https://protortyp.github.io/posts/the-baby-fund/
1•protortyp•9m ago•0 comments

Arizona's Mesquite Complex Is a Solar City in the Desert (2025)

https://www.forbes.com/sites/rrapier/2025/12/12/arizonas-mesquite-complex-is-a-solar-city-in-the-...
1•mooreds•10m ago•0 comments

Foldable iPhone Reportedly Facing Mass Production Issues

https://www.macrumors.com/2026/05/26/foldable-iphone-facing-production-issues/
2•tosh•11m ago•0 comments

Launch HN: Minicor (YC P26) – Windows desktop automations at scale

https://www.minicor.com/
4•fchishtie•11m ago•0 comments

7-Eleven data breach exposes personal information of 185,000 people

https://www.bleepingcomputer.com/news/security/7-eleven-data-breach-exposes-personal-information-...
3•Brajeshwar•12m ago•0 comments

strace-UI, Bonsai_term, and the TUI Renaissance

https://blog.janestreet.com/strace-ui-bonsai-term-and-the-tui-renaissance/
1•berlianta•12m ago•0 comments

GrillKit – self-hosted AI technical interview trainer

https://github.com/GrillKit/grillkit
1•vitchenkokir•13m ago•0 comments

Understanding Systems

https://entropicthoughts.com/understanding-systems
3•vinhnx•14m ago•0 comments

Gone Phishing with Claude Teams: From Deceptive Team Onboarding to RCE

https://haussner.me/2026/05/24/claude-team-rce.html
1•weinzierl•14m ago•0 comments

Show HN: Chuchu, a modern Android SSH client powered by libghostty

https://github.com/jossephus/chuchu
1•jossephus01•15m ago•0 comments

Show HN: Gravel – allow non-engineers to make prompt PRs

https://artanis.ai/gravel/
1•paraknight•15m ago•0 comments

Clanker: A Word for the Machine

https://lucumr.pocoo.org/2026/5/26/clankers/
4•llimllib•15m ago•0 comments

The curse of taste

https://www.adjohu.com/blog/the-curse-of-taste/
4•timpera•16m ago•0 comments

Don't Subscribe So Casually

https://thebestworstcase.substack.com/p/dont-subscribe-so-casually
4•shmublu•18m ago•0 comments

AI System Automates Coding for Scientific Research

https://seas.harvard.edu/news/ai-system-automates-coding-scientific-research
3•geox•19m ago•0 comments

Open Source tech jobs portal and database

https://github.com/danicuki/caio
4•danicuki•21m ago•0 comments

Introducing Chat Mode – A modern chat interface for Claude Code

https://harness.mikelyons.org/announcements/introducing-chat-mode.html
2•frenchie4111•21m ago•1 comments

Laptop AI – local AI memory for your files

https://github.com/takshd15/Laptop-AI
2•takshdange•22m ago•0 comments

Nvidia Vera CPU Benchmarks: Best Performance Ever Seen on ARM

https://www.phoronix.com/review/nvidia-vera-benchmarks
3•hochmartinez•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!