├── 2022 └── README.md ├── 2023 └── README.md ├── 2024 └── README.md ├── 2025 └── README.md ├── .github ├── ISSUE_TEMPLATE │ ├── --bug-report.yaml │ ├── --feature-request.yaml │ └── config.yml ├── License-Apache_2.0-blue.svg └── slack.svg ├── .gitignore ├── .idea ├── .gitignore ├── gsoc.iml ├── modules.xml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GSoD 2023 └── Readme.md ├── LICENSE ├── MENTOR-GUIDE.md ├── PROPOSAL-GUIDE.md ├── README.md ├── SECURITY.md └── assets ├── issue.svg └── pr.svg /.github/ISSUE_TEMPLATE/--bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.github/ISSUE_TEMPLATE/--bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.github/ISSUE_TEMPLATE/--feature-request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/License-Apache_2.0-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.github/License-Apache_2.0-blue.svg -------------------------------------------------------------------------------- /.github/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.github/slack.svg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/gsoc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.idea/gsoc.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/2022/README.md -------------------------------------------------------------------------------- /2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/2023/README.md -------------------------------------------------------------------------------- /2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/2024/README.md -------------------------------------------------------------------------------- /2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/2025/README.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GSoD 2023/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/GSoD 2023/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/LICENSE -------------------------------------------------------------------------------- /MENTOR-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/MENTOR-GUIDE.md -------------------------------------------------------------------------------- /PROPOSAL-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/PROPOSAL-GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/assets/issue.svg -------------------------------------------------------------------------------- /assets/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keploy/gsoc/HEAD/assets/pr.svg --------------------------------------------------------------------------------