// 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.

view_in_ar
--GLUA --GMOD --C++

Game addons & GLua systems

terminal open_in_new

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.

COMPLEXITY_INDEX
settings_input_component ACTIVE_REPOS

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
VER: 2.1.0-STABLE View Source
REACT NODE.JS MYSQL MONGOOSE

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

view_in_ar

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.

BLENDER · GODOT4 · PAINT.NET
dns INFRA_LANE

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.

Stack LINUX · MYSQL
Web NGINX · PHP · NODE
Lab WIRESHARK · PACKET_TRACER

// 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

terminal RUNBOOK_OK