frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Are MAGA and MAHA Heading for Divorce

https://www.rollingstone.com/politics/politics-features/maha-maga-alliance-fracture-robert-kenned...
1•maxerickson•37s ago•0 comments

How to benchmark persistent repo memory for coding agents

https://autoloops.ai/greplica/blog/benchmarking-greplica/
1•kushalpatil07•1m ago•1 comments

Potential session/cache leakage between workspace instances or consumer accounts

https://github.com/anthropics/claude-code/issues/74066
1•chatmasta•2m ago•0 comments

How working memory could give rise to consciousness

https://www.scientificamerican.com/article/how-working-memory-could-give-rise-to-consciousness/
1•bookofjoe•2m ago•1 comments

A martian rock has lots of carbon on it, and it's not clear why

https://arstechnica.com/science/2026/07/a-martian-rock-has-lots-of-carbon-on-it-and-its-not-clear...
2•Brajeshwar•5m ago•0 comments

Warner bill would create federally vetted list for secure, trustworthy AI agents

https://cyberscoop.com/ai-agent-act-senate-draft-bill-mark-warner/
2•softwaredoug•5m ago•0 comments

One engine, many tools – Introducing Rubydex

https://railsatscale.com/2026-05-12-one-engine-many-tools/
1•frou_dh•9m ago•0 comments

Fake AI Agent Skill Slipped Past Every Scanner

https://www.csoonline.com/article/4188840/how-a-malicious-ai-agent-skill-passed-security-checks-a...
1•shivamthange•10m ago•0 comments

Thinking about buying a Prusa 3D printer?

https://bambu3design.com/prusa-summer-sale-2026-mk4s-gets-up-to-20-off-core-one-shipping-discount/
1•ehsanamel•10m ago•0 comments

Write Code, Not Specs

https://softwaredoug.com/blog/2026/07/04/write-code-not-specs
1•softwaredoug•11m ago•0 comments

BitTorrent's disastrous, legendary, and controversial story

https://www.theverge.com/tech/959848/bittorrent-story-25-years-piracy
1•blakesterz•13m ago•1 comments

Cultural effects of the Western African Ebola virus epidemic

https://en.wikipedia.org/wiki/Cultural_effects_of_the_Western_African_Ebola_virus_epidemic
1•YeGoblynQueenne•14m ago•0 comments

Show HN: Quick and dirty inter-agent collaboration

https://github.com/ovidiuiliescu/simpleagentchat
1•ovvyblabla•15m ago•0 comments

'clustered index penalty' on all non-clustered indexes

https://use-the-index-luke.com/blog/2014-01/unreasonable-defaults-primary-key-clustering-key
1•tosh•16m ago•0 comments

How the Biosphere 2 experiment changed our understanding of the Earth (2025)

https://www.bbc.com/future/article/20250703-how-the-biosphere-2-experiment-changed-our-understand...
2•taubek•16m ago•0 comments

Ask HN: What are you working on? (July 2026)

1•vinhnx•17m ago•1 comments

Cosmos DB

https://en.wikipedia.org/wiki/Cosmos_DB
1•tosh•21m ago•0 comments

Show HN: Language Learning Roguelike Game

https://language.aitida.com
1•howthisends•25m ago•0 comments

Fable5-world-demo: 3D world built by Claude Fable 5 using Three.js

https://github.com/Braffolk/fable5-world-demo
2•Garbage•27m ago•0 comments

Nearly a Million Investors Lost a Total of $3.8B on Trump Crypto Coin

https://www.nytimes.com/2026/07/04/us/politics/nearly-a-million-investors-lost-a-total-of-3-8-bil...
2•_tk_•28m ago•1 comments

The Purgatory Job Market of 2026

https://www.nytimes.com/2026/07/04/opinion/purgatory-job-market.html
1•littlexsparkee•28m ago•0 comments

Show HN: Mycelium – AI agent plugin guiding you from purpose to market

https://github.com/haabe/mycelium
1•haabe•30m ago•0 comments

Intelligence Agencies, a Fight over Building a Master List of Spies

https://www.nytimes.com/2026/06/29/us/trump-intelligence-agencies-spies-master-list.html
1•JumpCrisscross•36m ago•0 comments

Division Polynomials of Elliptic Curves in Python

https://leetarxiv.substack.com/p/division-polynomials-of-elliptic
1•thunderbong•36m ago•0 comments

AI-powered mass emails are warping local politics

https://www.msn.com/en-us/news/technology/ai-powered-mass-emails-are-warping-local-energy-climate...
3•rwmj•38m ago•0 comments

AI search could kill the web without new quality signals and revenue models

https://theguptalog.blogspot.com/2026/07/ai-search-could-kill-web-without-new.html
1•bhartipoddar•42m ago•1 comments

The Graduate-School Dropout Toppling a Country's Academic Stars

https://www.wsj.com/science/the-graduate-school-dropout-toppling-chinas-academic-stars-3c1e5d86
2•ilamont•43m ago•0 comments

Hyperia 0.15.20 released: Terminals for Agents and Humans

https://github.com/DeepBlueDynamics/hyperia/releases
1•kordlessagain•43m ago•1 comments

More than 425,000 children in ICE immigration courts are representing themselves

https://www.independent.co.uk/news/world/americas/us-politics/ice-immigration-court-children-lawy...
2•dataflow•44m ago•0 comments

Flexible Metaprogramming with Rhombus

https://lwn.net/Articles/1079001/
8•leephillips•45m 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!