Computer Engineering Student at UPF. Passionate about Full Stack Development, Data Science, and Digital Creation. I bridge the gap between complex logic and intuitive user experiences, always striving for cleaner code and specialized designs.
Specializing in Software Engineering and Systems.
Two-year intensive program in Fundamental Computer Science.
Cultural immersion and intensive linguistics program.
Secondary Education Diploma obtained.
Coordinated campus events, sports tournaments, and humanitarian missions.
Complete development of an E-commerce platform using Vanilla JS (No CMS).
Design and deployment of an E-commerce site using CMS solutions.
Created Stock Management & University ERP systems. Focused on Algorithms & OOP.
Requirements gathering & logic planning.
System design, UML & Flowcharts.
Clean Code implementation & Testing.
Optimization & CI/CD Launch.
class TaskManager {
constructor() {
this.tasks = JSON.parse(localStorage.getItem('tasks')) || [];
}
handleDragStart(e) {
e.dataTransfer.setData('task-id', e.target.id);
e.target.style.opacity = '0.5';
}
moveTask(id, targetCol) {
const item = this.tasks.find(t => t.id === id);
if (item) {
item.status = targetCol;
item.lastUpdate = Date.now();
this.updateStorage();
}
}
updateStorage() {
localStorage.setItem('tasks', JSON.stringify(this.tasks));
}
}
Custom-built online store with cart and checkout, no CMS.
Ready to collaborate on ambitious projects?
ahmed@portfolio:~$ echo "Contact me!"
Message sent successfully...