├── .github └── workflows │ └── markdownlint.yml ├── .gitignore ├── .markdownlint.yaml ├── .vscode └── settings.json ├── 404.md ├── AUTHORS ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── _config.yml ├── _data ├── alerts.yml ├── samplelist.yml ├── sidebars │ ├── mentor_sidebar.yml │ ├── other.yml │ └── student_sidebar.yml ├── strings.yml ├── tags.yml └── topnav.yml ├── _includes ├── archive.html ├── callout.html ├── feedback.html ├── footer.html ├── google_analytics.html ├── head.html ├── head_print.html ├── image.html ├── important.html ├── initialize_shuffle.html ├── inline_image.html ├── links.html ├── note.html ├── prevnext.html ├── sidebar.html ├── taglogic.html ├── tip.html ├── toc.html ├── topnav.html └── warning.html ├── _layouts ├── default.html ├── default_print.html ├── none.html ├── page.html ├── page_print.html └── post.html ├── createtag ├── css ├── boxshadowproperties.css ├── customstyles.css ├── printstyles.css ├── syntax.css ├── theme-blue.css └── theme-green.css ├── docker-compose.yml ├── feed.xml ├── images ├── favicon.png └── sun-small.png ├── js └── customscripts.js ├── pages ├── index.md ├── mentor │ ├── 00-what_is_google_summer_of_code.md │ ├── 01-why_gsoc_matters.md │ ├── 02-notes_for_first_year_organizations.md │ ├── 03-what_makes_a_good_mentor.md │ ├── 04-defining_a_project__ideas_list.md │ ├── 05-selecting_a_student.md │ ├── 06-community_basics.md │ ├── 07-best_practices.md │ ├── 08-warning_signs.md │ ├── 09-open_source_culture.md │ ├── 10-community_bonding_period.md │ ├── 11-setting_expectations.md │ ├── 12-workflow.md │ ├── 13-managing_the_plan.md │ ├── 14-evaluations.md │ ├── 15-special_circumstances.md │ ├── 16-upstream_integration.md │ ├── 17-building_a_lifetime_contributor.md │ ├── 18-making_your_ideas_page.md │ ├── 19-selecting_students_and_mentors.md │ ├── 20-org_application.md │ ├── 21-managing_your_mentors.md │ ├── 22-student_-_mentor_facilitation.md │ ├── 23-other_possible_issues.md │ ├── 24-end_of_year_report.md │ ├── 25-about_this_manual.md │ ├── 26-the_quick_guide.md │ ├── 27-the_history_of_gsoc.md │ ├── 28-additional_resources.md │ └── 29-glossary.md └── student │ ├── 00-what_is_google_summer_of_code.md │ ├── 01-why_should_i_apply.md │ ├── 02-am_i_good_enough.md │ ├── 03-making_first_contact.md │ ├── 04-choosing_an_organization.md │ ├── 05-finding_the_right_project.md │ ├── 06-writing_a_proposal.md │ ├── 07-being_turned_down.md │ ├── 08-how_gsoc_works.md │ ├── 09-what_does_community_mean.md │ ├── 10-open_source_culture.md │ ├── 11-communication_best_practices.md │ ├── 12-how_to_get_a_head_start.md │ ├── 13-working_with_your_mentor.md │ ├── 14-time_management_for_students.md │ ├── 15-evaluations.md │ ├── 16-strategies_for_getting_your_code_committed.md │ ├── 17-staying_engaged_with_your_community.md │ ├── 18-about_this_manual.md │ ├── 19-history_of_gsoc.md │ ├── 20-additional_resources.md │ ├── 21-proposal_example_1.md │ ├── 22-proposal_example_2.md │ └── 23-glossary.md ├── search.json ├── sitemap.xml ├── third_party ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ └── modern-business.css ├── fonts │ ├── FontAwesome.otf │ ├── OFL.txt │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── LICENSE-BSD-NAVGOCO.txt │ ├── anchor.min.js │ ├── bootstrap.min.js │ ├── jekyll-search.js │ ├── jquery.cookie.min.js │ ├── jquery.min.js │ ├── jquery.navgoco.min.js │ ├── jquery.shuffle.min.js │ └── toc.js └── tooltips.json /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/404.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/alerts.yml -------------------------------------------------------------------------------- /_data/samplelist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/samplelist.yml -------------------------------------------------------------------------------- /_data/sidebars/mentor_sidebar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/sidebars/mentor_sidebar.yml -------------------------------------------------------------------------------- /_data/sidebars/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/sidebars/other.yml -------------------------------------------------------------------------------- /_data/sidebars/student_sidebar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/sidebars/student_sidebar.yml -------------------------------------------------------------------------------- /_data/strings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/strings.yml -------------------------------------------------------------------------------- /_data/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/tags.yml -------------------------------------------------------------------------------- /_data/topnav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_data/topnav.yml -------------------------------------------------------------------------------- /_includes/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/archive.html -------------------------------------------------------------------------------- /_includes/callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/callout.html -------------------------------------------------------------------------------- /_includes/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/feedback.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/google_analytics.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/head_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/head_print.html -------------------------------------------------------------------------------- /_includes/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/image.html -------------------------------------------------------------------------------- /_includes/important.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/important.html -------------------------------------------------------------------------------- /_includes/initialize_shuffle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/initialize_shuffle.html -------------------------------------------------------------------------------- /_includes/inline_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/inline_image.html -------------------------------------------------------------------------------- /_includes/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/links.html -------------------------------------------------------------------------------- /_includes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/note.html -------------------------------------------------------------------------------- /_includes/prevnext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/prevnext.html -------------------------------------------------------------------------------- /_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/sidebar.html -------------------------------------------------------------------------------- /_includes/taglogic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/taglogic.html -------------------------------------------------------------------------------- /_includes/tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/tip.html -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/toc.html -------------------------------------------------------------------------------- /_includes/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/topnav.html -------------------------------------------------------------------------------- /_includes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_includes/warning.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/default_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_layouts/default_print.html -------------------------------------------------------------------------------- /_layouts/none.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{content}} -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/page_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_layouts/page_print.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /createtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/createtag -------------------------------------------------------------------------------- /css/boxshadowproperties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/boxshadowproperties.css -------------------------------------------------------------------------------- /css/customstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/customstyles.css -------------------------------------------------------------------------------- /css/printstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/printstyles.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/syntax.css -------------------------------------------------------------------------------- /css/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/theme-blue.css -------------------------------------------------------------------------------- /css/theme-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/css/theme-green.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/feed.xml -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/sun-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/images/sun-small.png -------------------------------------------------------------------------------- /js/customscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/js/customscripts.js -------------------------------------------------------------------------------- /pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/index.md -------------------------------------------------------------------------------- /pages/mentor/00-what_is_google_summer_of_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/00-what_is_google_summer_of_code.md -------------------------------------------------------------------------------- /pages/mentor/01-why_gsoc_matters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/01-why_gsoc_matters.md -------------------------------------------------------------------------------- /pages/mentor/02-notes_for_first_year_organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/02-notes_for_first_year_organizations.md -------------------------------------------------------------------------------- /pages/mentor/03-what_makes_a_good_mentor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/03-what_makes_a_good_mentor.md -------------------------------------------------------------------------------- /pages/mentor/04-defining_a_project__ideas_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/04-defining_a_project__ideas_list.md -------------------------------------------------------------------------------- /pages/mentor/05-selecting_a_student.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/05-selecting_a_student.md -------------------------------------------------------------------------------- /pages/mentor/06-community_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/06-community_basics.md -------------------------------------------------------------------------------- /pages/mentor/07-best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/07-best_practices.md -------------------------------------------------------------------------------- /pages/mentor/08-warning_signs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/08-warning_signs.md -------------------------------------------------------------------------------- /pages/mentor/09-open_source_culture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/09-open_source_culture.md -------------------------------------------------------------------------------- /pages/mentor/10-community_bonding_period.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/10-community_bonding_period.md -------------------------------------------------------------------------------- /pages/mentor/11-setting_expectations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/11-setting_expectations.md -------------------------------------------------------------------------------- /pages/mentor/12-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/12-workflow.md -------------------------------------------------------------------------------- /pages/mentor/13-managing_the_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/13-managing_the_plan.md -------------------------------------------------------------------------------- /pages/mentor/14-evaluations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/14-evaluations.md -------------------------------------------------------------------------------- /pages/mentor/15-special_circumstances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/15-special_circumstances.md -------------------------------------------------------------------------------- /pages/mentor/16-upstream_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/16-upstream_integration.md -------------------------------------------------------------------------------- /pages/mentor/17-building_a_lifetime_contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/17-building_a_lifetime_contributor.md -------------------------------------------------------------------------------- /pages/mentor/18-making_your_ideas_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/18-making_your_ideas_page.md -------------------------------------------------------------------------------- /pages/mentor/19-selecting_students_and_mentors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/19-selecting_students_and_mentors.md -------------------------------------------------------------------------------- /pages/mentor/20-org_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/20-org_application.md -------------------------------------------------------------------------------- /pages/mentor/21-managing_your_mentors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/21-managing_your_mentors.md -------------------------------------------------------------------------------- /pages/mentor/22-student_-_mentor_facilitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/22-student_-_mentor_facilitation.md -------------------------------------------------------------------------------- /pages/mentor/23-other_possible_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/23-other_possible_issues.md -------------------------------------------------------------------------------- /pages/mentor/24-end_of_year_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/24-end_of_year_report.md -------------------------------------------------------------------------------- /pages/mentor/25-about_this_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/25-about_this_manual.md -------------------------------------------------------------------------------- /pages/mentor/26-the_quick_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/26-the_quick_guide.md -------------------------------------------------------------------------------- /pages/mentor/27-the_history_of_gsoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/27-the_history_of_gsoc.md -------------------------------------------------------------------------------- /pages/mentor/28-additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/28-additional_resources.md -------------------------------------------------------------------------------- /pages/mentor/29-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/mentor/29-glossary.md -------------------------------------------------------------------------------- /pages/student/00-what_is_google_summer_of_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/00-what_is_google_summer_of_code.md -------------------------------------------------------------------------------- /pages/student/01-why_should_i_apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/01-why_should_i_apply.md -------------------------------------------------------------------------------- /pages/student/02-am_i_good_enough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/02-am_i_good_enough.md -------------------------------------------------------------------------------- /pages/student/03-making_first_contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/03-making_first_contact.md -------------------------------------------------------------------------------- /pages/student/04-choosing_an_organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/04-choosing_an_organization.md -------------------------------------------------------------------------------- /pages/student/05-finding_the_right_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/05-finding_the_right_project.md -------------------------------------------------------------------------------- /pages/student/06-writing_a_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/06-writing_a_proposal.md -------------------------------------------------------------------------------- /pages/student/07-being_turned_down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/07-being_turned_down.md -------------------------------------------------------------------------------- /pages/student/08-how_gsoc_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/08-how_gsoc_works.md -------------------------------------------------------------------------------- /pages/student/09-what_does_community_mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/09-what_does_community_mean.md -------------------------------------------------------------------------------- /pages/student/10-open_source_culture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/10-open_source_culture.md -------------------------------------------------------------------------------- /pages/student/11-communication_best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/11-communication_best_practices.md -------------------------------------------------------------------------------- /pages/student/12-how_to_get_a_head_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/12-how_to_get_a_head_start.md -------------------------------------------------------------------------------- /pages/student/13-working_with_your_mentor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/13-working_with_your_mentor.md -------------------------------------------------------------------------------- /pages/student/14-time_management_for_students.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/14-time_management_for_students.md -------------------------------------------------------------------------------- /pages/student/15-evaluations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/15-evaluations.md -------------------------------------------------------------------------------- /pages/student/16-strategies_for_getting_your_code_committed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/16-strategies_for_getting_your_code_committed.md -------------------------------------------------------------------------------- /pages/student/17-staying_engaged_with_your_community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/17-staying_engaged_with_your_community.md -------------------------------------------------------------------------------- /pages/student/18-about_this_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/18-about_this_manual.md -------------------------------------------------------------------------------- /pages/student/19-history_of_gsoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/19-history_of_gsoc.md -------------------------------------------------------------------------------- /pages/student/20-additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/20-additional_resources.md -------------------------------------------------------------------------------- /pages/student/21-proposal_example_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/21-proposal_example_1.md -------------------------------------------------------------------------------- /pages/student/22-proposal_example_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/22-proposal_example_2.md -------------------------------------------------------------------------------- /pages/student/23-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/pages/student/23-glossary.md -------------------------------------------------------------------------------- /search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/search.json -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/sitemap.xml -------------------------------------------------------------------------------- /third_party/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/css/bootstrap.min.css -------------------------------------------------------------------------------- /third_party/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/css/font-awesome.min.css -------------------------------------------------------------------------------- /third_party/css/modern-business.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/css/modern-business.css -------------------------------------------------------------------------------- /third_party/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /third_party/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/OFL.txt -------------------------------------------------------------------------------- /third_party/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /third_party/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /third_party/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /third_party/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /third_party/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /third_party/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /third_party/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /third_party/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /third_party/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /third_party/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /third_party/js/LICENSE-BSD-NAVGOCO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/LICENSE-BSD-NAVGOCO.txt -------------------------------------------------------------------------------- /third_party/js/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/anchor.min.js -------------------------------------------------------------------------------- /third_party/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/bootstrap.min.js -------------------------------------------------------------------------------- /third_party/js/jekyll-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/jekyll-search.js -------------------------------------------------------------------------------- /third_party/js/jquery.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/jquery.cookie.min.js -------------------------------------------------------------------------------- /third_party/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/jquery.min.js -------------------------------------------------------------------------------- /third_party/js/jquery.navgoco.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/jquery.navgoco.min.js -------------------------------------------------------------------------------- /third_party/js/jquery.shuffle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/jquery.shuffle.min.js -------------------------------------------------------------------------------- /third_party/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/third_party/js/toc.js -------------------------------------------------------------------------------- /tooltips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gsocguides/HEAD/tooltips.json --------------------------------------------------------------------------------