HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kstonekuan

no profile record

Submissions

Openpi-flash: Real-time inference engine for openpi

github.com
2 points·by kstonekuan·2 mesi fa·0 comments

Show HN: Yoink functionality from dependencies and avoid supply chain attacks

github.com
3 points·by kstonekuan·3 mesi fa·0 comments

Meta-Harness: End-to-End Optimization of Model Harnesses

arxiv.org
3 points·by kstonekuan·3 mesi fa·0 comments

Voice AI in 2026 – An intro to building voice agents today

kingstonkuan.com
1 points·by kstonekuan·4 mesi fa·0 comments

Show HN: Voice Mode for Gemini CLI Using the Live API

github.com
4 points·by kstonekuan·4 mesi fa·0 comments

Gemini CLI as an agent harness for Google Workspace CLI (gws)

github.com
2 points·by kstonekuan·4 mesi fa·0 comments

The uncomfortable truth about hybrid vehicles

theverge.com
3 points·by kstonekuan·4 mesi fa·1 comments

Show HN: webskills – turn any webpage into an agent skill

github.com
2 points·by kstonekuan·4 mesi fa·0 comments

Show HN: MCP app for viewing/generating 3D Gaussian Splatting in ChatGPT

github.com
2 points·by kstonekuan·5 mesi fa·0 comments

VC-Backed Startups Are Low Status

mhdempsey.substack.com
3 points·by kstonekuan·5 mesi fa·0 comments

Dictating anywhere with Nvidia open models – Nemotron ASR and Tambourine

kingstonkuan.com
3 points·by kstonekuan·5 mesi fa·0 comments

Anthropic says 'Claude will remain ad-free,' unlike ChatGPT

theverge.com
8 points·by kstonekuan·5 mesi fa·6 comments

The telephoto is the only phone camera that matters

theverge.com
4 points·by kstonekuan·5 mesi fa·1 comments

No Phone, No Social Safety Net: Welcome to the 'Offline Club'

wired.com
2 points·by kstonekuan·5 mesi fa·1 comments

TikTok Data Center Outage Triggers Trust Crisis for New US Owners

wired.com
5 points·by kstonekuan·6 mesi fa·0 comments

Amazon will pay customers $309M to settle 'no hassle returns' lawsuit

theverge.com
1 points·by kstonekuan·6 mesi fa·0 comments

Web Viewer for Apple's ml-sharp with 3D Gaussian Splat Rendering in the Browser

kstonekuan.github.io
1 points·by kstonekuan·6 mesi fa·1 comments

Show HN: Open-source customizable AI voice dictation built on Pipecat

github.com
27 points·by kstonekuan·7 mesi fa·16 comments

Building a WebRTC benchmark for voice AI agents (Pipecat vs. LiveKit)

github.com
1 points·by kstonekuan·8 mesi fa·2 comments

Turn any subreddit into a trivia game

old.reddit.com
2 points·by kstonekuan·9 mesi fa·1 comments

comments

kstonekuan
·5 mesi fa·discuss
Thanks for linking!
kstonekuan
·6 mesi fa·discuss
I built a web viewer for visualizing Gaussian Splat .ply files generated by Apple's ml-sharp, which converts a single photo into a 3D Gaussian Splat in under a second [1].

Features: - Upload and view .ply file directly in the browser - Multiple camera trajectory animations (rotate, swipe, shake, forward) - Interactive orbit controls (drag to orbit, scroll to zoom, right-drag to pan) - No installation required – runs entirely client-side

The original ml-sharp can render the same video trajectories but requires a CUDA GPU. This viewer lets you explore the 3D output on any device with a browser.

I also added cloud GPU inference via Modal so you can generate splats without a local GPU (free tier available) [2].

[1] https://github.com/apple/ml-sharp

[2] https://modal.com/
kstonekuan
·7 mesi fa·discuss
Tauri v2 has this global shortcut plugin which I am using and it works amazing

https://v2.tauri.app/plugin/global-shortcut/
kstonekuan
·7 mesi fa·discuss
I started off trying Electron, but I am liking Tauri more. It seems Rust has better support for system-level integration, like controlling audio and keys. Are there other alternatives you are exploring?
kstonekuan
·7 mesi fa·discuss
Yup, the desktop app is built with Tauri, which is cross-platform compatible, and I have personally tested it on macos and windows
kstonekuan
·7 mesi fa·discuss
Updated!
kstonekuan
·7 mesi fa·discuss
I have been working on a customizable AI voice dictation tool using Pipecat's framework to swap between many providers and models, including cloud or local.

Started off as an open source alternative to Wispr Flow for myself as I wanted to have more control over the formatting rules as well as model choice but after sharing with friends and presenting it at my local Claude Code meetup, I was encouraged to share it more widely.

The desktop app uses tauri so it is cross-platform compatible and I have tested it working on macOS and windows.

https://github.com/kstonekuan/tambourine-voice
kstonekuan
·7 mesi fa·discuss
Thanks for the feedback, probably should have been clearer in my original post and in the README as well. Local inference is already supported via Pipecat, you can use ollama or any custom OpenAI endpoint. Local STT is also supported via whisper, which pipecat will download and manage for you.
kstonekuan
·7 mesi fa·discuss
Yes, Pipecat already supports that natively, so this can be done easily with ollama. I have also built that into the environment variables with `OLLAMA_BASE_URL`.

About ollama in pipecat: https://docs.pipecat.ai/server/services/llm/ollama

Also, check out any provider they support, and it can be easily onboarded in a few lines of code.
kstonekuan
·7 mesi fa·discuss
Hey, sorry if the examples given were not robust, but because this is built on Pipecat, you can actually very easily swap to a local LLM if you prefer that, and the project is already set up to allow you to do that via environment variables.

The integration to set up the WebRTC connection, get the voice dictation working seamlessly from anywhere, and input into any app took a long time to build out, and that's why I want to share this open source.
kstonekuan
·8 mesi fa·discuss
I was curious how people were choosing between voice AI agent providers and was interested in comparing them by baseline network performance, but could not find any existing solution that benchmarks performance before STT/LLM/TTS processing. So I started building a benchmarking tool to compare Pipecat (Daily) vs LiveKit.

Unlike your average LLM benchmark, this benchmark focuses on location and time as variables since these are the biggest factors for networking systems (I was a developer for networking tools in a past life). The idea is to run benchmarks from multiple geographic locations over time to see how each platform performs under different conditions.

Basic setup: echo agent servers can create and connect to temporary rooms to echo back after receiving messages. Since Pipecat (Daily) and LiveKit Python SDKs can't coexist in the same process, I have to run separate agent processes on different ports. Benchmark runner clients send pings over WebRTC data channels and measure RTT for each message. Raw measurements get stored in InfluxDB, then the dashboard calculates aggregate stats (P50/P95/P99, jitter, packet loss) and visualizes everything with filters and side-by-side comparisons.

I struggled with creating a fair comparison since each platform has different APIs. Ended up using data channels (not audio) for consistency, though this only measures data message transport, not the full audio pipeline (codecs, jitter buffers, etc).

Latency is hard to measure precisely, so I'm estimating based on server processing time - admittedly not perfect. Only testing data channels, not full audio path. And it's just Pipecat (Daily) and LiveKit for now, would like to add Agora, etc.

The README screenshot shows synthetic data resembling early results. Not posting raw results yet since I'm still working out some measurement inaccuracies and need more data points across locations over time to draw solid conclusions.

This is functional but rough around the edges. Happy to keep building it out if people find it useful. Any ideas on better methodology for fair comparisons or improving measurements? What platforms would you want to see added?

Stack: Python, TypeScript (React), InfluxDB
kstonekuan
·9 mesi fa·discuss
Think you know your subreddit community well? Test your knowledge in this short Reddit game!

Made this with Devvit at the LA Tech Week Reddit Hackathon last week. Currently, the questions are just based on metadata like upvotes, comments, and authors, but if you like this, I would be happy to work on more features like leaderboards and AI-generated answers.

You can also contribute to it directly here: https://github.com/kstonekuan/reddit-trivia-night
kstonekuan
·10 mesi fa·discuss
The mobile experience is really well done too!