├── .gitattributes ├── .github └── workflows │ ├── link_check.yml │ └── workflow.yml ├── .markdownlint.json ├── .yo-rc.json ├── LICENSE ├── README.md ├── _config.yml ├── banner.png ├── code-of-conduct.md ├── contributing.md └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/workflows/link_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/.github/workflows/link_check.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | markdown: CommonMarkGhPages -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/banner.png -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/contributing.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upgundecha/awesome-engineering/HEAD/index.html --------------------------------------------------------------------------------