PROJECTS
Code in production, running for years.
E-commerce platforms, LMS, business APIs, mobile apps. Each one is deployed, monitored and maintained on my own infra, not someone else's.
Enterprise
Bcoworker
Mobile application for managing coworking spaces (iOS/Android).
Flutter Dart Firebase Firestore Firebase Crashlytics+11
DevOps Infrastructure
Self-hosted infrastructure with reverse proxy, monitoring, automated backups and workflow automation.
Docker Traefik Nginx Git GitLab CI/CD+49
Laravel File Compressor
Laravel package for automatic image, PDF and video compression, published on Packagist.
PHP Laravel FFmpeg Intervention Image ImageMagick+8
WORKFLOW
Test first, deploy after.
Every code change triggers the tests. If the suite turns red, fix it before pushing. No fix-in-prod.
src/test/java/.../PaymentServiceTest.javasaved
1@SpringBootTest 2class PaymentServiceTest { 3 4 @Autowired 5 private PaymentService payment; 6 7 @Test 8 void itRefundsAnOrder() { 9 Refund r = payment.processRefund(42L, 100);10 assertThat(r.amount()).isEqualTo(100);11 }12}
~/sididev