Skip to content
View Or1onn's full-sized avatar
🪠
Extremely focused
🪠
Extremely focused

Organizations

@Flexible-Software-Inc
Block or Report

Block or report Or1onn

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

Hi there, I'm Orhan

About me:

using System;

namespace AboutMe
{
    public class Person
    {
        public string? Name { get; set; }
        public string? Surname { get; set; }
    }


    public class Knowledge
    {
        public List<string?> Languages { get; set; }
        public List<string?> DataBase { get; set; }
        public List<string?> Technology { get; set; }
        public List<string?> DevOps { get; set; }
        public List<string?> ML_DL { get; set; }
        public List<string?> Design { get; set; }
        public List<string?> Others { get; set; }
    }


    internal class Program
    {
        static void Main(string[] args)
        {
            Person person = new Person();
            Knowledge knowledge = new Knowledge();

            person.Name = "Orhan";
            person.Surname = "Salahetdinov";

            knowledge.Languages = new() { "C", "C++", "C#", "Python", "JavaScript", "TypeScript" };

            knowledge.DataBase = new() { "MSSQL", "MYSQL", "SQLite" };

            knowledge.Technology = new()
             {
              ".NET", "ASP.NET", "WinForms", "WPF", "ADO.NET", "EntityFramework",
              "jQuery", "Expo", "JWT", "NPM", "NodeJS", "Unity", "Redux",
              "Xamarin", "Yarn", "QT", "CMake", "Electron.js"
             };

            knowledge.DevOps = new() { "Azure", "Docker", "Kubernetes" };
            
            knowledge.ML_DL = new() { "OpenCV", "TensorFlow" };
            
            knowledge.Design = new() { "React", "XAML", "HTML", "CSS", "SASS", "QML", "Markdown", "Bootstrap"};
            
            knowledge.Others = new() { "Figma", "Canva", "Linux", "Jira", "Notion", "Postman", "Swagger", "Trello", "Slack", "Obsidian" };
        }
    }
}

Pinned

  1. FaceAuth FaceAuth Public

    🤖 Face Authentication NuGet Package

    C# 3

  2. O-PAY-O O-PAY-O Public

    💲 Cash management written in WPF using MVVM

    C# 7

  3. SPEG SPEG Public

    ⚡ System for predicting energy generation in solar power plants

    Python 1

  4. QueueSystem QueueSystem Public

    💻 Queue Sytem WPF App

    C# 2

  5. MyPass MyPass Public

    🔑 Browser extension for password manager

    TypeScript 2

  6. MessageService MessageService Public

    ✉️ Web service for exchanging messages.

    C#