frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Turn every process into a personal task link

https://www.taskslink.com/
1•mox-1•36s ago•0 comments

Ukraine survives another crisis with Donald Trump

https://www.economist.com/europe/2025/11/23/ukraine-survives-another-crisis-with-donald-trump
1•tromp•1m ago•1 comments

Chrome Jpegxl Issue Reopened

https://issues.chromium.org/issues/40168998
2•markdog12•2m ago•1 comments

Jimmy Cliff RIP

https://www.bbc.com/news/articles/cj4qdren425o
1•HR01•3m ago•0 comments

Pixeli: A CLI Tool for Creating Beautiful Image Grids and Mosaics

https://www.npmjs.com/package/pixeli
1•zephyrrd•3m ago•1 comments

Claude Agent Skills: A First Principles Deep Dive

https://leehanchung.github.io/blogs/2025/10/26/claude-skills-deep-dive/
1•0x79de•5m ago•0 comments

SHA1-Hulud – The Second Coming: Over 1k NPM Packages Compromised

https://www.koi.ai/incident/live-updates-sha1-hulud-the-second-coming-hundred-npm-packages-compro...
2•amitassaraf•7m ago•0 comments

Show HN: Text to SVG Path Online – Free SVG Converter for Fonts

https://texttosvg.app/
1•light001•8m ago•1 comments

Novo's Ozempic Pill Fails to Slow Alzheimer's in Large Trials

https://www.bloomberg.com/news/articles/2025-11-24/novo-s-ozempic-pill-fails-to-slow-alzheimer-s-...
1•beejiu•8m ago•0 comments

How to Engineer Reliable Systems on Top of Unpredictable LLMs

https://pub.towardsai.net/uncertainty-architecture-a-modern-approach-to-designing-llm-application...
1•oddish-tv•10m ago•2 comments

ChainWriter: The AI Ecosystem

https://github.com/Lance-517/ChainWriter-Framework
1•lance_xiang•11m ago•1 comments

Show HN: WireMD – Design Wireframes in Markdown

https://wiremd.dev/
2•akonan•11m ago•0 comments

The Benefits of Bubbles

https://stratechery.com/2025/the-benefits-of-bubbles/
1•fauria•12m ago•0 comments

Is Dodo Payments Good?

https://dodopayments.com/
1•banye•12m ago•1 comments

How to Install WordPress on Cpanel Hosting Real Demo [video]

https://www.youtube.com/watch?v=EDpPTOHAyo8
1•techwrath11•13m ago•0 comments

Apple DeviceCheck server implementation on Cloudflare Workers

https://github.com/willswire/checkd
2•willswire•13m ago•0 comments

News Integrity in AI Assistants [pdf]

https://www.ebu.ch/Report/MIS-BBC/NI_AI_2025.pdf
1•doener•16m ago•0 comments

Exploring in Detail Apple Compliance with EU DMA Mandate to Sync Wi-Fi Networks

https://daringfireball.net/2025/11/apple_eu_dma_iphone_accessories_wi-fi_sync
1•Terretta•16m ago•0 comments

Science-centric streaming service Curiosity Stream is an AI-licensing firm now

https://arstechnica.com/gadgets/2025/11/curiosity-stream-expects-to-make-most-of-its-money-from-a...
1•jbonniwell•16m ago•0 comments

Borgo: A statically typed language that compiles to Go

https://github.com/borgo-lang/borgo
2•thunderbong•18m ago•0 comments

Adding weight to drag and drop to macOS Finder (2024)

https://www.pbt.dev/blog/dragula/
1•wonger_•19m ago•0 comments

Spatial hashing for raytraced ambient occlusion

https://interplayoflight.wordpress.com/2025/11/23/spatial-hashing-for-raytraced-ambient-occlusion/
1•ibobev•20m ago•0 comments

Detonator (railway)

https://en.wikipedia.org/wiki/Detonator_(railway)
1•precommunicator•20m ago•0 comments

A beautiful and simple UI to manage your WireGuard peers and interfaces

https://wgportal.org/v2.1.1/
2•dizhn•21m ago•1 comments

Show HN: I built an LLM powered receptionist for website chats

https://receptionst.com/
5•teemingdev•23m ago•1 comments

'My Body Is My Passport; Verify Me': Fido Auth via Subdermal JavaCard Platform

https://jacksbrain.com/2025/11/my-body-is-my-passport-verify-me-fido-auth-via-subdermal-javacard-...
1•jkingsman•23m ago•0 comments

Nine risks caused by AI notetakers

https://www.careful.industries/blog/2025-11-nine-risks-caused-by-ai-notetakers
1•adrianhoward•23m ago•0 comments

Show HN: DIY Datalogger for Formula Student

https://v2.monolith.luftaquila.io/docs/
1•luftaquila•24m ago•0 comments

NSA and IETF, part 3: Dodging the issues at hand

https://blog.cr.yp.to/20251123-dodging.html
2•upofadown•24m ago•0 comments

Ask HN: Photos corrupted on Google Pixel phones over time?

2•poolnoodle•27m 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•6mo ago

Comments

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