Skip to content

Commit 67e610d

Browse files
committed
Add sourcerer avatar, update readme
1 parent 218b3fd commit 67e610d

File tree

3 files changed

+8
-63
lines changed

3 files changed

+8
-63
lines changed

Diff for: README.md

+4-61
Original file line numberDiff line numberDiff line change
@@ -31,37 +31,6 @@
3131
# 资料下载
3232
[戳我(●'◡'●)](https://ustc-resource.github.io/USTC-Course)
3333

34-
<!--
35-
## FTP
36-
1. FTP/FTPS:
37-
- 地址:ftp.ustclug.org;
38-
- 路径:/ebook/USTC-CS-Courses-Resource;
39-
- 用户名:ftp;
40-
- 密码:ftp;
41-
2. SFTP (Secure File Transfer Protocol):
42-
- 地址:ftp.ustclug.org;
43-
- 路径:/ebook/USTC-CS-Courses-Resource;
44-
- 用户名:ftp;
45-
- 密码:ftp;
46-
3. AFP (Apple Filing Protocol)
47-
- 地址:afp://ftp.ustclug.org/;
48-
- 路径:/ebook/USTC-CS-Courses-Resource;
49-
- Connect As Guest
50-
51-
感谢 @USTC-LUG, @[zzh1996](https://github.com/zzh1996), @[volltin](https://github.com/volltin)
52-
53-
54-
## HTTPS
55-
56-
- [github 网页](#课程目录)
57-
- [DownGit](http://downgit.zhoudaxiaa.com/#/home)
58-
- [gitzip-chrome-extension](https://chrome.google.com/webstore/detail/gitzip-for-github/ffabmkklhbepgcgfonabamgnfafbdlkn)
59-
60-
注意,建议不要直接用 GitHub 仓库的 `Download Zip`。因为网速慢,而且仓库很大,很可能下载到中途就切断连接了。
61-
推荐用 DownGit 工具,方法很简单,在 GitHub 这里浏览网页到某个文件夹,然后将这个网页地址粘贴到 DownGit 下载即可。
62-
63-
-->
64-
6534
# 课程结构
6635
每门课程大致结构如下,有些栏目可能没有,也可以自己添加认为合理的栏目
6736
```
@@ -104,16 +73,18 @@ course
10473
* [微机原理与系统](./微机原理与系统)
10574

10675
# 贡献投稿
107-
[这里是](https://github.com/USTC-Resource/USTC-Course/graphs/contributors) GitHub commit 贡献名单
108-
内容创作者包括:
76+
## [GitHub Commit](https://github.com/USTC-Resource/USTC-Course/graphs/contributors)
77+
[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/0)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/0)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/1)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/1)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/2)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/2)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/3)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/3)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/4)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/4)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/5)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/5)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/6)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/6)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/7)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/7)
10978

79+
## 内容创作者
11080
- mbinary
11181
- Lyncien
11282
- kingzevin
11383
- ksqsf
11484
- cclauss
11585
- 吴颖文
11686
- 童世炜
87+
- 熊家靖
11788

11889
如果遗漏了你的名字,可自行 PR 或者联系贡献者。
11990

@@ -122,31 +93,3 @@ course
12293
* github 上不能直接上传大于 100mb 的文件。对于超过 100 mb 的文件,可以存在网盘,然后在 README 文件中贴上链接
12394
* 文件内容的改动会使 git 重新上传, 在没有必要的情况下, 不要对二进制文件做任何更改.
12495

125-
<!--
126-
可以通过如下方式贡献
127-
- 帮忙上传: 可以发给仓库维护者帮忙上传,或者提 issue
128-
- 用网页操作或者[桌面版](https://desktop.github.com/) fork and pull request. 操作方式可以参考 [这里](https://blog.csdn.net/qq_29277155/article/details/51048990) 和[这里](https://blog.csdn.net/zhangw0_0/article/details/50667891),[PR](https://blog.csdn.net/huutu/article/details/51018317)
129-
130-
- 用命令行: 注意仓库较大,直接 clone 很慢. 可以使用 sparse-checkout, 只下载指定的目录
131-
执行
132-
```shell
133-
mkdir ustc-courses #文件夹名可以自己取
134-
cd ustc-courses
135-
git init
136-
git remote add -f origin [email protected]:mbinary/USTC-CS-Courses-Resource.git
137-
git config core.sparsecheckout true
138-
echo "计算机与信息类/软件工程" >> .git/info/sparse-checkout #这里工作目录就是在那个 repo 主页下
139-
140-
#如果还有其他目录,都像上面一样加入即可,如 `echo "计算机与信息类/图论/slides" >> .git/info/sparse-checkout`
141-
#只需记住的是 加入的目录应该在远程仓库存在,否则报错“error: Sparse checkout leaves no entry on the working directory”
142-
143-
git pull origin master
144-
git remote add upstream [email protected]:mbinary/USTC-CS-Courses-Resource.git
145-
```
146-
更新内容后
147-
```shell
148-
git fetch upstream/master
149-
git merge upstream/master
150-
```
151-
-->
152-

Diff for: utils/config.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -146,16 +146,18 @@
146146
{index}
147147
148148
# 贡献投稿
149-
[这里是](https://github.com/USTC-Resource/USTC-Course/graphs/contributors) GitHub commit 贡献名单
150-
内容创作者包括:
149+
## [GitHub Commit](https://github.com/USTC-Resource/USTC-Course/graphs/contributors)
150+
[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/0)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/0)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/1)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/1)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/2)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/2)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/3)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/3)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/4)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/4)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/5)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/5)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/6)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/6)[![](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/images/7)](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/7)
151151
152+
## 内容创作者
152153
- mbinary
153154
- Lyncien
154155
- kingzevin
155156
- ksqsf
156157
- cclauss
157158
- 吴颖文
158159
- 童世炜
160+
- 熊家靖
159161
160162
如果遗漏了你的名字,可自行 PR 或者联系贡献者。
161163

0 commit comments

Comments
 (0)