frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

PGH Transit Atlas

https://rzrizaldy.github.io/pgh-transit-atlas/
1•altilunium•39s ago•0 comments

A Practical Framework for Measuring Impact of AI Coding Assistants

https://www.oobeya.io/blog/ai-measurement-framework
1•emredu•1m ago•0 comments

Show HN: I built the literal Duolingo Killer

https://kanjieight.vercel.app/
1•Mikecraft•4m ago•0 comments

Google Leapfrogged Rivals with New Gemini Rollout

https://www.wsj.com/tech/ai/google-gemini-3-ai-behind-scenes-e1787729
1•tzury•6m ago•0 comments

Vdu_controls – a DDC control panel for monitors

https://github.com/digitaltrails/vdu_controls
1•anewhnaccount2•6m ago•0 comments

NSan: A Floating-Point Numerical Sanitizer

https://arxiv.org/abs/2102.12782
1•anewhnaccount2•6m ago•0 comments

Aussies sell their tech company to US giant for $5B

https://www.afr.com/technology/aussies-sell-their-tech-company-to-us-giant-for-5b-20251124-p5nhv7
1•iamtech•6m ago•0 comments

Unu.ran – Universal Non-Uniform RANdom Number Generators

https://statmath.wu.ac.at/unuran/doc/unuran.html
1•anewhnaccount2•7m ago•0 comments

Introvert – The AI Dating Co-Pilot Launches on Geyser Fund Today

https://geyser.fund/project/introvert
1•shegby•8m ago•1 comments

Michael Burry's Substack

https://michaeljburry.substack.com/
1•mihau•10m ago•0 comments

Jony Ive and Sam Altman say they have an AI hardware prototype

https://www.theverge.com/news/827607/openai-hardware-prototype-chatgpt-jony-ive-sam-altman
1•signa11•11m ago•0 comments

The Mediating Role of Working Memory in ADHD Inattention: A Classroom Study

https://link.springer.com/article/10.1007/s10802-017-0338-x
1•teekert•12m ago•0 comments

Interview with Jan David Nose

https://blog.rust-lang.org/2025/11/25/interview-with-jan-david-nose/
1•quapster•14m ago•0 comments

Architecture no longer considered a "professional degree" in US

https://www.dezeen.com/2025/11/24/architecture-degree-not-professional-usa/
1•Hard_Space•17m ago•1 comments

A Cell So Minimal That It Challenges Definitions of Life

https://www.quantamagazine.org/a-cell-so-minimal-that-it-challenges-definitions-of-life-20251124/
1•isaacfrond•17m ago•0 comments

Talk in Character: simple AI chats with fixed or custom personas

https://www.talkincharacter.com/
1•Nukloop•18m ago•0 comments

Show HN: BreakToGoal – A planner calendar that break big goals into tasks

https://breaktogoal.com
1•jtnt101•19m ago•0 comments

Quick tutorial to get started on Org Social

https://en.andros.dev/blog/ddd78757/quick-tutorial-to-get-started-on-org-social/
1•andros•21m ago•0 comments

Meta knows how bad its sites are for kids, say lawyers

https://www.theregister.com/2025/11/24/meta_sites_kids/
1•beardyw•28m ago•0 comments

Jony Ive and Sam Altman Discuss AI Device

https://www.macrumors.com/2025/11/24/jony-ive-sam-altman-ai-device-2/
1•tosh•29m ago•0 comments

Show HN: Colonet – Anonymous forum, no sign-up needed

https://colonet.revantoa.workers.dev
1•mvphauto•31m ago•0 comments

Justice Department to Settle Lawsuit over Apartment Rental Pricing

https://www.wsj.com/business/justice-department-to-settle-lawsuit-over-apartment-rental-pricing-1...
1•apparent•31m ago•0 comments

Shadow Libraries

https://monoskop.org/Shadow_libraries
1•robtherobber•31m ago•0 comments

Norway's lesson on wealth taxes: let some millionaires go

https://www.reuters.com/business/norways-wealth-tax-trades-millionaires-equality-2025-11-24/
5•saubeidl•33m ago•0 comments

Russia's Hydrocarbon Revenue Crisis and the Mathematics of State Exhaustion

https://shanakaanslemperera.substack.com/p/the-thermodynamics-of-imperial-collapse
1•jnord•33m ago•0 comments

Local LLMs are how nerds now justify a big computer they don't need

https://world.hey.com/dhh/local-llms-are-how-nerds-now-justify-a-big-computer-they-don-t-need-af2...
3•4dm1r4lg3n3r4l•34m ago•0 comments

NeuroCode – a structural IR engine for code (Infra for AI)

https://github.com/gabrielekarra/neurocode
1•gabrielekarra•35m ago•0 comments

Launching the Genesis Mission

https://www.whitehouse.gov/presidential-actions/2025/11/launching-the-genesis-mission/
2•jonbaer•37m ago•0 comments

What's next for AlphaFold: A conversation with a Google DeepMind Nobel laureate

https://www.technologyreview.com/2025/11/24/1128322/whats-next-for-alphafold-a-conversation-with-...
1•rbanffy•38m ago•0 comments

Reducing MCP token usage by 100x – you don't need code mode

https://www.speakeasy.com/blog/how-we-reduced-token-usage-by-100x-dynamic-toolsets-v2
1•subomi•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•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!