const profile = {
role: "Principal Product Manager",
experience: { total: 13, dev: 9, pm: 4 },
passion: ["developer tools", "DX", "databases","Web"],
community: {
stackOverflow: { countryRank: 1, globalTop10: ["Azure", "Javascript", "AzureCosmosDB"] },
titles: ["Google Developer Expert", "Microsoft MVP"],
contributions: ["open-source", "conference speaking"]
},
connect: () => console.log("Interested in web or cloud? Let's talk! 🚀")
};
console.log(`🚀 ${profile.role} | ${profile.experience.total}y experience | Dev ❤️ PM`);
profile.connect();