// DIRECTORY: /PROJECTS_SHOWCASE
ENGINEERING
ARTIFACTS
Capability-focused portfolio lanes: game addons and GLua, React and JavaScript stacks with MySQL/Mongoose, Python and AutoHotkey automation, Blender and Godot asset work, and Linux/Ubuntu hosting—aligned to real delivery history, not vaporware benchmarks.
Game addons & GLua systems
Product-style addon work: gameplay logic, configuration surfaces, and player-facing features in GLua; C++ where modules need native performance. Same muscle memory applied at wiltOS—shipping fixes under real user load.
Python & AutoHotkey automation
Scripts and small tools for repetitive workflows—data cleanup, desktop automation, glue between Office apps and internal processes—matching freelance and day-job IT assists.
$ python tools/sync_sheet.py --input ./export.csv
Web surfaces & APIs
React front ends with JavaScript/TypeScript services, REST-shaped APIs, and MySQL or MongoDB/Mongoose persistence—freelance pattern: ship readable UI, sane schema, and docs someone else can run.
MIGRATION: MYSQL SCHEMA... OK
API ROUTE /v1/items... OK
REACT BUILD... OK
MONGOOSE INDEX... OK
HEALTHCHECK: PASS
Blender · Godot · game-ready assets
Hard-surface and prop modeling, materials, and export pipelines—Blender and Godot 4 in the toolchain; Paint.NET for quick texture passes when speed beats perfection.
Linux hosts & data stores
Ubuntu/Linux server bring-up, PHP or Node runtimes, MySQL hardening basics, backups, and operator docs—paired with lab comfort in Wireshark and Cisco Packet Tracer for troubleshooting mindshare.
// host_bootstrap.sh
#!/usr/bin/env bash
set -euo pipefail
apt update && apt install -y nginx php-fpm mysql-client
systemctl enable --now nginx php8.4-fpm
mysql_secure_installation # operator guided
certbot --nginx -d example.anzati1.xyz