I started my programming journey on June 15, 2022, which means I've been honing my skills for 3 years and 3 months.
Since then, I've gained solid expertise in:
✅ Web Development: Mastered HTML5, CSS3, and JavaScript to build dynamic, responsive websites. I then expanded into Vue.js (Composition API and Vue Router 4), to create sophisticated front-end applications.
✅ Backend Development: I built five back-end projects using Node.js, Express.js, and MongoDB as part of the FreeCodeCamp curriculum. This journey helped me gain a strong foundation in creating RESTful APIs and deploying full-stack applications.
✅ Database Management: After learning MongoDB, I furthered my knowledge with PostgreSQL (PSQL), focusing on scalable and secure data solutions.
✅ DevOps & Deployment: I became proficient with Docker, deploying containerized applications, and configuring servers with Nginx. I've also gained skills in DevOps workflows to automate, optimize, and manage deployments efficiently.
✅ Cross-Platform Development: I leveraged Capacitor.js and Electron to build applications that work seamlessly across web, mobile (iOS/Android), and desktop (Windows/Mac/Linux).
As a versatile full-stack developer, I combine my technical knowledge with creativity to deliver scalable, secure, and efficient solutions for modern digital challenges. Let's collaborate to bring your ideas to life!
const pigIt = (str) => {
return str.split(' ').map(e => {
return e.length > 0 && !e.match(/[!?@#$%^&*]/)
? e.substring(1) + e.slice(0, 1) + 'ay'
: e;
}).join(' ');
};