forked from QSCTech/zju-icicles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
2,515 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
version: 2 | ||
|
||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
- deploy: | ||
filters: | ||
branches: | ||
only: master | ||
|
||
jobs: | ||
deploy: | ||
docker: | ||
- image: circleci/python:3.7.3-stretch | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install | ||
command: pipenv install | ||
- run: | ||
name: Update Index | ||
command: cp README.md docs/index.md | ||
- run: | ||
name: Update Courses | ||
command: pipenv run python update.py | ||
- add_ssh_keys: | ||
fingerprints: | ||
- "a4:2f:c8:ed:e9:cd:b7:70:36:18:f8:55:c9:16:f2:5c" | ||
- run: | ||
name: Delete All SSH keys and Add the installed one | ||
command: ssh-add -D && ssh-add ~/.ssh/id_rsa_a42fc8ede9cdb7703618f855c916f25c | ||
- run: | ||
name: Deploy docs to gh-pages branch | ||
command: pipenv run mkdocs gh-deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
pylint = "*" | ||
autopep8 = "*" | ||
|
||
[packages] | ||
mkdocs = "*" | ||
|
||
[requires] | ||
python_version = "3.7" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## 关于选课 | ||
- 个人认为楼sir对于教Java并不用心,与wengkai老师的ppt相比,很多(>50%)具体的知识点都没涉及 | ||
|
||
## 关于考试(基于2016-17秋冬Java应用技术考试) | ||
- 开卷,带一本出版过的书 | ||
- 根据2017年1月19号的考试来看,题目的内容主要集中在《Java语言程序设计-基础篇(原书第8版)》,而且异常相关的题目有很多;对于《进阶篇》所涉及到的内容,个人估计在30~40%左右,而且考的也不是很刁钻,都是基础的概念和用法。所以带一本《基础篇》可能更合适。(但是没做过历届的题,所以不知道一直都这么重基础,还是只有今年如此。) | ||
- 建议楼sir班的学生在平时一定要坚持自学,如果要拿一个漂亮的分数。光听楼sir的课,你会发现很多知识都不知道,复习时可以用wengkai老师的课件 | ||
- 题型: 判断10x1%, 选择30x2%=60%,程序输出题10x3%=30% | ||
|
||
|
||
|
||
## 文件列表 | ||
|
||
- Java应用技术 | ||
- 资料 | ||
- [源码 Java语言程序设计.zip](https://github.com/QSCTech/zju-icicles/raw/master/Java应用技术/资料/源码 Java语言程序设计.zip) | ||
- [考点 2015秋冬.html](https://github.com/QSCTech/zju-icicles/raw/master/Java应用技术/资料/考点 2015秋冬.html) | ||
- [张海 复习.pdf](https://github.com/QSCTech/zju-icicles/raw/master/Java应用技术/资料/张海 复习.pdf) | ||
- 试卷 | ||
- [2017-2018.md](https://github.com/QSCTech/zju-icicles/blob/master/Java应用技术/试卷/2017-2018.md) | ||
- [2018-2019秋冬试卷.md](https://github.com/QSCTech/zju-icicles/blob/master/Java应用技术/试卷/2018-2019秋冬试卷.md) | ||
- [不靠谱的Java复习题.rar](https://github.com/QSCTech/zju-icicles/raw/master/Java应用技术/试卷/不靠谱的Java复习题.rar) | ||
- [期末考试答案 - Java语言程序设计进阶 - 网易云课堂.pdf](https://github.com/QSCTech/zju-icicles/raw/master/Java应用技术/试卷/期末考试答案 - Java语言程序设计进阶 - 网易云课堂.pdf) |
Oops, something went wrong.