frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Window Chrome of Our Discontent

https://pxlnv.com/blog/window-chrome-of-our-discontent/
1•crbelaus•2m ago•0 comments

Ask HN: Do AI providers optimize for "A pelican riding a bike”?

1•kandros•2m ago•0 comments

Show HN: Starter-structure-CLI – scaffold apps from stack combinations

https://github.com/mohosin2126/starter-structure-cli
1•mrwick2126•3m ago•0 comments

ComicsAI

https://www.comicsai.org/en
2•liangmeihua93•5m ago•0 comments

Show HN: arxiv-digest: Daily robotics paper scouting for OpenClaw and Zotero

https://github.com/tb5z035i/arxiv-digest
1•tb5z035i•5m ago•0 comments

SSH-Based Mail for Agents

https://github.com/rolandnsharp/sshmail-client
2•epscylonb•6m ago•0 comments

Knuth Claude's Cycles note update: problem now fully solved, by LLMs

https://www-cs-faculty.stanford.edu/~knuth/papers/claude-cycles.pdf?#page=6
1•fs123•7m ago•1 comments

Programmers will document for Claude, but not for each other

https://blog.plover.com/2026/03/09/
1•frizlab•8m ago•0 comments

Emit Emails – Personalized email sending without the fluff

1•AlphaTheGoat•8m ago•0 comments

AI Crash the Physics of the Collapse [video]

https://www.youtube.com/watch?v=PZ0sS41zwo4
1•CrzyLngPwd•10m ago•1 comments

3AM Coding:cracking persistent open-source memory for agents

https://github.com/aayoawoyemi/Ori-Mnemos
1•starro____•10m ago•0 comments

Crow Watch: A Hacker News Alternative

https://crow.watch
1•medv•13m ago•0 comments

Analysis of Ninth Circuit Allows TOS Amendment by Email–Ireland-Gordy vs. Tile

https://blog.ericgoldman.org/archives/2026/03/ninth-circuit-allows-tos-amendment-by-email-ireland...
1•hazzamanic•15m ago•0 comments

Terence Tao: Formalizing a proof in Lean using Claude Code [video]

https://www.youtube.com/watch?v=JHEO7cplfk8
1•helloplanets•15m ago•0 comments

Apple: The first 50 years, CBS Sunday Morning [video]

https://www.youtube.com/watch?v=7bA2w7uwUbs
1•oldnetguy•20m ago•0 comments

NSF National Deep Inference Fabric

https://ndif.us/
1•pramodbiligiri•21m ago•0 comments

CorridorKey – Perfect Green Screen Keys

https://github.com/nikopueringer/CorridorKey
1•h4kor•25m ago•0 comments

Shockwave Player Reimplemented in Rust and WASM

https://github.com/igorlira/dirplayer-rs
2•njaremko•27m ago•0 comments

How to win slots and influence people

https://www.bloomberg.com/features/2026-stake-drake-crypto-casino-adin-ross-gambling/
3•simonebrunozzi•29m ago•0 comments

Ask HN: Where do all the laid off devs hang out?

2•fud101•32m ago•0 comments

Set-OutlookSignatures v4.26.0 support for M365 sovereign clouds

https://set-outlooksignatures.com/
1•explicitcons•33m ago•1 comments

Show HN: TrustScan – Simplify privacy policies and audit GDPR compliance

https://trustscan.dev
1•hafizjavid•35m ago•1 comments

Every business will have AGI by 2027

https://nuggetz.ai/articles/every-business-will-have-agi-by-2027
4•ezisezisezis•37m ago•0 comments

Show HN: Marketing Content Generator AI-powered multi-channel content platform

https://devpost.com/software/marketing-content-generator-ch4p2q
3•gaborishka•38m ago•0 comments

Show HN: I built a mini PowerBI for tech comps with no dev experience with Codex

https://gotham-web.onrender.com/
1•muhneesh•40m ago•0 comments

Fontcrafter: Turn Your Handwriting into a Real Font

https://arcade.pirillo.com/fontcrafter.html
1•rendx•42m ago•0 comments

Show HN: cursor-tg – Run Cursor Cloud Agents from Telegram

https://github.com/tb5z035i/cursor-tg
1•tb5z035i•44m ago•0 comments

MoltBrowser MCP

https://github.com/Joakim-Sael/moltbrowser-mcp
2•geobotPY•45m ago•1 comments

Show HN: FretBench – I tested 14 LLMs on reading guitar tabs. Most failed

https://fretbench.tymo.ai/blog/i-asked-14-ai-models-to-read-guitar-tabs/
1•jmcapra•45m ago•0 comments

Show HN: NirvaCrop – Offline Python tool for batch video cropping

https://nirvasoft.gumroad.com/l/ffdoc
1•Ashwiniakash•46m 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•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!