Skip to content
View MGSE97's full-sized avatar
🦉
Thinking
🦉
Thinking

Block or report MGSE97

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

🖖 Hello there, I'm MGSE

Welcome to my GitHub profile. Enjoy your visit here, if you are brave enough.

🎯 I'm mainly full-stack web developer
🌶 I worked with ASP.NET & ASP.NET Core for 4 years and I don't plan to stop
🛰 Currently, I'm exploring a wast space of Express.js, React & Rust

🥋 These are personal projects (usually ideas or for fun)
📚 Most of them are school projects (graphics, machine learning, ... the fun stuff)
🖋 I'm slowly improving documentation of them
🥊 And there are few i don't want to see again

📧 Fell free to contact me, if you need something. I won't bite usually. 🙂

What I might know and use

Flex area {

trophies rank top languages

}


•>  Profile  <•   Tech Stack   •   Concepts   •   Languages   •

MGSE97 ☕ 2016 ... 2023

Pinned Loading

  1. SignalR-Chat SignalR-Chat Public

    SignalR Chat demo with Identity authorization. ASP.NET Core 3.1

    TypeScript 4 1

  2. CRMM CRMM Public

    Simple CRM with Map project

    JavaScript

  3. PG2 PG2 Public

    Computer Graphics 2

    C++

  4. ZPG ZPG Public

    Open GL Graphics Engine

    HTML

  5. Dodge-Fish Dodge-Fish Public

    TAMZ II Project - 2D singleplayer game

    Java

  6. Simple mapping functions for models. Simple mapping functions for models.
    1
    public static TModel Map<TModel>(IDictionary<string, object> values, TModel baseModel = default(TModel)) where TModel : new()
    2
    {
    3
        // Create new model, or edit old one
    4
        var model = EqualityComparer<TModel>.Default.Equals(baseModel, default(TModel)) ? new TModel() : baseModel;
    5