Skip to content
View levchenkod's full-sized avatar
πŸ„β€β™‚οΈ
πŸ„β€β™‚οΈ
Block or Report

Block or report levchenkod

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

Cover image that says I develop moder javascript web applications

Dmytro Levchenko

Front-end Developer with 10+ years of experience and a focus on React and Next.js web applications and User Interface design background. Contact

Experiments

Interface highlighted by flashlight Two blurred UI elements Two blurred UI elements

Skills

mongodb logotype angular logotype babel logotype chromatic logotype circleci logotype d3js logotype do logotype docker logotype ec2 logotype express logotype firebase logotype grunt logotype gulpt logotype heroku logotype jest logotype js logotype mui logotype next logotype node logotype pug logotype pupppeteer logotype qraphql logotype react logotype redux logotype sass logotype story logotype tailwind logotype ts logotype vercel logotype webpack logotypesocket.io logotype

Links

chain icon Portfolio

chain icon LinkedIn


Slava Ukraini! πŸ‡ΊπŸ‡¦

Pinned Loading

  1. twemoji-input twemoji-input Public

    This simple javascript function that allows you to easily paste twemoji in textarea.

    JavaScript 9 7

  2. See https://salferrarello.com/wordpr... See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
    1
    # -----------------------------------------------------------------
    2
    # .gitignore for WordPress
    3
    # Bare Minimum Git
    4
    # http:https://ironco.de/bare-minimum-git/
    5
    # ver 20150227
  3. Grunt + Sass + Autoprefixer Grunt + Sass + Autoprefixer
    1
    module.exports = function(grunt) {
    2
      grunt.initConfig({
    3
        pkg: grunt.file.readJSON('package.json'),
    4
        sass: {
    5
          dist: {
  4. Random ava url generator Random ava url generator
    1
    const random = (max) => {
    2
      return Math.floor(Math.random() * max);
    3
    };
    4
    
    
    5
    const getRandomAvaURL = () => {
  5. formatDate formatDate Public

    Super tiny date formatting lib. When momentjs is overkill

    JavaScript