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.
SIDIDEV Portfolio
Personal portfolio with full admin, interactive terminal, invoicing, client management and automated deployment.
Laravel PHP Vue.js Inertia.js MySQL+20
Enterprise
Enterprise
Bcoworker
Mobile application for managing coworking spaces (iOS/Android).
Flutter Dart Firebase Firestore Firebase Crashlytics+11
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