public class DeveloperProfile
{
public string Name { get; set; } = "Vũ Văn";
public string[] Bio { get; set; } =
{
"🛠 Developer by day",
"🌌 Dream chaser by night",
"🌿 Nature lover in between",
"🌍 Traveler when I can",
"🎮 Gamer on weekends",
"✍️ Blogger when inspired"
};
public Position CurrentPosition { get; set; } = new Position
{
Title = "Senior Automation Developer",
Company = "Avery Dennison RIS Vietnam",
Roles = new string[] {
"Senior Software Developer",
"Technical Lead",
"Team Lead",
}
};
public string Country { get; set; } = "Vietnam";
public TechStack Stack { get; set; } = new TechStack
{
WebDevelopment = new string[]
{
"HTML5", "CSS3", "JavaScript", "RESTful API", "ASP.NET", "Node.js",
".NET Framework", ".NET Core", "PHP"
},
DatabaseManagementSystems = new string[]
{
"Microsoft SQL Server", "PostgreSQL", "Oracle Database",
"MySQL", "MongoDB"
},
WindowsApplicationDevelopment = new string[]
{
"Windows Presentation Foundation", "Windows Form",
"Windows Service", "Electron"
},
AdvancedSystemDesignAndOptimization = new string[]
{
"Solution Architecture", "Real-Time Communication",
"Database Optimization"
}
};
}
public class Position
{
public string Title { get; set; }
public string Company { get; set; }
public string[] Roles {get; set; }
}
public class TechStack
{
public string[] WebDevelopment { get; set; }
public string[] DatabaseManagementSystems { get; set; }
public string[] WindowsApplicationDevelopment { get; set; }
public string[] AdvancedSystemDesignAndOptimization { get; set; }
}
var vuvtdhh = new DeveloperProfile();
Pinned Loading
-
Mocaccino
Mocaccino PublicA desktop application designed to encrypt and decrypt files using the AES-256 encryption algorithm, a standard established by the U.S. National Institute of Standards and Technology (NIST) for secu…
C#
-
-
MailChannel
MailChannel PublicImplementing an Email Queue with ASP.NET Using Hosted Service and Channel
C#
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.