frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Fastembed-rs – Rust library for generating vector embeddings, reranking

https://github.com/Anush008/fastembed-rs
1•thoughtfullyso•1m ago•0 comments

Browser game about movie guessing

https://frameguesser.vercel.app/
1•mmschreiber•7m ago•0 comments

Nike Launches Sneaker Line with Russian Designer Who Backed Crimea Annexation

https://united24media.com/world/nike-launches-sneaker-line-with-russian-designer-who-backed-crime...
3•fodmap•9m ago•0 comments

Graphtatui: In terminal graph explorer made with ratatui

https://github.com/Sok205/graphtatui
2•sok205•10m ago•0 comments

Yield Curves and Volatility Surfaces Are Built in Modern Finance

https://medium.com/@DolphinDB_Inc/the-hidden-foundation-of-pricing-and-risk-how-ficc-curves-and-s...
2•Polly_Liu•12m ago•0 comments

CPMpy: Constraint Programming and Modeling library in Python, based on NumPy

https://github.com/CPMpy/cpmpy
1•tosh•13m ago•0 comments

Why Digital Twins Need Low-Latency Data Processing

https://medium.com/@DolphinDB_Inc/real-time-decision-making-how-ai-and-low-latency-computing-are-...
2•CrazyTomato•13m ago•0 comments

Githipedia – The Wiki for GitHub

https://github.com/Vendetaaaa/Githipedia
1•Vendeta•14m ago•1 comments

Show HN: I wrote a C++ ray tracer from scratch without AI

https://github.com/themartiano/luz
2•martiano•14m ago•1 comments

Ask HN: How do you handle browser tab overload?

1•formit34•15m ago•1 comments

Coversubstack-Zagreus=Whiterabbit.flexe

https://substack.com/@rootedinthought/note/c-276218913
1•dcmexpunksolar•19m ago•0 comments

LibAgar – Cross-platform GUI written in C

https://libagar.org/
2•0x0203•20m ago•0 comments

What are you looking for when reviewing LLM generated code?

2•gnunicorn•21m ago•1 comments

Ask HN: Developers, are you being forced into prompt-only engineering?

3•zerr•22m ago•0 comments

Fear about young adults' maturity is just a way of trying to control them (2023)

https://www.newstatesman.com/comment/2023/06/fear-about-young-adults-maturity-is-just-a-way-of-tr...
1•frereubu•23m ago•1 comments

Show HN: ELDC – Natural language identification, faster than FastText and CLD2

https://github.com/nitotm/eldc
2•nitotm•24m ago•0 comments

Anthropic flies staff to D.C. to clean up White House fight

https://www.axios.com/2026/06/14/anthropic-white-house-mythos-fable
3•dstala•25m ago•0 comments

Trailblazing investigative reporter Roger Cook dies

https://news.sky.com/story/trailblazing-investigative-reporter-roger-cook-dies-13554262
1•austinallegro•28m ago•0 comments

Searching for Guy Debord (2003)

https://brooklynrail.org/2003/10/express/searching-for-guy-debord/
1•robtherobber•28m ago•0 comments

Ask HN: Did you try Claude's "Fable 5" model before it was pulled?

3•aniokono•28m ago•1 comments

How to Think about Parallel Programming: Not (2010)

https://github.com/matthiasn/talk-transcripts/blob/master/Steele_Guy/ParallelProg.md
1•tosh•29m ago•0 comments

How Contaminants in drinking water are regulated by the EPA and states

https://www.ewg.org/news-insights/news/2025/03/how-contaminants-drinking-water-are-regulated-epa-...
2•num42•29m ago•0 comments

Complexity Models

https://en.algorithmica.org/hpc/complexity/
1•tosh•30m ago•0 comments

Tell HN: Claude is completely unusable for biology

3•Protostome•31m ago•0 comments

Translation Drift in Web Novels: Answering Vague Questions in the Moment

http://blog.merrilin.ai/engineering/2026/translation-drift/
1•stonecharioteer•32m ago•0 comments

Multistack 1.0 – Lightweight TUI for orchestrating coding agents

https://crates.io/crates/multistack/1.0.0#1.0.0
1•gidellav•34m ago•0 comments

Zerostack 1.5 – Lightweight Unix-inspired coding agent

https://crates.io/crates/zerostack/1.5.0#1.5.0
1•gidellav•34m ago•0 comments

Show HN: VibeKnow – content-to-video agent using Remotion

https://vibeknow.ai/
1•xutangly•36m ago•0 comments

Donate Agent Traces

https://huggingface.co/spaces/trace-commons/web
2•simon-inta•36m ago•0 comments

Magic Buffers and io_uring Registered Buffers

https://www.mindfruit.co.uk/posts/2025/10/magic-buffers-and-io-uring-write-fixed/
2•tosh•38m 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!