├── .github ├── CODE_OF_CONDUCT.md ├── contributing.md └── pull_request_template.md ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── assets ├── banner.png ├── banner.psd ├── diagrams.bmpr └── repository-open-graph-template.png └── images ├── amdahls_law.png ├── gartner_hype_cycle.png └── spotify_model.jpg /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/assets/banner.psd -------------------------------------------------------------------------------- /assets/diagrams.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/assets/diagrams.bmpr -------------------------------------------------------------------------------- /assets/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/assets/repository-open-graph-template.png -------------------------------------------------------------------------------- /images/amdahls_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/images/amdahls_law.png -------------------------------------------------------------------------------- /images/gartner_hype_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/images/gartner_hype_cycle.png -------------------------------------------------------------------------------- /images/spotify_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanddonuts/hacker-laws-kr/HEAD/images/spotify_model.jpg --------------------------------------------------------------------------------