/armfoot.github.io

A little about the arm and a little about the foot

Primary LanguageHTMLApache License 2.0Apache-2.0

Arm + foot

Question of the day a lifetime

  • Why do I need an entire body?

Daily routine

fetch('plans.txt')
.then(response => response.text())
.then(plans => {
  for(let action of plans.split('\n')){
    if(let direction = action.isMovement()) {
      Armfoot.jump(direction);
    } else {
      switch(action) {
        case 'wave':
        case 'type':
        case 'play the piano':
          Armfoot.wiggleFingers();
          break;
        case 'workout':
        case 'fetch':
        case 'massage':
          Armfoot.grabAndRelease();
          break;
        case 'hide':
          Armfoot.digHoleAndPlaceHandInside();
          break;
        default:
          Armfoot.grabFootAndRoll();
      }
    }
  }
});

Version 1.0.1 (fork needed)