├── .gitignore ├── README.md ├── chapter1.pptx ├── chapter1_cn.pptx ├── chapter2.pptx ├── chapter2_cn.pptx ├── chapter3.pptx ├── chapter3_cn.pptx ├── chapter4.pptx ├── chapter4_cn.pptx ├── chapter5.pptx ├── chapter5_cn.pptx ├── chapter6.pptx ├── chapter6_cn.pptx └── 计算机学院线上教学课程考试_学生注意事项.docx /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | 34 | .vs/ 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Presentation slides for "Network and Distributed Computing" 2 | 3 | chapter1.pptx through chapter6.pptx are english version slides, while chapter1_cn.pptx through chapter6_cn.pptx are the corresponding Chinese version 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /chapter1.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter1.pptx -------------------------------------------------------------------------------- /chapter1_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter1_cn.pptx -------------------------------------------------------------------------------- /chapter2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter2.pptx -------------------------------------------------------------------------------- /chapter2_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter2_cn.pptx -------------------------------------------------------------------------------- /chapter3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter3.pptx -------------------------------------------------------------------------------- /chapter3_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter3_cn.pptx -------------------------------------------------------------------------------- /chapter4.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter4.pptx -------------------------------------------------------------------------------- /chapter4_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter4_cn.pptx -------------------------------------------------------------------------------- /chapter5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter5.pptx -------------------------------------------------------------------------------- /chapter5_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter5_cn.pptx -------------------------------------------------------------------------------- /chapter6.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter6.pptx -------------------------------------------------------------------------------- /chapter6_cn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/chapter6_cn.pptx -------------------------------------------------------------------------------- /计算机学院线上教学课程考试_学生注意事项.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/network-distributed/presentations/0aa760d945d1a9935b9ec840b6e8d8a327f90ece/计算机学院线上教学课程考试_学生注意事项.docx --------------------------------------------------------------------------------