frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Self-hosting your own agent infrastrcuture (centaur)

https://www.youtube.com/watch?v=993XrWfg34U
1•bradwmorris•2m ago•1 comments

Countries 15x10 Pixel Flags

https://github.com/igor-couto/pixel-flags
1•lionello•4m ago•0 comments

A Vacuum Diode for Make: Magazine

https://www.nickpoole.me/2023/12/10/a-vacuum-diode-for-make-magazine/
1•luu•5m ago•0 comments

A Stealth Startup Thinks It Just Hacked the Memory Shortage

https://www.wired.com/story/a-new-dollar400-million-startup-wants-to-fix-the-ai-memory-bottleneck/
1•littlexsparkee•6m ago•0 comments

Show HN: Temporal Parser – A compiler-style parser for date/time strings

https://lxcid.com/tools/temporal-playground/
1•johnxie•6m ago•1 comments

A 'swarm' of AI agents hacked Hugging Face, in the AI's own words

https://www.abc.net.au/news/2026-09-11/how-openai-agents-hacked-hugging-face-messages-revealed/10...
1•grahameb•9m ago•0 comments

Show HN: Reviving my $15,000 browser arcade with Astra

https://eggverse.co/
1•Waseemkhalo•19m ago•0 comments

Show HN: Socks Proxy for AI Agents

https://x402socks.com/
1•rnts08•19m ago•0 comments

Anthropic details how Claude was misused for surveillance and weapons

https://thenextweb.com/news/anthropic-claude-misuse-threat-intelligence-report
3•delichon•21m ago•0 comments

Turn Your Data into a Video

https://www.racecharts.io/
1•ijidak•21m ago•0 comments

INDUS-SDE: A Language Model for Scientific Content Curation and Discovery

https://science.data.nasa.gov/blog/indus-sde-language-model
1•sudobear•22m ago•1 comments

Steam's Programming Fest

https://store.steampowered.com/category/programming
3•embedding-shape•24m ago•0 comments

Portal 2 Beta Decompilation

https://github.com/apersonwhomakesstuff/Portal-2-Beta-Decompilation/tree/main
2•apersonwhomakes•27m ago•2 comments

Chick-Fil-A Sauce Flavored Waffle Potato Chips

https://www.chick-fil-a.com/menu/sides/chick-fil-a-sauce-flavored-waffle-potato-chips
1•SpyCoder77•27m ago•0 comments

ASCII arcade: 3D engine for the terminal

https://ascii-arcade.dev
1•cramforce•27m ago•1 comments

A Decent GPU for FreeBSD and OpenBSD (2023)

https://medium.com/@martin.baulig/a-decent-gpu-for-freebsd-and-openbsd-ee82e6ff219a
1•turtleyacht•28m ago•0 comments

Generative AI Using Linuxulator and eGPU on FreeBSD

https://www.tumfatig.net/2026/generative-ai-using-linuxulator-and-egpu-on-freebsd/
1•turtleyacht•29m ago•0 comments

Sean Carroll explains the biggest ideas in the universe – Full Interview [video]

https://www.youtube.com/watch?v=_TBNJyztai0
4•binyu•29m ago•0 comments

A $537 Local LLM Machine (2025)

https://blog.lewman.com/a-537-local-llm-machine.html
3•turtleyacht•30m ago•0 comments

Synapse – Daily Word Game

https://synapse.akshayr.xyz/
1•barbierocks•31m ago•1 comments

Russia trafficking foreigners to fight in Ukraine, Amnesty says

https://www.courthousenews.com/russia-trafficking-foreigners-to-fight-in-ukraine-amnesty-says/
3•MilnerRoute•32m ago•0 comments

The Confused Engineer

https://thebsq.com/the-confused-engineer/
3•ahofma•33m ago•1 comments

M. Williams, OpenAI: Human extinction in the next few years seems likely

https://xcancel.com/antibot/captcha
5•doener•34m ago•1 comments

Show HN: PRBar see your open GitHub PR count in macOS menu bar

https://github.com/sburl/prBar
1•sburl•36m ago•1 comments

The Chasm: The Shape of Unfinished AI Codebases

https://jimmyhmiller.com/shape-of-unfinished-ai-codebases
1•gmays•37m ago•0 comments

AI researchers leave Anthropic and Google: 'There are no adults in the room'

https://www.nbcnews.com/tech/security/two-ai-researchers-leave-anthropic-google-safety-concerns-r...
7•doener•38m ago•0 comments

Stop externalizing the cost of your AI use to me

https://thelastsoftwareengineer.substack.com/p/stop-externalizing-the-cost-of-your
8•azhenley•40m ago•0 comments

AI Is Not Going to Kill My Love of Math

https://chillphysicsenjoyer.substack.com/p/ai-is-not-going-to-kill-my-love-of
5•crescit_eundo•42m ago•1 comments

NATO allies foil Russian subsea cable sabotage plot

https://www.reuters.com/world/europe/nato-allies-foil-russian-subsea-cable-sabotage-plot-2026-09-10/
2•doener•45m ago•0 comments

Xapien raises $56M Series B for AI background checks and due diligence

https://axios.com/pro/all-deals/2026/09/10/due-diligence-ai-xapien-56-million
1•utiiiD•46m ago•2 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!