Skip to content
View belk1ng's full-sized avatar
:electron:
Focusing
:electron:
Focusing
Block or Report

Block or report belk1ng

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

👋 Yo there and welcome!

"use strict"

class FrontendEngineer {
    name: string;
    role: string;
    language_spoken: string[];
    tech: string[];

    constructor() {
        this.name = "Dmitry Belkin";
        this.role = "Frontend Engineer";
        this.language_spoken = ["ru_RU", "en_US"];
        this.tech = [
            "TypeScript",
            "React",
            "Next",
            "Redux",
            "Mobx",
            "Webpack",
            "Jest",
            "SCSS"
        ];
    }

    public sayHi() {
        console.log("Thanks for dropping by, hope you find some of my work interesting.");
    }
}

const me = new FrontendEngineer();
me.sayHi();

Pinned

  1. courses-top courses-top Public

    Product comparison service using Next.js 14

    TypeScript

  2. pizza-frontend pizza-frontend Public

    Client-side implementation for a pizzeria application.

    TypeScript

  3. content-hub content-hub Public

    Just a blog

    TypeScript

  4. web-messenger web-messenger Public

    Realtime chat app

    TypeScript