frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

2026 is the year you stop reading code

https://notes.iunknown.com/blog/2026/01/Tools+For+Agentic+Thought
1•azhenley•2m ago•0 comments

ProxyFace: Give Your AI a Face and Emotions (100% Local, Zero Telemetry)

https://www.proxyface.com
1•NaotoMatsumoto•3m ago•0 comments

Iran Internet Shutdown 2026: 90M Cut Off, Economy Loses Millions Daily

https://www.indexbox.io/blog/irans-internet-blackout-devastates-online-economy-and-small-businesses/
1•abdelhousni•5m ago•0 comments

I stopped Nova Launcher from tracking me without sacrificing my setup

https://www.androidauthority.com/block-nova-launcher-trackers-3662141/
1•Brajeshwar•9m ago•0 comments

Show HN: Unlinked, MCP Server for LinkedIn

https://github.com/larsbaunwall/Unlinked
1•lbaune•9m ago•0 comments

Tell HN: Claude claims the AGPLv3 license violates it's content policy

2•freedomben•12m ago•0 comments

AI-powered NPM deprecation tracker with dependency tree Ghost Detection

https://www.stackgraveyard.dev/
2•tlseternal•17m ago•0 comments

Show HN: Open-source 2D IDE for managing agent CLIs

https://49agents.com
3•alpadurza•19m ago•1 comments

TIL We Meet – I built a games website for my long-distance girlfriend

https://tilwemeet.com/#home
2•jxuereb•23m ago•1 comments

FCK BUSL

https://github.com/theoddden/Terradev
1•Facingsouth•24m ago•0 comments

Create a 90s themed website in seconds

https://www.npmjs.com/package/create-geocities-app
3•whatsupdog•26m ago•1 comments

I Recreated Star Wars Out of Cardboard [video]

https://www.youtube.com/watch?v=ulVscDewRPI
2•sgt•29m ago•0 comments

Modern Games Look on CRT Monitors [video]

https://www.youtube.com/watch?v=U3K_BmIxh_0
2•ksec•33m ago•0 comments

Agent VCR – Time-travel debugging for LLM agents (rewind, edit state, resume)

https://github.com/ixchio/agent-vcr
2•redhanuman•33m ago•0 comments

Chris Hohn's hedge fund slashes $8B MS stake in warning over AI disruption

https://www.ft.com/content/ac5d90a9-b010-4529-9616-706420920681
4•croes•37m ago•0 comments

Froot Loops and a Graphics Card

https://danielmay.co.uk/posts/froot-loops-and-a-graphics-card/
1•danielrmay•41m ago•0 comments

Stick Charts

https://en.wikipedia.org/wiki/Marshall_Islands_stick_chart
1•helterskelter•42m ago•0 comments

Six Selfish Reasons to Have Kids

https://kevinkelly.substack.com/p/six-selfish-reasons-to-have-kids
1•MetaMalone•44m ago•0 comments

Data from a phone becomes a death sentence

https://www.jpost.com/defense-and-tech/article-895697
1•iugtmkbdfil834•47m ago•0 comments

One Agent Sandbox Is Not Enough

https://multikernel.io/2026/03/25/sandlock-mcp-per-tool-sandboxing/
2•kjok•48m ago•0 comments

Researchers tune Casimir force using magnetic fields

https://phys.org/news/2024-06-tune-casimir-magnetic-fields.html
2•bilsbie•48m ago•0 comments

DMA: A Community Hackerspace in Seattle

https://dma.space/
1•bleeperblooper•52m ago•0 comments

YA3 – Yet Another 303 clone, that runs in the browser and as a DAW plugin

https://ya3.surge.sh/
2•stagas•52m ago•0 comments

Synthetic Exercise World – Fictional dataset for cyber exercises and standards

https://github.com/MISP/Synthetic-Exercise-World-Format
1•adulau•54m ago•0 comments

Humanoid Robots Are the Next Phase of the AI Hype Cycle

https://www.bloomberg.com/news/articles/2026-05-08/humanoid-robots-aren-t-as-advanced-as-the-ai-h...
3•wslh•56m ago•1 comments

Lies, damned lies, and Elastic's benchmarks

https://www.gouthamve.dev/lies-damned-lies-and-elastics-benchmarks/
1•gsky•1h ago•0 comments

Stoa – open substrate for agent-readable SaaS (spec, runtime, registry)

https://stoa.tryvext.com/
1•alayton•1h ago•0 comments

Ask HN: Would you use a verified social platform?

3•jacobwiseberg•1h ago•4 comments

Bottleneck – The Strait of Hormuz Crisis Game

https://bottleneck.jakubgornicki.com/en
1•smartmic•1h ago•0 comments

MIT researchers revive 40 year old triangular zipper concept

https://www.tomshardware.com/3d-printing/mit-researchers-revive-40-year-old-triangular-zipper-con...
2•MassPikeMike•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!