Transcribing audio shouldn’t mean a Python subprocess and an OpenAI API bill. chuks whisper runs whisper.cpp natively in your binary, load a GGML model once, transcribe as many WAVs as you want, completely offline. Your captions pipeline, one dependency, one binary.
#chukslang #whisper #edgeAI #BuildInPublic #softwareEngineering
To get started with agentic programming in @Chukslang . I recommend this article. A language model on its own can only produce text. Useful, but bounded: it answers from what it already knows and then stops. The leap to agentic programming is giving the model two things it lacks. Tools, so it can act on the world, and a loop, so it can act, see the result, and decide what to do next.
#chukslang #agenticProgramming #aiAgents #agents #softwareEngineering
https://t.co/sPW4ruu3sE
New in the registry: @chuks/whisper. On-device speech-to-text, statically-linked whisper.cpp under the hood, zero Python, zero cloud API. ~20-35x realtime on CPU alone. Word-level timestamps out of the box, built for captions, subtitles, and voice features. 🎙️
#ChuksLang #SpeechToText #OnDeviceAI #softwareEngineering #ai #BuildInPublic
OAuth is why nobody builds integrations. @chuks/connector does the auth dance once, behind a typed interface, GitHub, Slack, Gmail, Stripe, Notion in a single line. In-process. One binary. No auth boilerplate. 🔌
#chukslang#api#devtools#buildInPublic
Loop engineering in @Chukslang .
The article walks you through it,inner loop, outer loop, verification, state, guardrails.
Full v0.1.0 drops July.
https://t.co/641N1vnO9m
Try it now on the v0.1.0 pre-release:
https://t.co/SmtlqZAPew
#LoopEngineering#ChuksLang#BuildInPublic
Chuks Forge 0.0.8 was amazing!
If you missed it or would like to watch it again, here’s the recording:
https://t.co/eeHKykGFjQ
Thanks to everyone who joined. See you at the next Forge!
#ChuksForge#Forge#Programming#SoftwareEngineering
Stop fighting your data.
Most languages make you choose between the safety of structs and the convenience of maps. @Chukslang gives you both, with built-in validation, generics, embedding, and nullable safety baked right into the type system.
#BuildInPublic#softwareEngineering
Chuks v0.0.7 is out. 🚀
• 189k req/s HTTP, VM and AOT, identical numbers
• Control-flow type narrowing & nullable function types
• Production-ready DB layer (transactions, bulk ops, soft deletes)
👉 https://t.co/VXoCAN21oe
#BuildInPublic#SoftwareEngineering#Programming
Designing nullable function syntax for @Chukslang need your opinion.
Two options:
Option A: postfix ? (consistent with nullable classes) Option B: function? keyword (reads more naturally, closer to TS thinking)
Which do you prefer and why? 👇
#LanguageDesign#BuildingInPublic
Connect with bright minds, create your community, explore and grow on Cleset. Visit https://t.co/1TvYzoi2UM to get started.
#ANAPAULACAMPEÃ#education#connect#cleset
348,513 primes. 5 million numbers. All in 28ms.
That's 8 parallel workers, zero boilerplate, and one language that actually gets out of your way.
spawn a task. await the result. Sum it up. That's the entire @Chukslang concurrency model.
#SoftwareEngineering#BuildInPublic