- Studying Computer Engineering & Informatics @ University of West Attica
- Building personal projects in my free time
- Passionate about bridging theory and real-world applications
- Secure Agents: A B2B SaaS platform providing autonomous AI agents for SMBs (law firms, medical clinics, accountants) with a focus on absolute data privacy and GDPR compliance. This system utilizes a Zero-Trust AWS architecture, ephemeral containerization, and kernel-level security to ensure sensitive client data remains private and secure.
- Homelab: Secure, cost-optimized AWS environment built with Terraform. The architecture uses a bastion host (jump box) for SSH access, a NAT instance instead of NAT Gateway for cost savings, defense-in-depth security with Security Groups and NACLs, and centralized log collection via CloudWatch Logs. It also includes private S3 storage accessed via a VPC Gateway Endpoint.
- Mini Content-Addressable-Storage: A content-addressable storage (CAS) system inspired by CVMFS. Mini-CAS stores files by their SHA-256 hash rather than their original path, enabling automatic deduplication, efficient storage management and verification with merkle trees. (Golang / Docker / SQLite)
- D-State-Debugger: Linux debugging tool that detects and diagnoses processes stuck in D-state (uninterruptible sleep). Scans /proc to identify blocked processes, reads kernel stack traces, maps syscalls to names, and reports what they're blocked on. (C)