Skip to content
View rbarcode's full-sized avatar

Block or report rbarcode

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
rbarcode/README.md
namespace HumanBeing
{
    public class Me
    {
        public string Name = "Richard Barbour II";

        public string Role = "Junior Software Developer";

        public List<string> Technologies = new List<string>
        {
            "C#", "JavaScript", "Html", "CSS",
            ".NET", "MySQL", "Unity Engine"
        };

        public void LevelUp()
        {
            Technologies.Add("C++");
            Technologies.Add("Unreal Engine");
        }

        public string[] WorkAuthorizations = 
            [ "United States of America", "United Kingdom", "Cayman Islands" ];

        public Dictionary<string, string> NaturalLanguages =
        {
            {"English", "native" },
            {"Croatian", "professional" },
            {"German", "limited" }
        };

        public string Greeting(string cultureCode)
        {
            switch (cultureCode)
            {
                case "en-US":
                    return "Hi... welcome to my GitHub profile!";
                    break;
                case "hr-HR":
                    return "Bok,,, dobrodošli na moj profil GitHub-a!";
                    break;
                case "de-DE":
                    return "Hallo... und Herzlich Willkommen auf meinem GitHub-Profil!";
                    break;
                default:
                    return "I'm sorry, I don't speak your language... yet.";
                    break;
            }
        }
    }
}

Pinned Loading

  1. WordPuzzleWebsite WordPuzzleWebsite Public

    C# 3

  2. ASnowballsChanceInHell ASnowballsChanceInHell Public

    Forked from jeremyjosol/ASnowballsChanceInHell

    C#

  3. w7-team-week-minesweeper w7-team-week-minesweeper Public

    Forked from ian-bravo/Minesweeper

    JavaScript

  4. w6-currency-exchanger w6-currency-exchanger Public

    JavaScript

  5. w13_parks_api w13_parks_api Public

    C#

  6. hw-css-animation hw-css-animation Public

    CSS