Skip to content
View Maybach91's full-sized avatar
👁️
Whats poppin’?
👁️
Whats poppin’?
Block or Report

Block or report Maybach91

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

Who?

Patrick Ludewig is a developer specialized in Frontend and User Experience Design currently based in Vienna, Austria.
As a freelancer, he works for web agencies, companies, startups and individuals all over the world.

What

  • Frontend Development
    • Vue
    • React
  • Onlineshop / Websites
    • Kirby CMS
    • Craft CMS
    • Shopware
  • Shopify (My Gists)
  • Webflow
  • UX / UI oriented development

Where

https://yes.patrick.works

GitHub Streak

Patricks's GitHub stats

Patricks's wakatime stats

Pinned

  1. [Shopify Load More Products Button J... [Shopify Load More Products Button Javascript] its the vanilla javascript version #shopify #loadmore #products #collection #tailwind
    1
    const products_on_page = document.getElementById('product-grid');
    2
    let next_url = products_on_page.dataset.nextUrl;
    3
    
                  
    4
    const load_more_btn = document.getElementsByClassName('load-more_btn')[0];
    5
    const load_more_spinner = document.getElementsByClassName('load-more_spinner')[0];
  2. Remove MERGED local Branches without... Remove MERGED local Branches without Remote https://stackoverflow.com/a/33548037/1468576 #git #branch #gitflow #remote
    1
    // https://stackoverflow.com/a/59912825/1468576
    2
    git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D
  3. [Pull Request / Merge Request Templa... [Pull Request / Merge Request Template for Gitworkflow] When creating a new Pull Request this template should be used as prefilled content for the PR description. Has to be placed in .github/ folder in the DEFAULT branch of the repo. #github #pullrequest #mergerequest #template
    1
    ### Description:
    2
    Describe what you have changed in this Pull Request and why.
    3
    
                  
    4
    ### Related User Story:
    5
    https://jira.atlassian.net/browse/XX-XXX
  4. [PERT Pricing Method to calculate of... [PERT Pricing Method to calculate offers for websites] - https://en.wikipedia.org/wiki/Three-point_estimation
    1
    // (optimistic + (2 * realistic) + (3 * pessimistic)) / 6
    2
    (1h + (2 * 2h) + (3 * 5h)) / 6 = 3,33 h
  5. Simple Fuzzy Search Vanilla Javascri... Simple Fuzzy Search Vanilla Javascript #fuzzysearch #javascript
    1
    // Source: https://slimvoice.co/static/js/client_select.js
    2
    // Referenced by Owner at https://dev.to/winduptoy/a-javascript-free-frontend-2d3e
    3
    
                  
    4
    const clientSelects = document.querySelectorAll('.clientsSelect__client');
    5
    const emptyMessage = document.getElementById('clientsSelect__noneFound');
  6. webflow-multilingual webflow-multilingual Public

    Forked from dfdgsdfg/webflow-multilingual

    Webflow multilingual support library

    JavaScript 1