Skip to content
View gvanastasov's full-sized avatar
  • Telia Denmark
  • Copenhagen
Block or Report

Block or report gvanastasov

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
gvanastasov/README.md
using Github;

namespace gvanastasov 
{
    [Description("Awesome")]
    public sealed class Me : Architect, 
    	ILeader, IDeveloper, IProgrammer, INinja
    {
        public dynamic Occupation => new
        {
            Company: "Telia Company",
            Position: "Domain Architect",
        };
        
        public string Level => "expert";
        public string Passion => "coding";
	public string Hacks => "fruit";
        
        public DateTime CodingSince => DateTime.Now.AddYears(-19);
        public CoffeeType CoffeeType => CoffeeType.Any;
        
        public List<Type> Knowledge = new List<Type>
        {
	    typeof(CSharp),
	    typeof(Node),
            typeof(Javascript),
            typeof(Vuejs),
            typeof(React),
	    typeof(Flutter),
	    typeof(AWS),
	    typeof(CMS),
	    typeof(GraphQL),
	    // todo: use {{ System.Reflection }} to get all of them...
        };
        
        public string GetGoals(string @for)
        {
            switch(@for)
                case "personal": 
		    return "Relax and enjoy life.";
                case "work": 
		    return "Do awesome stuff and drink coffee with team.";
		case "before 8am":
		    return "Get me some coffee...";
                default: 
		    return "Just be happy and code.";
        }
    }
}

Pinned

  1. codebook-typescript codebook-typescript Public

    Codebook - learn by examples from zero to hero in typescript.

    TypeScript 7

  2. blazorvault blazorvault Public

    A rich and robust collection of reusable Blazor components.

    HTML 2

  3. example-net6-api example-net6-api Public

    Simple .NET6 web api

    C#

  4. example-vue-spa example-vue-spa Public

    Vue

  5. example-vue-ssr example-vue-ssr Public

    JavaScript

  6. example-express example-express Public

    A collection of example use cases of expressjs applications.

    JavaScript