frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Grammar of Graphics for Comparative Genomics

https://thackl.github.io/gggenomes/
1•sebg•51s ago•0 comments

Emulator Bugs: Sega CD

https://jsgroth.dev/blog/posts/emulator-bugs-sega-cd/
1•ibobev•2m ago•0 comments

Finding the Echoes: An Artist's Journey from Trauma to Rediscovery

https://www.jeromeleroy.com/complog-content/2025/10/finding-the-echoes-an-artists-journey-from-tr...
1•jbd•2m ago•0 comments

Income distributions in Americans' pastimes (2017)

https://old.reddit.com/r/dataisbeautiful/comments/6heb75/income_distributions_in_americans_pastim...
1•andersource•2m ago•0 comments

Make Things, Tell People

https://presentofcoding.substack.com/p/make-things-tell-people
1•sebg•4m ago•0 comments

Token embeddings violate the manifold hypothesis

https://arxiv.org/abs/2504.01002
1•airstrike•5m ago•0 comments

Quantum computing needs its own industrial revolution

https://www.ft.com/content/de55d987-13bb-4821-9e72-d7a066e48ccd
1•giuliomagnifico•8m ago•0 comments

What Makes the Intro to Crafting Interpreters So Good?

https://refactoringenglish.com/blog/crafting-interpreters-intro/
3•mtlynch•9m ago•0 comments

New laser weapon takes down high-speed drones

https://www.gov.uk/government/news/boost-for-armed-forces-as-new-laser-weapon-takes-down-high-spe...
1•KingNoLimit•13m ago•0 comments

Microsoft spins up Azure HorizonDB

https://www.theregister.com/2025/11/19/microsoft_azure_horizondb/
1•aamederen•15m ago•1 comments

Recursive Descent and Pratt Parsing

https://www.chidiwilliams.com/posts/on-recursive-descent-and-pratt-parsing
1•nivethan•16m ago•0 comments

Microrobots for targeted therapies, tested in vessel models and large animals

https://ethz.ch/en/news-and-events/eth-news/news/2025/11/microrobots-finding-their-way.html
2•sdpy•17m ago•0 comments

Vibe Coding Is Too Much Cognitive Load

https://medium.com/ducky-ai/vibe-coding-is-too-much-cognitive-load-5ad78769d61d
3•JunNotJune•19m ago•0 comments

Show HN: SocialPredict v2.1.0 – Easy to Deploy Prediction Markets

https://github.com/openpredictionmarkets/socialpredict
1•wwwpatdelcom•20m ago•1 comments

Ubuntu LTS releases to 15 years with Legacy add-on

https://canonical.com/blog/canonical-expands-total-coverage-for-ubuntu-lts-releases-to-15-years-w...
1•taubek•20m ago•0 comments

Arc Raiders: Everything You Need to Know Before Launch

https://kotaku.com/arc-raiders-pvpve-extraction-maps-embark-studios-2000639945
1•PaulHoule•22m ago•0 comments

The Rise and Fall of Silicon Graphics

https://www.abortretry.fail/p/the-rise-and-fall-of-silicon-graphics
3•breve•23m ago•0 comments

I Built a Directory Aggregator in One Weekend (Then Made It Open Source)

https://meysam.io/blog/awesome-directories-open-source/
1•meysamazad•23m ago•0 comments

HashiCorp Vault is overhyped, and Mozilla SOPS with KMS and Git is underrated

https://oteemo.com/blog/hashicorp-vault-is-overhyped-and-mozilla-sops-with-kms-and-git-is-massive...
1•fanf2•26m ago•0 comments

The Quiet Crisis in QA: More Code, Same Old Problems

https://peterblanco.com/startup/quiet-crisis-in-qa-more-code-same-old-problems/
1•blancotech•28m ago•0 comments

Solar Panels

https://rodgercuddington.substack.com/p/solar-panels
1•freespirt•28m ago•1 comments

Saudi Arabia became a video-game superpower

https://www.economist.com/culture/2025/10/03/how-saudi-arabia-became-a-video-game-superpower
1•andsoitis•28m ago•0 comments

The cloud is slowing you down [video]

https://www.youtube.com/watch?v=Ps3AI1kTIR4
1•chii•29m ago•0 comments

Nano Banana Pro

https://loraai.io/nano-banana-pro
1•xbaicai•29m ago•1 comments

Ask HN: ADHD have crippled my life, I do not know what to do?

1•nerdyadventurer•33m ago•4 comments

Ask HN: Black Boxes

1•throwaway2027•38m ago•0 comments

AI developed personality scoring 2x higher than average human (22.23 vs. 10.94)

https://thesophia.ai/
1•alekseibljahhin•38m ago•1 comments

In 1982, a physics joke gone wrong sparked the invention of the emoticon

https://arstechnica.com/gadgets/2025/11/in-1982-a-physics-joke-gone-wrong-sparked-the-invention-o...
1•sohkamyung•40m ago•0 comments

Google drops Gemini 3 Pro image preview

https://old.reddit.com/r/Bard/comments/1p1yiuc/google_quietly_drops_gemini_3_pro_image_preview/
1•limoce•40m ago•0 comments

Eleven years after Lenovo acquired IBM's x86 server biz, profits still elusive

https://www.theregister.com/2025/11/20/lenovo_q2_2026/
3•raw_anon_1111•42m 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•6mo ago

Comments

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