├── .gitignore ├── EECS1720_2022w_syllabus.pdf ├── General-Content ├── Coding_vs_Programming.md ├── Content_by_Topic │ ├── JavaScript │ │ ├── JSON_ex.html │ │ ├── external.js │ │ ├── js_htmlb.html │ │ ├── js_htmlext.html │ │ └── js_htmlh.html │ ├── Python │ │ └── python-advanced_students │ │ │ ├── dayofweek.py │ │ │ ├── filesearch.py │ │ │ ├── getlinks.py │ │ │ ├── pass.py │ │ │ ├── resize.py │ │ │ ├── resized_testimg.webp │ │ │ ├── rez.py │ │ │ ├── rotate.py │ │ │ ├── rotated_testimg.webp │ │ │ ├── testimg.webp │ │ │ └── utils.py │ ├── demos │ │ ├── advanced_students_extension │ │ │ ├── background.js │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── manifest.json │ │ │ ├── popup.html │ │ │ ├── popup.js │ │ │ ├── program.js │ │ │ └── style.css │ │ ├── just_starting_students_example │ │ │ ├── img │ │ │ │ ├── icon16.png │ │ │ │ ├── icon32.png │ │ │ │ └── icon48.png │ │ │ ├── manifest.json │ │ │ ├── popup.html │ │ │ └── popup.sublime-workspace │ │ └── lab02 │ │ │ ├── Feb15 │ │ │ ├── socialbot_.py │ │ │ └── socialbot_access.py │ │ │ ├── example.py │ │ │ ├── setup.txt │ │ │ └── test_location_of_cam.py │ ├── docs_LECTURE_NOTES │ │ ├── DAILYCODE.md │ │ ├── GitHappens.md │ │ ├── JS_OOP.md │ │ ├── PY_OOP.md │ │ ├── PY_intro.md │ │ ├── StarterPack_Extensions.md │ │ ├── StarterPack_SocialBot.md │ │ ├── UI_UE_IDE_useful_links.md │ │ ├── extension-debug-INFO.md │ │ ├── setup.txt │ │ └── socialbot-debug-INFO.md │ └── processing │ │ ├── p5js │ │ ├── README.md │ │ ├── addons │ │ │ ├── p5.js │ │ │ ├── p5.min.js │ │ │ ├── p5.sound.js │ │ │ └── p5.sound.min.js │ │ ├── client │ │ │ ├── index.html │ │ │ └── sketch.js │ │ ├── colour │ │ │ ├── colour.js │ │ │ └── index.html │ │ ├── geometric │ │ │ ├── geometric.js │ │ │ └── index.html │ │ ├── libraries │ │ │ ├── p5.min.js │ │ │ ├── p5.sound.js │ │ │ └── tone.js │ │ ├── package-lock.json │ │ ├── put_it_together │ │ │ ├── index.html │ │ │ └── put_it_together.js │ │ └── sound │ │ │ ├── index.html │ │ │ └── ok_but_sound.js │ │ └── python-mode │ │ ├── colour_py │ │ ├── colour_py.pyde │ │ └── sketch.properties │ │ ├── geometric_py │ │ ├── geometric_py.pyde │ │ └── sketch.properties │ │ ├── put_it_all_together │ │ ├── put_it_all_together.pyde │ │ └── sketch.properties │ │ ├── python_sketch │ │ ├── python_sketch.pyde │ │ └── sketch.properties │ │ └── rings_final_python_version_with_notes │ │ └── rings │ │ ├── rings.pyde │ │ └── sketch.properties ├── Content_by_Week │ ├── Week01 │ │ ├── DAILYCODE.md │ │ ├── README.md │ │ ├── WEEK1_Thurs.txt │ │ ├── advanced_students_p5js_readme.txt │ │ ├── advanced_students_python_mode_processing_readme.txt │ │ ├── p5js │ │ │ ├── README.md │ │ │ ├── addons │ │ │ │ ├── p5.js │ │ │ │ ├── p5.min.js │ │ │ │ ├── p5.sound.js │ │ │ │ └── p5.sound.min.js │ │ │ ├── client │ │ │ │ ├── index.html │ │ │ │ └── sketch.js │ │ │ └── package-lock.json │ │ └── python-mode │ │ │ └── python_sketch │ │ │ ├── python_sketch.pyde │ │ │ └── sketch.properties │ ├── Week02 │ │ ├── JSON_ex.html │ │ ├── README.md │ │ ├── StarterPack_Extensions.md │ │ ├── WEEK2_Tues.txt │ │ ├── advanced_students_extension │ │ │ ├── background.js │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ ├── icon48.png │ │ │ ├── manifest.json │ │ │ ├── popup.html │ │ │ ├── popup.js │ │ │ ├── program.js │ │ │ └── style.css │ │ ├── extension-debug-INFO.md │ │ └── just_starting_students_example │ │ │ ├── img │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ └── icon48.png │ │ │ ├── manifest.json │ │ │ ├── popup.html │ │ │ └── popup.sublime-workspace │ ├── Week03 │ │ ├── JSON_ex.html │ │ ├── README.md │ │ ├── external.js │ │ ├── js_htmlb.html │ │ ├── js_htmlext.html │ │ └── js_htmlh.html │ ├── Week04 │ │ ├── GitHappens.md │ │ ├── README.md │ │ ├── Week04-live_code │ │ │ ├── JS │ │ │ │ ├── colour │ │ │ │ │ ├── colour.js │ │ │ │ │ └── index.html │ │ │ │ ├── geometric │ │ │ │ │ ├── geometric.js │ │ │ │ │ └── index.html │ │ │ │ ├── libraries │ │ │ │ │ ├── p5.min.js │ │ │ │ │ ├── p5.sound.js │ │ │ │ │ └── tone.js │ │ │ │ ├── put_it_together │ │ │ │ │ ├── index.html │ │ │ │ │ └── put_it_together.js │ │ │ │ └── sound │ │ │ │ │ ├── index.html │ │ │ │ │ └── ok_but_sound.js │ │ │ ├── README.md │ │ │ └── python │ │ │ │ ├── colour_py │ │ │ │ ├── colour_py.pyde │ │ │ │ └── sketch.properties │ │ │ │ ├── geometric_py │ │ │ │ ├── geometric_py.pyde │ │ │ │ └── sketch.properties │ │ │ │ └── put_it_all_together │ │ │ │ ├── put_it_all_together.pyde │ │ │ │ └── sketch.properties │ │ └── python-advanced_students │ │ │ ├── dayofweek.py │ │ │ ├── filesearch.py │ │ │ ├── getlinks.py │ │ │ ├── pass.py │ │ │ ├── resize.py │ │ │ ├── resized_testimg.webp │ │ │ ├── rez.py │ │ │ ├── rotate.py │ │ │ ├── rotated_testimg.webp │ │ │ ├── testimg.webp │ │ │ └── utils.py │ ├── Week05 │ │ ├── README.md │ │ ├── Week05-live_code │ │ │ ├── rings_final_python_version_with_notes │ │ │ │ └── rings │ │ │ │ │ ├── rings.pyde │ │ │ │ │ └── sketch.properties │ │ │ ├── setup.txt │ │ │ └── working_copy │ │ │ │ ├── working_copy.js │ │ │ │ ├── working_copy.py │ │ │ │ └── working_copy.pyde │ │ └── lab02 │ │ │ ├── example.py │ │ │ ├── setup.txt │ │ │ └── test_location_of_cam.py │ └── Week06 │ │ └── Feb15 │ │ ├── socialbot_.py │ │ └── socialbot_access.py ├── EECS1710_VM Setup.pdf ├── a_little_story_TO_READ.md └── misc │ ├── GitHub_CLI.txt │ ├── StarterPack_SocialBot.md │ ├── WEEK1_Thurs.txt │ ├── WEEK2_Tues.txt │ ├── img │ └── whyslow.png │ ├── p5js_readme.txt │ ├── python_mode_processing_readme.txt │ └── socialbot-debug-INFO.md ├── LICENSE ├── Lecture_notes_to_review ├── OOP │ ├── JS_OOP.md │ ├── JS_intro.md │ ├── PY_OOP.md │ ├── PY_intro.md │ ├── SUPER().md │ ├── kwarg.png │ ├── procesing-shapes-classes.md │ ├── repo.png │ └── super.png ├── README.md ├── XR │ ├── GPS-Camera-WebXR.md │ ├── img │ │ ├── default_reticle_map.webp │ │ ├── equator-meridian.jpeg │ │ ├── lat-long_degrees.png │ │ ├── not-localhost.png │ │ ├── this-is-localhost.png │ │ └── trailer.png │ ├── intro-location-based-XR.md │ └── some_JavaScript.md └── context │ ├── Coding_vs_Programming.md │ ├── DAILYCODE.md │ ├── GitHappens.md │ ├── StarterPack_Extensions.md │ ├── UI_UE_IDE_useful_links.md │ ├── a_little_story_TO_READ.md │ ├── extension-debug-INFO.md │ └── helpful-links.md ├── README.md └── live_code ├── AR-GPS ├── ar-threex.js ├── ar.js ├── assets │ ├── herobrine │ │ ├── license.txt │ │ ├── scene.bin │ │ ├── scene.gltf │ │ └── textures │ │ │ └── Material_baseColor.png │ └── magnemite │ │ ├── .DS_Store │ │ ├── scene.bin │ │ ├── scene.gltf │ │ └── textures │ │ └── blinn2_baseColor.png ├── index.html ├── localhost-AR-example │ ├── server-node-express │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── public copy │ │ │ ├── ar-threex.js │ │ │ ├── assets │ │ │ ├── herobrine │ │ │ │ ├── license.txt │ │ │ │ ├── scene.bin │ │ │ │ ├── scene.gltf │ │ │ │ └── textures │ │ │ │ │ └── Material_baseColor.png │ │ │ └── magnemite │ │ │ │ ├── .DS_Store │ │ │ │ ├── scene.bin │ │ │ │ ├── scene.gltf │ │ │ │ └── textures │ │ │ │ └── blinn2_baseColor.png │ │ │ ├── index.html │ │ │ ├── script.js │ │ │ └── style.css │ └── server-python │ │ ├── ar-threex.js │ │ ├── assets │ │ ├── herobrine │ │ │ ├── license.txt │ │ │ ├── scene.bin │ │ │ ├── scene.gltf │ │ │ └── textures │ │ │ │ └── Material_baseColor.png │ │ └── magnemite │ │ │ ├── .DS_Store │ │ │ ├── scene.bin │ │ │ ├── scene.gltf │ │ │ └── textures │ │ │ └── blinn2_baseColor.png │ │ ├── index.html │ │ ├── script.js │ │ ├── server.py │ │ └── style.css ├── script.js ├── style.css └── three.js ├── AR-OTHER_week12 ├── HL.png ├── HR.png ├── anchor-index-1_nose.png ├── face-mesh-anchor-points.png ├── face-nose-anchor.png ├── face-track.html ├── fuzzy-face-nose-anchor.png ├── img-track.html ├── readme.md ├── sample-img.png ├── targets-example.png └── targets.mind ├── AR-website-content ├── AR-landing.html ├── assets │ ├── css │ │ └── style.scss │ ├── js │ │ └── respond.js │ ├── markers │ │ ├── go.png │ │ ├── pattern-go.patt │ │ ├── pattern-go.png │ │ ├── pattern-hiro.patt │ │ ├── pattern-hiro.png │ │ ├── pattern-marker_draw-star.patt │ │ ├── pattern-marker_draw-star.png │ │ ├── pattern-star.patt │ │ └── pattern-star.png │ └── models │ │ ├── bowser.glb │ │ ├── example_model.glb │ │ ├── example_model.gltf │ │ ├── example_model.obj │ │ ├── magnemite.gltf │ │ ├── magnemite.zip │ │ ├── magnemite │ │ ├── .DS_Store │ │ ├── scene.bin │ │ ├── scene.gltf │ │ └── textures │ │ │ └── blinn2_baseColor.png │ │ └── skull-master │ │ ├── skull.bin │ │ ├── skull.gltf │ │ └── textures │ │ ├── defaultMat_diffuse.jpg │ │ ├── defaultMat_normal.jpg │ │ └── defaultMat_specularGlossiness.jpg └── pages │ ├── add-QR-code │ ├── qr-code-direct-to-AR.png │ ├── qr-code-site.png │ ├── qr-code-to-types-of-ar.png │ ├── qr-code.png │ └── qr-in-marker.png │ ├── location-based │ ├── A967A067-48DB-4E88-B8E0-A89411FE8428.jpeg │ ├── assets │ │ └── models │ │ │ ├── scene.bin │ │ │ ├── scene.gltf │ │ │ └── textures │ │ │ └── blinn2_baseColor.png │ ├── location-based-dynamic-loading │ ├── location-based-next-steps │ └── location-based.html │ ├── marker-based │ ├── basic-marker.html │ ├── bowser.glb │ ├── custom-barcode.html │ ├── custom-glTF.html │ ├── custom-pattern.html │ ├── example_model.glb │ └── pattern-go.patt │ ├── marker-less │ ├── NFT_AR │ │ ├── NFT_AR.fset │ │ ├── NFT_AR.iset │ │ └── NFT_AR.jpg │ ├── Sun.glb │ ├── image-track.html │ └── img │ │ ├── NFT_AR │ │ ├── NFT_AR.fset │ │ ├── NFT_AR.html │ │ ├── NFT_AR.iset │ │ └── NFT_AR.jpg │ │ ├── funny_crazy_faces_32.jpg │ │ ├── patternPhoto.fset │ │ ├── patternPhoto.fset3 │ │ ├── patternPhoto.iset │ │ ├── patternPhoto.png │ │ ├── star.fset │ │ ├── star.fset3 │ │ ├── star.iset │ │ └── star.png │ ├── mini-game │ ├── F12_initiate-objects.png │ ├── ar-game.html │ ├── assets │ │ ├── markers │ │ │ ├── bowser-character.patt │ │ │ ├── bowser-marker.png │ │ │ ├── chocobo-character.patt │ │ │ ├── chocobo-character.png │ │ │ ├── hiro.png │ │ │ ├── kanji.png │ │ │ ├── seeds-marker.png │ │ │ ├── seeds-object.patt │ │ │ ├── skull-marker.png │ │ │ └── skull-object.patt │ │ └── models │ │ │ ├── characters │ │ │ ├── bowser.glb │ │ │ ├── chocobo.bin │ │ │ ├── chocobo.gltf │ │ │ ├── license.txt │ │ │ └── textures │ │ │ │ └── Material.002_baseColor.png │ │ │ └── objects │ │ │ ├── license.txt │ │ │ ├── seeds.bin │ │ │ ├── seeds.gltf │ │ │ ├── skull.gltf │ │ │ └── textures │ │ │ └── Sunflower_Seed_TEX_baseColor.png │ ├── js │ │ ├── gamerState.js │ │ ├── interaction.js │ │ └── models.js │ ├── screencaps │ │ ├── 1-bowser.png │ │ ├── 2-bowser_dialogue-accepts-clicks.png │ │ ├── 3-chocobo_dialogue-accepts-clicks.png │ │ ├── 4-skull-with-clicks.png │ │ ├── 5-birdseed-with-clicks.png │ │ ├── 6-bowser_return-with-item_clicks.png │ │ └── 7-chocobo_return-with_item_clicks.png │ └── style.css │ └── source-types │ ├── ar-sources.html │ └── image-type.png ├── AR_content_sample-markers-models ├── example_model.glb ├── example_model.gltf ├── example_model.obj ├── hiro.png ├── kanji.png ├── links.txt ├── marker_image_drawn.png ├── pattern-marker_image_drawn.patt ├── pattern-marker_image_drawn.png ├── qr-code.png ├── qr-code_example_image.png └── qr-code_site.png ├── Apr6-code-snippets └── AR-hit-test_light_reticle.html ├── Feb17-server └── python │ ├── README.md │ ├── index.html │ └── server.py ├── Heroku-flask-and-node ├── Heroku-flask-class │ ├── Procfile │ ├── app.py │ ├── count.txt │ ├── newfile.txt │ ├── requirements.txt │ ├── static │ │ └── script.js │ ├── tempfile.txt │ ├── templates │ │ └── index.html │ └── testenv │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── flask.exe │ │ ├── gunicorn.exe │ │ ├── pip.exe │ │ ├── pip3.10.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg ├── Heroku-node-http │ ├── Procfile │ ├── app.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── script.js │ └── style.css ├── README.md └── terminal-commands-output_npm-init_python-venv.sh ├── JavaScript ├── JSON_ex.html ├── external.js ├── js_htmlb.html ├── js_htmlext.html └── js_htmlh.html ├── Lab1-browser-extensions ├── extension-demo │ ├── img │ │ ├── icon16.png │ │ ├── icon32.png │ │ └── icon48.png │ ├── manifest.json │ ├── popup.html │ └── popup.sublime-workspace └── more-extension-demo │ ├── background.js │ ├── icon128.png │ ├── icon16.png │ ├── icon32.png │ ├── icon48.png │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ ├── program.js │ └── style.css ├── Lab2_1st_lab_lecture ├── file.txt ├── img │ └── Frame.png ├── shortandtweet.py ├── tweepy_example.py └── twitter_screencap.jpg ├── Lab2_2nd_lab_lecture ├── file.txt ├── out.txt └── tweepy_get_info.py ├── Lab3_heroku-flask-webapp ├── Procfile ├── app.py ├── count.txt ├── info.txt ├── requirements.txt ├── templates │ └── index.html └── venv │ ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── easy_install │ ├── easy_install-3.8 │ ├── flask │ ├── gunicorn │ ├── pip │ ├── pip3 │ ├── pip3.8 │ ├── python │ └── python3 │ ├── lib │ └── python3.8 │ │ └── site-packages │ │ ├── Flask-2.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── Jinja2-3.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── MarkupSafe-2.1.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── Werkzeug-2.0.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── __pycache__ │ │ └── easy_install.cpython-38.pyc │ │ ├── click-8.0.4.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── click │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _termui_impl.cpython-38.pyc │ │ │ ├── _textwrap.cpython-38.pyc │ │ │ ├── _unicodefun.cpython-38.pyc │ │ │ ├── _winconsole.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── decorators.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── formatting.cpython-38.pyc │ │ │ ├── globals.cpython-38.pyc │ │ │ ├── parser.cpython-38.pyc │ │ │ ├── shell_completion.cpython-38.pyc │ │ │ ├── termui.cpython-38.pyc │ │ │ ├── testing.cpython-38.pyc │ │ │ ├── types.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _unicodefun.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── shell_completion.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ │ ├── easy_install.py │ │ ├── flask │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ ├── app.cpython-38.pyc │ │ │ ├── blueprints.cpython-38.pyc │ │ │ ├── cli.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── ctx.cpython-38.pyc │ │ │ ├── debughelpers.cpython-38.pyc │ │ │ ├── globals.cpython-38.pyc │ │ │ ├── helpers.cpython-38.pyc │ │ │ ├── logging.cpython-38.pyc │ │ │ ├── scaffold.cpython-38.pyc │ │ │ ├── sessions.cpython-38.pyc │ │ │ ├── signals.cpython-38.pyc │ │ │ ├── templating.cpython-38.pyc │ │ │ ├── testing.cpython-38.pyc │ │ │ ├── typing.cpython-38.pyc │ │ │ ├── views.cpython-38.pyc │ │ │ └── wrappers.cpython-38.pyc │ │ ├── app.py │ │ ├── blueprints.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── ctx.py │ │ ├── debughelpers.py │ │ ├── globals.py │ │ ├── helpers.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── tag.cpython-38.pyc │ │ │ └── tag.py │ │ ├── logging.py │ │ ├── py.typed │ │ ├── scaffold.py │ │ ├── sessions.py │ │ ├── signals.py │ │ ├── templating.py │ │ ├── testing.py │ │ ├── typing.py │ │ ├── views.py │ │ └── wrappers.py │ │ ├── gunicorn-20.1.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── gunicorn │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ ├── arbiter.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── debug.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── glogging.cpython-38.pyc │ │ │ ├── pidfile.cpython-38.pyc │ │ │ ├── reloader.cpython-38.pyc │ │ │ ├── sock.cpython-38.pyc │ │ │ ├── systemd.cpython-38.pyc │ │ │ └── util.cpython-38.pyc │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── pasterapp.cpython-38.pyc │ │ │ │ └── wsgiapp.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── pasterapp.py │ │ │ └── wsgiapp.py │ │ ├── arbiter.py │ │ ├── config.py │ │ ├── debug.py │ │ ├── errors.py │ │ ├── glogging.py │ │ ├── http │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── body.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── message.cpython-38.pyc │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ ├── unreader.cpython-38.pyc │ │ │ │ └── wsgi.cpython-38.pyc │ │ │ ├── body.py │ │ │ ├── errors.py │ │ │ ├── message.py │ │ │ ├── parser.py │ │ │ ├── unreader.py │ │ │ └── wsgi.py │ │ ├── instrument │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── statsd.cpython-38.pyc │ │ │ └── statsd.py │ │ ├── pidfile.py │ │ ├── reloader.py │ │ ├── sock.py │ │ ├── systemd.py │ │ ├── util.py │ │ └── workers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base.cpython-38.pyc │ │ │ ├── base_async.cpython-38.pyc │ │ │ ├── geventlet.cpython-38.pyc │ │ │ ├── ggevent.cpython-38.pyc │ │ │ ├── gthread.cpython-38.pyc │ │ │ ├── gtornado.cpython-38.pyc │ │ │ ├── sync.cpython-38.pyc │ │ │ └── workertmp.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── base_async.py │ │ │ ├── geventlet.py │ │ │ ├── ggevent.py │ │ │ ├── gthread.py │ │ │ ├── gtornado.py │ │ │ ├── sync.py │ │ │ └── workertmp.py │ │ ├── itsdangerous-2.1.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── itsdangerous │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _json.cpython-38.pyc │ │ │ ├── encoding.cpython-38.pyc │ │ │ ├── exc.cpython-38.pyc │ │ │ ├── serializer.cpython-38.pyc │ │ │ ├── signer.cpython-38.pyc │ │ │ ├── timed.cpython-38.pyc │ │ │ └── url_safe.cpython-38.pyc │ │ ├── _json.py │ │ ├── encoding.py │ │ ├── exc.py │ │ ├── py.typed │ │ ├── serializer.py │ │ ├── signer.py │ │ ├── timed.py │ │ └── url_safe.py │ │ ├── jinja2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _identifier.cpython-38.pyc │ │ │ ├── async_utils.cpython-38.pyc │ │ │ ├── bccache.cpython-38.pyc │ │ │ ├── compiler.cpython-38.pyc │ │ │ ├── constants.cpython-38.pyc │ │ │ ├── debug.cpython-38.pyc │ │ │ ├── defaults.cpython-38.pyc │ │ │ ├── environment.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── ext.cpython-38.pyc │ │ │ ├── filters.cpython-38.pyc │ │ │ ├── idtracking.cpython-38.pyc │ │ │ ├── lexer.cpython-38.pyc │ │ │ ├── loaders.cpython-38.pyc │ │ │ ├── meta.cpython-38.pyc │ │ │ ├── nativetypes.cpython-38.pyc │ │ │ ├── nodes.cpython-38.pyc │ │ │ ├── optimizer.cpython-38.pyc │ │ │ ├── parser.cpython-38.pyc │ │ │ ├── runtime.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── tests.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── visitor.cpython-38.pyc │ │ ├── _identifier.py │ │ ├── async_utils.py │ │ ├── bccache.py │ │ ├── compiler.py │ │ ├── constants.py │ │ ├── debug.py │ │ ├── defaults.py │ │ ├── environment.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── idtracking.py │ │ ├── lexer.py │ │ ├── loaders.py │ │ ├── meta.py │ │ ├── nativetypes.py │ │ ├── nodes.py │ │ ├── optimizer.py │ │ ├── parser.py │ │ ├── py.typed │ │ ├── runtime.py │ │ ├── sandbox.py │ │ ├── tests.py │ │ ├── utils.py │ │ └── visitor.py │ │ ├── markupsafe │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── _native.cpython-38.pyc │ │ ├── _native.py │ │ ├── _speedups.c │ │ ├── _speedups.cpython-38-x86_64-linux-gnu.so │ │ ├── _speedups.pyi │ │ └── py.typed │ │ ├── pip-20.0.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __main__.cpython-38.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── legacy_resolve.cpython-38.pyc │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── req_command.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ ├── collector.py │ │ │ │ └── package_finder.py │ │ │ ├── legacy_resolve.py │ │ │ ├── locations.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ ├── marker_files.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ ├── ui.cpython-38.pyc │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── marker_files.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ ├── ui.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ ├── pkg_resources-0.0.0.dist-info │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── py31compat.cpython-38.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ └── py31compat.py │ │ ├── setuptools-44.0.0.dist-info │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _deprecation_warning.cpython-38.pyc │ │ │ ├── _imp.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── build_meta.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── depends.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── glob.cpython-38.pyc │ │ │ ├── installer.cpython-38.pyc │ │ │ ├── launch.cpython-38.pyc │ │ │ ├── lib2to3_ex.cpython-38.pyc │ │ │ ├── monkey.cpython-38.pyc │ │ │ ├── msvc.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── package_index.cpython-38.pyc │ │ │ ├── py27compat.cpython-38.pyc │ │ │ ├── py31compat.cpython-38.pyc │ │ │ ├── py33compat.cpython-38.pyc │ │ │ ├── py34compat.cpython-38.pyc │ │ │ ├── sandbox.cpython-38.pyc │ │ │ ├── site-patch.cpython-38.pyc │ │ │ ├── ssl_support.cpython-38.pyc │ │ │ ├── unicode_utils.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ ├── wheel.cpython-38.pyc │ │ │ └── windows_support.cpython-38.pyc │ │ ├── _deprecation_warning.py │ │ ├── _imp.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alias.cpython-38.pyc │ │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── develop.cpython-38.pyc │ │ │ │ ├── dist_info.cpython-38.pyc │ │ │ │ ├── easy_install.cpython-38.pyc │ │ │ │ ├── egg_info.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py36compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── rotate.cpython-38.pyc │ │ │ │ ├── saveopts.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ ├── setopt.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── upload.cpython-38.pyc │ │ │ │ └── upload_docs.cpython-38.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── py33compat.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ │ └── werkzeug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _internal.cpython-38.pyc │ │ ├── _reloader.cpython-38.pyc │ │ ├── datastructures.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── filesystem.cpython-38.pyc │ │ ├── formparser.cpython-38.pyc │ │ ├── http.cpython-38.pyc │ │ ├── local.cpython-38.pyc │ │ ├── routing.cpython-38.pyc │ │ ├── security.cpython-38.pyc │ │ ├── serving.cpython-38.pyc │ │ ├── test.cpython-38.pyc │ │ ├── testapp.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── user_agent.cpython-38.pyc │ │ ├── useragents.cpython-38.pyc │ │ ├── utils.cpython-38.pyc │ │ └── wsgi.cpython-38.pyc │ │ ├── _internal.py │ │ ├── _reloader.py │ │ ├── datastructures.py │ │ ├── datastructures.pyi │ │ ├── debug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── console.cpython-38.pyc │ │ │ ├── repr.cpython-38.pyc │ │ │ └── tbtools.cpython-38.pyc │ │ ├── console.py │ │ ├── repr.py │ │ ├── shared │ │ │ ├── FONT_LICENSE │ │ │ ├── ICON_LICENSE.md │ │ │ ├── console.png │ │ │ ├── debugger.js │ │ │ ├── less.png │ │ │ ├── more.png │ │ │ ├── source.png │ │ │ ├── style.css │ │ │ └── ubuntu.ttf │ │ └── tbtools.py │ │ ├── exceptions.py │ │ ├── filesystem.py │ │ ├── formparser.py │ │ ├── http.py │ │ ├── local.py │ │ ├── middleware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── dispatcher.cpython-38.pyc │ │ │ ├── http_proxy.cpython-38.pyc │ │ │ ├── lint.cpython-38.pyc │ │ │ ├── profiler.cpython-38.pyc │ │ │ ├── proxy_fix.cpython-38.pyc │ │ │ └── shared_data.cpython-38.pyc │ │ ├── dispatcher.py │ │ ├── http_proxy.py │ │ ├── lint.py │ │ ├── profiler.py │ │ ├── proxy_fix.py │ │ └── shared_data.py │ │ ├── py.typed │ │ ├── routing.py │ │ ├── sansio │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── multipart.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ ├── response.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── multipart.py │ │ ├── request.py │ │ ├── response.py │ │ └── utils.py │ │ ├── security.py │ │ ├── serving.py │ │ ├── test.py │ │ ├── testapp.py │ │ ├── urls.py │ │ ├── user_agent.py │ │ ├── useragents.py │ │ ├── utils.py │ │ ├── wrappers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── accept.cpython-38.pyc │ │ │ ├── auth.cpython-38.pyc │ │ │ ├── base_request.cpython-38.pyc │ │ │ ├── base_response.cpython-38.pyc │ │ │ ├── common_descriptors.cpython-38.pyc │ │ │ ├── cors.cpython-38.pyc │ │ │ ├── etag.cpython-38.pyc │ │ │ ├── json.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ ├── response.cpython-38.pyc │ │ │ └── user_agent.cpython-38.pyc │ │ ├── accept.py │ │ ├── auth.py │ │ ├── base_request.py │ │ ├── base_response.py │ │ ├── common_descriptors.py │ │ ├── cors.py │ │ ├── etag.py │ │ ├── json.py │ │ ├── request.py │ │ ├── response.py │ │ └── user_agent.py │ │ └── wsgi.py │ ├── lib64 │ ├── pyvenv.cfg │ └── share │ └── python-wheels │ ├── CacheControl-0.12.6-py2.py3-none-any.whl │ ├── appdirs-1.4.3-py2.py3-none-any.whl │ ├── certifi-2019.11.28-py2.py3-none-any.whl │ ├── chardet-3.0.4-py2.py3-none-any.whl │ ├── colorama-0.4.3-py2.py3-none-any.whl │ ├── contextlib2-0.6.0-py2.py3-none-any.whl │ ├── distlib-0.3.0-py2.py3-none-any.whl │ ├── distro-1.4.0-py2.py3-none-any.whl │ ├── html5lib-1.0.1-py2.py3-none-any.whl │ ├── idna-2.8-py2.py3-none-any.whl │ ├── ipaddr-2.2.0-py2.py3-none-any.whl │ ├── lockfile-0.12.2-py2.py3-none-any.whl │ ├── msgpack-0.6.2-py2.py3-none-any.whl │ ├── packaging-20.3-py2.py3-none-any.whl │ ├── pep517-0.8.2-py2.py3-none-any.whl │ ├── pip-20.0.2-py2.py3-none-any.whl │ ├── pkg_resources-0.0.0-py2.py3-none-any.whl │ ├── progress-1.5-py2.py3-none-any.whl │ ├── pyparsing-2.4.6-py2.py3-none-any.whl │ ├── requests-2.22.0-py2.py3-none-any.whl │ ├── retrying-1.3.3-py2.py3-none-any.whl │ ├── setuptools-44.0.0-py2.py3-none-any.whl │ ├── six-1.14.0-py2.py3-none-any.whl │ ├── toml-0.10.0-py2.py3-none-any.whl │ ├── urllib3-1.25.8-py2.py3-none-any.whl │ ├── webencodings-0.5.1-py2.py3-none-any.whl │ └── wheel-0.34.2-py2.py3-none-any.whl ├── Location-based-AR-code ├── README.md ├── extending_script.js ├── index.html ├── script.js ├── snippets │ ├── button-SNIPPET.html │ ├── button-SNIPPET.js │ ├── click_listener_SNIPPET.js │ ├── listener-SNIPPET.js │ └── video.html └── style.css ├── README.md ├── add_aesthetic ├── image_averaging.py ├── image_averaging │ ├── data │ │ ├── 141197346_93e0117ecc_m.jpg │ │ ├── 183437063_9f49c8e059_m.jpg │ │ ├── 240446130_b12b272212_m.jpg │ │ ├── 24895023_56286408f5_m.jpg │ │ ├── 255447106_cafcac726b_m.jpg │ │ ├── 275103868_7ba67fdebe_m.jpg │ │ ├── 362858139_28958238f6_m.jpg │ │ ├── 389025714_b0df1f6056_m.jpg │ │ ├── 393157522_b39115c615_m.jpg │ │ └── 57560963_2cf7d45f6c_m.jpg │ └── image_averaging.pyde ├── resize.py └── sketch.properties ├── lastclass.md ├── other-python-camera-files ├── get_token_json.py └── test_location_of_cam.py ├── p5js-browser-art ├── index.html ├── sketch.js └── style.css ├── processing ├── p5js │ ├── README.md │ ├── addons │ │ ├── p5.js │ │ ├── p5.min.js │ │ ├── p5.sound.js │ │ └── p5.sound.min.js │ ├── client │ │ ├── index.html │ │ └── sketch.js │ ├── colour │ │ ├── colour.js │ │ └── index.html │ ├── geometric │ │ ├── geometric.js │ │ └── index.html │ ├── libraries │ │ ├── p5.min.js │ │ ├── p5.sound.js │ │ └── tone.js │ ├── package-lock.json │ ├── put_it_together │ │ ├── index.html │ │ └── put_it_together.js │ └── sound │ │ ├── index.html │ │ └── ok_but_sound.js └── python-mode │ ├── colour_py │ ├── colour_py.pyde │ └── sketch.properties │ ├── geometric_py │ ├── geometric_py.pyde │ └── sketch.properties │ ├── put_it_all_together │ ├── put_it_all_together.pyde │ └── sketch.properties │ ├── python_sketch │ ├── python_sketch.pyde │ └── sketch.properties │ └── rings_final_python_version_with_notes │ └── rings │ ├── rings.pyde │ └── sketch.properties ├── python-classes-processing ├── pydeQ2 │ ├── data │ │ ├── LetterGothicStd-32.vlw │ │ ├── img.png │ │ └── myfile.txt │ ├── pydeQ2.pyde │ └── sketch.properties └── yourcopy.pyde └── python-more-advanced ├── dayofweek.py ├── filesearch.py ├── getlinks.py ├── pass.py ├── resize.py ├── resized_testimg.webp ├── rez.py ├── rotate.py ├── rotated_testimg.webp ├── testimg.webp └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/.gitignore -------------------------------------------------------------------------------- /EECS1720_2022w_syllabus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/EECS1720_2022w_syllabus.pdf -------------------------------------------------------------------------------- /General-Content/Coding_vs_Programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Coding_vs_Programming.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/JavaScript/JSON_ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/JavaScript/JSON_ex.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/JavaScript/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/JavaScript/external.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/JavaScript/js_htmlb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/JavaScript/js_htmlb.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/JavaScript/js_htmlext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/JavaScript/js_htmlext.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/JavaScript/js_htmlh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/JavaScript/js_htmlh.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/dayofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/dayofweek.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/filesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/filesearch.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/getlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/getlinks.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/pass.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/resize.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/resized_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/resized_testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/rez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/rez.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/rotate.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/rotated_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/rotated_testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/Python/python-advanced_students/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/Python/python-advanced_students/utils.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/background.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/icon128.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/icon16.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/icon32.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/icon48.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/manifest.json -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/popup.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/popup.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/program.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/advanced_students_extension/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/advanced_students_extension/style.css -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon16.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon32.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/img/icon48.png -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/manifest.json -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/popup.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/just_starting_students_example/popup.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/just_starting_students_example/popup.sublime-workspace -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/lab02/Feb15/socialbot_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/lab02/Feb15/socialbot_.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/lab02/Feb15/socialbot_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/lab02/Feb15/socialbot_access.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/lab02/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/lab02/example.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/lab02/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/lab02/setup.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/demos/lab02/test_location_of_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/demos/lab02/test_location_of_cam.py -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/DAILYCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/DAILYCODE.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/GitHappens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/GitHappens.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/JS_OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/JS_OOP.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/PY_OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/PY_OOP.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/PY_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/PY_intro.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/StarterPack_Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/StarterPack_Extensions.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/StarterPack_SocialBot.md: -------------------------------------------------------------------------------- 1 | # Social Bot StarterPack 2 | -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/UI_UE_IDE_useful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/UI_UE_IDE_useful_links.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/extension-debug-INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/extension-debug-INFO.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/docs_LECTURE_NOTES/setup.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/docs_LECTURE_NOTES/socialbot-debug-INFO.md: -------------------------------------------------------------------------------- 1 | # Debug 101 2 | -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/addons/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/addons/p5.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/addons/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/addons/p5.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/addons/p5.sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/addons/p5.sound.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/addons/p5.sound.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/client/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/client/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/client/sketch.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/colour/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/colour/colour.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/colour/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/colour/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/geometric/geometric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/geometric/geometric.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/geometric/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/geometric/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/libraries/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/libraries/p5.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/libraries/p5.sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/libraries/tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/libraries/tone.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/put_it_together/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/put_it_together/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/put_it_together/put_it_together.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/put_it_together/put_it_together.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/sound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/sound/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/p5js/sound/ok_but_sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/p5js/sound/ok_but_sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/colour_py/colour_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/colour_py/colour_py.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/colour_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/colour_py/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/geometric_py/geometric_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/geometric_py/geometric_py.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/geometric_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/geometric_py/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/put_it_all_together/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/put_it_all_together/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/python_sketch/python_sketch.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/python_sketch/python_sketch.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Topic/processing/python-mode/python_sketch/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Topic/processing/python-mode/python_sketch/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/DAILYCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/DAILYCODE.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/WEEK1_Thurs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/WEEK1_Thurs.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/advanced_students_p5js_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/advanced_students_p5js_readme.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/advanced_students_python_mode_processing_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/advanced_students_python_mode_processing_readme.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/addons/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/addons/p5.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/addons/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/addons/p5.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/addons/p5.sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/addons/p5.sound.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/addons/p5.sound.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/client/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/client/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/p5js/client/sketch.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/p5js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/python-mode/python_sketch/python_sketch.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/python-mode/python_sketch/python_sketch.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week01/python-mode/python_sketch/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week01/python-mode/python_sketch/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/JSON_ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/JSON_ex.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/StarterPack_Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/StarterPack_Extensions.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/WEEK2_Tues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/WEEK2_Tues.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/background.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/icon128.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/icon16.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/icon32.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/icon48.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/manifest.json -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/popup.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/popup.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/program.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/advanced_students_extension/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/advanced_students_extension/style.css -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/extension-debug-INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/extension-debug-INFO.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon16.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon32.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/img/icon48.png -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/manifest.json -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/popup.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week02/just_starting_students_example/popup.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week02/just_starting_students_example/popup.sublime-workspace -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/JSON_ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/JSON_ex.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/external.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/js_htmlb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/js_htmlb.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/js_htmlext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/js_htmlext.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week03/js_htmlh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week03/js_htmlh.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/GitHappens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/GitHappens.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/colour/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/colour/colour.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/colour/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/colour/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/geometric/geometric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/geometric/geometric.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/geometric/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/geometric/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/p5.min.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/p5.sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/libraries/tone.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/put_it_together/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/put_it_together/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/put_it_together/put_it_together.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/put_it_together/put_it_together.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/sound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/sound/index.html -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/JS/sound/ok_but_sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/JS/sound/ok_but_sound.js -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/python/colour_py/colour_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/python/colour_py/colour_py.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/python/colour_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/python/colour_py/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/python/geometric_py/geometric_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/python/geometric_py/geometric_py.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/Week04-live_code/python/geometric_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/Week04-live_code/python/geometric_py/sketch.properties -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/dayofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/dayofweek.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/filesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/filesearch.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/getlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/getlinks.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/pass.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/resize.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/resized_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/resized_testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/rez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/rez.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/rotate.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/rotated_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/rotated_testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/testimg.webp -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week04/python-advanced_students/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week04/python-advanced_students/utils.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/README.md -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/Week05-live_code/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/Week05-live_code/setup.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/Week05-live_code/working_copy/working_copy.js: -------------------------------------------------------------------------------- 1 | // JavaScript - p5.js 2 | -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/Week05-live_code/working_copy/working_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/Week05-live_code/working_copy/working_copy.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/Week05-live_code/working_copy/working_copy.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/Week05-live_code/working_copy/working_copy.pyde -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/lab02/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/lab02/example.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/lab02/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/lab02/setup.txt -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week05/lab02/test_location_of_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week05/lab02/test_location_of_cam.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week06/Feb15/socialbot_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week06/Feb15/socialbot_.py -------------------------------------------------------------------------------- /General-Content/Content_by_Week/Week06/Feb15/socialbot_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/Content_by_Week/Week06/Feb15/socialbot_access.py -------------------------------------------------------------------------------- /General-Content/EECS1710_VM Setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/EECS1710_VM Setup.pdf -------------------------------------------------------------------------------- /General-Content/a_little_story_TO_READ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/a_little_story_TO_READ.md -------------------------------------------------------------------------------- /General-Content/misc/GitHub_CLI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/GitHub_CLI.txt -------------------------------------------------------------------------------- /General-Content/misc/StarterPack_SocialBot.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /General-Content/misc/WEEK1_Thurs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/WEEK1_Thurs.txt -------------------------------------------------------------------------------- /General-Content/misc/WEEK2_Tues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/WEEK2_Tues.txt -------------------------------------------------------------------------------- /General-Content/misc/img/whyslow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/img/whyslow.png -------------------------------------------------------------------------------- /General-Content/misc/p5js_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/p5js_readme.txt -------------------------------------------------------------------------------- /General-Content/misc/python_mode_processing_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/General-Content/misc/python_mode_processing_readme.txt -------------------------------------------------------------------------------- /General-Content/misc/socialbot-debug-INFO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/LICENSE -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/JS_OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/JS_OOP.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/JS_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/JS_intro.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/PY_OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/PY_OOP.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/PY_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/PY_intro.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/SUPER().md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/SUPER().md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/kwarg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/kwarg.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/procesing-shapes-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/procesing-shapes-classes.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/repo.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/OOP/super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/OOP/super.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/README.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/GPS-Camera-WebXR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/GPS-Camera-WebXR.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/default_reticle_map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/default_reticle_map.webp -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/equator-meridian.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/equator-meridian.jpeg -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/lat-long_degrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/lat-long_degrees.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/not-localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/not-localhost.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/this-is-localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/this-is-localhost.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/img/trailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/img/trailer.png -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/intro-location-based-XR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/intro-location-based-XR.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/XR/some_JavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/XR/some_JavaScript.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/Coding_vs_Programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/Coding_vs_Programming.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/DAILYCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/DAILYCODE.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/GitHappens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/GitHappens.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/StarterPack_Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/StarterPack_Extensions.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/UI_UE_IDE_useful_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/UI_UE_IDE_useful_links.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/a_little_story_TO_READ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/a_little_story_TO_READ.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/extension-debug-INFO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/extension-debug-INFO.md -------------------------------------------------------------------------------- /Lecture_notes_to_review/context/helpful-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/Lecture_notes_to_review/context/helpful-links.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/README.md -------------------------------------------------------------------------------- /live_code/AR-GPS/ar-threex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/ar-threex.js -------------------------------------------------------------------------------- /live_code/AR-GPS/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/ar.js -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/herobrine/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/herobrine/license.txt -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/herobrine/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/herobrine/scene.bin -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/herobrine/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/herobrine/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/herobrine/textures/Material_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/herobrine/textures/Material_baseColor.png -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/magnemite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/magnemite/.DS_Store -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/magnemite/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/magnemite/scene.bin -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/magnemite/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/magnemite/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-GPS/assets/magnemite/textures/blinn2_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/assets/magnemite/textures/blinn2_baseColor.png -------------------------------------------------------------------------------- /live_code/AR-GPS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/index.html -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/index.js -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/package-lock.json -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/package.json -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/ar-threex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/ar-threex.js -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/index.html -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/script.js -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-node-express/public copy/style.css -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/ar-threex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/ar-threex.js -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/license.txt -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/scene.bin -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/herobrine/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/.DS_Store -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/scene.bin -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/assets/magnemite/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/index.html -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/script.js -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/server.py -------------------------------------------------------------------------------- /live_code/AR-GPS/localhost-AR-example/server-python/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/localhost-AR-example/server-python/style.css -------------------------------------------------------------------------------- /live_code/AR-GPS/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/script.js -------------------------------------------------------------------------------- /live_code/AR-GPS/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/style.css -------------------------------------------------------------------------------- /live_code/AR-GPS/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-GPS/three.js -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/HL.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/HR.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/anchor-index-1_nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/anchor-index-1_nose.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/face-mesh-anchor-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/face-mesh-anchor-points.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/face-nose-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/face-nose-anchor.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/face-track.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/face-track.html -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/fuzzy-face-nose-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/fuzzy-face-nose-anchor.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/img-track.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/img-track.html -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/readme.md -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/sample-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/sample-img.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/targets-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/targets-example.png -------------------------------------------------------------------------------- /live_code/AR-OTHER_week12/targets.mind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-OTHER_week12/targets.mind -------------------------------------------------------------------------------- /live_code/AR-website-content/AR-landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/AR-landing.html -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/js/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/js/respond.js -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/go.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-go.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-go.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-go.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-hiro.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-hiro.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-hiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-hiro.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-marker_draw-star.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-marker_draw-star.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-marker_draw-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-marker_draw-star.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-star.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-star.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/markers/pattern-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/markers/pattern-star.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/bowser.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/bowser.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/example_model.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/example_model.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/example_model.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/example_model.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/example_model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/example_model.obj -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite.zip -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite/.DS_Store -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite/scene.bin -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/magnemite/textures/blinn2_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/magnemite/textures/blinn2_baseColor.png -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/skull-master/skull.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/skull-master/skull.bin -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/skull-master/skull.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/skull-master/skull.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/skull-master/textures/defaultMat_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/skull-master/textures/defaultMat_diffuse.jpg -------------------------------------------------------------------------------- /live_code/AR-website-content/assets/models/skull-master/textures/defaultMat_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/assets/models/skull-master/textures/defaultMat_normal.jpg -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/add-QR-code/qr-code-direct-to-AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/add-QR-code/qr-code-direct-to-AR.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/add-QR-code/qr-code-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/add-QR-code/qr-code-site.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/add-QR-code/qr-code-to-types-of-ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/add-QR-code/qr-code-to-types-of-ar.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/add-QR-code/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/add-QR-code/qr-code.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/add-QR-code/qr-in-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/add-QR-code/qr-in-marker.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/A967A067-48DB-4E88-B8E0-A89411FE8428.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/location-based/A967A067-48DB-4E88-B8E0-A89411FE8428.jpeg -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/assets/models/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/location-based/assets/models/scene.bin -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/assets/models/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/location-based/assets/models/scene.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/assets/models/textures/blinn2_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/location-based/assets/models/textures/blinn2_baseColor.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/location-based-dynamic-loading: -------------------------------------------------------------------------------- 1 | # In progress 2 | 3 | ## going to be fun 4 | -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/location-based-next-steps: -------------------------------------------------------------------------------- 1 | # will be updated 2 | 3 | ## I am in progress 4 | -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/location-based/location-based.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/location-based/location-based.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/basic-marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/basic-marker.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/bowser.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/bowser.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/custom-barcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/custom-barcode.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/custom-glTF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/custom-glTF.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/custom-pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/custom-pattern.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/example_model.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/example_model.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-based/pattern-go.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-based/pattern-go.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.fset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.fset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.iset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.iset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/NFT_AR/NFT_AR.jpg -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/Sun.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/Sun.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/image-track.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/image-track.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.fset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.fset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.iset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.iset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/NFT_AR/NFT_AR.jpg -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/funny_crazy_faces_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/funny_crazy_faces_32.jpg -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/patternPhoto.fset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/patternPhoto.fset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/patternPhoto.fset3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/patternPhoto.fset3 -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/patternPhoto.iset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/patternPhoto.iset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/patternPhoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/patternPhoto.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/star.fset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/star.fset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/star.fset3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/star.fset3 -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/star.iset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/star.iset -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/marker-less/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/marker-less/img/star.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/F12_initiate-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/F12_initiate-objects.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/ar-game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/ar-game.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/bowser-character.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/bowser-character.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/bowser-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/bowser-marker.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/chocobo-character.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/chocobo-character.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/chocobo-character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/chocobo-character.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/hiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/hiro.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/kanji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/kanji.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/seeds-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/seeds-marker.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/seeds-object.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/seeds-object.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/skull-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/skull-marker.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/markers/skull-object.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/markers/skull-object.patt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/characters/bowser.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/characters/bowser.glb -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/characters/chocobo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/characters/chocobo.bin -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/characters/chocobo.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/characters/chocobo.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/characters/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/characters/license.txt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/objects/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/objects/license.txt -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/objects/seeds.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/objects/seeds.bin -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/objects/seeds.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/objects/seeds.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/assets/models/objects/skull.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/assets/models/objects/skull.gltf -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/js/gamerState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/js/gamerState.js -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/js/interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/js/interaction.js -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/js/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/js/models.js -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/screencaps/1-bowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/screencaps/1-bowser.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/screencaps/2-bowser_dialogue-accepts-clicks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/screencaps/2-bowser_dialogue-accepts-clicks.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/screencaps/3-chocobo_dialogue-accepts-clicks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/screencaps/3-chocobo_dialogue-accepts-clicks.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/screencaps/4-skull-with-clicks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/screencaps/4-skull-with-clicks.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/screencaps/5-birdseed-with-clicks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/screencaps/5-birdseed-with-clicks.png -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/mini-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/mini-game/style.css -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/source-types/ar-sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/source-types/ar-sources.html -------------------------------------------------------------------------------- /live_code/AR-website-content/pages/source-types/image-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR-website-content/pages/source-types/image-type.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/example_model.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/example_model.glb -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/example_model.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/example_model.gltf -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/example_model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/example_model.obj -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/hiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/hiro.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/kanji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/kanji.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/links.txt -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/marker_image_drawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/marker_image_drawn.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/pattern-marker_image_drawn.patt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/pattern-marker_image_drawn.patt -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/pattern-marker_image_drawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/pattern-marker_image_drawn.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/qr-code.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/qr-code_example_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/qr-code_example_image.png -------------------------------------------------------------------------------- /live_code/AR_content_sample-markers-models/qr-code_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/AR_content_sample-markers-models/qr-code_site.png -------------------------------------------------------------------------------- /live_code/Apr6-code-snippets/AR-hit-test_light_reticle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Apr6-code-snippets/AR-hit-test_light_reticle.html -------------------------------------------------------------------------------- /live_code/Feb17-server/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Feb17-server/python/README.md -------------------------------------------------------------------------------- /live_code/Feb17-server/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Feb17-server/python/index.html -------------------------------------------------------------------------------- /live_code/Feb17-server/python/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Feb17-server/python/server.py -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/app.py -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/count.txt: -------------------------------------------------------------------------------- 1 | 41 -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/newfile.txt: -------------------------------------------------------------------------------- 1 | hi this is the first message -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/requirements.txt -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/static/script.js -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/tempfile.txt: -------------------------------------------------------------------------------- 1 | temp -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/templates/index.html -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/activate -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/activate.bat -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/flask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/flask.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/gunicorn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/gunicorn.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip3.10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip3.10.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pip3.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/python.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-flask-class/testenv/pyvenv.cfg -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/app.js -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/index.html -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/package-lock.json -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/package.json -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/script.js -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/Heroku-node-http/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/Heroku-node-http/style.css -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/README.md -------------------------------------------------------------------------------- /live_code/Heroku-flask-and-node/terminal-commands-output_npm-init_python-venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Heroku-flask-and-node/terminal-commands-output_npm-init_python-venv.sh -------------------------------------------------------------------------------- /live_code/JavaScript/JSON_ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/JavaScript/JSON_ex.html -------------------------------------------------------------------------------- /live_code/JavaScript/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/JavaScript/external.js -------------------------------------------------------------------------------- /live_code/JavaScript/js_htmlb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/JavaScript/js_htmlb.html -------------------------------------------------------------------------------- /live_code/JavaScript/js_htmlext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/JavaScript/js_htmlext.html -------------------------------------------------------------------------------- /live_code/JavaScript/js_htmlh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/JavaScript/js_htmlh.html -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/img/icon16.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/img/icon32.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/img/icon48.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/manifest.json -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/popup.html -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/extension-demo/popup.sublime-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/extension-demo/popup.sublime-workspace -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/background.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/icon128.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/icon16.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/icon32.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/icon48.png -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/manifest.json -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/popup.html -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/popup.js -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/program.js -------------------------------------------------------------------------------- /live_code/Lab1-browser-extensions/more-extension-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab1-browser-extensions/more-extension-demo/style.css -------------------------------------------------------------------------------- /live_code/Lab2_1st_lab_lecture/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_1st_lab_lecture/file.txt -------------------------------------------------------------------------------- /live_code/Lab2_1st_lab_lecture/img/Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_1st_lab_lecture/img/Frame.png -------------------------------------------------------------------------------- /live_code/Lab2_1st_lab_lecture/shortandtweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_1st_lab_lecture/shortandtweet.py -------------------------------------------------------------------------------- /live_code/Lab2_1st_lab_lecture/tweepy_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_1st_lab_lecture/tweepy_example.py -------------------------------------------------------------------------------- /live_code/Lab2_1st_lab_lecture/twitter_screencap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_1st_lab_lecture/twitter_screencap.jpg -------------------------------------------------------------------------------- /live_code/Lab2_2nd_lab_lecture/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_2nd_lab_lecture/file.txt -------------------------------------------------------------------------------- /live_code/Lab2_2nd_lab_lecture/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_2nd_lab_lecture/out.txt -------------------------------------------------------------------------------- /live_code/Lab2_2nd_lab_lecture/tweepy_get_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab2_2nd_lab_lecture/tweepy_get_info.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/app.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/count.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/info.txt -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/requirements.txt -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/templates/index.html -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/activate -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/activate.csh -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/activate.fish -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/easy_install -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/easy_install-3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/easy_install-3.8 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/flask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/flask -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/gunicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/gunicorn -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/pip -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/pip3 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/pip3.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/bin/pip3.8 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/bin/python3: -------------------------------------------------------------------------------- 1 | /usr/bin/python3 -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Flask-2.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Flask-2.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Flask-2.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Jinja2-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Jinja2-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Jinja2-3.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/MarkupSafe-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/MarkupSafe-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Werkzeug-2.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Werkzeug-2.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/Werkzeug-2.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click-8.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click-8.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click-8.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_compat.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_unicodefun.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/core.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/decorators.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/formatting.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/globals.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/parser.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/termui.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/testing.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/types.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/click/utils.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/easy_install.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/__main__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/app.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/blueprints.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/cli.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/config.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/ctx.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/debughelpers.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/globals.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/helpers.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/json/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/json/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/json/tag.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/logging.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/scaffold.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/sessions.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/signals.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/templating.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/testing.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/typing.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/views.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/flask/wrappers.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/__main__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/app/base.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/app/wsgiapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/app/wsgiapp.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/arbiter.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/config.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/debug.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/errors.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/glogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/glogging.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/body.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/errors.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/parser.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/http/wsgi.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/instrument/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/pidfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/pidfile.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/reloader.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/sock.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/systemd.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/gunicorn/util.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous-2.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous-2.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous-2.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | itsdangerous 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/_json.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/exc.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/signer.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/timed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/itsdangerous/timed.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/_identifier.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/async_utils.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/bccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/bccache.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/compiler.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/constants.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/debug.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/defaults.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/environment.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/exceptions.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/ext.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/filters.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/idtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/idtracking.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/lexer.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/loaders.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/meta.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/nativetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/nativetypes.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/nodes.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/optimizer.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/parser.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/runtime.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/sandbox.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/tests.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/utils.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/jinja2/visitor.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/_native.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/_speedups.c -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/markupsafe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip-20.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip-20.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pkg_resources-0.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools-44.0.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/__init__.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/_internal.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/_reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/_reloader.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/debug/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/debug/repr.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/exceptions.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/filesystem.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/formparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/formparser.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/http.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/local.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/routing.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/sansio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/security.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/serving.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/test.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/testapp.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/urls.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/user_agent.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/useragents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/useragents.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/utils.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/lib/python3.8/site-packages/werkzeug/wsgi.py -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/pyvenv.cfg -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/idna-2.8-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/idna-2.8-py2.py3-none-any.whl -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/pip-20.0.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/pip-20.0.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/six-1.14.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Lab3_heroku-flask-webapp/venv/share/python-wheels/six-1.14.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/README.md -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/extending_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/extending_script.js -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/index.html -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/script.js -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/snippets/button-SNIPPET.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/snippets/button-SNIPPET.html -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/snippets/button-SNIPPET.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/snippets/button-SNIPPET.js -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/snippets/click_listener_SNIPPET.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/snippets/click_listener_SNIPPET.js -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/snippets/listener-SNIPPET.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/snippets/listener-SNIPPET.js -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/snippets/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/snippets/video.html -------------------------------------------------------------------------------- /live_code/Location-based-AR-code/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/Location-based-AR-code/style.css -------------------------------------------------------------------------------- /live_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/README.md -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging.py -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/141197346_93e0117ecc_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/141197346_93e0117ecc_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/183437063_9f49c8e059_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/183437063_9f49c8e059_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/240446130_b12b272212_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/240446130_b12b272212_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/24895023_56286408f5_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/24895023_56286408f5_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/255447106_cafcac726b_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/255447106_cafcac726b_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/275103868_7ba67fdebe_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/275103868_7ba67fdebe_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/362858139_28958238f6_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/362858139_28958238f6_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/389025714_b0df1f6056_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/389025714_b0df1f6056_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/393157522_b39115c615_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/393157522_b39115c615_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/data/57560963_2cf7d45f6c_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/data/57560963_2cf7d45f6c_m.jpg -------------------------------------------------------------------------------- /live_code/add_aesthetic/image_averaging/image_averaging.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/image_averaging/image_averaging.pyde -------------------------------------------------------------------------------- /live_code/add_aesthetic/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/resize.py -------------------------------------------------------------------------------- /live_code/add_aesthetic/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/add_aesthetic/sketch.properties -------------------------------------------------------------------------------- /live_code/lastclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/lastclass.md -------------------------------------------------------------------------------- /live_code/other-python-camera-files/get_token_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/other-python-camera-files/get_token_json.py -------------------------------------------------------------------------------- /live_code/other-python-camera-files/test_location_of_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/other-python-camera-files/test_location_of_cam.py -------------------------------------------------------------------------------- /live_code/p5js-browser-art/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/p5js-browser-art/index.html -------------------------------------------------------------------------------- /live_code/p5js-browser-art/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/p5js-browser-art/sketch.js -------------------------------------------------------------------------------- /live_code/p5js-browser-art/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/p5js-browser-art/style.css -------------------------------------------------------------------------------- /live_code/processing/p5js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/README.md -------------------------------------------------------------------------------- /live_code/processing/p5js/addons/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/addons/p5.js -------------------------------------------------------------------------------- /live_code/processing/p5js/addons/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/addons/p5.min.js -------------------------------------------------------------------------------- /live_code/processing/p5js/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/addons/p5.sound.js -------------------------------------------------------------------------------- /live_code/processing/p5js/addons/p5.sound.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/addons/p5.sound.min.js -------------------------------------------------------------------------------- /live_code/processing/p5js/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/client/index.html -------------------------------------------------------------------------------- /live_code/processing/p5js/client/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/client/sketch.js -------------------------------------------------------------------------------- /live_code/processing/p5js/colour/colour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/colour/colour.js -------------------------------------------------------------------------------- /live_code/processing/p5js/colour/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/colour/index.html -------------------------------------------------------------------------------- /live_code/processing/p5js/geometric/geometric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/geometric/geometric.js -------------------------------------------------------------------------------- /live_code/processing/p5js/geometric/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/geometric/index.html -------------------------------------------------------------------------------- /live_code/processing/p5js/libraries/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/libraries/p5.min.js -------------------------------------------------------------------------------- /live_code/processing/p5js/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/libraries/p5.sound.js -------------------------------------------------------------------------------- /live_code/processing/p5js/libraries/tone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/libraries/tone.js -------------------------------------------------------------------------------- /live_code/processing/p5js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /live_code/processing/p5js/put_it_together/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/put_it_together/index.html -------------------------------------------------------------------------------- /live_code/processing/p5js/put_it_together/put_it_together.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/put_it_together/put_it_together.js -------------------------------------------------------------------------------- /live_code/processing/p5js/sound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/sound/index.html -------------------------------------------------------------------------------- /live_code/processing/p5js/sound/ok_but_sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/p5js/sound/ok_but_sound.js -------------------------------------------------------------------------------- /live_code/processing/python-mode/colour_py/colour_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/colour_py/colour_py.pyde -------------------------------------------------------------------------------- /live_code/processing/python-mode/colour_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/colour_py/sketch.properties -------------------------------------------------------------------------------- /live_code/processing/python-mode/geometric_py/geometric_py.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/geometric_py/geometric_py.pyde -------------------------------------------------------------------------------- /live_code/processing/python-mode/geometric_py/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/geometric_py/sketch.properties -------------------------------------------------------------------------------- /live_code/processing/python-mode/put_it_all_together/put_it_all_together.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/put_it_all_together/put_it_all_together.pyde -------------------------------------------------------------------------------- /live_code/processing/python-mode/put_it_all_together/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/put_it_all_together/sketch.properties -------------------------------------------------------------------------------- /live_code/processing/python-mode/python_sketch/python_sketch.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/python_sketch/python_sketch.pyde -------------------------------------------------------------------------------- /live_code/processing/python-mode/python_sketch/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/python_sketch/sketch.properties -------------------------------------------------------------------------------- /live_code/processing/python-mode/rings_final_python_version_with_notes/rings/rings.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/processing/python-mode/rings_final_python_version_with_notes/rings/rings.pyde -------------------------------------------------------------------------------- /live_code/python-classes-processing/pydeQ2/data/LetterGothicStd-32.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/pydeQ2/data/LetterGothicStd-32.vlw -------------------------------------------------------------------------------- /live_code/python-classes-processing/pydeQ2/data/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/pydeQ2/data/img.png -------------------------------------------------------------------------------- /live_code/python-classes-processing/pydeQ2/data/myfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/pydeQ2/data/myfile.txt -------------------------------------------------------------------------------- /live_code/python-classes-processing/pydeQ2/pydeQ2.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/pydeQ2/pydeQ2.pyde -------------------------------------------------------------------------------- /live_code/python-classes-processing/pydeQ2/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/pydeQ2/sketch.properties -------------------------------------------------------------------------------- /live_code/python-classes-processing/yourcopy.pyde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-classes-processing/yourcopy.pyde -------------------------------------------------------------------------------- /live_code/python-more-advanced/dayofweek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/dayofweek.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/filesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/filesearch.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/getlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/getlinks.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/pass.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/resize.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/resized_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/resized_testimg.webp -------------------------------------------------------------------------------- /live_code/python-more-advanced/rez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/rez.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/rotate.py -------------------------------------------------------------------------------- /live_code/python-more-advanced/rotated_testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/rotated_testimg.webp -------------------------------------------------------------------------------- /live_code/python-more-advanced/testimg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/testimg.webp -------------------------------------------------------------------------------- /live_code/python-more-advanced/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robots-make-art-too/EECS_1720/HEAD/live_code/python-more-advanced/utils.py --------------------------------------------------------------------------------