Skip to content
View simonefuoco's full-sized avatar

Organizations

@glyphsight
Block or Report

Block or report simonefuoco

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Step to verify commits. Step to verify commits.
    1
    Execute these commands in repo folder.
    2
    
                  
    3
    ```bash
    4
    git config user.name "<NAME_OF_YOUR_CHOICE>"
    5
    git config user.email "<GITHUB_EMAIL>"
  2. console args console args
    1
    function grab(flag) {
    2
      var index = process.argv.indexOf(flag);
    3
      return (index === -1) ? null : process.argv[index+1];
    4
    }
    5
    
                  
  3. console waitingPercent console waitingPercent
    1
    function writeWaitingPercent(p) {
    2
      process.stdout.clearLine();
    3
      process.stdout.cursorTo(0);
    4
      process.stdout.write(`waiting ... ${p}`);
    5
    }
  4. wordpress-docker-compose wordpress-docker-compose Public

    Shell