frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Spaces and Shapes – What's New in Easel (May 2026)

https://easel.games/blog/2026-may-update
1•BSTRhino•1m ago•0 comments

Building a Recurrent-Depth Transformer for Security Research on a 2013 MacBook

https://github.com/TushaeBXN/kerrigan-fantasma/blob/main/USE_POLICY.md
1•btthomas•2m ago•0 comments

WordPress continues to be the best tool for new websites

https://alprado.com/blog/wordpress-continues-to-be-the-perfect-tool-for-new-websites/
1•alprado50•4m ago•0 comments

Meta AI Support – full system prompt leaked

https://github.com/michaelcummings12/meta-ai-support-prompt/blob/main/system-prompt.md
1•alasdair_•5m ago•0 comments

Jan – Personal Intelligence that answers only to you

https://www.jan.ai/
2•danboarder•11m ago•0 comments

GoPro warned it may not survive

https://thenextweb.com/news/gopro-going-concern-ai-memory-crisis-default
3•mmh0000•15m ago•0 comments

AquaUI

https://github.com/jonsterling/AquaUI
2•arm•23m ago•0 comments

Putin could pay a personal price for failure in Ukraine

https://www.ft.com/content/7b986a53-3f7b-40fc-99ef-953905963ce3
2•JumpCrisscross•24m ago•1 comments

KageSec. Open-source DAST scanner that outfound ZAP on PortSwigger's test app

https://pypi.org/project/kagesec/
1•MZulhilmiRah•24m ago•0 comments

A Virtual Processor Brings Back the Free Lunch

https://arxiv.org/abs/2605.30507
1•nryoo•24m ago•0 comments

Rate apps based on design patterns

https://darkbadge.info/
1•faderisimo•25m ago•0 comments

Show HN: Linux Journey for iOS

https://apps.apple.com/us/app/linux-journey/id6770861660
1•huhuhang•28m ago•0 comments

SpaceX Vow to Loft 1M AI Satellites Could Spark Doomsday Dive

https://www.forbes.com/sites/kevinholdenplatt/2026/05/31/spacex-vow-to-loft-1-million-ai-satellit...
2•paulpauper•34m ago•0 comments

Show HN: Memex – A local-first AI journal that keeps everything as Markdown

https://github.com/memex-lab/memex
1•sparkleMing•35m ago•0 comments

Diffusion over Networks

https://camerongordon0.substack.com/p/diffusion-over-networks
1•iciac•39m ago•0 comments

Anthropic is conditioning our minds

2•ms_menardi•40m ago•2 comments

The true reason C++ always wins [video]

https://www.youtube.com/watch?v=I7fEsbksKRE
2•AareyBaba•41m ago•0 comments

CVE-2026-31525: Linux Kernel Privilege Escalation Flaw

https://www.sentinelone.com/vulnerability-database/cve-2026-31525/
2•Wingy•44m ago•0 comments

U.S. Midterms Have a Cyber Problem, but It's Not at the Ballot Box

https://blog.checkpoint.com/exposure-management/the-2026-u-s-midterms-have-a-cyber-problem-but-it...
15•gnabgib•54m ago•8 comments

Show HN: LeetCode EasyRepeat – Anki for LeetCode

https://github.com/yc1838/LeetCode-EasyRepeat
1•yc1838•55m ago•0 comments

I Got $4.84 from a Class Action and They Didn't Want Me to Have It

https://labnotes.org/i-got-4-84-from-a-class-action-settlement-and-they-really-really-didnt-want-...
6•speckx•55m ago•0 comments

Election interlopers register 5K+ domains, hope to catch some voting phish

https://www.theregister.com/security/2026/06/01/5k-election-domains-registered-ahead-of-us-midter...
2•Bender•1h ago•1 comments

X.org Server Starts June Nine New Security Vulnerabilities Discovered via AI

https://www.phoronix.com/news/X.Org-9-Vulnerabilities-AI
2•Bender•1h ago•0 comments

Texas adds another solar farm as ERCOT grid demand soars

https://electrek.co/2026/06/01/texas-adds-another-huge-solar-farm-ercot-grid-demand-soars/
5•Bender•1h ago•0 comments

TLDR – Summarize paragraphs in real-time through Firefox

https://github.com/chudweiser/TLDR
1•chudweiser•1h ago•0 comments

Why Study CS? Thoughts on LLM-assisted software engineering

https://kmicinski.com/claude-code-and-why-study-cs
4•jruohonen•1h ago•0 comments

Anthropic and the caravel problem

https://radval.me/articles/anthropic-and-the-caravel-problem
2•rad_val•1h ago•1 comments

Why are audio front ends still optimized for CPUs? (MelT)

https://arxiv.org/abs/2606.01009
2•augustocamargo•1h ago•0 comments

Experts sound alarm over Elon Musk's 'coup' that's 'about to rob your 401k'

https://www.rawstory.com/elon-musk-2676979515/
16•xbmcuser•1h ago•2 comments

Shfl

https://shuffle.com?r=OWbDsJFjR1
2•conheohaiyen•1h ago•1 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!