├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── sync-gitee.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── doc ├── VM.md ├── abbr.md ├── build_your_env.md ├── course_example │ ├── AICS.md │ ├── COD.md │ ├── OS-Lab.md │ ├── c.md │ └── info.md ├── git.md ├── linux │ ├── advanced.md │ ├── command.md │ ├── editor.md │ ├── install_program.md │ └── linux.md ├── more.md ├── problem.md ├── recommend_env │ ├── github.md │ ├── vscode.md │ ├── wsl.md │ └── xshell.md └── ssh.md └── img ├── linux └── advanced │ ├── terminal--shell-1.drawio │ └── terminal--shell-1.drawio.png └── recommend_env └── github ├── pr-1.drawio └── pr-1.drawio.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/sync-gitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/.github/workflows/sync-gitee.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | draft.md 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/VM.md: -------------------------------------------------------------------------------- 1 | # 虚拟机 2 | todo -------------------------------------------------------------------------------- /doc/abbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/abbr.md -------------------------------------------------------------------------------- /doc/build_your_env.md: -------------------------------------------------------------------------------- 1 | # 搭建开发环境 2 | TODO 3 | -------------------------------------------------------------------------------- /doc/course_example/AICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/course_example/AICS.md -------------------------------------------------------------------------------- /doc/course_example/COD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/course_example/COD.md -------------------------------------------------------------------------------- /doc/course_example/OS-Lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/course_example/OS-Lab.md -------------------------------------------------------------------------------- /doc/course_example/c.md: -------------------------------------------------------------------------------- 1 | # 课程实例-程序设计基础与实验(C语言) 2 | todo -------------------------------------------------------------------------------- /doc/course_example/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/course_example/info.md -------------------------------------------------------------------------------- /doc/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/git.md -------------------------------------------------------------------------------- /doc/linux/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/linux/advanced.md -------------------------------------------------------------------------------- /doc/linux/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/linux/command.md -------------------------------------------------------------------------------- /doc/linux/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/linux/editor.md -------------------------------------------------------------------------------- /doc/linux/install_program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/linux/install_program.md -------------------------------------------------------------------------------- /doc/linux/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/linux/linux.md -------------------------------------------------------------------------------- /doc/more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/more.md -------------------------------------------------------------------------------- /doc/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/problem.md -------------------------------------------------------------------------------- /doc/recommend_env/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/recommend_env/github.md -------------------------------------------------------------------------------- /doc/recommend_env/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/recommend_env/vscode.md -------------------------------------------------------------------------------- /doc/recommend_env/wsl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/recommend_env/xshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/recommend_env/xshell.md -------------------------------------------------------------------------------- /doc/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/doc/ssh.md -------------------------------------------------------------------------------- /img/linux/advanced/terminal--shell-1.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/img/linux/advanced/terminal--shell-1.drawio -------------------------------------------------------------------------------- /img/linux/advanced/terminal--shell-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/img/linux/advanced/terminal--shell-1.drawio.png -------------------------------------------------------------------------------- /img/recommend_env/github/pr-1.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/img/recommend_env/github/pr-1.drawio -------------------------------------------------------------------------------- /img/recommend_env/github/pr-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngc7331/UCAS-CS-Guide/HEAD/img/recommend_env/github/pr-1.drawio.png --------------------------------------------------------------------------------