Skip to content
View andrii-marushchak's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Ukraine, Ivano-Frankivsk
Block or Report

Block or report andrii-marushchak

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

Pinned

  1. Gulp-4-Webpack-Boilerplate Gulp-4-Webpack-Boilerplate Public template

    HTML/SCSS Boilerplate using GULP 4

    JavaScript 5

  2. Wordpress-Theme-Boilerplate Wordpress-Theme-Boilerplate Public

    Starter boilerplate for Wordpress theme development

    JavaScript 6

  3. gulp-html-img-to-picture gulp-html-img-to-picture Public

    Gulp plugin to wrap tag <img> with <picture> adding <source> including .avif and .webp and sort sources inside <picture> by size

    JavaScript 6

  4. JS Snippets JS Snippets
    1
    const links = document.querySelectorAll('a[href^="#"]:not(.modal-toggle)')
    2
    
                  
    3
    links.forEach((nodeElement) => {
    4
        nodeElement.addEventListener('click', function (e) {
    5
            e.preventDefault()
  5. PHP & WordPress Snippets PHP & WordPress Snippets
    1
    define('BROWSER_AVIF', strpos($_SERVER['HTTP_ACCEPT'], 'image/avif') !== false);
    2
    define('BROWSER_WEBP', strpos($_SERVER['HTTP_ACCEPT'], 'image/webp') !== false);