frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Britain's New World of Tobacco (2017)

https://www.historytoday.com/archive/feature/britains-new-world-tobacco
1•benbreen•1m ago•0 comments

The Birth and Reverb of Friendship (2025)

https://sive.rs/brf
1•Michelangelo11•3m ago•0 comments

Ask HN: Do we need a stronger process for vetting code?

2•zaksa•5m ago•0 comments

Garfield Comics

https://16-bits.org/garfield/?s=5702
2•andsoitis•6m ago•0 comments

More on an Internal OpenAI Model Hacking into HuggingFace

https://thezvi.substack.com/p/more-on-an-internal-openai-model
1•Michelangelo11•6m ago•0 comments

Fasttracker II clone in C using SDL 2

https://16-bits.org/ft2.php
1•andsoitis•8m ago•0 comments

Show HN: Game Boy on the Beam – A DMG Emulator in Pure Elixir

https://gb-dmg.live/
1•douglascorrea•11m ago•0 comments

Introduction to ScreamTracker 3.21 [video]

https://www.youtube.com/watch?v=pPK7s8aC3kg
1•andsoitis•18m ago•0 comments

Equities surpass real estate as top US wealth driver for first time since WW2

https://www.reuters.com/business/finance/equities-surpass-real-estate-top-us-wealth-driver-first-...
4•littlexsparkee•19m ago•0 comments

Show HN: Discord-delete – Bulk-delete Discord messages from your data export

https://github.com/DatCodeMania/discord-delete
1•DatCodeMania•19m ago•1 comments

iFacts Exposes 21,000 Sensitive Files of South African Citizens

https://write-ups.security-chu.com/2026/07/iFacts-Exposes-21000-Sensitive-Files-of-South-African-...
1•news_rt•20m ago•0 comments

Doom Using Regular Expressions

https://4rh1t3ct0r7.github.io/doom-regex/
2•Buildstarted•21m ago•0 comments

Ponytail Skill for Claude Code: Does It Cut Tokens

https://blog.jetbrains.com/ai/2026/07/ponytail-skill-claude-tested/
2•ankitg12•22m ago•1 comments

Sam Altman says people don't want an AI to act as CEO

https://www.businessinsider.com/sam-altman-ai-ceo-humans-work-future-2026-7
3•vrganj•24m ago•3 comments

OpenAI's rogue agent compromised a customer at a second tech firm

https://www.reuters.com/business/openais-rogue-agent-compromised-an-account-second-tech-firm-sour...
3•juunge•25m ago•0 comments

Advanced Codeowners Patterns to Kill Review Fatigue

https://gitdash.dev/blog/advanced-codeowners-patterns-review-automation
1•ankitg12•25m ago•0 comments

The Noonday Devil

https://porticoquarterly.com/book/the-noonday-devil/
1•lermontov•26m ago•0 comments

Tinycast – a tiny, native macOS launcher

https://abue-ammar.github.io/tinycast/
1•xiaoape•26m ago•0 comments

ICE Arrests Surge at Airports arresting spouses of American tech workers

https://www.nytimes.com/2026/07/28/us/ice-arrests-airports-visa-overstay.html
3•Alien1Being•26m ago•0 comments

eBay agreed to pay $50M to couple sent cockroaches, bloody pig mask

https://www.clickondetroit.com/business/2026/07/28/ebays-agreed-to-pay-nearly-50-million-to-coupl...
1•Alien1Being•30m ago•0 comments

Headroom cut 39% of my tokens and raised my Claude bill

https://brandonbarker.me/writing/headroom-fewer-tokens-bigger-bill
3•ProjectBarks•30m ago•0 comments

Claude Mythos Preview Finds Vulnerability in Weakened Form of AES

https://www.nytimes.com/2026/07/28/us/politics/anthropic-ai-encryption-security-aes.html
1•theCricketer•31m ago•0 comments

AT1C is an open protocol for cryptographically verifiable human authorisation

https://github.com/at1c-protocol/at1c-protocol-official/blob/main/docs/README.md
1•1obituary•33m ago•0 comments

VJamm 2 Coldcut set rundown [video]

https://www.youtube.com/watch?v=II_2KKYlEMQ
1•gregsadetsky•33m ago•0 comments

Show HN: Self-hosted AI gateway – MCP, budget, PII, smart router, fallback

https://github.com/ilter-ai/ilter
1•ykocaman•36m ago•0 comments

Three big AI trends collide

https://www.axios.com/2026/07/09/ai-trends-fable-5-sol-grok-china-us
2•gmargari•40m ago•0 comments

Commentary on N Guilty Men

https://medium.com/luminasticity/commentary-on-n-guilty-men-fc47d9dd0674
1•bryanrasmussen•45m ago•0 comments

The Cost of China's Free A.I

https://www.nytimes.com/2026/07/29/opinion/ai-china-us-free-models.html
1•kuboble•46m ago•0 comments

Spacesphere Live

https://spacesphere.sygnito.com/en
1•SYGNITO•47m ago•0 comments

Ran Moonshot's 2.8T-parameter Kimi K3 on a GPU-less mini-PC

https://github.com/ferrumox/rabbit
2•manuelslemos•50m 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!