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

Dmytro Levchenko

Making web applications for businesses and fun!

Slava Ukraini πŸ‡ΊπŸ‡¦

Website Email Twitter LinkedIn Behance

Skills

JavaScript Typescript HTML5 CSS3 React Angular NextJS Gatsby JQuery SASS Bootstrap Material UI Redux Webpack Babel NodeJS Express GraphQL Mongo DB MySQL Firebase Heroku

Pinned

  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://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 = () => {