frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Physicists Discover the Most Complex Forms of Ice Yet

https://www.quantamagazine.org/physicists-discover-the-most-complex-forms-of-ice-yet-20260427/
1•pseudolus•26s ago•0 comments

OpenAI: Our Principles

https://openai.com/index/our-principles/
1•tosh•1m ago•0 comments

Software

1•ahmedasar20•2m ago•0 comments

Healthcare is driving America's economy

https://www.ft.com/content/6b1bcbab-21d4-49a3-9940-d7550f042e5d
1•kamikazeturtles•3m ago•1 comments

Ask HN: Enterprise Agent Orchestration Recommendations?

1•verdverm•4m ago•0 comments

Complex that supplies 70% of global critical PCB base targeted in Iranian strike

https://www.tomshardware.com/tech-industry/complex-that-supplies-70-percent-of-global-critical-pc...
1•pseudolus•5m ago•0 comments

Filestash: Open-Source Platform for File Sharing/Document Management/Archiving

https://www.filestash.app/
1•ingve•8m ago•0 comments

Prosecutors say homicide suspect asked ChatGPT about disposing of a body

https://apnews.com/article/missing-graduate-students-florida-bangladesh-8c51e7fabbf62c2c7ca91b7f0...
3•1vuio0pswjnm7•9m ago•0 comments

Portraits of Population

https://diagramchasing.fun/2026/portraits-of-population/
1•rishikeshs•9m ago•0 comments

My favorite Apple accessory – AirPort Express

https://leancrew.com/all-this/2026/04/my-favorite-apple-accessory/
1•speckx•10m ago•0 comments

Toka

1•Tokaboo_Team•10m ago•0 comments

The Cost of Being "Nice"

https://bytesizedchunks.net/blog/20260426/
2•mrdosija•11m ago•0 comments

Show HN: Graph-flow – LangGraph-inspired AI agent workflows in Rust

https://github.com/a-agmon/rs-graph-llm
1•alonagmon•13m ago•0 comments

Open source tooling for rootless security testing of Android devices

https://github.com/ivision-research/dtu
1•fbcd84f4335e568•14m ago•1 comments

Billionaire-tax backers say they have 2x signatures needed to qualify for ballot

https://www.latimes.com/california/story/2026-04-26/billionaire-tax-backers-say-they-have-enough-...
4•1vuio0pswjnm7•14m ago•1 comments

"renting a house and the application requires connecting your bank acct.(login)"

https://twitter.com/atxREpodcast/status/2048548617779044679
1•testfoobar•14m ago•1 comments

Law grad employment hit record high again in 2025, ABA data shows

https://www.reuters.com/legal/litigation/law-grad-employment-hit-record-high-again-2025-aba-data-...
2•1vuio0pswjnm7•16m ago•0 comments

Show HN: MyMood.tools, a 3 axis mood tracker

https://mymood.tools/
1•DavidCanHelp•18m ago•1 comments

Ask HN: What's the best way to post about CS/SE issues related to AI?

1•Alex-Aachen•19m ago•0 comments

AWS Credential Isolation for Local AI Agents

https://engseclabs.com/blog/agent-credential-isolation/
1•alexsmolen•20m ago•1 comments

Show HN: I ran every Claude agent turn through the Batch API

https://eran.sandler.co.il/post/2026-04-27-batch-api-is-terrible-for-one-agent/
2•erans•21m ago•0 comments

United Wizards of the Coast

https://unitedwizardsofthecoast.com/news/announcing-united-wizards-coast-cwa
4•d4mi3n•21m ago•0 comments

Devin for Terminal

https://devin.ai/terminal
2•limelight•22m ago•0 comments

Bolt's ChatBot Runs Amok

https://www.thatprivacyguy.com/blog/bolts-chatbot-runs-amok/
1•speckx•25m ago•0 comments

Show HN: Remote Access for Home Assistant Without Nabu Casa

https://github.com/Bajusz15/beacon
2•matebajusz•26m ago•1 comments

The Game of Chomp

https://en.wikipedia.org/wiki/Chomp
1•Jun8•28m ago•1 comments

Microsoft Paper: LLMs Corrupt Your Documents When You Delegate (Arxiv.org)

https://arxiv.org/abs/2604.15597
3•wuschel•28m ago•1 comments

AI and Junk Development

https://zkmarek.com/blog/ai-and-junk-development-aka-pazdziez-development/
2•keyraycheck•29m ago•0 comments

Cloud agnostic: not unlike database agnostic

https://site.sebasmonia.com/posts/2026-04-22-cloud-agnostic--not-unlike-database-agnostic.html
2•speckx•32m ago•0 comments

Show HN: Keep up with your coding agents – Git Watchttower

https://gitwatchtower.dev/
2•drummel33•32m 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•11mo ago

Comments

MaximosMK•11mo 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!