frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Slop flooding maths YouTube [video]

https://www.youtube.com/watch?v=mRO_QonhC2c
1•soupspaces•5m ago•0 comments

Bims: Biomed News

https://biomed.news/
1•XzetaU8•8m ago•0 comments

Travel preparation for parents with young kids

https://www.traveltods.world/
1•Yantso•10m ago•1 comments

General-purpose large language models outperform specialized clinical AI

https://www.nature.com/articles/s41591-026-04431-5?brid=YWdncwFKdLH5ne5BLVS2Tb5UQSQa&utm_id=97757...
1•doener•13m ago•0 comments

A zero-copy C/Python DFA engine that scrubs logs at 571 MB/s

https://github.com/thedevilhimselfcodes/guardog
1•LuciferLK•15m ago•0 comments

'A man of great appetites': what's it like to be a dictator's personal chef?

https://www.theguardian.com/film/2026/jun/09/how-to-feed-a-dictator-film
1•Michelangelo11•16m ago•0 comments

The Last Open Frontier

https://www.mikehyland.com/blog/frontier-model-government-shutdown
1•mjhyl•18m ago•0 comments

Right to Repair: The Battle You Didn't Know You Were Fighting (video)

https://www.youtube.com/watch?v=ZaX20zv-Xw4
1•mdp2021•19m ago•0 comments

Ask HN: Could someone please invite me to Lobste.rs?

1•ML0037•21m ago•0 comments

AI inequality: from GPU-poor to token-poor

https://adlrocha.substack.com/p/adlrocha-ai-inequality-from-gpu-poor
1•adlrocha•23m ago•0 comments

Show HN: Memoriq – Open-source encrypted vault for saving and searching AI chats

https://github.com/memoriqme/memoriq
1•giekaton•24m ago•0 comments

RoleDecoder

https://roledecoder.com/
1•Mohammad_1ta•24m ago•0 comments

SemanticSourceCode – Local semantic code search with Ollama and SQLite

https://github.com/TheEifelYeti/SemanticSourceCode
1•EifelYeti•28m ago•0 comments

Shipping Outside the App Store

https://keylight.dev/blog/launch-mac-app-outside-app-store/
1•dmzxnico•30m ago•0 comments

Four LTS Java Versions Get End-of-Support in a Three-Year Window (2029-2032)

https://m.slashdot.org/story/455546
2•ilreb•32m ago•0 comments

Show HN: AppLaunch – Local Service App Builder

https://applaunch.teamzlab.com/
1•mdhemalakhand•32m ago•0 comments

UNK_DeadDrop Phishing Campaign Targets Developers to Steal Cryptocurrency

https://www.proofpoint.com/us/blog/threat-insight/dont-fear-repo-unkdeaddrop-phishing-campaign-ta...
2•denysvitali•35m ago•0 comments

Ask HN: What is your blog and why should I read it?

2•chistev•36m ago•2 comments

A policy enforcement layer for MCP tool execution using Rego

https://github.com/marvior/regentix
1•walmol•37m ago•0 comments

Macaroni Messenger 1.03 – small documentation fixes

https://github.com/vanyapr/makaroshki/releases/tag/v1.03
2•snowflaxxx•45m ago•1 comments

Laser Phase Plate Cryo-Electron Microscopy

https://biohub.org/blog/laser-phase-plate-cryo-em-making-invisible-visible/
3•peteforde•48m ago•0 comments

AI Is Bringing Mashups Back

https://www.wolfe.id.au/2026/06/12/ai-is-bringing-mashups-back
2•markwolfe•53m ago•0 comments

N-Tier Services and Systems Complexity

https://yegge.ai/essays/services-and-complexity/
2•tosh•55m ago•0 comments

AI Memory Is Still Thinking Like Search

https://medium.com/@jeffreyflynt02/ai-memory-is-still-thinking-like-search-e07566311efe
4•jflynt76•56m ago•0 comments

Show HN: Have your agent consult other models

https://github.com/raine/consult-llm
2•rane•58m ago•0 comments

Final run for the current LHC accelerator (but more to come)

https://www.nikhef.nl/en/news/final-run-for-the-current-lhc-accelerator-but-more-to-come/
3•elashri•1h ago•2 comments

Have politics come for the National Academies of Science?

https://arstechnica.com/science/2026/06/have-politics-finally-come-for-the-national-academies-of-...
1•rbanffy•1h ago•0 comments

Hacking Salesforce Sites with an LLM Agent

https://www.reco.ai/blog/hacking-salesforce-sites-with-an-llm-agent
2•llmacpu•1h ago•1 comments

Why the US economy keeps defying the odds

https://www.bbc.com/news/articles/cwy031el03po
1•ilreb•1h ago•1 comments

Anthropic Is Taking AI Welfare Seriously. I'm Not Sure It Knows What It's Measu

https://www.lesswrong.com/posts/gNtHHCh363xSGJyz3/anthropic-is-taking-ai-welfare-seriously-i-m-no...
2•joozio•1h 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!