Skip to content
View whoamindx's full-sized avatar
🚀
🚀

Organizations

@wpfortaleza
Block or Report

Block or report whoamindx

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 Loading

  1. binding-only-html binding-only-html Public

    🤘🏻 Fucking binding only HTML

    HTML 9

  2. my-starter-theme-for-wordpress-with-gulp my-starter-theme-for-wordpress-with-gulp Public

    🚀 My starter theme for Wordpress with gulp

    CSS 3 1

  3. whoamindx.github.io whoamindx.github.io Public

    🌐 My personal blog

    CSS 3 2

  4. wordpress-docker-compose wordpress-docker-compose Public

    🐳 My simple project for local wordpress development with docker

    2 1

  5. app.js app.js
    1
    //referencia do prompt
    2
    var bannerInstall;
    3
    
    
    4
    if ('serviceWorker' in navigator){
    5
        navigator.serviceWorker
  6. Debounce in few lines Debounce in few lines
    1
    let timer = null;
    2
    
    
    3
    export const debounce = (func, wait) => () => {
    4
      clearTimeout(timer);
    5
      timer = setTimeout(func, wait);