frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TeX Live 2026 is available for download now

https://www.tug.org/texlive/acquire.html
1•jithinraj•3m ago•0 comments

Show HN: Triplecheck – Review your code free with local LLMs

https://github.com/raullenchai/triplecheck
1•raullen•19m ago•0 comments

Gemini-flash-latest silently broke Search grounding for 1 month

1•takibboinz•20m ago•0 comments

Show HN: AI Benchy – AI benchmarks and comparisons

https://aibenchy.com/
1•XCSme•21m ago•0 comments

Did anyone try this Docker desktop alternative?

https://www.empiricapps.com/zenithal/download
1•mburlac•21m ago•0 comments

Caroline affair – eventually influencing the development of international law

https://en.wikipedia.org/wiki/Caroline_affair
1•vinnyglennon•31m ago•0 comments

Show HN: WingNews – Htmx Hacker News Reader

https://news.wingman.actor/
1•ChaseRensberger•32m ago•0 comments

AI Doesn't Remember Yesterday. How to Design Team Memory for AI Workflows

https://github.com/htuzel/flalingo-mem-bridge
1•htuzel•32m ago•0 comments

Ask HN: Wish Linux tmpfs support compression option

1•gry_gh•32m ago•0 comments

Howard Abrams' Literate Programming with Org Mode [video]

https://www.youtube.com/watch?v=OUuz9-CtCwY
1•todsacerdoti•36m ago•0 comments

My SoC Analyst Writeup – Support by star, thanks guys

https://github.com/ogtamimi/SOC-Analyst-WriteUp-LetsDefend.io
1•ogtamimi•37m ago•0 comments

Create PDF Resume

https://createpdfresume.com/
1•tahirasadov•40m ago•0 comments

All of you doubted me, and said I was hallucinating on AI

https://ryanshamim.substack.com/p/the-inference-efficiency-paradox
1•anima-core•41m ago•1 comments

Tech titans vow to 'take back' California

https://nypost.com/2026/03/05/us-news/tech-titans-vow-to-take-back-california-from-lefties-call-o...
2•mudil•43m ago•0 comments

First Aptera Solar EV Rolls Off Validation Assembly Line

https://aptera.us/first-vehicle-off-validation-line/
1•TeaVMFan•44m ago•0 comments

Show HN: Yappy – A Python TUI to automate LinkedIn yapping

https://github.com/JienWeng/yappy
2•jienweng•1h ago•0 comments

Shut Up and Take My Money

https://lorendb.dev/posts/shut-up-and-take-my-money/
3•LorenDB•1h ago•0 comments

Spell UI

https://spell.sh/
2•handfuloflight•1h ago•0 comments

Show HN: Swarm – Program a colony of 200 ants using a custom assembly language

https://dev.moment.com/
14•armandhammer10•1h ago•3 comments

Show HN: Custom Search Engine on Safari and Spotlight (macOS)

https://knhash.in/custom-search-engine-on-safari-and-spotlight-macos/
3•knhash•1h ago•0 comments

Show HN: SafeAgent – exactly-once execution guard for AI agents

2•Lions2026•1h ago•0 comments

Enhanced brain cells clear away dementia-related proteins

https://medicalxpress.com/news/2026-03-brain-cells-dementia-proteins.html
6•WaitWaitWha•1h ago•0 comments

Google Patent: Sending Searchers to AI-Generated Pages over Your Site

https://www.seroundtable.com/google-patent-ai-generated-pages-search-41010.html
3•frays•1h ago•0 comments

System76 on Age Verification Laws

https://blog.system76.com/post/system76-on-age-verification/
5•LorenDB•1h ago•0 comments

A Technology for a Low-Trust Society

https://www.theatlantic.com/technology/2026/03/central-lie-prediction-markets/686250/
4•CaptainZapp•1h ago•0 comments

Tollund Man

https://en.wikipedia.org/wiki/Tollund_Man
2•thunderbong•1h ago•0 comments

Show HN: Steadwing – Your Autonomous On-Call Engineer

https://www.steadwing.com/
5•abejith•1h ago•0 comments

Show HN: Verak – Fake Seller Detection for Digital Marketplaces

https://www.verak.io/demo
1•Mikewillcodes•1h ago•0 comments

One Agent SDK – Embed Claude Code in Your App with Codex and Kimi

https://odysa.github.io/one-agent-sdk/
2•agentforce•1h ago•1 comments

Don't Call It 'Intelligence'

https://www.theatlantic.com/ideas/2026/03/intelligence-concept/686121/
2•petethomas•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•10mo ago

Comments

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