Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/disc0ver-csu/csu-cs-wiki
本仓库托管Wiki网站及内容原始代码,其他课程资料如课设实验代码均已拆分至其他仓库。
https://github.com/disc0ver-csu/csu-cs-wiki
wiki
Last synced: 1 day ago
JSON representation
本仓库托管Wiki网站及内容原始代码,其他课程资料如课设实验代码均已拆分至其他仓库。
- Host: GitHub
- URL: https://github.com/disc0ver-csu/csu-cs-wiki
- Owner: disc0ver-csu
- License: mit
- Created: 2020-04-03T08:15:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T17:22:59.000Z (over 3 years ago)
- Last Synced: 2024-11-09T21:14:08.378Z (about 2 months ago)
- Topics: wiki
- Language: HTML
- Homepage: https://www.disc0ver.wiki
- Size: 49.4 MB
- Stars: 84
- Watchers: 7
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README-en.md
- License: LICENSE
Awesome Lists containing this project
README
# CSU CS WIKI
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-brightgreen?logo=gitpod&style=flat-square)](https://gitpod.io/#https://github.com/disc0ver-csu/csu-cs-wiki)
[![license](https://img.shields.io/github/license/disc0ver-csu/csu-cs-wiki)](LICENSE)
[![Build Status](https://travis-ci.org/disc0ver-csu/csu-cs-wiki.svg?branch=master)](https://travis-ci.org/disc0ver-csu/csu-cs-wiki)
[![GitHub watchers](https://img.shields.io/github/watchers/disc0ver-csu/csu-cs-wiki)](https://github.com/disc0ver-csu/csu-cs-wiki)
[![GitHub stars](https://img.shields.io/github/stars/disc0ver-csu/csu-cs-wiki)](https://github.com/disc0ver-csu/csu-cs-wiki)Language: [English](https://github.com/disc0ver-csu/csu-cs-wiki/blob/master/README-en.md) | [中文简体](https://github.com/disc0ver-csu/csu-cs-wiki/blob/master/README.md)
## Abstract
The project has opened some source codes related to a list of projects which students majoring in Computer Science should complete in some courses. We also build a Wiki. Our main purposes are as followed:
- Contribute to the Open Source Project.
- Use Wiki to help students have a better comprehension of or review the **key points** of several courses.
- Accelerate the pace of **code iteration** in labs/experiments. (To be honest, most of codes are out of date while some of them were generated 10-15 years ago.)Don't forget to give us a star💫 :)
## Courses List
(We need contributors to proofread the translation :) Join us! )
These courses are available at present.
1. [Computer Graphics](https://github.com/disc0ver-csu/computer-graphics)
2. [Cryptology](https://github.com/disc0ver-csu/cryptography)
3. [Commercial Database](https://github.com/disc0ver-csu/large-database-oracle)
4. [Linux](https://github.com/disc0ver-csu/linux-system)
5. [Digital Image Process](https://github.com/disc0ver-csu/digital-image-process)
6. [Assembly Language](https://github.com/disc0ver-csu/assembly-language)
7. [Distributed Systems and Cloud Computing](https://github.com/disc0ver-csu/distributed-systems)
8. [Java](https://github.com/disc0ver-csu/java-projects)
9. [Animation and Game Programing](https://github.com/leo6033/UnityLearing/tree/master/TanksWar)
10. [compiler principles](https://github.com/disc0ver-csu/compiler-principles)
11. [software testing](https://github.com/disc0ver-csu/software-testing)## Contribution
欢迎大家参与该项目,参与的方式大概如下:
1. 关于实验课设代码开源:
- 该项目中还未涉及到的课程
- 该项目中未包括的实验
- 对已有代码进行优化**需保证代码质量**
非 wiki 部分 commit 时加入 [ci skip],例如
```
git commit -m "分布式与云计算 实验1 finish [ci skip]"
```2. 关于课程 wiki:
本地部署方式
```
git clone [email protected]:leo6033/csu-cs-wiki.git --depth=1cd csu-cs-wiki
# 安装 mkdocs,需要 Python3 环境
pip install -U -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/# 使用自定义主题
chmod +x ./scripts/build.sh && ./scripts/build.sh# 两种方法(选其一即可):
# 1. 运行一个本地服务器,访问 http://127.0.0.1:8000 可以查看效果
mkdocs serve# 2. 在 site 文件夹下得到静态页面
mkdocs build# 获取 mkdocs 的命令行工具的说明(解释了命令和参数的含义)
mkdocs --help
```在 `docs` 目录下对应位置进行 wiki 内容编写,如有目录新增,需在 `mkdocs.yml` 中 `nav` 部分添加。
## License
[MIT © Richard McRichface.](LICENSE)