frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: FOSS Slack Archive Viewer and Exporter

https://slarchive.com/
1•DavidCanHelp•26s ago•0 comments

The most efficient LLM prompt compression algorithm in the world

https://github.com/yuechen-li-dev/GeminiControlPacket
1•YuechenLi•1m ago•0 comments

Don't Cite Unsold eBay Listing Prices

https://blog.danlew.net/2026/01/17/dont-cite-unsold-ebay-listing-prices/
1•speckx•2m ago•0 comments

The Making of Knowledge Navigator (Apple, 1987)

https://www.dubberly.com/articles/the-making-of-knowledge-navigator.html
1•lysace•2m ago•0 comments

The Design Space of Tri-Modal Masked Diffusion Models

https://arxiv.org/abs/2602.21472
1•gok•2m ago•0 comments

FCC opens inquiry into movement of live sports from broadcast TV to streaming

https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/fcc-opens-inquiry-into-movement-of-...
1•mikhael•2m ago•0 comments

Show HN: Validatedata – lightweight inline data validation for Python

https://pypi.org/project/validatedata/
1•EdwardK1•3m ago•0 comments

New polymer alloy could solve energy storage challenge

https://techxplore.com/news/2026-02-polymer-alloy-energy-storage.html
1•PaulHoule•4m ago•0 comments

Observability Storage Was Designed for Humans. Agents Need Something Else

https://www.deductive.ai/blogs/observability-storage-for-the-agentic-era
1•sagrw•5m ago•0 comments

Show HN: Fast Database for Agents

https://github.com/sushrut141/kalki
1•wanderinglight•5m ago•0 comments

You Don't Need to Detect Prompt Injection to Stop It

https://sibylline.dev/articles/2026-02-22-schema-strict-prompt-injection-firewall/
1•CuriouslyC•5m ago•0 comments

Finance techie says cloned Bloomberg's $30k/year Terminal with Perplexity

https://www.tomshardware.com/tech-industry/artificial-intelligence/finance-techie-says-they-clone...
2•pseudolus•7m ago•1 comments

Surviving large migrations: Metrolink and the housing crisis

https://thesidedish.flipdish.com/surviving-large-migrations-metrolink-and-the-housing-crisis-5839...
1•rbanffy•8m ago•0 comments

SongAI

https://songai.io
1•122506•9m ago•1 comments

Show HN: I built a multi-model AI terminal with a custom mobile web UI

https://github.com/jazzenchen/VibeAround
1•jazzen•10m ago•1 comments

Show HN: Clappie – Claude Code remote but more fun and useful

https://clappie.ai/
3•TIPSIO•10m ago•0 comments

If code is cheap, intent is the currency

https://zknill.io/posts/commit-message-intent/
1•zknill•11m ago•0 comments

How to take full-page screenshots in Chrome on any device – it's easy and free

https://www.zdnet.com/article/how-to-take-a-full-page-screenshot-in-google-chrome-browser/
1•ohjeez•12m ago•0 comments

Video Conferencing with Postgres

https://planetscale.com/blog/video-conferencing-with-postgres
1•nickvanw•12m ago•0 comments

Corona Discharges Glow on Trees Under Thunderstorms

https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2025GL119591
1•bookofjoe•12m ago•0 comments

Writing C with indent-based Python syntax

https://sph.mn/computer/guides/c/c-indent.html
1•arboles•12m ago•0 comments

The Rise and Fall of a 3-D Printing Empire

https://www.nytimes.com/2026/02/27/business/3d-printing-industry.html
1•acdanger•13m ago•0 comments

I'm a truck driver who built a privacy-first RSS and webcomic reader

https://addons.mozilla.org/en-US/firefox/addon/rss-ninja/
1•DigitalFracture•14m ago•1 comments

I made a website to test if you know colors

https://colorguesser.xyz/
1•beingmani•14m ago•0 comments

I used Claude Code to migrate my WordPress blog in an afternoon

https://www.pawlean.com/posts/migrate-wordpress-to-mdx-claude-code
1•speckx•16m ago•0 comments

Electromagnetic Feedback: Making an electronic sound sculpture [video]

https://www.youtube.com/watch?v=CoP-mSCzevc
2•camtarn•16m ago•1 comments

Show HN: Csv.repair – Free browser-based tool to fix broken CSV files

https://github.com/hsr88/csv-repair
1•murzynalbinos•16m ago•0 comments

Guardclaw – 7 layers between your AI agents and disaster

https://takeinterest.ai/guardclaw
1•TakeInterestInc•17m ago•1 comments

SenseStream – Mood-based film discovery instead of genre browsing

1•Noha25•18m ago•0 comments

Cute-Symbol – A lightweight, zero-ad character picker for developers

https://cute-symbol.com
1•Aqua0811•19m ago•1 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•9mo ago

Comments

MaximosMK•9mo 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!