├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 90sBG.gif ├── 90sDivider.gif ├── Side1.png └── Side2.png ├── drawing.py ├── image_search.py ├── main.py ├── processing.py ├── requirements.txt └── speech.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/README.md -------------------------------------------------------------------------------- /assets/90sBG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/assets/90sBG.gif -------------------------------------------------------------------------------- /assets/90sDivider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/assets/90sDivider.gif -------------------------------------------------------------------------------- /assets/Side1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/assets/Side1.png -------------------------------------------------------------------------------- /assets/Side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/assets/Side2.png -------------------------------------------------------------------------------- /drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/drawing.py -------------------------------------------------------------------------------- /image_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/image_search.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/main.py -------------------------------------------------------------------------------- /processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/processing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/requirements.txt -------------------------------------------------------------------------------- /speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trishume/LastSecondSlides/HEAD/speech.py --------------------------------------------------------------------------------