Technical leader Software architect
I build intelligent systems where software architecture meets AI — leading engineering teams by day, and shipping open-source developer tools in Rust the rest of the time.
Six tools I wrote because I wanted to use them. All Rust, all MIT, all on GitHub.
Finds the build artifacts eating your disk — target/, node_modules/, Docker cache, DerivedData — across 11 ecosystems, and shows what each one costs you and how safe it is to delete. Nothing is removed unless you pick it.
curl -fsSL https://raw.githubusercontent.com/eladbash/void/main/install.sh | sh
Keeps every Mac app current from the menu bar. It checks Homebrew Casks, Sparkle feeds and the Mac App Store on a schedule you set, then installs what is waiting in one click.
curl -fsSL https://raw.githubusercontent.com/eladbash/latest/main/install.sh | sh
Every eslint-disable, # noqa, @ts-ignore and //nolint in your codebase, found and counted across 14 ecosystems — so the places you switched the safety net off stay visible. Writes JSON and SARIF, and fails CI past a threshold you choose.
cargo install lintscout
jq with a code editor's manners. Type a dot-path and watch the JSON filter as you go, tab-complete keys you have not memorised, infer a schema from an unfamiliar API response, or just ask for what you want in plain English.
cargo install jdx
Checks your environment variables against a declarative env.schema.yaml before they can break anything. envctl doctor tells you what is missing and how to fix it; it also generates .env.example and docs from the schema, and diffs two env files with secrets redacted.
cargo install --git https://github.com/eladbash/envctl
The Rust library underneath envctl. Declare your configuration as a struct, derive EnvSchema, and get validation at startup, type-safe loading, and a Secret<T> wrapper that keeps sensitive values out of your logs.
env-schema = "0.1"
Fifteen years, five companies, one direction.
Leading engineering teams building next-generation security products. Driving AI into the stack and architecting distributed systems at scale.
Designed the microservices architecture behind a programmatic job advertising platform, and owned technical strategy across backend and infrastructure.
Built AI-powered HR technology on modern web and cloud infrastructure.
Recruitment marketing platforms, end to end.
Web development and client solutions. Where it started.
What I reach for, grouped by what it is for.
Four things fifteen years keeps proving.
TestsWriting excellent tests costs less than fixing bugs in production.
AIAI amplifies great engineering. It does not replace it.
ArchitectureThe best architecture is the one that evolves gracefully.
LearningThe moment you stop learning is the moment you start falling behind.