├── .all-contributorsrc ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── contributing.md └── pull_request_template.md ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── _config.yml ├── assets ├── banner.png ├── banner.psd ├── diagrams.bmpr └── repository-open-graph-template.png └── images ├── amdahls_law.png ├── gartner_hype_cycle.png └── spotify.jpg /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | node_modules/ -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/assets/banner.psd -------------------------------------------------------------------------------- /assets/diagrams.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/assets/diagrams.bmpr -------------------------------------------------------------------------------- /assets/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/assets/repository-open-graph-template.png -------------------------------------------------------------------------------- /images/amdahls_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/images/amdahls_law.png -------------------------------------------------------------------------------- /images/gartner_hype_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/images/gartner_hype_cycle.png -------------------------------------------------------------------------------- /images/spotify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarrust/hacker-laws/HEAD/images/spotify.jpg --------------------------------------------------------------------------------