├── .gitignore ├── LICENSE ├── README.md ├── css ├── bootstrap-theme.css ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.min.css ├── cdbo.css └── slides-style.css ├── files └── custom.js ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── images ├── AMTLogo.png ├── AttentionalBlink.png ├── Computer_Workstation_Variables.jpg ├── ContCueing.png ├── FlankerResult.png ├── InternetMap.jpg ├── MVC.png ├── Mason.jpg ├── OutsideUser.jpg ├── PrimingResult.png ├── SHJDifficulty.png ├── SimonResult.png ├── StroopResult.png ├── Suri200.jpg ├── TabletUser.jpg ├── TaskSwitchingResult.png ├── Turkopticon.png ├── abstractstructureSHJ.png ├── amazonlogo.gif ├── bezos.jpg ├── brainbw.png ├── brainside.png ├── circle.svg ├── codecademy.png ├── crowdsource.png ├── dimstructureSHJ.png ├── dynamicpage.png ├── exp10-l-vs-amt.png ├── exp10-n-vs-amt.png ├── exp8-amt.png ├── exp8-block2criterion.png ├── exp8-nosofsky.png ├── exp9-typeII.pdf ├── exp9-typeII.png ├── exp9-typeIV.pdf ├── exp9-typeIV.png ├── github.png ├── hierarchy.png ├── listing.png ├── nyu-medium.png ├── nyu-small.png ├── psiturk-filelist.png ├── psiturk_logo_cloud_2l.pdf ├── psiturklogo.png ├── screenshot_awsinfo.png ├── screenshot_dashboard.png ├── screenshot_database.png ├── screenshot_expinfo.png ├── screenshot_hitconfig.png ├── screenshot_server.png ├── smartphone.jpg ├── toddsmallnew.jpg ├── turk-engraving.jpg ├── us-turk-distribution.jpg ├── web-hosting.gif ├── womenonlaptop.jpg └── world-turk-distribution.jpg ├── index.html ├── js ├── bootstrap.js ├── bootstrap.min.js ├── remark-official.js └── remark.js ├── lecture1.html ├── lecture2.html ├── lecture3.html ├── lecture4.html ├── lecture5.html ├── lecture9.html ├── lectures ├── lecture_0.md ├── lecture_1.md ├── lecture_2.md ├── lecture_3.md ├── lecture_4.md ├── lecture_5.md └── lecture_9.md ├── slides.html ├── syllabus.html ├── templates ├── base.html ├── footer.html ├── index.html ├── lecture1.html ├── lecture2.html ├── lecture3.html ├── lecture4.html ├── lecture5.html ├── lecture9.html ├── slides.html └── syllabus.html └── upload.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | /config.py 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/cdbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/cdbo.css -------------------------------------------------------------------------------- /css/slides-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/css/slides-style.css -------------------------------------------------------------------------------- /files/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/files/custom.js -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /images/AMTLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/AMTLogo.png -------------------------------------------------------------------------------- /images/AttentionalBlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/AttentionalBlink.png -------------------------------------------------------------------------------- /images/Computer_Workstation_Variables.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/Computer_Workstation_Variables.jpg -------------------------------------------------------------------------------- /images/ContCueing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/ContCueing.png -------------------------------------------------------------------------------- /images/FlankerResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/FlankerResult.png -------------------------------------------------------------------------------- /images/InternetMap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/InternetMap.jpg -------------------------------------------------------------------------------- /images/MVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/MVC.png -------------------------------------------------------------------------------- /images/Mason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/Mason.jpg -------------------------------------------------------------------------------- /images/OutsideUser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/OutsideUser.jpg -------------------------------------------------------------------------------- /images/PrimingResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/PrimingResult.png -------------------------------------------------------------------------------- /images/SHJDifficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/SHJDifficulty.png -------------------------------------------------------------------------------- /images/SimonResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/SimonResult.png -------------------------------------------------------------------------------- /images/StroopResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/StroopResult.png -------------------------------------------------------------------------------- /images/Suri200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/Suri200.jpg -------------------------------------------------------------------------------- /images/TabletUser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/TabletUser.jpg -------------------------------------------------------------------------------- /images/TaskSwitchingResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/TaskSwitchingResult.png -------------------------------------------------------------------------------- /images/Turkopticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/Turkopticon.png -------------------------------------------------------------------------------- /images/abstractstructureSHJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/abstractstructureSHJ.png -------------------------------------------------------------------------------- /images/amazonlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/amazonlogo.gif -------------------------------------------------------------------------------- /images/bezos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/bezos.jpg -------------------------------------------------------------------------------- /images/brainbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/brainbw.png -------------------------------------------------------------------------------- /images/brainside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/brainside.png -------------------------------------------------------------------------------- /images/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/circle.svg -------------------------------------------------------------------------------- /images/codecademy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/codecademy.png -------------------------------------------------------------------------------- /images/crowdsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/crowdsource.png -------------------------------------------------------------------------------- /images/dimstructureSHJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/dimstructureSHJ.png -------------------------------------------------------------------------------- /images/dynamicpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/dynamicpage.png -------------------------------------------------------------------------------- /images/exp10-l-vs-amt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp10-l-vs-amt.png -------------------------------------------------------------------------------- /images/exp10-n-vs-amt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp10-n-vs-amt.png -------------------------------------------------------------------------------- /images/exp8-amt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp8-amt.png -------------------------------------------------------------------------------- /images/exp8-block2criterion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp8-block2criterion.png -------------------------------------------------------------------------------- /images/exp8-nosofsky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp8-nosofsky.png -------------------------------------------------------------------------------- /images/exp9-typeII.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp9-typeII.pdf -------------------------------------------------------------------------------- /images/exp9-typeII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp9-typeII.png -------------------------------------------------------------------------------- /images/exp9-typeIV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp9-typeIV.pdf -------------------------------------------------------------------------------- /images/exp9-typeIV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/exp9-typeIV.png -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/github.png -------------------------------------------------------------------------------- /images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/hierarchy.png -------------------------------------------------------------------------------- /images/listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/listing.png -------------------------------------------------------------------------------- /images/nyu-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/nyu-medium.png -------------------------------------------------------------------------------- /images/nyu-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/nyu-small.png -------------------------------------------------------------------------------- /images/psiturk-filelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/psiturk-filelist.png -------------------------------------------------------------------------------- /images/psiturk_logo_cloud_2l.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/psiturk_logo_cloud_2l.pdf -------------------------------------------------------------------------------- /images/psiturklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/psiturklogo.png -------------------------------------------------------------------------------- /images/screenshot_awsinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_awsinfo.png -------------------------------------------------------------------------------- /images/screenshot_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_dashboard.png -------------------------------------------------------------------------------- /images/screenshot_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_database.png -------------------------------------------------------------------------------- /images/screenshot_expinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_expinfo.png -------------------------------------------------------------------------------- /images/screenshot_hitconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_hitconfig.png -------------------------------------------------------------------------------- /images/screenshot_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/screenshot_server.png -------------------------------------------------------------------------------- /images/smartphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/smartphone.jpg -------------------------------------------------------------------------------- /images/toddsmallnew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/toddsmallnew.jpg -------------------------------------------------------------------------------- /images/turk-engraving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/turk-engraving.jpg -------------------------------------------------------------------------------- /images/us-turk-distribution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/us-turk-distribution.jpg -------------------------------------------------------------------------------- /images/web-hosting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/web-hosting.gif -------------------------------------------------------------------------------- /images/womenonlaptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/womenonlaptop.jpg -------------------------------------------------------------------------------- /images/world-turk-distribution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/images/world-turk-distribution.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/remark-official.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/js/remark-official.js -------------------------------------------------------------------------------- /js/remark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/js/remark.js -------------------------------------------------------------------------------- /lecture1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture1.html -------------------------------------------------------------------------------- /lecture2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture2.html -------------------------------------------------------------------------------- /lecture3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture3.html -------------------------------------------------------------------------------- /lecture4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture4.html -------------------------------------------------------------------------------- /lecture5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture5.html -------------------------------------------------------------------------------- /lecture9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lecture9.html -------------------------------------------------------------------------------- /lectures/lecture_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_0.md -------------------------------------------------------------------------------- /lectures/lecture_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_1.md -------------------------------------------------------------------------------- /lectures/lecture_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_2.md -------------------------------------------------------------------------------- /lectures/lecture_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_3.md -------------------------------------------------------------------------------- /lectures/lecture_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_4.md -------------------------------------------------------------------------------- /lectures/lecture_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_5.md -------------------------------------------------------------------------------- /lectures/lecture_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/lectures/lecture_9.md -------------------------------------------------------------------------------- /slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/slides.html -------------------------------------------------------------------------------- /syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/syllabus.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/lecture1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture1.html -------------------------------------------------------------------------------- /templates/lecture2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture2.html -------------------------------------------------------------------------------- /templates/lecture3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture3.html -------------------------------------------------------------------------------- /templates/lecture4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture4.html -------------------------------------------------------------------------------- /templates/lecture5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture5.html -------------------------------------------------------------------------------- /templates/lecture9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/lecture9.html -------------------------------------------------------------------------------- /templates/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/slides.html -------------------------------------------------------------------------------- /templates/syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/templates/syllabus.html -------------------------------------------------------------------------------- /upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gureckis/collecting_behavioral_data_online/HEAD/upload.py --------------------------------------------------------------------------------