├── 20171021 ├── atom.md ├── bootstrap4.html └── readme.md ├── 20171028 ├── .gitignore └── readme.md ├── 20171031 ├── .gitignore ├── pypandoc │ ├── deploy.py │ ├── results │ │ ├── about.html │ │ ├── index.html │ │ └── support.html │ ├── source │ │ ├── about.md │ │ ├── index.md │ │ └── support.md │ └── templates │ │ ├── footer.html │ │ ├── header.html │ │ └── navigation.html └── readme.md ├── .gitignore ├── 20171027-Automated-Testing ├── .gitignore ├── readme.md ├── screenshots │ ├── home-page.png │ ├── live-events-page-form-submitted.png │ ├── live-events-page-form.png │ └── live-events-page.png └── test.py ├── nodemcu_remote_led_web_ui ├── readme.md ├── webui │ ├── data.txt │ ├── index.html │ ├── log.txt │ └── toggle.php └── wifi_led.ino └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | streams/ 3 | -------------------------------------------------------------------------------- /20171021/atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171021/atom.md -------------------------------------------------------------------------------- /20171021/bootstrap4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171021/bootstrap4.html -------------------------------------------------------------------------------- /20171021/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171021/readme.md -------------------------------------------------------------------------------- /20171027-Automated-Testing/.gitignore: -------------------------------------------------------------------------------- 1 | selenium-server-standalone-3.6.0.jar 2 | -------------------------------------------------------------------------------- /20171027-Automated-Testing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/readme.md -------------------------------------------------------------------------------- /20171027-Automated-Testing/screenshots/home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/screenshots/home-page.png -------------------------------------------------------------------------------- /20171027-Automated-Testing/screenshots/live-events-page-form-submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/screenshots/live-events-page-form-submitted.png -------------------------------------------------------------------------------- /20171027-Automated-Testing/screenshots/live-events-page-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/screenshots/live-events-page-form.png -------------------------------------------------------------------------------- /20171027-Automated-Testing/screenshots/live-events-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/screenshots/live-events-page.png -------------------------------------------------------------------------------- /20171027-Automated-Testing/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171027-Automated-Testing/test.py -------------------------------------------------------------------------------- /20171028/.gitignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /20171028/readme.md: -------------------------------------------------------------------------------- 1 | # Oct 28 2017 - Q and A 2 | 3 | tbd 4 | -------------------------------------------------------------------------------- /20171031/.gitignore: -------------------------------------------------------------------------------- 1 | EXAMPLE/ 2 | sphinx-example/ 3 | -------------------------------------------------------------------------------- /20171031/pypandoc/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/deploy.py -------------------------------------------------------------------------------- /20171031/pypandoc/results/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/results/about.html -------------------------------------------------------------------------------- /20171031/pypandoc/results/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/results/index.html -------------------------------------------------------------------------------- /20171031/pypandoc/results/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/results/support.html -------------------------------------------------------------------------------- /20171031/pypandoc/source/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/source/about.md -------------------------------------------------------------------------------- /20171031/pypandoc/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/source/index.md -------------------------------------------------------------------------------- /20171031/pypandoc/source/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/source/support.md -------------------------------------------------------------------------------- /20171031/pypandoc/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/templates/footer.html -------------------------------------------------------------------------------- /20171031/pypandoc/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/templates/header.html -------------------------------------------------------------------------------- /20171031/pypandoc/templates/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/pypandoc/templates/navigation.html -------------------------------------------------------------------------------- /20171031/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/20171031/readme.md -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/nodemcu_remote_led_web_ui/readme.md -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/webui/data.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/webui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/nodemcu_remote_led_web_ui/webui/index.html -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/webui/log.txt: -------------------------------------------------------------------------------- 1 | OFF-Yoder, Indiana-November 6, 2017, 11:42 pm 2 | -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/webui/toggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/nodemcu_remote_led_web_ui/webui/toggle.php -------------------------------------------------------------------------------- /nodemcu_remote_led_web_ui/wifi_led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/nodemcu_remote_led_web_ui/wifi_led.ino -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedigicraft/livestreams/HEAD/readme.md --------------------------------------------------------------------------------