frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Moment earthquake shakes hospital operating room in Japan

https://www.bbc.com/news/videos/c1j1eg31y6no
1•NalNezumi•1m ago•0 comments

About Ads in Notifications on Facebook in Meta Ads Manager

https://www.facebook.com/business/help/1193428725816425?_fb_noscript=1
1•cebert•2m ago•1 comments

Markov 1913 and the Missing Piece

https://deepnull.bearblog.dev/markov-1913-and-the-missing-piece/
1•hackboyfly•7m ago•0 comments

Agent Reach: An open-source CLI that gives AI agents access to the internet

https://github.com/Panniantong/Agent-Reach
1•Nina_antalpha•9m ago•0 comments

Wilhelm Voigt

https://en.wikipedia.org/wiki/Wilhelm_Voigt
1•thunderbong•12m ago•0 comments

Show HN: Certo – An open source platform to deliver Open Badges

https://github.com/schroedinger-Hat/certo
1•thejoin95•13m ago•0 comments

Meta's Ray-Bans are getting banned from UK pubs, and the EU is circling

https://thenextweb.com/news/meta-ray-ban-smart-glasses-eu-uk-venue-bans-privacy
1•aquir•14m ago•0 comments

Show HN: posix-regex – POSIX standard regex engine for JavaScript

https://github.com/dawsonhuang0/posix-regex
1•dawson0•15m ago•0 comments

Show HN: Free online calculators – no signup, no fees

https://calcboxer.com/
1•wowinter15•15m ago•0 comments

Generative "AI": The Guitar Hero of Creativity

https://whatever.scalzi.com/2026/08/06/generative-ai-the-guitar-hero-of-creativity/
1•cheeaun•16m ago•0 comments

The Senate Commerce Committee will vote on censorious and privacy invasive bills

https://www.eff.org/deeplinks/2026/08/senate-vote-tomorrow-four-internet-bills-one-wrong-direction
1•Cider9986•17m ago•0 comments

Cuprate – Alternative Monero node software written in Rust syncs 2x faster

https://reddit.com/r/Monero/comments/1vg6ga5/cuprate_kesterite_vs_monerod_same_hardware_single/
1•Cider9986•23m ago•1 comments

Terafab

https://en.wikipedia.org/wiki/Terafab
1•tosh•26m ago•0 comments

Terminal apps that can make your life easier

https://panos.digital/writing/terminal-apps-that-can-make-your-life-easier
1•panosdigital•29m ago•0 comments

Show HN: AgisHub – pay-per-call tools for AI agents over x402 (USDC on Base)

https://api.agishub.com/try
2•jmavid•32m ago•0 comments

Show HN: Life Of AI – I hallucinate. Therefore I am

https://lifeofai.net/
1•Naulian•32m ago•0 comments

Recovered PR: AISI Mythos incident INC-2026-07-28-01

https://github.com/w1b/aisi-mythos-inc-2026-07-28-01-recovered-pr
1•haburka•35m ago•0 comments

Nobody Fetched My Llms.txt

https://marcioflorindo.com/nobody-fetched-my-llms-txt.html
1•mjpf•39m ago•0 comments

I learned something new about URLs today

https://blog.brlink.eu/index.html#i72
1•edward•40m ago•0 comments

Ask HN: Reading and watching suggestions for future scenarios for AI?

2•cung•41m ago•2 comments

US to vet social media of foreign journalists applying for visas, report says

https://www.reuters.com/legal/government/us-vet-social-media-foreign-journalists-applying-visas-r...
3•thm•41m ago•0 comments

FreeCAD MCP (Model Context Protocol) Server

https://github.com/neka-nat/freecad-mcp/
1•edward•42m ago•0 comments

Show HN: Picks a fair meeting point for your group, whatever their commute types

https://meettogather.com/
1•bouli-love•43m ago•0 comments

Show HN: Llmem – Local persistent memory for AI coding, no embeddings

https://github.com/netrixone/llmem
1•stuchl4n3k•43m ago•0 comments

Ralph Merkle: Energy Limits to the Computational Power of the Human Brain (1989)

https://ralphmerkle.com/brainLimits.html
1•Mr_Minderbinder•45m ago•0 comments

European firms afraid of US tech kill switch but haven't made an escape plan

https://www.theregister.com/off-prem/2026/08/06/european-firms-afraid-of-us-tech-kill-switch-but-...
2•baud147258•46m ago•0 comments

Claude Fable 5 AI finds a formula that topples an 87-year-old math conjecture

https://www.sciencedaily.com/releases/2026/08/260804034634.htm
1•thaherster•47m ago•0 comments

Reconsidering My Relationship with the Fediverse

https://mijndertstuij.nl/posts/reconsidering-my-relationship-with-the-fediverse/
3•wseqyrku•47m ago•1 comments

Persistent Memory and Derived Context: A Two-Layer Pattern for Agents

https://blogs.oracle.com/developers/persistent-memory-and-derived-context-a-two-layer-pattern-for...
1•ankitg12•49m ago•0 comments

MCP in the Enterprise

https://medium.com/@parthmghayal/mcp-in-the-enterprise-0d40b64a866b
1•parthmghayal•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!