C:\Users\legendodin\projects>_
// projects

Things I've
shipped.

Real products. Real customers. Every number on this page is something you could verify — because it's running in production right now.

/
legendodin-angular.tsangular ssr
// Angular 19 · Lighthouse 99+
@Component({ standalone: true,
changeDetection: OnPush })
export class PortfolioComponent {
readonly data = inject(DataService)
}
01
[angular ssr]

legendodin.dev

Angular 19 SSR portfolio. Custom intersection-observer directives, full WCAG 2.1 AA, Tailwind design system. Scores 99+ across all Lighthouse categories. Docker + Nginx.

FrontendAngularSSR
svelte-cms.tsheadless cms
// SvelteKit · ~0kb client JS
export async function load({ fetch }) {
return { posts:
await fetch('/api/content')
.then(r => r.json()) }
}
02
[headless cms]

Svelte CMS

Headless CMS built from scratch — SvelteKit frontend, Node.js REST API, structured content model, media management. Near-zero client JS. Architecture maps directly to Sitecore XM Cloud.

FrontendCMSFull Stack
syskernel-auth.tsfull stack saas
// SysKernel Auth · p99 <4ms
const hash = await crypto.subtle
.digest('SHA-256',
encode(hwid + SECRET))
// 1000+ customers · 3yr uptime
03
[full stack saas]

SysKernel Auth

Hardware-bound software licensing platform. TypeScript dashboard, Node.js REST API, hardware fingerprinting, C shared lib for the hot path. 3+ years in production. 1,000+ customers. p99 under 4ms.

Full StackSystemsSecurity
pokersense.tsdesktop app
// WPF overlay · 16ms latency
CreateWindowEx(
WS_EX_LAYERED |
WS_EX_TRANSPARENT, ...)
// GDI undetectable
04
[desktop app]

PokerSense

Live poker opponent profiler. Captures hand history from the filesystem, builds per-player statistical models, classifies archetypes in real time. WPF overlay — undetectable to screenshot hooks. 16ms end-to-end.

DesktopAISystems
syskernel.tssystems
// WDM Kernel Driver
NTSTATUS DriverEntry(
PDRIVER_OBJECT drv,
PUNICODE_STRING reg) {
// ring0 execution
}
05
[systems]

SysKernel

Firmware and kernel driver suite for authorized DMA hardware research. Windows WDM drivers, direct MMIO, custom ring-buffer IPC. Written to the metal — not a toy.

SystemsKernelSecurity
assembly-tutorials.tseducation
// x86-64 calling convention
section .text
global _start
_start:
mov rdi, msg
syscall
06
[education]

Assembly Tutorials

Deep-dive technical series on x86, x64, ARM, and SIMD/AVX2. Written for working developers who want bare-metal understanding — not watered-down intros.

EducationSystemsContent