├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── devcontainer.json ├── etc └── profile.d │ └── codespace.sh ├── opt └── cs50 │ ├── bin │ ├── $ │ ├── autograde.sh │ ├── code │ ├── gitcredential_github.sh │ ├── postCreateCommand │ ├── postStartCommand │ ├── rstudio │ ├── style50 │ └── update50 │ ├── lib │ └── rstudio │ │ ├── _icons.css │ │ ├── monitor_rsession.sh │ │ ├── rsession.conf │ │ ├── rstudio-prefs.json │ │ └── rstudio-server.json │ └── phpliteadmin │ ├── bin │ └── phpliteadmin │ └── share │ ├── index.php │ └── phpliteadmin.css └── update50.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/Makefile -------------------------------------------------------------------------------- /devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/devcontainer.json -------------------------------------------------------------------------------- /etc/profile.d/codespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/etc/profile.d/codespace.sh -------------------------------------------------------------------------------- /opt/cs50/bin/$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/$ -------------------------------------------------------------------------------- /opt/cs50/bin/autograde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/autograde.sh -------------------------------------------------------------------------------- /opt/cs50/bin/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/code -------------------------------------------------------------------------------- /opt/cs50/bin/gitcredential_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/gitcredential_github.sh -------------------------------------------------------------------------------- /opt/cs50/bin/postCreateCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/postCreateCommand -------------------------------------------------------------------------------- /opt/cs50/bin/postStartCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/postStartCommand -------------------------------------------------------------------------------- /opt/cs50/bin/rstudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/rstudio -------------------------------------------------------------------------------- /opt/cs50/bin/style50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/style50 -------------------------------------------------------------------------------- /opt/cs50/bin/update50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/bin/update50 -------------------------------------------------------------------------------- /opt/cs50/lib/rstudio/_icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/lib/rstudio/_icons.css -------------------------------------------------------------------------------- /opt/cs50/lib/rstudio/monitor_rsession.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/lib/rstudio/monitor_rsession.sh -------------------------------------------------------------------------------- /opt/cs50/lib/rstudio/rsession.conf: -------------------------------------------------------------------------------- 1 | session-timeout-minutes=30 -------------------------------------------------------------------------------- /opt/cs50/lib/rstudio/rstudio-prefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/lib/rstudio/rstudio-prefs.json -------------------------------------------------------------------------------- /opt/cs50/lib/rstudio/rstudio-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/lib/rstudio/rstudio-server.json -------------------------------------------------------------------------------- /opt/cs50/phpliteadmin/bin/phpliteadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/phpliteadmin/bin/phpliteadmin -------------------------------------------------------------------------------- /opt/cs50/phpliteadmin/share/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/phpliteadmin/share/index.php -------------------------------------------------------------------------------- /opt/cs50/phpliteadmin/share/phpliteadmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/opt/cs50/phpliteadmin/share/phpliteadmin.css -------------------------------------------------------------------------------- /update50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/codespace/HEAD/update50.sh --------------------------------------------------------------------------------