Urbbiz / Urbbiz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Console.Writeline("Hello World!");
public class Urbbiz : IGitHubUser
{
	public string Forename = 'Andrius';
	public string Surname = 'Urbonas';
	public string Field = "Web development";
	public string PrimaryStack = ".Net 5, .Net 6";
	public bool AvailableForWork = true;
}
public class Skill 
{
  public string Type { get; set; }
  public string Name { get; set; }
}
public class Program
{
	public static void Main()
	{
		private List<Skill> _skills = new()
		{
			new Skill { Type="language", Name="C#"},
			new Skill { Type="language", Name="SQL"},
			new Skill { Type="language", Name="PHP"}
			new Skill { Type="language", Name="Symfony"}
			new Skill { Type="language", Name="PrestShop"}
			new Skill { Type="framework", Name="Laravel"},
			new Skill { Type="language", Name="JavaScript"},
			new Skill { Type="language", Name="HTML"},
			new Skill { Type="language", Name="CSS"},
			new Skill { Type="framework", Name=".Net Core 6"},
			new Skill { Type="framework", Name="ASP.Net Web API"},
			new Skill { Type="framework", Name="EF Core"},
			new Skill { Type="framework", Name="Angular"},
			new Skill { Type="framework", Name="Bootstrap"},
			new Skill { Type="framework", Name="Tailwind"},
			new Skill { Type="tool", Name="MSSQL"},
			new Skill { Type="tool", Name="Git"}
		};
		
		private string[] learningList = {"Heroku", "Azure Pipelines", "GitHub Workflows"};
	}
}

WORK IN PROGRESS


About