frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Shipping containerization, born at Port Newark, marks 70 years

https://www.ajot.com/news/shipping-containerization-born-at-port-newark-marks-70-years
2•Tomte•1m ago•0 comments

If Apple makes an iPad Neo, it's all over

https://www.techadvisor.com/article/3128472/if-apple-makes-an-ipad-neo-its-all-over.html
1•ndr42•3m ago•0 comments

VPNs and Residential Proxies Are Used in Abuse

https://ipinfo.io/blog/vpns-residential-proxies-abuse-findings-rsac-2026
1•speckx•3m ago•0 comments

Terminal AI Coding Agents Comparison Table

https://terminaltrove.com/compare/ai-coding-agents/
1•pelcg•5m ago•0 comments

What we learned at YC's AI alumni event: running AI-native companies

https://antonyevans.com/blog/engineering/c068-coo-job-is-building-ai-operating-system/
1•technotony•6m ago•0 comments

The Human Creativity Benchmark – Evaluating Generative AI in Creative Work

https://contralabs.com/research/human-creativity-benchmark
1•0bytematt•7m ago•0 comments

ReadBetweenTheWalls – AI Jargon Translator

https://www.readbetweenthewalls.com
1•creatorcuffee•8m ago•0 comments

When the Partnership Breaks, So Does the Company: The Jawbone Story

https://joshcarterpdx.substack.com/p/when-the-partnership-breaks-so-does
1•josh_carterPDX•8m ago•0 comments

Pedometer++ 8.0 Brings a Redesigned Apple Watch App

https://pedometer.app/blog/v8-new-watch-app
1•Amorymeltzer•10m ago•0 comments

Public content is the most average content

https://markferraz.com/perspective#essay-009
1•markferraz•10m ago•0 comments

Illegal cars on Market Street surge after Mayor Lurie welcomes Waymo

https://www.sfgate.com/local/article/cars-market-street-22234601.php
2•mikhael•12m ago•0 comments

AI Infrastructure–Not Models–Will Define the Next Decade of AI

https://alltechmagazine.com/ai-infrastructure-crisis-slowing-down-ai-progress/
1•dekhna•12m ago•0 comments

Haskell: Debugging

https://wiki.haskell.org/Debugging
3•tosh•14m ago•0 comments

UK votes to leave EU (2016)

https://www.bbc.com/news/uk-politics-36615028
1•downbad_•17m ago•2 comments

Reverse-Engineering Kasada in an Afternoon

https://www.kernel.sh/blog/detection
1•gguergabo•17m ago•0 comments

Under the canopy of drone nets covering Ukraine's frontlines

https://www.reuters.com/pictures/under-canopy-drone-nets-covering-ukraines-frontlines-2026-04-29
2•bryan0•17m ago•0 comments

The LLM Is Not a Junior Engineer

https://jacobharr.is/personal/llm-not-junior-engineer
3•speckx•18m ago•0 comments

Ekala's Nix Book

https://ekala-project.github.io/nix-book/
2•Meleagris•18m ago•0 comments

Elon Musk Seemingly Admits xAI Has Used OpenAI's Models to Train Its Own

https://www.wired.com/story/elon-musk-distill-openai-models-partly-xai/
3•louiereederson•21m ago•0 comments

Yrkit: A dev environment that runs on your phone – deploy included

https://yrkit.com
1•mwtheus•22m ago•1 comments

Building the compute infrastructure for the Intelligence Age

https://openai.com/index/building-the-compute-infrastructure-for-the-intelligence-age/
2•aghuang•23m ago•0 comments

Albert: A model-agnostic AI coding CLI with provider fallback

https://github.com/eriirfos-eng/ternary-intelligence-stack/tree/main/agent_albert_cli
1•rfi-irfos•23m ago•0 comments

GitHub Copilot silently inserts itself as a co-author

https://github.com/orgs/community/discussions/194075
5•krikou•24m ago•1 comments

GPT-5.5 is the second model to complete AISI multi-step cyber-attack simulation

https://twitter.com/AISecurityInst/status/2049868227740565890
3•SyneRyder•25m ago•1 comments

Full-Text Search with DuckDB

https://peterdohertys.website/blog-posts/full-text-search-w-duckdb.html
2•ethagnawl•25m ago•0 comments

Benchmarking Local LLM/Harness Combinations

https://neuralnoise.com///2026/harness-bench-wip/
1•pminervini•28m ago•0 comments

Cyborg Evals

https://www.lesswrong.com/posts/zctBgvzxamFThgc3T/cyborg-evals
2•frmsaul•28m ago•1 comments

LinuxOnTab: Real Linux. In a browser tab.

https://linuxontab.com/
2•kilian-ai•29m ago•0 comments

The Evolution of Open Source with Kelsey Hightower [video]

https://www.youtube.com/watch?v=a5-zTLJprpU
2•mooreds•30m ago•0 comments

Anthropic wants to be the AWS of agentic AI

https://thenewstack.io/anthropic-agents-managed-aws-claude/
2•Brajeshwar•30m 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•12mo ago

Comments

MaximosMK•12mo 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!