Skip to content
View D4C4N's full-sized avatar
๐Ÿˆ
๐Ÿˆ
  • Germany
  • 18:55 (UTC +02:00)

Sponsoring

@bvaughn

Highlights

  • Pro

Block or report D4C4N

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
D4C4N/README.md
public class D4C4N
{
    public string Username { get; set; } = "D4C4N";
    public string Name { get; } = "Daniel";
    public string[] Nicknames { get; } = { "D4", "Daniel", "Dan" };
    public string FieldOfStudy { get; } = "Applied Computer Science";
    public string[] Interests { get; } = { "cats", "gaming", "music", "guitar" };
    public bool IsAlive { get; set; } = true;
    public int? Age { get; set; } = 26;

    public List<string> TechStack { get; } = new List<string>
    {
        "C", "C#", "React", "HTML", "CSS", "JavaScript"
    };

    public string FavoriteLanguage => TechStack.Contains("C#") ? "C#" : TechStack[0];

    public string Email { get; } = "[email protected]";

    public void Introduce()
    {
        Console.WriteLine("๐Ÿ‘‹ Hey there, I'm " + Username);
        Console.WriteLine("You can call me: " + string.Join(", ", Nicknames));
        Console.WriteLine($"๐ŸŽ“ I'm currently studying: {FieldOfStudy}");
        Console.WriteLine("๐ŸŽฎ Outside of coding, I'm into: " + string.Join(", ", Interests));
        Console.WriteLine("๐Ÿ›  Tech stack: " + string.Join(", ", TechStack));
        Console.WriteLine("๐Ÿ’Œ Reach me at: " + Email);
    }
}

Popular repositories Loading

  1. EmilEmoji EmilEmoji Public

    ๐ŸŽ‰ Emil Emoji - A Discord bot that announces newly added emojis, stickers and soundboard sounds in a user-specified channel in your server. Lightweight, easy to set up, and customizable. Perfect forโ€ฆ

    TypeScript 1

  2. D4C4N D4C4N Public

    Config files for my GitHub profile.