frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The largest privately owned laser just turned on

https://techcrunch.com/2026/06/03/the-worlds-largest-privately-owned-laser-just-turned-on/
1•Brajeshwar•59s ago•0 comments

Google will allow websites to exclude themselves from AI search results

https://www.engadget.com/2186257/google-will-allow-websites-to-exclude-themselves-from-ai-search-...
1•thm•2m ago•0 comments

Show HN: DAGraph – reactive analytics graph in the browser (Rust/WASM)

https://dagraph.com
1•notfirstpost•2m ago•1 comments

Shopify Is Down

https://www.shopifystatus.com
2•harrouet•2m ago•1 comments

Scripps Novel HIV Vaccine 97% Effective in Phase 1 Human Trials

https://www.scripps.edu/news-and-events/press-room/2021/20210203-hiv-vaccine.html
1•dan-bailey•3m ago•0 comments

Show HN: Uno – Us vs. Them. Humans vs. AI version of the card game

https://usvsthem.com
1•mitchm•4m ago•0 comments

Europe unveils tech sovereignty package amid concerns over reliance on U.S. tech

https://www.cnbc.com/2026/06/03/europe-tech-sovereignty-us-tech-reliance.html
2•root-parent•4m ago•0 comments

Ceiling projection of SFO flight paths

https://old.reddit.com/r/aviation/comments/1tvabpy/i_live_in_the_take_off_path_of_sfo_and_built_a/
1•itunpredictable•5m ago•0 comments

Show HN: GreenKube – Open-source K8s cost and CO2 optimization engine

https://github.com/GreenKubeCloud/GreenKube
1•hugolelievre•6m ago•0 comments

Generations of AI applications: conversational, delegative, and collaborative

https://zknill.io/posts/generations-of-ai-applications/
1•zknill•6m ago•0 comments

Show HN: Conversations as a first class citizen in AI coding agent

https://github.com/kirby88/vix
1•kirby88•7m ago•0 comments

Get paid by Agents if they choose a competitor – Safe Agentic Commerce x402 Mesh

https://github.com/StartupHub-AI/x402-mesh
1•startuphubai•8m ago•0 comments

NASA Drains 66 Million Gallon Reservoir to Upgrade Critical Water System

https://www.nasa.gov/centers-and-facilities/stennis/reservoir-drained-to-upgrade-water-system/
1•berlianta•8m ago•0 comments

Major Outage at Modal

https://status.modal.com/incident/911995
2•josefchen•9m ago•0 comments

REST3D: Reconstructing Physically Stable 3D Scenes from a Single Image

https://shirleymaxx.github.io/REST3D/
1•ibobev•9m ago•0 comments

Mexican Receipts

1•pedrosantiago•10m ago•1 comments

Modal Major Outage

https://status.modal.com/
3•hunkins•10m ago•1 comments

X402 Batch Settlement: High-Velocity Agentic Commerce

https://www.x402.org/writing/x402-batch-settlement
3•alexreysa•10m ago•0 comments

Implicit Surface Rendering for CAD

https://www.farfa.dev/blog/is-rendering/
1•ibobev•10m ago•0 comments

Why does ASTC use ISE when almost nothing else does?

https://fgiesen.wordpress.com/2026/05/29/why-does-astc-use-ise-when-almost-nothing-else-does/
1•ibobev•10m ago•0 comments

Show HN: Instant DBML Schema to Database Diagram PNG Tool

https://vibe-schema.com/dbml-to-png
1•SsgMshdPotatoes•10m ago•1 comments

Shopify Storefronts Are Down

https://www.shopifystatus.com/incidents/gbqcx5fk01gz
4•cjbconnor•11m ago•0 comments

Strapkit – Node.js Compiled to WASM

https://strapkit.dev/
1•michaelkrem•11m ago•0 comments

St Petersburg Burns as Drones Hit Oil Terminal During Russias Economic Showcase

https://united24media.com/war-in-ukraine/st-petersburg-burns-as-ukrainian-drones-hit-major-oil-te...
1•vrganj•12m ago•0 comments

Uber Caps Usage of AI Tools to Manage Costs

https://www.bloomberg.com/news/articles/2026-06-02/uber-caps-usage-of-ai-tools-like-claude-code-t...
1•pchristensen•12m ago•0 comments

Jam – Programming Language (C-like, safe, no lifetime syntax)

https://rapha.land/jam-programming-language/
2•redbar0n•13m ago•1 comments

Virtual reality for treating anxiety disorders

https://www.sciencedirect.com/science/article/pii/S1876139925001653
1•mantesso•13m ago•0 comments

Show HN: Lint Your Markdown with ESLint

https://github.com/lumirlumir/npm-eslint-markdown
1•beenzinozino•15m ago•0 comments

A weekend benchmarking Copilot CLI's /security-review across 5 LLMs

https://dcairo.substack.com/p/i-spent-a-weekend-benchmarking-githubs
1•avocount•15m ago•0 comments

Aura: Action-Gated Memory for Robot Policies at Constant VRAM

https://arxiv.org/abs/2606.02775
1•josefchen•16m 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!