gitextract_f0w1g8j0/ ├── CHANGELOG.md ├── ChatServiceLambdaFunctions/ │ ├── ZombieGetMessages.js │ └── ZombiePostMessage.js ├── CloudFormation/ │ ├── CreateZombieWorkshop.json │ └── CustomResources/ │ ├── APIGatewayCreateScript/ │ │ └── src/ │ │ ├── ApiGatewayCreate.js │ │ ├── ApiGatewayDelete.js │ │ ├── LambdaHandler.js │ │ ├── ZombieWebsiteConfigUpdate.js │ │ └── cloudformationsender.js │ ├── IamUsers/ │ │ ├── IamLambdaHandler.js │ │ ├── cloudformationsender.js │ │ ├── create.js │ │ └── delete.js │ ├── S3GetFilesFunction/ │ │ └── S3GetFilesFunction.js │ ├── cognito/ │ │ └── cognito.js │ └── cognitoTriggerBuild/ │ └── index.js ├── ElasticSearchLambda/ │ └── ZombieWorkshopSearchIndexing.js ├── LICENSE ├── NOTICE ├── README.md ├── S3WebApp/ │ └── S3/ │ ├── app.js │ ├── assets/ │ │ ├── css/ │ │ │ └── zombie.css │ │ └── js/ │ │ ├── aws-cognito-sdk.js │ │ ├── constants.js │ │ ├── jsbn.js │ │ ├── jsbn2.js │ │ └── sjcl.js │ ├── factories/ │ │ └── utils.js │ ├── index.html │ ├── lib/ │ │ ├── CryptoJS/ │ │ │ ├── components/ │ │ │ │ ├── enc-base64.js │ │ │ │ └── hmac.js │ │ │ └── rollups/ │ │ │ ├── hmac-sha256.js │ │ │ └── sha256.js │ │ ├── apiGatewayCore/ │ │ │ ├── apiGatewayClient.js │ │ │ ├── sigV4Client.js │ │ │ ├── simpleHttpClient.js │ │ │ └── utils.js │ │ ├── axios/ │ │ │ └── dist/ │ │ │ └── axios.standalone.js │ │ └── url-template/ │ │ └── url-template.js │ └── modules/ │ ├── chat/ │ │ ├── chat.html │ │ ├── chat.js │ │ ├── chatMessages.html │ │ ├── chatMessages.js │ │ ├── chatPanel.html │ │ ├── chatPanel.js │ │ ├── talkersPanel.html │ │ └── talkersPanel.js │ ├── confirm/ │ │ ├── confirm.html │ │ └── confirm.js │ ├── index.html │ ├── signin/ │ │ ├── signin.html │ │ └── signin.js │ └── signup/ │ ├── signup.html │ └── signup.js ├── Slack/ │ └── SlackService.js ├── Twilio/ │ └── TwilioProcessing.js ├── cognitoLambdaTrigger/ │ └── index.js └── zombieSensor/ ├── lambda/ │ └── exampleSNSFunction.js └── zombieIntelEdisonCode/ ├── main.js └── package.json