frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Copyrightability of LLM-generated code: Can we license "vibe code" into Free SW

https://fsfe.org/news/2026/news-20260825-01.html
1•Tomte•1m ago•0 comments

I spent a day at a robot "carnival" in Shanghai. Here's what I saw

https://www.technologyreview.com/2026/08/25/1141907/dispatch-shanghai-humanoid-robot-carnival/
1•joozio•2m ago•1 comments

You Don't Know Why Internet Cookies Are Called Cookies [video]

https://www.youtube.com/watch?v=moGFmrVK3AU
1•edward28•2m ago•0 comments

Every visual workflow tool becomes spaghetti. Here's what I built instead

https://medium.com/@mohamedalibenothmen1/every-visual-workflow-tool-becomes-spaghetti-heres-what-...
1•dalibenothmen•3m ago•0 comments

Junie Can Now Run on Your Mac – No Credits, No Cloud

https://blog.jetbrains.com/junie/2026/08/junie-local-launch/
1•taubek•3m ago•0 comments

I Tried Bringing Back the Million Dollar Homepage, but with HTML Pages

https://1dollarhtml.vercel.app
1•hito20•3m ago•0 comments

Scientists' cars were burned at the proposed Einstein Telescope Sardinian site

https://www.science.org/content/article/arson-attack-jolts-italy-s-bid-host-einstein-telescope
1•g6pdh•3m ago•0 comments

What Lies Beneath You?

https://earthview.sunny.gg/
1•thunderbong•5m ago•0 comments

Show HN: Voicecard – a CLI that resolves contradictions in rambling voice notes

https://github.com/kenzotp/voicecard
1•zuuna•7m ago•1 comments

The language around language models

https://dilpreet.co/blog/2026/8/25/the-language-around-language-models
1•argilium•7m ago•0 comments

Show HN: Vejas – an integration platform with no builder UI; agents write flows

https://github.com/cpoder/vejas
1•cpo75•8m ago•0 comments

Self-Host Software Factory

https://github.com/vercel-labs/eve-software-factory-template
1•flashbrew•9m ago•0 comments

Using Kernel in Eve

https://twitter.com/BenSabic/status/2092203462998340093
1•flashbrew•10m ago•0 comments

Diving Deeper on Nvidia's Vera CPU: New Architectural Details and Benchmarks

https://www.servethehome.com/diving-deeper-on-nvidias-vera-cpu-new-architectural-details-and-spec...
1•rbanffy•11m ago•0 comments

Show HN: Seedeep – I couldn't see what Claude Code was doing, so I drew it

https://github.com/duqaXxX/seedeep
1•duqaxxx•12m ago•1 comments

Comedy Was Destroyed by an Anti-Reality Doomsday Cult [video]

https://www.youtube.com/watch?v=ewvRS3NwIlQ
1•noahra•15m ago•0 comments

AI Makes Better Software

https://www.hmans.dev/blog/ai-makes-better-software
4•czottmann•16m ago•1 comments

Why Your Boss Wants to Make Sure AI Can Read Your Slack Messages

https://www.wsj.com/tech/ai/why-your-boss-wants-to-make-sure-ai-can-read-your-slack-messages-b6c1...
1•cebert•16m ago•1 comments

Cortex – Local context retrieval for AI coding agents

https://github.com/DanielBlomma/cortex
1•dannepanne•18m ago•0 comments

Don't Screw the Crew

https://henryaj.substack.com/p/dont-screw-the-crew
1•devanian•21m ago•0 comments

Contributing to Open-Source in 2026

https://am17an.bearblog.dev/contributing-to-open-source-software-in-2026/
1•am17an•22m ago•0 comments

Show HN: Dotenv-Diff v3.4.0

https://github.com/Chrilleweb/dotenv-diff
1•chrillemn•23m ago•0 comments

Show HN: Mess Arts

https://messarts.org/
3•not_wowinter14•25m ago•0 comments

200B Tokens Later: A Month of Letting AI Agents Decompile MW2

https://momo5502.com/posts/2026-08-17-mw2-decompilation/
1•Gander5739•26m ago•0 comments

NIP-05 maps Nostr public keys to human-readable internet identifiers

https://nostrcompass.org/en/topics/nip-05/
1•Bluestein•27m ago•0 comments

The Prenatal Sex Steroid Theory of Autism – 2026 Jephcott Lecture [video]

https://www.youtube.com/watch?v=Zpd2r6ktO1Y
1•meindnoch•28m ago•0 comments

Nemotron 3.5 Lightning-Omni: I gave NVIDIA's agent model eyes and ears

https://huggingface.co/engram-ae/Nemotron-3.5-Lightning-Omni-30B-A3B-GGUF
1•vkaufmann•28m ago•0 comments

Trump Threatens to Raise Tariffs on Canadian Automobiles to 50%

https://moztako.me/trump-tariffs-on-canadian-automobiles/
1•Cacara•28m ago•0 comments

Quantum battery upends the rules of charging

https://www.bbc.com/future/article/20260824-this-quantum-battery-charges-faster-the-larger-it-gets
3•reconnecting•30m ago•0 comments

What Is a SQL Database Schema and How Do You Design One?

https://visualeaf.com/blog/what-is-a-sql-database-schema-and-how-do-you-design-one/
2•kyle_mongo•30m 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!