frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Request Camel Numbering

https://gov.om/w/request-camel-numbering
1•earksiinni•3m ago•0 comments

Git per sviluppatori: guida completa dai comandi base al workflow professionale

https://donatodelpeschio.it/blog/git-guida-completa-comandi-workflow
1•donnyBlanko•3m ago•0 comments

A bet on whether ML-KEM-768 or X25519 will break first

https://github.com/FiloSottile/ecc-vs-lattices-long-bet
1•figsoda•5m ago•1 comments

From Spec-Driven Work to Work Orchestration

https://trilogyai.substack.com/p/from-spec-driven-work-to-work-orchestration
1•kumanday•7m ago•0 comments

Hormuz, an MCP-first forecasting engine for reproducible modeling

https://github.com/farukalpay/hormuz-tectonochemical-engine/
4•festafin•7m ago•0 comments

Anthropic Mythos 0-days replicated with GPT5.4

https://twitter.com/kannthu1/status/2042695741844619502
1•knivets•7m ago•0 comments

Dario – use your Claude Max subscription as an API (no API key needed)

https://github.com/askalf/dario
1•askalf•16m ago•0 comments

Show HN: Collabmem – the memory system for long-term collaboration with AI

https://github.com/visionscaper/collabmem
1•visionscaper•17m ago•1 comments

Is ChatGPT Down?

https://chatgpt.com/
2•laser9•17m ago•1 comments

We gave an AI a 3-year Lease. It opened a store

https://andonlabs.com/blog/andon-market-launch
2•lukaspetersson•17m ago•0 comments

Anthropic loses appeals court bid to temporarily block DoD ruling

https://www.cnbc.com/2026/04/08/anthropic-pentagon-court-ruling-supply-chain-risk.html
1•gmays•18m ago•1 comments

Sciences Physiques

https://www.jf-noblet.fr/
2•Eridanus2•20m ago•1 comments

What Are You Trying to Say?

https://idiallo.com/blog/what-are-you-trying-to-say
2•foxfired•26m ago•0 comments

Warez Scene

https://en.wikipedia.org/wiki/Warez_scene
3•maltalex•27m ago•0 comments

Open Source LLM Comparison – Is Opus Cooked?

https://paradise-runner.github.io/frontier-comparison/
2•dividedcomet•32m ago•1 comments

Installing OpenBSD on the Pomera DM250 Writerdeck

https://jcs.org/2026/04/09/openbsd-dm250
1•djfergus•32m ago•0 comments

Show HN: Function Calling Harness: From 6.75% to 100% (Qwen Meetup Presentation)

https://typia.io/blog/function-calling-harness-qwen-meetup-korea/
2•samchon-github•34m ago•0 comments

AI Code Is Hollowing Out Open Source, and Maintainers Are Looking the Other Way

https://www.quippd.com/writing/2026/04/08/ai-code-is-hollowing-out-open-source-and-maintainers-ar...
3•pabs3•35m ago•0 comments

Daily You: A Personal Diary

https://github.com/Demizo/Daily_You
1•thunderbong•38m ago•0 comments

Helix and Typst are a match made in heaven

https://ergaster.org/til/helix-typst-match-in-heaven/
2•vinhnx•39m ago•0 comments

CLínica Bíblica: From Mission Hospital to Modern Medical Leader in Costa Rica

https://johnquam.substack.com/p/clinica-biblica-from-mission-hospital
1•headmonkey•44m ago•0 comments

Crystal on Rails (Rails-to-Crystal Transpiler)

https://intertwingly.net/blog/2026/04/10/Railcar.html
1•hugh4life•46m ago•0 comments

The term "AGI" is almost useless at this point

https://helentoner.substack.com/p/the-term-agi-is-almost-useless-at
1•gmays•46m ago•0 comments

Two Japanese suppliers commit to keeping Blu-ray discs and drives in supply

https://automaton-media.com/en/news/two-japanese-suppliers-commit-to-keeping-blu-ray-discs-and-dr...
2•voxadam•46m ago•0 comments

Use Claude Max subscription with OpenClaw again

https://github.com/zeulewan/glueclaw
1•zeulewan•59m ago•2 comments

Leaked – publicly unavailable unstable preview model

https://unstable.bot
14•mrhyyyyde•1h ago•3 comments

There are limited benefits when parents hold back their child in kindergarten

https://www.latimes.com/california/story/2026-03-23/limited-benefits-when-parents-hold-back-their...
1•PaulHoule•1h ago•0 comments

What, Is the GIL?

https://finbarr.ca/what-is-the-gil/
3•vinhnx•1h ago•0 comments

Iran Unable to Find Mines in Strait of Hormuz, U.S. Says

https://www.nytimes.com/2026/04/10/us/politics/iran-mines-strait.html
5•tyleo•1h ago•1 comments

Artemis II safely splashes down

https://www.cbsnews.com/live-updates/artemis-ii-splashdown-return/
268•areoform•1h ago•81 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!