Skip to content
View vuvtdhh's full-sized avatar
🌦️
🌦️

Block or report vuvtdhh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vuvtdhh/README.md

😊 Hi, I'm Vũ!

⚡️ About me:

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();

👋 Reach me at:

Vũ Văn's profile Vũ Văn's LinkedIn profile Vũ Văn's Stack Overflow profile mail to Vũ Văn's

📊 Github stats:

😎 Visitors count:

Vũ Văn's visitors count

⭐ Top langs:

Vũ Văn's top langs

📈 Profile stats:

Vũ Văn's profile stats

Pinned Loading

  1. Mocaccino Mocaccino Public

    A 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#

  2. Secrown Secrown Public

    A desktop chat application that wraps WebView2 to access popular websites

    C#

  3. MailChannel MailChannel Public

    Implementing an Email Queue with ASP.NET Using Hosted Service and Channel

    C#

  4. Snake Snake Public

    Snake game.

    C++

  5. ExamSite ExamSite Public

    Exam site.

    Java

  6. ImplementCICDWithGithub ImplementCICDWithGithub Public

    A repo for example implement CI/CD

    HTML