frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Using Blender with coding agents on macOS

https://til.simonwillison.net/llms/blender-coding-agents-macos
1•theanonymousone•2m ago•0 comments

Ask HN: Would you read a statistics textbook?

1•usernametaken29•7m ago•0 comments

Show HN: Move Claude Code sessions between accounts in Claude Desktop

https://github.com/vitaliyhayda/claude-transplant
1•vhayda•11m ago•0 comments

Lists of Problems

https://en.wikipedia.org/wiki/Lists_of_problems
1•num42•17m ago•0 comments

Clean up your Android TV

https://tv.cobanov.dev/
1•chris_overseas•17m ago•0 comments

Decapitating a MacBook

https://mm-dev.rocks/series/decapitating-macbook-an-odyssey/
1•luu•19m ago•0 comments

Care for a Little More AI?

https://proofsandprompts.com/2026/08/30/care-for-a-little-more-ai/
1•throwaway81523•21m ago•0 comments

WeatherNext 3: Hourly global weather forecasts using live satellite data

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/introducing-weathernext-3/
1•fourfire•23m ago•0 comments

Thank you for being part of the GitHub Classroom journey

https://github.com/orgs/community/discussions/205975
1•qainsights•25m ago•0 comments

Show HN: Octoweb – a free, open-source keyboard-first browser for macOS

https://octoweb.xyz/
1•donk8r•27m ago•0 comments

VS Code – Official Documentary [video]

https://www.youtube.com/watch?v=kHL3XzjpT5w
3•MehrdadKhnzd•32m ago•0 comments

I Want More AI at Dartmouth

https://www.theatlantic.com/ideas/2026/09/universities-prohibiting-ai-classroom/688509/
1•paulpauper•33m ago•0 comments

The Dark Side of Mindfulness

https://www.theatlantic.com/ideas/2026/09/meditation-willoughby-britton-downsides/688474/
2•paulpauper•33m ago•0 comments

Teaching robots mortal kombat moves [video]

https://www.youtube.com/watch?v=1Oo8h655VMM
2•anton5mith2•34m ago•0 comments

The state of AI in 2026: On the road to ROI

https://www.mckinsey.com/capabilities/quantumblack/our-insights/the-state-of-ai?cid=mgp_opr-eml-n...
1•giuliomagnifico•35m ago•0 comments

Judge blocks X rival from using Twitter name, but allows 'Tweet' for now

https://techcrunch.com/2026/09/04/judge-blocks-x-rival-from-using-twitter-name-but-allows-tweet-f...
2•rdmuser•40m ago•0 comments

Is your favorite plant-based milk good for the planet

https://www.nationalgeographic.com/magazine/article/how-your-favorite-plant-based-milk-alternativ...
2•teleforce•45m ago•1 comments

Seismic Isolation

https://www.ligo.caltech.edu/page/vibration-isolation
1•pillars•47m ago•0 comments

34 arrests made for drug trafficking at Burning Man as of Friday

https://www.rgj.com/story/life/arts/burning-man/2026/09/04/34-arrested-drug-trafficking-burning-m...
1•MilnerRoute•48m ago•0 comments

Vancouver strip club's Instagram taken down over sign featuring lake joke

https://www.vancouverisawesome.com/local-news/vancouver-strip-club-instagram-taken-down-sign-call...
22•anigbrowl•51m ago•12 comments

Datacenters Are the New Shale Oil

https://pracap.com/datacenters-are-the-new-shale-oil/
3•Ambolia•57m ago•0 comments

Show HN: Generate safe WebMCP tools from your OpenAPI spec or validation schemas

https://github.com/SouravInsights/webmcp-stack
1•SouravInsights•59m ago•0 comments

Show HN: Main Street Toolbox – Calculators for small business owners

https://mainstreettoolbox.com/
1•devinjin•1h ago•0 comments

LLM-as-a-Verifier

https://github.com/llm-as-a-verifier/llm-as-a-verifier
2•simonpure•1h ago•0 comments

Show HN: 4D Chess

https://4dchess.org/
1•nadermx•1h ago•0 comments

The Shape and Feel of the Post-AI Data Stack

https://www.iandmacomber.com/blog/post-ai-data-stack/
1•nlpnerd•1h ago•1 comments

B.C. man lost for 5 nights in mountains near Squamish shares survival story

https://www.cbc.ca/lite/story/9.7333975
1•colinprince•1h ago•0 comments

Trump signs order to remove endangered species protection for grey wolves

https://www.bbc.com/news/articles/c62k677d4lzo
27•Alien1Being•1h ago•4 comments

Show HN: Deterministic Synthetic Fingerprints from a Seed

https://github.com/1etu/actual-fingerprints
1•1etu•1h ago•0 comments

Surfing the Purple Ocean

https://architectureintel.com/surfing-the-purple-ocean-97907b95f3bb?postPublishedType=initial
1•younss•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!