frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ByteHug Technologies

https://play.google.com/store/apps/details?id=com.bytehug.daydonedayplanner&hl=en_US
1•AnjuAlias•1m ago•0 comments

Show HN: Midjourney Prompt Generator

https://www.midjourney-prompt-generator.eu/
1•manol_ai•4m ago•1 comments

Nginx Rift: Nginx Remote Code Execution via an 18-Year-Old Vulnerability

https://depthfirst.com/research/nginx-rift-achieving-nginx-rce-via-an-18-year-old-vulnerability
1•throwaway2027•12m ago•0 comments

Show HN: Mind Focus, an Android app for focus and attention recovery

https://www.ataraxiaapps.com/en/posts/app-mind-focus/
1•korax_nyx•14m ago•0 comments

Claude changes headless usage from June 15

https://twitter.com/ClaudeDevs/status/2054610152817619388
1•tzmlab•18m ago•0 comments

Less is exponentially more (2012)

https://commandcenter.blogspot.com/2012/06/less-is-exponentially-more.html
1•tosh•18m ago•0 comments

Behind the Sound of Ninja Gaiden: Ragebound

https://www.audiokinetic.com/en/community/blog/ninja-gaiden-ragebound/
1•severine•18m ago•0 comments

Lets Roast Your Website

1•ajaysheoran2323•20m ago•0 comments

Show HN: ChangeSpec – An open standard for notices in software changes

https://changespec.org/
1•cdnsteve•21m ago•1 comments

Daily Food Guessing Game

https://munchle.day/
1•shumaher•24m ago•0 comments

Riding the Leopard

https://www.notboring.co/p/riding-the-leopard
1•jger15•24m ago•0 comments

TypedArray.prototype.map()

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map
1•tosh•25m ago•0 comments

Researchers say AI just broke every benchmark for autonomous cyber capability

https://cyberscoop.com/ai-autonomous-cyber-capability-benchmarks-broken-gpt5-claude-mythos/
1•lschueller•27m ago•0 comments

Avocado Studio – open-source AI content editor for Next.js sites

https://docs.avocadostudio.dev
1•yury_h•27m ago•0 comments

40-Year-Old System Analyzed with AI: It Turned Out to Have a Modern Architecture

https://medium.com/@noborutakahashi/a-40-year-old-system-analyzed-with-ai-it-turned-out-to-have-a...
1•fragmede•29m ago•0 comments

Britain just issued a cigarette ban that would shock Americans

https://slate.com/life/2026/05/britain-united-kingdom-smoking-cigarette-law-banned.html
3•sizzle•30m ago•0 comments

I Built a Programming Languge Inside Debug.com

https://code.likeagirl.io/programmers-survival-guide-for-a-zombie-apocalypse-f1580422675a?sk=769b...
1•nextputall•30m ago•0 comments

I found the most underrated B2B lead source for SaaS

https://www.indiehackers.com/post/the-most-underrated-b2b-lead-source-for-saas-CZjbmrpd8HrNELM7l3E3
1•stangineer•31m ago•0 comments

Senior Full Stack Developer (Next.js / Node.js / React / Vue)

https://news.ycombinator.com/submita
1•cleanman•31m ago•0 comments

The dark fascist WW2 secret hidden below one of Europe's largest railway station

https://www.cnn.com/travel/milan-stazione-centrale-binario-21-shoah-memorial
1•sizzle•33m ago•0 comments

Build with Notion's Developer Platform

https://www.notion.com/product/dev
1•archb•34m ago•0 comments

Claude Opus 4.7 leaks system prompt randomly

https://old.reddit.com/r/ClaudeAI/comments/1tcsec4/claude_opus_47_just_revealed_its_system_prompt/
2•ixeption•35m ago•0 comments

Studid v2 – Free API for academic verification via university SSO

https://studid.io/blog/api-v2-release
1•wagnandr•37m ago•0 comments

Facebook comments on Citizen-Dividends from AI roil Korean markets

https://finance.yahoo.com/economy/policy/articles/korea-roils-market-floating-citizen-081026940.html
1•oliculipolicula•37m ago•0 comments

Geometry Conflict: Explain & Controll Forgetting in LLM Continual Post-Training

https://huggingface.co/papers/2605.09608
1•maxloh•38m ago•0 comments

Beware AI Productivity Theater

https://iknowa.spot/posts/26-5-9-beware-ai-productivity-theater
1•dmm•39m ago•0 comments

Urlsify.com, a Free Link Shortener with Analytics, Custom Links, and More

https://old.reddit.com/r/sideprojects/comments/1tabelm/finished_making_this_url_shortener_complet...
2•godlymod•41m ago•2 comments

Accelerated Arctangent Series

https://en.wikipedia.org/wiki/Arctangent_series
1•tosh•42m ago•0 comments

Axavive Anti Aging Support Formula Benefits Explained

https://finance.yahoo.com/sectors/healthcare/articles/axavive-skin-exploding-2026-golden-22590060...
1•farzsapu•43m ago•0 comments

Bloat (2024)

https://docs.google.com/presentation/d/e/2PACX-1vSmIbSwh1_DXKEMU5YKgYpt5_b4yfOfpfEOKS5_cvtLdiHsX6...
1•tosh•43m 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!