HackerTrans
TopNewTrendsCommentsPastAskShowJobs

yberreby

no profile record

Submissions

CanViT: Toward Active-Vision Foundation Models

huggingface.co
3 points·by yberreby·4개월 전·0 comments

Hands-Free Claude Code with the Agent SDK

yberreby.com
4 points·by yberreby·5개월 전·2 comments

Drawing with Chaos

yberreby.com
6 points·by yberreby·8개월 전·0 comments

A Recipe for Training Neural Networks (2019)

karpathy.github.io
2 points·by yberreby·9개월 전·0 comments

How to Scale

howtoscalenn.github.io
2 points·by yberreby·9개월 전·0 comments

comments

yberreby
·4개월 전·discuss
Wouldn't be a very good look if they did anything else.
yberreby
·4개월 전·discuss
The Houthis have been doing a lot of shipping lane disruption, recently. They have sunk several ships.

Iran's Islamic regime has provided material and monetary support to the Houthis.

Crippling their capabilities aligns with the goal of protecting global shipping.
yberreby
·4개월 전·discuss
This applies to any US company. Have we forgotten everything we learned in 2012? If your data is shared with Google, Anthropic, Meta, Amazon, or any of their US competitors, it is within reach of the NSA. Whether or not a company provides support to the DoW is orthogonal to that fact.
yberreby
·5개월 전·discuss
Sure, but aren't most people running the *Claw projects using cloud inference?
yberreby
·5개월 전·discuss
It's up: https://yberreby.com/posts/hands-free-claude-code/
yberreby
·5개월 전·discuss
Since this has garnered some interest, I definitely will sit down and write a blog post when I have a little bit of time. I have upgraded the setup since that post a few days ago, and keep doing so continuously; it's always running in the background while I work. There are some rough edges, but the workflow feels like what Siri should have been.
yberreby
·5개월 전·discuss
That's a fair point, and I had the exact same thought while building this. I had previously resisted the urge of integrating Claude Code with e.g. ntfy.sh for this reason. But in practice, this works for me. I end up being less likely to spend time on the computer and more likely to be doing something on my feet.

For context, I'm a PhD student. Work-life balance is already... elusive.
yberreby
·5개월 전·discuss
Looks like a nice library, thanks for sharing! I know Telegram bots are very popular and that the API story is quite nice, but I have tended to avoid Telegram. My preference would be to go through Signal. I just started looking into my options on this yesterday. Any particular reason why you chose Telegram?
yberreby
·5개월 전·discuss
I'm in the process of migrating from my first POC's disgusting mess of vibe-coded Python to a cleaner (and shareable) Rust architecture. It's going well but I will wait for it to stabilize a bit before sharing.

The main non-trivial parts are proper state machine / concurrency management, and AirPods interaction; in particular, detecting a stem click while the microphone is active. I worked around this by having the mic-off-to-mic-on transition use a media player Play event, and mic-on-to-mic-off do silence detection. It's super hacky but actually works surprisingly well.

Currently looking into using `AVAudioApplication.setInputMuteStateChangeHandler(_:)`, like AirMute [1] does, so that I don't have to rely on silence detection and can manually terminate the voice command with a second click.

If you want to roll your own version of what I described today, it should be pretty easy to do so based on what I wrote if you have a Max x5-x20 plan and feed it to Opus. Bonus points, you get to customize it to your exact needs.

[1]: https://github.com/Solarphlare/AirMute
yberreby
·5개월 전·discuss
Watching the OpenClaw/Molbot craze has been entertaining. I wouldn't use it - too much code, changing too quickly, with too little regard for security - but it has inspired me.

I often have ideas while cleaning around, cooking, etc. Claude Code (with Opus 4.5) is very capable. I've long wanted to get Claude Code working hands-free.

So I took an afternoon and rolled my own STT-TTS voice stack for Claude Code. The voice stack runs locally on my M4 Pro and is extremely fast.

For Speech to Text, Parakeet v3 TDT: https://huggingface.co/nvidia/parakeet-tdt-0.6b-v3

For Text to Speech, Pocket TTS: https://github.com/kyutai-labs/pocket-tts

Custom MCP to hook this into Claude Code, with a little bit of hacking around to get my AirPods' stem click to be captured.

I'm having Claude narrate its thought process and everything it's doing in short, frequent messages, and I can interrupt it at any time with a stem click, which starts listening to me and sends the message once a sufficiently long pause is detected.

I stream the Claude Code session via AirPlay to my living room TV, so that I don't have to get close to the laptop if I need extra details about what it's doing.

Yesterday, I had it debug a custom WhatsApp integration (via [1]) hands-free while brushing my teeth. It can use `osascript` for OS integration, browse the web via Claude Code's builtin tools...

My back is thankful. This is really fun.

[1]: https://github.com/jlucaso1/whatsapp-rust
yberreby
·6개월 전·discuss
https://yberreby.com
yberreby
·7개월 전·discuss
Would you share some additional details? CPU, amount of unified memory / VRAM? Tok/s with those?
yberreby
·7개월 전·discuss
Based on what works elsewhere in deep learning, I see no reason why you couldn't train once with a randomized number of experts, then set that number during inference based on your desired compute-accuracy tradeoff. I would expect that this has been done in the literature already.
yberreby
·7개월 전·discuss
> I.e you can automate things like checking for memory freeing.

Or, if you don't need to use C (e.g. for FFI or platform compatibility reasons), you could use a language with a compiler that does it for you.
yberreby
·8개월 전·discuss
Yes, this is part of the French prépa/CPGE system, which is the "standard" way for students to enter elite engineering schools. You do your first 2-3 years of undergrad in prépa.

Source: I did prépa.
yberreby
·8개월 전·discuss
Delightfully evil.
yberreby
·8개월 전·discuss
I have seen it noticed, called out in the talk page, and not rectified.
yberreby
·8개월 전·discuss
I encourage you to look up the "bro" in question. He's a Fields medalist.
yberreby
·9개월 전·discuss
That is also the case on Wikipedia, though. And it's not always trivial to rectify.
yberreby
·9개월 전·discuss
I've seen this approach applied to spectrograms. Convolutions do make enough sense there.