// π Ariel - Backend Developer Junior
const ariel = {
name: "Ariel",
profession: "Backend Developer Junior",
specialties: ["Nest.js", "PostgreSQL", "Cybersecurity"],
passions: ["Backend Development", "Information Security", "Hack The Box"],
contact: {
email: "originalghost2003@gmail.com",
github: "https://github.com/ArielPlayit",
}
};
console.log(`Hi, I'm ${ariel.name} and I specialize in ${ariel.specialties.join(", ")}.`);const technologies = {
backend: ["Nest.js", "Node.js"],
database: ["PostgreSQL"],
security: ["JWT", "bcrypt", "dotenv"],
pentesting: ["Kali Linux", "Hack The Box"]
};
console.log("Key Technologies:", technologies);const projects = [
{
name: "CV Management System",
description: "Web application to manage faculty members' information at UCI.",
link: "https://github.com/ArielPlayit/Gestion-CV-Backend"
},
{
name: "Secure Authentication with Node.js",
description: "Implementation of a robust authentication system using JWT and bcrypt."
}
];
projects.forEach(project => console.log(`${project.name}: ${project.description}`));console.log("π§ Contact: ", ariel.contact);