├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── config.yml ├── content └── zh │ ├── _index.md │ ├── docs │ ├── asm.md │ ├── basic.md │ ├── books.md │ ├── cs-degree.md │ ├── cs-project.md │ ├── discrete-math.md │ ├── dlab.md │ ├── english.md │ ├── fl.md │ ├── friends.md │ ├── goal.md │ ├── health.md │ ├── intro-to-crypto.md │ ├── intro-to-cs-and-prog.md │ ├── learn-prog-lang.md │ ├── micro.md │ ├── nctu-opportunities.md │ ├── nonprofit.md │ ├── ocw.md │ ├── open-source.md │ ├── problem-solving.md │ ├── prog-lang.md │ ├── search.md │ ├── software-engineer.md │ ├── startup.md │ └── tools.md │ └── menu │ └── index.md └── static └── assets ├── bpc-score.png ├── timus-menu.png ├── timus1.png ├── timus10.png ├── timus11.png ├── timus2.png ├── timus3.png ├── timus4.png ├── timus5.png ├── timus6.png ├── timus7.png ├── timus8.png └── timus9.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/config.yml -------------------------------------------------------------------------------- /content/zh/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/_index.md -------------------------------------------------------------------------------- /content/zh/docs/asm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/asm.md -------------------------------------------------------------------------------- /content/zh/docs/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/basic.md -------------------------------------------------------------------------------- /content/zh/docs/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/books.md -------------------------------------------------------------------------------- /content/zh/docs/cs-degree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/cs-degree.md -------------------------------------------------------------------------------- /content/zh/docs/cs-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/cs-project.md -------------------------------------------------------------------------------- /content/zh/docs/discrete-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/discrete-math.md -------------------------------------------------------------------------------- /content/zh/docs/dlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/dlab.md -------------------------------------------------------------------------------- /content/zh/docs/english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/english.md -------------------------------------------------------------------------------- /content/zh/docs/fl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/fl.md -------------------------------------------------------------------------------- /content/zh/docs/friends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/friends.md -------------------------------------------------------------------------------- /content/zh/docs/goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/goal.md -------------------------------------------------------------------------------- /content/zh/docs/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/health.md -------------------------------------------------------------------------------- /content/zh/docs/intro-to-crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/intro-to-crypto.md -------------------------------------------------------------------------------- /content/zh/docs/intro-to-cs-and-prog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/intro-to-cs-and-prog.md -------------------------------------------------------------------------------- /content/zh/docs/learn-prog-lang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/learn-prog-lang.md -------------------------------------------------------------------------------- /content/zh/docs/micro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/micro.md -------------------------------------------------------------------------------- /content/zh/docs/nctu-opportunities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/nctu-opportunities.md -------------------------------------------------------------------------------- /content/zh/docs/nonprofit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/nonprofit.md -------------------------------------------------------------------------------- /content/zh/docs/ocw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/ocw.md -------------------------------------------------------------------------------- /content/zh/docs/open-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/open-source.md -------------------------------------------------------------------------------- /content/zh/docs/problem-solving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/problem-solving.md -------------------------------------------------------------------------------- /content/zh/docs/prog-lang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/prog-lang.md -------------------------------------------------------------------------------- /content/zh/docs/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/search.md -------------------------------------------------------------------------------- /content/zh/docs/software-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/software-engineer.md -------------------------------------------------------------------------------- /content/zh/docs/startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/startup.md -------------------------------------------------------------------------------- /content/zh/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/docs/tools.md -------------------------------------------------------------------------------- /content/zh/menu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/content/zh/menu/index.md -------------------------------------------------------------------------------- /static/assets/bpc-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/bpc-score.png -------------------------------------------------------------------------------- /static/assets/timus-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus-menu.png -------------------------------------------------------------------------------- /static/assets/timus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus1.png -------------------------------------------------------------------------------- /static/assets/timus10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus10.png -------------------------------------------------------------------------------- /static/assets/timus11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus11.png -------------------------------------------------------------------------------- /static/assets/timus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus2.png -------------------------------------------------------------------------------- /static/assets/timus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus3.png -------------------------------------------------------------------------------- /static/assets/timus4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus4.png -------------------------------------------------------------------------------- /static/assets/timus5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus5.png -------------------------------------------------------------------------------- /static/assets/timus6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus6.png -------------------------------------------------------------------------------- /static/assets/timus7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus7.png -------------------------------------------------------------------------------- /static/assets/timus8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus8.png -------------------------------------------------------------------------------- /static/assets/timus9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaform/csdream/HEAD/static/assets/timus9.png --------------------------------------------------------------------------------