frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An impossible first task at Google

https://sparr.substack.com/p/an-impossible-first-task-at-google
1•denysvitali•39s ago•0 comments

Homemade Transistor from Cadmium Sulfide Photocell (2009)

http://sparkbangbuzz.com/cds-fet/cds-fet.htm
1•thenthenthen•1m ago•1 comments

Meta uses CXL to reuse old DDR4 and cut some inference fleets by 25%

https://www.theregister.com/systems/2026/06/29/zuck-saves-meta-bucks-by-reusing-memory-from-old-s...
1•p_stuart82•1m ago•0 comments

We've uncovered a master gene that switches on human development

https://www.newscientist.com/article/2531950-weve-uncovered-a-master-gene-that-switches-on-human-...
1•01-_-•1m ago•0 comments

Samsung, SK Hynix and Micron Are Being Sued for "Fixing"

https://www.thegamer.com/samsung-sk-hynix-micron-sued-ram-crisis/
2•01-_-•2m ago•0 comments

Metasearch Tooling for Agents

1•chambertime•3m ago•1 comments

China's Z.ai claims it can match Mythos on cybersecurity

https://www.theverge.com/ai-artificial-intelligence/958804/chinas-z-ai-glm-52-mythos-cybersecurity
2•Brajeshwar•5m ago•0 comments

What LLMs are doing to conference programs

https://di.nmfay.com/llms-conference-programs
1•speckx•6m ago•0 comments

Android's earthquake warning system alerted 11 Million people in Venezuela

https://www.techradar.com/phones/android/google-says-androids-built-in-earthquake-warning-system-...
2•ck2•6m ago•0 comments

Show HN: MCP-compress-router – MCP Compressor

https://github.com/ameshkov/mcp-compress-router
1•ameshkov•8m ago•0 comments

Show HN: Create and Maintain Filesystem Structures for LLMs [v1.0.13 Out]

https://pypi.org/project/seed-cli/
1•hunterx•8m ago•0 comments

Amazon Is Awash with AI-Written Guideslop for Games That Aren't Even Out

https://kotaku.com/amazon-ai-game-guidebooks-alien-isolation-gears-of-war-2000711365
2•logickkk1•9m ago•0 comments

AI loops: who pays for the tokens?

https://www.jackfranklin.co.uk/blog/claude-code-ai-feedback-skill/
1•jackfranklin•9m ago•0 comments

11tyx5: Five Whitestone Foundation Sites, Eleventy, and the Long Open Web

https://www.adamdjbrett.com/blog/11tyx5-five-sites-long-web/
1•evolve2k•12m ago•0 comments

Is aerc better than neomutt now?

1•hardikxk•12m ago•0 comments

Dbrand cancels Companion Cube because it didn't ask Valve for permission

https://www.theverge.com/games/959056/dbrand-steam-machine-companion-cube-valve-take-down-canceled
1•minimaxir•13m ago•1 comments

Obfuscation: Building the final boss of cryptography (Part I)

https://vitalik.eth.limo/general/2026/06/29/obfuscation1.html
1•fbrusch•13m ago•0 comments

The Truth about Space Data Centers (IEEE Spectrum Magazine)

https://www.youtube.com/watch?v=_qpdUNMt2yg
1•mudil•14m ago•0 comments

Floating Point: The Origin Story

https://thechipletter.substack.com/p/floating-point-the-origin-story
1•rbanffy•14m ago•0 comments

South Korea announces more than $1T AI, chip investment drive

https://www.aljazeera.com/news/2026/6/29/south-korea-announces-more-than-1-trillion-ai-chip-inves...
3•mgh2•17m ago•0 comments

The Laziest Generation

https://idiallo.com/blog/the-laziest-generation
2•firefoxd•18m ago•0 comments

A deep dive into SmallVector:push_back

https://maskray.me/blog/2026-06-27-a-deep-dive-into-smallvector-push-back
2•mariuz•18m ago•0 comments

The Radiation Exposure Lie

https://worksinprogress.co/issue/how-to-lie-about-radiation/
3•duffydotsvg•21m ago•0 comments

What Do You Do When You Lose Gigantic Megalodon Shark Vertebrae?

https://nautil.us/what-do-you-do-when-you-lose-gigantic-megalodon-shark-vertebrae-1282295
1•Brajeshwar•21m ago•0 comments

Ford rehires human engineers after AI fails to match quality checks

https://www.bbc.co.uk/news/articles/cgrkd41n2v9o
1•_ua_•22m ago•1 comments

Recognising and mitigating LLM Pollution in online behavioural research

https://www.nature.com/articles/s41467-026-74621-9
1•bookofjoe•22m ago•0 comments

Roanoke homeowner says Flock Device was installed on her property without notice

https://www.wsls.com/news/local/2026/06/22/roanoke-homeowner-says-a-flock-device-was-installed-on...
3•CharlesW•23m ago•0 comments

Bild Lilli Doll

https://en.wikipedia.org/wiki/Bild_Lilli_doll
1•doener•25m ago•0 comments

A New Gaming GPU Challenger: Bolt Graphics Takes Aim at Nvidia [video]

https://www.youtube.com/watch?v=-fZM9wOvbh0
3•scns•25m ago•0 comments

EU: We register if you are critical about us, and shot you out

https://europeanconservative.com/articles/news/dont-question-eu-values-brussels-influencer-plan-s...
3•monssooon•28m ago•3 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!