package main
type Engineer struct {
Name string
Based string
Currently string
OpenTo string
Bias []string
}
func main() {
me := Engineer{
Name: "Alisina Karimi",
Based: "Turin, Italy 🇮🇹 // remote, any time zone",
Currently: "shipping prod systems for an Australia-based commerce company",
OpenTo: "remote roles — EU contractor (partita IVA) or EOR, no visa sponsorship",
Bias: []string{"simple contracts", "measured performance", "observable failure"},
}
me.Ship() // and leave the system easier to run than I found it
}I like the unglamorous parts of software: the query path that stops timing out, the worker that restarts safely, the integration that fails loudly instead of silently.
| 💬 Chatster | real-time Go WebSocket chat — concurrent hub, SQLite history, metrics, a load-tested benchmark |
| ⚡ news-api | hardened TypeScript/Express API — caching, validation, OpenAPI, K8s probes, SBOM-minded CI |
| 🕸️ StreamHive | Go lib for distributed content-addressed storage over TCP — custom framing, replication |
| 🧮 Quorabust | ML serving done right — XGBoost duplicate detection, FastAPI, metrics, model cards |
| 🔨 Forge | installable Claude Code toolkit — agents, skills, slash commands, safety hooks, prompt evals |
| 🛡️ SignalForge (private) | cross-LLM security lab — detection replay, scope-aware hooks, DFIR/RE. Walkthrough on request |
65 followers · 29 public repos · 23 stars earned
Refreshed by a GitHub Action from the GitHub API — no third-party services.
flowchart LR
P([a problem]) --> C[a sharp contract]
C --> M[measure first]
M --> S[ship small]
S --> O[observe in prod]
O -->|fail loud, then iterate| C