Skip to content
View evdoshchenko's full-sized avatar

Organizations

@wordrunners

Block or report evdoshchenko

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
evdoshchenko/README.md

Typing

#!/usr/bin/env node
class WebDeveloper {
  constructor() {
    this.name = "Danil Evdoshchenko";
    this.role = "Web Developer";
    this.stack = ["TypeScript", "React", "Node.js", "Docker", "PostgreSQL"];
  }

  greet() {
    return `I am ${this.name}, a ${this.role}.\n` +
      `I work with: ${this.stack.join(", ")}.\n` +
      `Thanks for dropping by!`;
  }
}

console.log(new WebDeveloper().greet());

TypeScript React Node.js Docker PostgreSQL

Pinned Loading

  1. wordrunners/wordlynx wordrunners/wordlynx Public

    Multiplayer word game rendered with Canvas API

    TypeScript

  2. heylynx heylynx Public

    Messenger with authentication and chat management features

    TypeScript

  3. buygivegive buygivegive Public

    wish-market platform

    TypeScript

  4. cv-builder cv-builder Public

    Static CV builder with React, Vite, and client-side routing

    TypeScript