├── .gitignore ├── Algorithm ├── README.md └── calculate-complexity-of-algorithm.md ├── Live ├── career-route.md ├── how-to-build-personal-influence.md ├── how-to-promote-a-newtech-in-your-team.md ├── how-to-read-source-code.md ├── how-to-write-dissert.md ├── how-to-write-readme.md ├── how-to-write-tech-research.md └── images │ ├── .DS_Store │ ├── career-route │ ├── .DS_Store │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png │ └── how-to-write-readme │ └── licence.png ├── README.md ├── basic-knowledge └── string-code.md ├── computer-system └── linux │ ├── README.md │ └── apache-config.md ├── database ├── README.md ├── advance │ └── optimize-sql.md └── basic │ ├── date.md │ ├── other.md │ ├── select-basic.md │ ├── select-usage.md │ ├── string.md │ └── view.md ├── machine-learing ├── README.md └── introduction.md ├── network-of-computer ├── images │ ├── dns-lb.png │ ├── ip-lb.png │ └── mac-lb.png └── load-balance.md ├── programming-concept ├── design-patterns │ ├── README.md │ ├── behavioral-patterns │ │ └── chain-of-responsibility.md │ └── creational-patterns │ │ ├── README.md │ │ ├── abstract-factory.md │ │ ├── builder.md │ │ ├── factory-method.md │ │ ├── prototype.md │ │ └── singleton.md └── functional-programming │ ├── README.md │ ├── aop.md │ └── images │ ├── aop1.png │ └── aop2.png ├── software-engineering ├── README.md ├── code-style-standard.md ├── git-commit-standard.md ├── how-to-write-a-technoloy-plan.md └── scrum.md └── tools ├── git ├── README.md ├── git-commit.md ├── git-delete-branch.md ├── git-multi-user.md ├── git-problems.md ├── git-reset-commit.md └── images │ └── git-ssh-key.png ├── graph.md ├── ide.md ├── shell-dict.md └── tools.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Algorithm/README.md -------------------------------------------------------------------------------- /Algorithm/calculate-complexity-of-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Algorithm/calculate-complexity-of-algorithm.md -------------------------------------------------------------------------------- /Live/career-route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/career-route.md -------------------------------------------------------------------------------- /Live/how-to-build-personal-influence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-build-personal-influence.md -------------------------------------------------------------------------------- /Live/how-to-promote-a-newtech-in-your-team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-promote-a-newtech-in-your-team.md -------------------------------------------------------------------------------- /Live/how-to-read-source-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-read-source-code.md -------------------------------------------------------------------------------- /Live/how-to-write-dissert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-write-dissert.md -------------------------------------------------------------------------------- /Live/how-to-write-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-write-readme.md -------------------------------------------------------------------------------- /Live/how-to-write-tech-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/how-to-write-tech-research.md -------------------------------------------------------------------------------- /Live/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/.DS_Store -------------------------------------------------------------------------------- /Live/images/career-route/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/.DS_Store -------------------------------------------------------------------------------- /Live/images/career-route/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/1.png -------------------------------------------------------------------------------- /Live/images/career-route/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/2.png -------------------------------------------------------------------------------- /Live/images/career-route/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/3.png -------------------------------------------------------------------------------- /Live/images/career-route/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/4.png -------------------------------------------------------------------------------- /Live/images/career-route/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/5.png -------------------------------------------------------------------------------- /Live/images/career-route/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/career-route/6.png -------------------------------------------------------------------------------- /Live/images/how-to-write-readme/licence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/Live/images/how-to-write-readme/licence.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/README.md -------------------------------------------------------------------------------- /basic-knowledge/string-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/basic-knowledge/string-code.md -------------------------------------------------------------------------------- /computer-system/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/computer-system/linux/README.md -------------------------------------------------------------------------------- /computer-system/linux/apache-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/computer-system/linux/apache-config.md -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/README.md -------------------------------------------------------------------------------- /database/advance/optimize-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/advance/optimize-sql.md -------------------------------------------------------------------------------- /database/basic/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/date.md -------------------------------------------------------------------------------- /database/basic/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/other.md -------------------------------------------------------------------------------- /database/basic/select-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/select-basic.md -------------------------------------------------------------------------------- /database/basic/select-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/select-usage.md -------------------------------------------------------------------------------- /database/basic/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/string.md -------------------------------------------------------------------------------- /database/basic/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/database/basic/view.md -------------------------------------------------------------------------------- /machine-learing/README.md: -------------------------------------------------------------------------------- 1 | ## Machine Learning 2 | 3 | - [简介](./introduction.md) -------------------------------------------------------------------------------- /machine-learing/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/machine-learing/introduction.md -------------------------------------------------------------------------------- /network-of-computer/images/dns-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/network-of-computer/images/dns-lb.png -------------------------------------------------------------------------------- /network-of-computer/images/ip-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/network-of-computer/images/ip-lb.png -------------------------------------------------------------------------------- /network-of-computer/images/mac-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/network-of-computer/images/mac-lb.png -------------------------------------------------------------------------------- /network-of-computer/load-balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/network-of-computer/load-balance.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/README.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/behavioral-patterns/chain-of-responsibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/behavioral-patterns/chain-of-responsibility.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/README.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/abstract-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/abstract-factory.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/builder.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/factory-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/factory-method.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/prototype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/prototype.md -------------------------------------------------------------------------------- /programming-concept/design-patterns/creational-patterns/singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/design-patterns/creational-patterns/singleton.md -------------------------------------------------------------------------------- /programming-concept/functional-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/functional-programming/README.md -------------------------------------------------------------------------------- /programming-concept/functional-programming/aop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/functional-programming/aop.md -------------------------------------------------------------------------------- /programming-concept/functional-programming/images/aop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/functional-programming/images/aop1.png -------------------------------------------------------------------------------- /programming-concept/functional-programming/images/aop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/programming-concept/functional-programming/images/aop2.png -------------------------------------------------------------------------------- /software-engineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/software-engineering/README.md -------------------------------------------------------------------------------- /software-engineering/code-style-standard.md: -------------------------------------------------------------------------------- 1 | ## 编码规范 -------------------------------------------------------------------------------- /software-engineering/git-commit-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/software-engineering/git-commit-standard.md -------------------------------------------------------------------------------- /software-engineering/how-to-write-a-technoloy-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/software-engineering/how-to-write-a-technoloy-plan.md -------------------------------------------------------------------------------- /software-engineering/scrum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/software-engineering/scrum.md -------------------------------------------------------------------------------- /tools/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/README.md -------------------------------------------------------------------------------- /tools/git/git-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/git-commit.md -------------------------------------------------------------------------------- /tools/git/git-delete-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/git-delete-branch.md -------------------------------------------------------------------------------- /tools/git/git-multi-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/git-multi-user.md -------------------------------------------------------------------------------- /tools/git/git-problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/git-problems.md -------------------------------------------------------------------------------- /tools/git/git-reset-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/git-reset-commit.md -------------------------------------------------------------------------------- /tools/git/images/git-ssh-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/git/images/git-ssh-key.png -------------------------------------------------------------------------------- /tools/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/graph.md -------------------------------------------------------------------------------- /tools/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/ide.md -------------------------------------------------------------------------------- /tools/shell-dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/shell-dict.md -------------------------------------------------------------------------------- /tools/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suvllian/computer-science-knowledge/HEAD/tools/tools.md --------------------------------------------------------------------------------