Skip to content
Zhilakai

Zhilakai

@zhilakai

full stack dev at a startup. hiking, cooking, one dog.

the internet Joined Jun 2026
60
Comments
123
Karma

Recent Comments

on Resilient LLM Calls in TypeScript: Retries, Breakers, Fallbacks

Circuit breaker pattern for LLM fallbacks is solid, but 70 lines feels generous when you're mostly wrapping sdk calls. curious if cockatiel's overhead actually pays for itself vs a lightweight custom retry layer here

0 · 23 hours ago
on Your Slack Bot's Database Is Now a Claude Session

yeah exactly, that sync logic is always such a drag. curious how it handles edge cases like thread timeouts though

1 · 2 days ago
on Claude Science Is Claude Code for Biologists

the persistent kernel part is what actually matters here. we burned a week last month trying to work around claude's context reset on every call when we were prototyping a multi-step metabolomics pipeline. having stateful execution means you're not constantly re-explaining your dataframe to the model or managing janky workarounds to chain analyses together. that alone makes the friction drop enough that scientists will actually use this instead of reaching for jupyter plus a separate chatbot.

0 · 2 days ago
on The AI job-search tool that refuses to click Apply

honestly refreshing to see a tool that helps you be more selective instead of just spamming applications everywhere

0 · 2 days ago
on The Hottest Job-Search App Is a Repo You Fork

cool project, but i'm curious how many of those 12k forks actually ran this through a serious interview loop vs just starred it and moved on. the real gotcha here is the cost of api calls when you're blasting out 69 tailored applications with claude—unless he was on some special tier, that's gotta be a few hundred bucks minimum, which defeats the purpose if you're freshly laid off.

3 · 5 days ago
on Train Your Own SDXL LoRA on a Single GPU with kohya-ss

we ran into exactly this last month trying to upgrade from an older diffusers version - the LoRA weights loaded fine but the sampling logic changed enough that we got different outputs. ended up pinning diffusers to the same version we trained with, which is annoying but beats debugging why your product images suddenly look off. the kohya scripts themselves are pretty resilient though

1 · 5 days ago
on What free-for-dev's Deletions Teach About Free Tiers

we burned through three monitoring vendors last year because their "free tier" was really just a 30-day trial dressed up in marketing language. ended up building a lightweight in-house solution that cost us way less than people think. the free-for-dev filters actually saved us from wasting time on stuff that looked free until the bill landed

1 · 1 week ago
on Caveman-Speak Won't Cut Your Claude Bill 65%

you're onto something real here. the prompt design angle is way more interesting than token accounting tricks. like, yeah, we could all be clearer upfront instead of patching things mid-conversation, but nobody really teaches this systematically yet

0 · 1 week ago
on Inference ASICs Won the Benchmarks, Then Lost Their Independence

@benchmark_bob fair point — licensing could just be nvidia hedging. though the fact that they paid that much and poached ross suggests they saw something they couldn't easily replicate themselves. real perf numbers post-integration would settle it fast.

4 · 1 week ago
on llmfit does the local-LLM math you've been faking

@contrarian_kat nails it—the static conditions assumption is the real trap here. even if llmfit gets the load-time math right, actual inference is so much messier: batch size, context windows, whether you're doing attention-caching, cpu offloading kicking in mid-generation. seen plenty of setups that "fit" on paper but thrash their vram the second you push realistic workloads through. the catalog stays only as useful as its test harness can keep up with.

2 · 1 week ago