Skip to content
View vbrdnk's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report vbrdnk

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

Hi, Vladyslav is here πŸ‘¨πŸ»β€πŸ’»

I am Senior Frontend Developer with more than 6 years of experience working at both fast-paced startups and well-established IT companies. The mix of experiences helped me become a quick learner and proactive team player. I am passionate about developing user-oriented software while adhering to the best practices and most recent technologies available in the industry.

You can find my resume here

Pinned Loading

  1. Doubly Linked List Doubly Linked List
    1
    class Node:
    2
      def __init__(self, value, next_node=None, prev_node=None):
    3
        self.value = value
    4
        self.next_node = next_node
    5
        self.prev_node = prev_node
  2. Data-Structures Data-Structures Public

    JavaScript implementation of most popular and frequently used data structures for storing and retrieving data

    JavaScript 1

  3. NextJS Auth Context Template NextJS Auth Context Template
    1
    import React, { createContext, useContext, useEffect, useState } from 'react';
    2
    import {
    3
      signInWithPopup,
    4
      signOut,
    5
      onIdTokenChanged,
  4. Algorithms Algorithms Public

    JavaScript implementation of most popular and frequently used algorithms for manipulating and sorting data structures

    JavaScript 1

  5. leetcode leetcode Public

    Leetcode problems solutions in JavaScript

    JavaScript 1