├── .editorconfig ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── settings.json ├── AUTHORS.md ├── README.md ├── api ├── README.md ├── api-design │ └── README.md └── api-directory │ └── README.md ├── art └── audio │ └── hardware │ └── README.md ├── bash └── README.md ├── clojure └── README.md ├── css ├── README.md ├── bem │ └── README.md └── sass │ └── README.md ├── culture ├── README.md └── companies │ └── README.md ├── d └── README.md ├── data ├── README.md └── country │ └── Finland │ └── README.md ├── design ├── README.md └── styleguides │ └── README.md ├── editors └── README.md ├── education └── README.md ├── events └── README.md ├── git └── README.md ├── go └── README.md ├── java └── README.md ├── javascript ├── README.md ├── automation │ └── README.md ├── d3 │ └── README.md ├── nodejs │ └── README.md ├── react │ └── README.md └── reactive │ └── README.md ├── knowledge.code-workspace ├── markdown └── README.md ├── mathematics └── README.md ├── networking └── README.md ├── package.json ├── perl └── README.md ├── photography └── README.md ├── php └── README.md ├── productivity └── README.md ├── python └── README.md ├── r └── README.md ├── renovate.json ├── robots └── README.md ├── ruby ├── README.md ├── code-quality.md ├── jekyll │ └── README.md ├── rails │ └── README.md └── sinatra │ └── README.md ├── scripts └── update-authors.sh ├── services ├── README.md ├── facebook │ └── README.md ├── github │ └── README.md ├── google │ └── README.md ├── slack │ └── README.md └── wechat │ └── README.md ├── software-architecture ├── README.md └── microservices │ └── README.md ├── typography └── README.md ├── usability └── README.md └── zsh └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | TEMP-notes.md 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/api/README.md -------------------------------------------------------------------------------- /api/api-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/api/api-design/README.md -------------------------------------------------------------------------------- /api/api-directory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/api/api-directory/README.md -------------------------------------------------------------------------------- /art/audio/hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/art/audio/hardware/README.md -------------------------------------------------------------------------------- /bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/bash/README.md -------------------------------------------------------------------------------- /clojure/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/css/README.md -------------------------------------------------------------------------------- /css/bem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/css/bem/README.md -------------------------------------------------------------------------------- /css/sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/css/sass/README.md -------------------------------------------------------------------------------- /culture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/culture/README.md -------------------------------------------------------------------------------- /culture/companies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/culture/companies/README.md -------------------------------------------------------------------------------- /d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/d/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/data/README.md -------------------------------------------------------------------------------- /data/country/Finland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/data/country/Finland/README.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/design/README.md -------------------------------------------------------------------------------- /design/styleguides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/design/styleguides/README.md -------------------------------------------------------------------------------- /editors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/editors/README.md -------------------------------------------------------------------------------- /education/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/education/README.md -------------------------------------------------------------------------------- /events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/events/README.md -------------------------------------------------------------------------------- /git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/git/README.md -------------------------------------------------------------------------------- /go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/go/README.md -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/automation/README.md -------------------------------------------------------------------------------- /javascript/d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/d3/README.md -------------------------------------------------------------------------------- /javascript/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/nodejs/README.md -------------------------------------------------------------------------------- /javascript/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/react/README.md -------------------------------------------------------------------------------- /javascript/reactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/javascript/reactive/README.md -------------------------------------------------------------------------------- /knowledge.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/knowledge.code-workspace -------------------------------------------------------------------------------- /markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/markdown/README.md -------------------------------------------------------------------------------- /mathematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/mathematics/README.md -------------------------------------------------------------------------------- /networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/networking/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/package.json -------------------------------------------------------------------------------- /perl/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /photography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/photography/README.md -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/php/README.md -------------------------------------------------------------------------------- /productivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/productivity/README.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/python/README.md -------------------------------------------------------------------------------- /r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/r/README.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/renovate.json -------------------------------------------------------------------------------- /robots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/robots/README.md -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/code-quality.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruby/jekyll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/ruby/jekyll/README.md -------------------------------------------------------------------------------- /ruby/rails/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruby/sinatra/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/update-authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/scripts/update-authors.sh -------------------------------------------------------------------------------- /services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/README.md -------------------------------------------------------------------------------- /services/facebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/facebook/README.md -------------------------------------------------------------------------------- /services/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/github/README.md -------------------------------------------------------------------------------- /services/google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/google/README.md -------------------------------------------------------------------------------- /services/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/slack/README.md -------------------------------------------------------------------------------- /services/wechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/services/wechat/README.md -------------------------------------------------------------------------------- /software-architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/software-architecture/README.md -------------------------------------------------------------------------------- /software-architecture/microservices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/software-architecture/microservices/README.md -------------------------------------------------------------------------------- /typography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/typography/README.md -------------------------------------------------------------------------------- /usability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2s/knowledge/HEAD/usability/README.md -------------------------------------------------------------------------------- /zsh/README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------