├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── Pull_request_template.md └── workflows │ └── main.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Translation Bahasa Indonesia └── Readme-ID.md ├── Translation Bahasa Melayu └── README-bm.md ├── Translation Bulgarian └── README-bg.md ├── Translation French └── README-fr.md ├── Translation Hindi └── README-hindi.md ├── Translation Polish └── README-pl.md ├── Translation Portuguese └── README-ptbr.md ├── Translation Russian └── README-ru.md ├── Translation Spanish └── README-es.md └── translation └── README.de.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/Pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/.github/Pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/README.md -------------------------------------------------------------------------------- /Translation Bahasa Indonesia/Readme-ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Bahasa Indonesia/Readme-ID.md -------------------------------------------------------------------------------- /Translation Bahasa Melayu/README-bm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Bahasa Melayu/README-bm.md -------------------------------------------------------------------------------- /Translation Bulgarian/README-bg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Bulgarian/README-bg.md -------------------------------------------------------------------------------- /Translation French/README-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation French/README-fr.md -------------------------------------------------------------------------------- /Translation Hindi/README-hindi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Hindi/README-hindi.md -------------------------------------------------------------------------------- /Translation Polish/README-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Polish/README-pl.md -------------------------------------------------------------------------------- /Translation Portuguese/README-ptbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Portuguese/README-ptbr.md -------------------------------------------------------------------------------- /Translation Russian/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Russian/README-ru.md -------------------------------------------------------------------------------- /Translation Spanish/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/Translation Spanish/README-es.md -------------------------------------------------------------------------------- /translation/README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchirijane/learning-code-through-github-repos/HEAD/translation/README.de.md --------------------------------------------------------------------------------