frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What are you working on(2026)?

1•adithyaharish•1m ago•0 comments

Mario Kart Wii recompiled for PC using AI, with 4K potential and uncapped FPS

https://www.tomshardware.com/video-games/retro-gaming/mario-kart-wii-recompiled-for-pc-using-ai-w...
1•gloxkiqcza•6m ago•0 comments

Is the AI Boom over for Kospi and Asian Tech Stocks?

https://www.disruptionbanking.com/2026/07/17/is-the-ai-boom-over-for-kospi-and-asian-tech-stocks/
1•technewssss•6m ago•0 comments

Time-Series Language Models for Reasoning over Multivariate Data at Scale (ICML)

https://www.aioniclabs.ai/research/opentslm
5•rjakob•8m ago•3 comments

Company Blew $500M on Claude Because Nobody Set a Spending Limit

https://mrkt30.com/company-blew-500m-on-claude-because-nobody-set-a-spending-limit/
1•technewssss•8m ago•0 comments

The Self-Driving Company

https://twitter.com/amasad/status/2077802290304684404
1•tosh•9m ago•0 comments

How OpenAI's Sol Learned Design Taste

https://notes.designarena.ai/how-openais-sol-finally-learned-design-taste/
1•tomduncalf•10m ago•1 comments

Turn an existing CV into a personal website in under a minute

https://self.cv/en/blog/why-we-built-self
1•javier_yc_new•13m ago•1 comments

AI can now control Reaper DAW

https://github.com/xDarkzx/Reaper-MCP/tree/main/reaper_mcp/tools
2•DanHodgetts•17m ago•1 comments

Show HN: Senbonzakura – remove the safety guardrails from open AI models

https://github.com/elementmerc/senbonzakura
2•ElementMerc•17m ago•0 comments

M-PESA cornered the market in Kenya (2024)

https://www.wbs.ac.uk/news/how-mpesa-cornered-the-market/
2•zeristor•18m ago•0 comments

Using AI to build your own software

https://lemire.me/blog/2026/07/16/using-ai-to-build-your-own-software/
1•ingve•19m ago•0 comments

Show HN: I applied for a position at PostHog, so I built a game

https://www.alexis-fournier.com/hognarok/
1•alxfrnr•20m ago•0 comments

Principia Artificialis Open mathematical research program onthe theory of AI

https://github.com/holland202/Principia-Artificialis
1•badatchess•20m ago•0 comments

SpaceX scrubs Starship launch after some of its engines didn't start

https://arstechnica.com/space/2026/07/spacex-scrubs-starship-launch-after-some-of-its-engines-did...
3•rbanffy•25m ago•0 comments

Tell HN: AWS said I was projected to spend $5B this month on my personal account

2•throwaway_5753•27m ago•0 comments

Which IELTS writing scorer is more accurate? A test on 73 official responses

https://ieltswritingchecker.org/blog/ielts-writing-checker-accuracy-study
1•iamin•28m ago•0 comments

AxiomProver at IMO 2026 (perfect score)

https://github.com/AxiomMath/IMO2026
1•chaoxu•29m ago•0 comments

Compliant-Mechanism Mattress for Preventing Pressure Ulcers – First Prototype [video]

https://www.youtube.com/watch?v=KfIB_e_6rzY&list=PLWeErkRyxkhJLAOiogjiNLPDU5KPlRVwm
1•o4c•31m ago•0 comments

Representations of Power and Rarity (2026)

https://icely.neocities.org/articles/representations-of-power-and-rarity
1•icely•31m ago•0 comments

Show HN: Monocoque – ZMTP 3.1 (ZeroMQ) messaging library in pure Rust

https://github.com/vorjdux/monocoque
1•vorjdux•33m ago•0 comments

Show HN: Prompts for Self-Help

https://plastithink.com/
1•andsko•34m ago•0 comments

Nvidia Showcases Japanese AI Development Built on Nemotron Models

https://www.hpcwire.com/off-the-wire/nvidia-showcases-japanese-ai-development-built-on-nemotron-m...
1•rbanffy•35m ago•0 comments

End of Line: Replacing MCP with Standard Filesystem Tools

https://www.sicpers.info/2026/07/end-of-line-replacing-mcp-with-standard-filesystem-tools/
1•ingve•35m ago•0 comments

New Viking music Odin´s eye

https://open.spotify.com/track/5HvBJ2KBGetjlIeMJiJq8b
1•mrhappypappy•36m ago•1 comments

Porous material harvests water from the air and enable energy-efficient cooling

https://www.uni-kiel.de/en/university/details/news/kieler-material-gewinnt-trinkwasser-aus-luft-u...
1•geox•37m ago•0 comments

I Owe My Life to the Commodore 64

https://www.goto10retro.com/p/i-owe-my-life-to-the-commodore-64
5•ingve•38m ago•0 comments

AWS: Inaccurate Estimated Billing Data - $1.7 BILLION

7•nprateem•41m ago•10 comments

Ask HN: What are your plans for the Future?

3•aneesharasannan•41m ago•2 comments

AWS Investigating Inaccurate Billing Data

https://twitter.com/AWSSupport/status/2078037531036172430
8•andystanton•41m ago•6 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!