├── .all-contributorsrc ├── .github └── workflows │ ├── areyouok-links.yml │ └── validate-schema.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app-development ├── android │ └── index.json └── flutter │ └── index.json ├── artificial-intelligence ├── deep-learning │ └── index.json └── machine-learning │ └── index.json ├── computer-graphics └── index.json ├── computer-science └── index.json ├── devops └── index.json ├── distributed-computing └── index.json ├── dsa └── index.json ├── languages ├── c++ │ └── index.json ├── c │ └── index.json ├── css │ └── index.json ├── go │ └── index.json ├── java │ └── index.json ├── javascript │ └── index.json ├── python │ └── index.json ├── ruby │ └── index.json ├── rust │ └── index.json ├── sql │ └── index.json └── typescript │ └── index.json ├── miscellaneous └── index.json ├── operating-systems └── index.json ├── requirements.txt ├── resource.schema ├── tools ├── git │ └── index.json └── linux │ └── index.json └── validator.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/areyouok-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/.github/workflows/areyouok-links.yml -------------------------------------------------------------------------------- /.github/workflows/validate-schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/.github/workflows/validate-schema.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/README.md -------------------------------------------------------------------------------- /app-development/android/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/app-development/android/index.json -------------------------------------------------------------------------------- /app-development/flutter/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/app-development/flutter/index.json -------------------------------------------------------------------------------- /artificial-intelligence/deep-learning/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/artificial-intelligence/deep-learning/index.json -------------------------------------------------------------------------------- /artificial-intelligence/machine-learning/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/artificial-intelligence/machine-learning/index.json -------------------------------------------------------------------------------- /computer-graphics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/computer-graphics/index.json -------------------------------------------------------------------------------- /computer-science/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/computer-science/index.json -------------------------------------------------------------------------------- /devops/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/devops/index.json -------------------------------------------------------------------------------- /distributed-computing/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/distributed-computing/index.json -------------------------------------------------------------------------------- /dsa/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/dsa/index.json -------------------------------------------------------------------------------- /languages/c++/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/c++/index.json -------------------------------------------------------------------------------- /languages/c/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/c/index.json -------------------------------------------------------------------------------- /languages/css/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/css/index.json -------------------------------------------------------------------------------- /languages/go/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/go/index.json -------------------------------------------------------------------------------- /languages/java/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/java/index.json -------------------------------------------------------------------------------- /languages/javascript/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/javascript/index.json -------------------------------------------------------------------------------- /languages/python/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/python/index.json -------------------------------------------------------------------------------- /languages/ruby/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/ruby/index.json -------------------------------------------------------------------------------- /languages/rust/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/rust/index.json -------------------------------------------------------------------------------- /languages/sql/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/sql/index.json -------------------------------------------------------------------------------- /languages/typescript/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/languages/typescript/index.json -------------------------------------------------------------------------------- /miscellaneous/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/miscellaneous/index.json -------------------------------------------------------------------------------- /operating-systems/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/operating-systems/index.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jsonschema -------------------------------------------------------------------------------- /resource.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/resource.schema -------------------------------------------------------------------------------- /tools/git/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/tools/git/index.json -------------------------------------------------------------------------------- /tools/linux/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/tools/linux/index.json -------------------------------------------------------------------------------- /validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developersIndia/resources/HEAD/validator.py --------------------------------------------------------------------------------