├── .gitignore ├── README.md ├── code ├── DadBot │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── commands │ │ ├── index.js │ │ ├── joke.js │ │ └── ping.js │ │ └── index.js ├── HueLightControl │ ├── index.js │ ├── package-lock.json │ └── package.json └── JokeData │ ├── jokes-icanhazdad.js │ ├── jokes-rapidapi.js │ ├── jokes.txt │ ├── package-lock.json │ └── package.json └── episodes ├── 01.md └── images └── latenight.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/README.md -------------------------------------------------------------------------------- /code/DadBot/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/.eslintrc.js -------------------------------------------------------------------------------- /code/DadBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/.gitignore -------------------------------------------------------------------------------- /code/DadBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/README.md -------------------------------------------------------------------------------- /code/DadBot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/package-lock.json -------------------------------------------------------------------------------- /code/DadBot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/package.json -------------------------------------------------------------------------------- /code/DadBot/src/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/src/commands/index.js -------------------------------------------------------------------------------- /code/DadBot/src/commands/joke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/src/commands/joke.js -------------------------------------------------------------------------------- /code/DadBot/src/commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/src/commands/ping.js -------------------------------------------------------------------------------- /code/DadBot/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/DadBot/src/index.js -------------------------------------------------------------------------------- /code/HueLightControl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/HueLightControl/index.js -------------------------------------------------------------------------------- /code/HueLightControl/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/HueLightControl/package-lock.json -------------------------------------------------------------------------------- /code/HueLightControl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/HueLightControl/package.json -------------------------------------------------------------------------------- /code/JokeData/jokes-icanhazdad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/JokeData/jokes-icanhazdad.js -------------------------------------------------------------------------------- /code/JokeData/jokes-rapidapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/JokeData/jokes-rapidapi.js -------------------------------------------------------------------------------- /code/JokeData/jokes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/JokeData/jokes.txt -------------------------------------------------------------------------------- /code/JokeData/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/JokeData/package-lock.json -------------------------------------------------------------------------------- /code/JokeData/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/code/JokeData/package.json -------------------------------------------------------------------------------- /episodes/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/episodes/01.md -------------------------------------------------------------------------------- /episodes/images/latenight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingTrain/LateNight/HEAD/episodes/images/latenight.jpg --------------------------------------------------------------------------------