frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Do you really want that computer-science degree?

https://www.economist.com/graphic-detail/2026/06/01/do-you-really-want-that-computer-science-degree
1•pseudolus•25s ago•1 comments

Inference Optimization for MiniMax Sparse Attention

https://www.together.ai/blog/serving-minimax-m3-for-efficient-inference-unlocking-1m-token-contex...
1•zagwdt•41s ago•0 comments

Why We've Been Thinking about the Fertility Crisis Wrong

https://www.richardhanania.com/p/why-weve-been-thinking-about-the
1•paulpauper•1m ago•0 comments

A Mathematician's Lament – Paul Lockhart (2002) [pdf]

https://worrydream.com/refs/Lockhart_2002_-_A_Mathematician%27s_Lament.pdf
1•xeonmc•2m ago•0 comments

Bend the beam like Beckham to defeat anti-jamming tech

https://www.theregister.com/networks/2026/06/03/curving-beams-could-fool-anti-jamming-tech/5250872
1•Bender•3m ago•0 comments

Google's new Gemma 4 12B model is designed to run on any laptop with 16GB of RAM

https://arstechnica.com/google/2026/06/googles-new-gemma-4-open-ai-model-is-sized-for-your-laptop/
1•Bender•4m ago•0 comments

Dashlane issues opaque advisory warning 20 encrypted vaults were stolen

https://arstechnica.com/security/2026/06/dashlane-issues-opaque-advisory-warning-20-encrypted-vau...
1•Bender•4m ago•0 comments

Sir Alex Younger has died

https://www.bbc.com/news/articles/cwy201wge44o
1•x86a•5m ago•0 comments

The American AI Sovereign Wealth Fund Act [video]

https://www.youtube.com/watch?v=VN4b4UCWMKI
1•simonpure•9m ago•0 comments

Genie that ate the Internet, hidden masters and fifty-year-old weakness

https://w00t.rs/blog/genie/
1•DistressedKiwi•9m ago•0 comments

SpaceX wins Texas tax breaks for chip project, ahead of record IPO

https://www.reuters.com/business/media-telecom/spacex-wins-texas-county-approval-reinvestment-zon...
5•lschueller•11m ago•0 comments

Splash Is a Colour Format

https://www.todepond.com/lab/splash/
1•tobr•12m ago•0 comments

Gemini Spark is the most impressive and terrifying AI experience I've had yet

https://www.theverge.com/ai-artificial-intelligence/941388/gemini-spark-ai-agent-trip-planning
3•haldean•14m ago•0 comments

Banned Russian Submunitions Found After Mali's Military Announces Airstrikes

https://www.bellingcat.com/news/africa/2026/05/26/banned-russian-submunitions-found-after-malis-m...
2•lschueller•14m ago•0 comments

Microsoft Scout: Your always-on personal agent

https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/02/introducing-microsoft-scout-your-al...
1•brianmcnulty•15m ago•1 comments

Naively Summing an Alternating Series

https://www.johndcook.com/blog/2026/06/03/naive-sum/
1•SVI•15m ago•0 comments

Commodore Can't Survive Solely on Nostalgia

https://www.timeextension.com/news/2026/06/commodore-cant-survive-solely-on-nostalgia-c64-ultimat...
1•GTP•17m ago•0 comments

Bernie Sanders introduces bill giving the public a 50% stake in top AI companies

https://finance.yahoo.com/economy/policy/articles/bernie-sanders-introduce-bill-giving-135431485....
2•rmason•18m ago•1 comments

A New Path Forward for Session

https://getsession.org/
1•Cider9986•18m ago•1 comments

Why Vector Search Alone Isn't Enough: Hybrid Retrieval for RAG

https://www.infoq.com/articles/vector-search-hybrid-retrieval-rag/
1•aadityachauhan1•19m ago•0 comments

Scaling Past Informal AI – Carina Hong, Axiom Math

https://www.latent.space/p/axiom
1•SVI•19m ago•0 comments

Laid off. Broke. Depressed. & idk how to market my SaaS

2•touseefbuilds•20m ago•6 comments

Grand Theft Auto V cheat service gets hacked, exposing gamers

https://techcrunch.com/2026/06/01/grand-theft-auto-v-cheat-service-gets-hacked-exposing-thousands...
1•Cider9986•20m ago•0 comments

WebKit position stated as opposed to WebMCP

https://github.com/WebKit/standards-positions/issues/670
1•msub2•21m ago•0 comments

synergy

https://symless.com/synergy
1•gjvc•24m ago•0 comments

The Agentic Test Pyramid

https://matthewboston.com/blog/the-agentic-test-pyramid.html
1•bostonaholic•24m ago•0 comments

Show HN: TurboPrefill – Multi-GPU prefill acceleration for llama.cpp

https://github.com/sergey-automation/TurboPrefill
1•trykhlieb•24m ago•0 comments

Only 18% of AI engineering spend reaches shipped product

https://research.entelligence.ai/
1•Entelligence25•24m ago•0 comments

Show HN: GPX Flight Replays

https://joseflys.com/replay
2•jfroma•25m ago•0 comments

Red Hat hit by NPM supply‑chain attack: Here's how to be safe

https://www.zdnet.com/article/red-hat-hit-by-npm-supply-chain-attack-how-to-stay-safe/
1•CrankyBear•26m 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!