frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Toxic Flow: The Addictive, Exhausting Reality of Multi-Agent Coding

https://blog.danielvaughan.com/toxic-flow-why-multi-agent-coding-is-addictive-exhausting-and-noth...
1•dvaughan•53s ago•0 comments

Two GitHub Alumni Are Rebuilding Developer Tools for the AI Era

https://techstackups.com/articles/gitbutler-vs-entire-github-founders/
1•ritzaco•1m ago•0 comments

Google's new AI app is a glimpse of the future

https://www.computerworld.com/article/4156760/googles-new-ai-app-is-a-glimpse-of-the-future.html
1•mikelgan•1m ago•1 comments

'True Color' Review: Not-So-Black-and-White

https://www.wsj.com/arts-culture/books/true-color-review-not-so-black-and-white-12ed9615
1•Michelangelo11•2m ago•0 comments

Making a Literary Future with Artificial Intelligence

https://lareviewofbooks.org/article/artificial-intelligence-literary-future-chatgpt-large-languag...
1•Michelangelo11•8m ago•0 comments

France Launches Government Linux Desktop Plan as Windows Exit Begins

https://linuxiac.com/france-launches-government-linux-desktop-plan-as-windows-exit-begins/
3•doener•8m ago•0 comments

Show HN: A tool to manage a swarm of coding agents on Linux

https://github.com/penberg/swarm
3•penberg•10m ago•0 comments

Tinygrad reenables e-GPU support on Macs

https://docs.tinygrad.org/tinygpu/
2•kgnl•12m ago•1 comments

Up-to-Date Docs with Agentic Automation

https://medusajs.com/blog/up-to-date-docs-with-agentic-automation/
1•shahednasser•12m ago•0 comments

SBTI – The personality test that's exploding in China

https://yourq.net/
2•bingbing123•15m ago•0 comments

Ask HN: Am I disloyal for not wanting to share my system prompts?

1•kkarpkkarp•16m ago•1 comments

Zero-build privacy policies with Astro

https://www.openpolicy.sh/blog/no-build-astro
3•jamie_davenport•19m ago•0 comments

Show HN: List of Design Md Files

https://github.com/bergside/awesome-design-md-skills
1•elwingo1•21m ago•0 comments

Rage: A modern Ruby framework designed for non-blocking I/O

https://github.com/rage-rb/rage
1•thunderbong•24m ago•0 comments

Apple Home is expanding its energy management features (2025)

https://www.theverge.com/news/685733/apple-home-energykit-energy-management-ios26-wwdc
1•zeristor•28m ago•1 comments

Dubai considering canal to bypass Strait of Hormuz (2008)

https://www.freightwaves.com/news/dubai-considering-canal-to-bypass-strait-of-hormuz
1•JumpCrisscross•28m ago•0 comments

Seeduplex: ByteDance's full-duplex voice AI

https://seeduplex.io
2•caoq•29m ago•1 comments

CLI proxy that reduces LLM token consumption by 60-90% on common dev commands

https://github.com/rtk-ai/rtk
4•ahamez•30m ago•1 comments

I watched Claude Code read my AWS credentials on startup

https://github.com/diemoeve/forgeterm/releases/tag/v0.2.0
6•storm677•30m ago•0 comments

Ask HN: Are you encountering AI-related questions in the hiring market?

3•somthingwrong•32m ago•0 comments

My turns any API into an AI agent in 60 seconds

https://www.indiehackers.com/post/i-built-a-platform-that-turns-any-api-into-an-ai-agent-in-60-se...
2•AnimeMyPic•35m ago•0 comments

I Lost This Once

https://johnie.se/writing/i-already-lost-this-once
3•div3rs3•35m ago•0 comments

Show HN: I Built an LLM Harness for Language Learning

https://language.coursely.ai/begin
1•MO-379•36m ago•0 comments

Model Architecture Description Encyclopedia

https://madl.si5.pl/
1•izik•36m ago•0 comments

Track List – Track Your Favorite GitHub List Daily

https://www.trackawesomelist.com/
1•triilman•43m ago•0 comments

CVE-2026-23869: CVSS 7.5 in React Server Components lead to Denial of Service

https://vercel.com/changelog/summary-of-cve-2026-23869
1•altbdoor•47m ago•0 comments

AES Cipher and Dechiper

https://github.com/loperfido/aes256
1•loperfido•49m ago•0 comments

Lobsters Interview with Internet_Janitor

https://alexalejandre.com/programming/interview-with-john-earnest/
1•birdculture•50m ago•0 comments

Particles seen emerging from empty space for first time

https://www.newscientist.com/article/2522324-particles-seen-emerging-from-empty-space-for-first-t...
4•isaacfrond•50m ago•0 comments

Show HN: A security scanner for AI Agent Skills

https://github.com/Fangcun-AI/SkillWard/tree/main
4•mayziem•51m 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!