Skip to content
View gorkembutev's full-sized avatar
  • Bursa
Block or Report

Block or report gorkembutev

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
gorkembutev/README.md

HEY THERE !
WELCOME TO MY GITHUB REPOSITORY

👨‍💻 About Me

using System.Collections.Generic;
using UrgunSoft;

public class Bio : Developer
{
   public string name = "Görkem BÜTEV";
   public string role = "Software Developer";
   public string location = "Bursa, Turkey";
   public List<Social> social = new List<Social>
   {
       new Social { name = "Instagram", url = "https://instagram.com/gorkembutev" },
       new Social { name = "LinkedIn", url = "https://linkedin.com/in/gorkembutev" }
   };
}

public class Skills : Developer
{
   public List<string> languages = new List<string> { "C#", ...Languages };
   public List<string> databases = new List<string> { "SQL", ...Databases };
   public List<string> others = new List<string> { "Git", "Linux", ...Others };
}

public delegate Developer DeveloperDelegate();

public class DeveloperFactory
{
   public static DeveloperDelegate Create()
   {
       var bio = new Bio();
       var skills = new Skills();
       skills.languages.AddRange(Languages);
       skills.databases.AddRange(Databases);
       skills.others.AddRange(Others);
       return () => new Developer(bio, skills);
   }
}

Popular repositories

  1. gorkembutev gorkembutev Public

    My Bio

  2. -i-ek-Un -i-ek-Un Public