├── .idea └── vcs.xml ├── AsciiArt ├── README.md ├── asciiart.py ├── cool-nike-logos.jpg ├── images │ └── cool-nike-logos.jpg ├── main.py └── templates │ ├── display.html │ └── index.html ├── AskStackOverFlow ├── LICENSE.txt ├── README.md ├── askstackoverflow │ └── askstackoverflow.py ├── requirements.txt └── setup.py ├── CarLoan Data Extractor ├── README.md └── getcardata.py ├── CollegeProjectFinder ├── README.md ├── common.py ├── finder.py ├── requirements.txt └── terminalsize.py ├── README.md ├── WhatsHotReddit ├── README.md ├── praw.ini ├── requirements.txt └── whr.py ├── movie-streamer ├── .gitignore ├── LICENSE.txt ├── README.md ├── bin │ └── mstream ├── mstream │ └── __init__.py ├── requirements.txt └── setup.py └── webcam-streamer ├── README.md ├── camera.py ├── main.py └── templates └── index.html /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AsciiArt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/README.md -------------------------------------------------------------------------------- /AsciiArt/asciiart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/asciiart.py -------------------------------------------------------------------------------- /AsciiArt/cool-nike-logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/cool-nike-logos.jpg -------------------------------------------------------------------------------- /AsciiArt/images/cool-nike-logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/images/cool-nike-logos.jpg -------------------------------------------------------------------------------- /AsciiArt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/main.py -------------------------------------------------------------------------------- /AsciiArt/templates/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/templates/display.html -------------------------------------------------------------------------------- /AsciiArt/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AsciiArt/templates/index.html -------------------------------------------------------------------------------- /AskStackOverFlow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AskStackOverFlow/LICENSE.txt -------------------------------------------------------------------------------- /AskStackOverFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AskStackOverFlow/README.md -------------------------------------------------------------------------------- /AskStackOverFlow/askstackoverflow/askstackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AskStackOverFlow/askstackoverflow/askstackoverflow.py -------------------------------------------------------------------------------- /AskStackOverFlow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AskStackOverFlow/requirements.txt -------------------------------------------------------------------------------- /AskStackOverFlow/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/AskStackOverFlow/setup.py -------------------------------------------------------------------------------- /CarLoan Data Extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CarLoan Data Extractor/README.md -------------------------------------------------------------------------------- /CarLoan Data Extractor/getcardata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CarLoan Data Extractor/getcardata.py -------------------------------------------------------------------------------- /CollegeProjectFinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CollegeProjectFinder/README.md -------------------------------------------------------------------------------- /CollegeProjectFinder/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CollegeProjectFinder/common.py -------------------------------------------------------------------------------- /CollegeProjectFinder/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CollegeProjectFinder/finder.py -------------------------------------------------------------------------------- /CollegeProjectFinder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CollegeProjectFinder/requirements.txt -------------------------------------------------------------------------------- /CollegeProjectFinder/terminalsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/CollegeProjectFinder/terminalsize.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/README.md -------------------------------------------------------------------------------- /WhatsHotReddit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/WhatsHotReddit/README.md -------------------------------------------------------------------------------- /WhatsHotReddit/praw.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/WhatsHotReddit/praw.ini -------------------------------------------------------------------------------- /WhatsHotReddit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/WhatsHotReddit/requirements.txt -------------------------------------------------------------------------------- /WhatsHotReddit/whr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/WhatsHotReddit/whr.py -------------------------------------------------------------------------------- /movie-streamer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/.gitignore -------------------------------------------------------------------------------- /movie-streamer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/LICENSE.txt -------------------------------------------------------------------------------- /movie-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/README.md -------------------------------------------------------------------------------- /movie-streamer/bin/mstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/bin/mstream -------------------------------------------------------------------------------- /movie-streamer/mstream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movie-streamer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/requirements.txt -------------------------------------------------------------------------------- /movie-streamer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/movie-streamer/setup.py -------------------------------------------------------------------------------- /webcam-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/webcam-streamer/README.md -------------------------------------------------------------------------------- /webcam-streamer/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/webcam-streamer/camera.py -------------------------------------------------------------------------------- /webcam-streamer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/webcam-streamer/main.py -------------------------------------------------------------------------------- /webcam-streamer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaulstein/7daysOfCode/HEAD/webcam-streamer/templates/index.html --------------------------------------------------------------------------------