frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why are some people mosquito magnets? Clues are emerging

https://phys.org/news/2026-05-people-mosquito-magnets-clues-emerging.html
1•jnord•25s ago•0 comments

Show HN: I made a screen recording app to make demos like an Apple commercial

https://shotglass.app
4•jakemanger•3m ago•0 comments

Satteri – High-Performance Markdown and MDX Processing for the JavaScript

https://github.com/bruits/satteri
2•todotask2•3m ago•0 comments

GitHub Launchpad Proposal

https://github.com/liamromanis101/Github_Strategic_Proposal-2026
2•lromanis•5m ago•0 comments

FaceTime Without the Internet [video]

https://www.youtube.com/watch?v=0b1XL91-q48
2•marklit•6m ago•0 comments

OpenAI, Microsoft and Friends Build a Better, More Scalable Ethernet

https://www.nextplatform.com/connect/2026/05/12/openai-microsoft-and-friends-build-a-better-more-...
3•rbanffy•8m ago•0 comments

Cuckooland – Tom Burgis on the abuse of power and influence (2024)

https://www.ft.com/content/b82c15dd-0c63-4657-a2e7-488ce30b8afc
3•robtherobber•11m ago•0 comments

Google's Android-powered laptops are called Googlebooks, and coming this year

https://arstechnica.com/gadgets/2026/05/googles-android-powered-laptops-are-called-googlebooks-an...
3•rbanffy•12m ago•0 comments

Hysteria: A QUIC-Based Proxy Designed to Resist Censorship

https://github.com/apernet/hysteria
4•steveharing1•14m ago•0 comments

Bun is being ported to Rust using Claude. Here's a code review using GPT

https://github.com/Swival/security-audits/blob/main/bun-rust/README.md
2•jedisct1•16m ago•0 comments

Alien

https://typesetinthefuture.com/2014/12/01/alien/
3•tosh•16m ago•0 comments

AllSkyKamera: A Citizen-Science Network for Global Night Sky Monitoring

https://allskykamera.space/index.php?lang=en
3•ptrsrtp•17m ago•0 comments

Show HN: Recursant, a mesh-based control plane for AI agents

https://github.com/ajensenwaud/recursant
2•hestefisk•20m ago•0 comments

OpenCL 3.1

https://www.khronos.org/blog/opencl-3.1-is-here
3•tosh•22m ago•0 comments

Valve snuck a Wilhelm scream Easter egg into the new Steam Controller [video]

https://www.youtube.com/watch?v=tw5Luf_7F8c
2•HelloUsername•24m ago•0 comments

Terence Tao: New mathematical workflows [video]

https://www.youtube.com/watch?v=Uc2zt198U_U
1•energy123•27m ago•0 comments

Codex Computer Use

https://developers.openai.com/codex/app/computer-use
1•tr33house•28m ago•1 comments

AluminiumOS, by Google: Android Reimagined for the Desktop

https://aluminium-os.com/
9•brysonreece•32m ago•14 comments

Urlsify.com Made This Free to Use URL Shortener with Indepth Analytics

https://old.reddit.com/r/sideprojects/comments/1tabelm/finished_making_this_url_shortener_complet...
1•godlymod•33m ago•0 comments

Hantavirus Map

https://hantavirusmap.net/
1•leonvonblut•37m ago•0 comments

Wrote this for humans, now I use it as a prompt

https://x-x.codes/posts/supplementary-guide-to-code-reviews
1•alex_x•38m ago•1 comments

Sick of Ads on Free QR Generator

https://miqr.mx/
1•rubiocanino•39m ago•2 comments

Genera OS

https://wiki.c2.com/?GeneraOs
2•tosh•41m ago•0 comments

Leak reveals Google's Aluminium OS with a 16-minute video

https://www.androidauthority.com/google-aluminium-os-leak-3665979/
4•thunderbong•41m ago•0 comments

The Role of HubSpot in Driving Successful CRM Adoption in Africa

https://amdan.pro/the-role-of-hubspot-in-driving-successful-crm-adoption-in-africa/
1•amdanmerit•43m ago•0 comments

Tep: A Sinatra-flavoured framework that compiles to a native binary via Spinel

https://github.com/oripekelman/tep
1•futurecat•46m ago•0 comments

Show HN: Design posters showcasing your country's electrical grid

https://github.com/open-energy-transition/grid2poster
1•lyoncy•51m ago•0 comments

European governments: 3.000 tracking sites, 1.000 phpMyAdmins, and 99% poorly

https://internetcleanup.foundation/2026/05/european-governments-3000-tracking-sites-1000-phpmyadm...
37•aequitas•55m ago•5 comments

A Brazilian Space Launch System for the Small Satellite Market

https://www.mdpi.com/2226-4310/6/11/123
1•rbanffy•56m ago•0 comments

Freelang, a small AOT language where the compiler is just JavaScript

https://github.com/DO-SAY-GO/freelang
2•keepamovin•56m 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!