frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MCP-safeguard: open-source security scanner for MCP servers

https://github.com/SyedAnas01/mcp-safeguard
1•Anas1371•1m ago•0 comments

Slow Surveys Are Dead: Terapage CEO on Why Experts Are Moving to Synthetic Data

https://zenodo.org/records/20315637
1•anasteciadunu•2m ago•0 comments

Ask HN: What would you expect from an app launcher as a developer?

1•icauroboros•3m ago•0 comments

Django 6.1 alpha 1 released

https://www.djangoproject.com/weblog/2026/may/20/django-61-alpha-1-released/
1•collinmanderson•4m ago•1 comments

Introducing RoughDraft – Easier collaboration with your agent

https://www.roughdraft.md/
1•rmason•5m ago•0 comments

Waw an Namus: Libya's Black Oasis [video]

https://www.youtube.com/watch?v=2iH5J2jz-ZY
1•vinnyglennon•5m ago•0 comments

TargetBridge: Use an iMac as Display for a Modern Mac

https://github.com/swellweb/targetBridge
1•ThomasWaldmann•10m ago•2 comments

16 days, 4 channels, no AWS Bedrock quota fix

https://ziva.sh/blogs/no-aws-bedrock-quota-fix
2•OsrsNeedsf2P•11m ago•1 comments

Dear Google Cloud: Your Deprecation Policy Is Killing You (2020)

https://steve-yegge.medium.com/dear-google-cloud-your-deprecation-policy-is-killing-you-ee7525dc05dc
2•gwerbret•13m ago•0 comments

UK radio station apologises for accidentally announcing king's death

https://www.theguardian.com/tv-and-radio/2026/may/20/uk-radio-station-apologises-for-accidentally...
2•vinni2•14m ago•1 comments

OpenAI co-founder Andrej Karpathy joins Anthropic

https://techcrunch.com/2026/05/19/openai-co-founder-andrej-karpathy-joins-anthropics-pre-training...
1•nelsonmarcos•17m ago•0 comments

RegCalc – browser calculator for MCU register math (UART, PLL, timers)

https://regcalc.vercel.app/
1•jedinaj•17m ago•0 comments

AI should feel like a keyboard shortcut, not a website

https://wheelly.ai/
1•vasekj•21m ago•0 comments

Not alive, but not dead: disembodied human brains used for drug testing

https://www.science.org/content/article/not-alive-not-dead-disembodied-human-brains-used-drug-tes...
3•Timofeibu•21m ago•1 comments

San Francisco turns to AI to save whales from ship strikes as deaths soar

https://www.theguardian.com/environment/2026/may/20/san-francisco-bay-ai-whales
3•jethronethro•22m ago•0 comments

Show HN: I built Istanbul live transit map

https://tarif.ist/
1•berkaycubuk•23m ago•0 comments

AI atlas reveals hidden whole-body-damage caused by obesity

https://medicalxpress.com/news/2026-05-ai-atlas-reveals-hidden-body.html
1•SVI•25m ago•0 comments

Beam on Mobile: Mob

https://genericjam.com/blog/mob-intro
2•minton•26m ago•0 comments

Private, advance operational testing under select regional franchise environment

https://app.qwoted.com/press_releases/new-frameworks-target-cloud-latency-as-mid-market-testing-b...
2•krish678•26m ago•0 comments

Why execution observability matters for EVM systems

https://blog.bridgexapi.io/why-execution-observability-becomes-critical-after-a-transaction-succeeds
2•Bridgexapi•26m ago•0 comments

Gemini 3.5 deleted 28,745 lines, broke production, and wrote a fake post-mortem

https://www.reddit.com/r/Bard/s/ZVAxv5ezdP
1•Michelangelo11•27m ago•0 comments

OpenSSF's CRob: 'The Runway Is Rapidly Running Out' on EU CRA Readiness

https://devops.com/openssfs-crob-the-runway-is-rapidly-running-out-on-eu-cra-readiness/
1•CrankyBear•28m ago•0 comments

Fork your dependencies

https://twitter.com/mitchellh/status/2057171518027887035
3•tosh•28m ago•0 comments

Training SID-1 to beat GPT-5 at search with 1k+ QPS RL

https://turbopuffer.com/blog/reinforcement-learning-sid-ai
5•maxrumpf•28m ago•0 comments

Why a healthy breath is a piece of engineering we don't appreciate

https://shiihaa.app/blog/it-breathes-i-breathe/
1•shiihaa•29m ago•0 comments

Hot-Potato Routing

https://www.rand.org/pubs/research_memoranda/RM3103.html
2•ustad•29m ago•0 comments

DiffsHub, from Pierre

https://diffshub.com/
1•bpierre•30m ago•0 comments

Los Angeles Tried to Tax Mansions. Apartment Construction Tanked

https://www.wsj.com/economy/housing/los-angeles-tried-to-tax-mansions-apartment-construction-tank...
4•JumpCrisscross•32m ago•0 comments

Stack Overflow: When We Stop Asking

https://css-tricks.com/stack-overflow-when-we-stop-asking/
2•soheilpro•36m ago•0 comments

A Guide to Keyboard Customization

https://aresluna.org/key-in-sight/
1•ramimac•38m 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!