Skip to content

Commit 2db5d90

Browse files
committed
Added student expectations page & favicon
1 parent 58b2136 commit 2db5d90

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed

assets/static/favicon.ico

14.7 KB
Binary file not shown.

content/gsoc-2019/application-instructions/contents.lr

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ body:
1010

1111
Take a look at the Creative Commons website to learn more about what we do. Also look at our GitHub organization and our developer community website to get a sense of the code and projects we work on. Making a successful contribution to one of our projects will help us get a sense of your work and is highly recommended.
1212

13+
Read our [Student Expectations](/gsoc-2019/student-expectations) guide.
14+
1315
### Applying
1416

1517
Your proposal must be submitted through the [Google Summer of Code website](https://summerofcode.withgoogle.com/dashboard/). It is a good idea to submit drafts and get feedback from CC mentors before you submit your final proposal.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
_model: page
2+
---
3+
title: GSoC 2019: Student Expectations
4+
---
5+
body:
6+
7+
#### During the application process
8+
9+
* Read the [official GSoC student guide](https://google.github.io/gsocguides/student/).
10+
* Review our [Project Ideas](/gsoc-2019/project-idea/all) and ask questions about projects you're potentially interested in on our `#cc-gsoc` Slack channel or developer mailing list.
11+
* Once you've decided on a project, follow our [Application Instructions](/gsoc-2019/application-instructions) to write a draft proposal.
12+
* Get feedback from the primary mentor associated with the project you're proposing before you submit a final application.
13+
* If you're proposing a project that's not on our official ideas list, please talk to our mentors to see if there is anyone interested in mentoring that project before you put any work into the proposal.
14+
15+
#### During the community bonding period
16+
17+
* Continue to plan your project with your mentor and the community.
18+
* Define communication channels and set up a weekly check-in with your mentor.
19+
* Set up your computer and development environment.
20+
* Familiarize yourself with the development process at Creative Commons (pull requests, code review).
21+
* Introduce yourself to the members of CC's engineering team.
22+
23+
#### During the work period
24+
25+
* Work 30-40 hours per week (or agree on a different plan with your mentor ahead of time).
26+
* Push code to GitHub frequently. Commit early and often.
27+
* Be available on Slack whenever you are working and post at least once a (work)day to talk about what you're working on that day.
28+
* Write a short update on your work every week and post it either to a personal blog or the CC developers mailing list.
29+
* Attend your weekly check-in with your mentor.
30+
* Be proactive about asking for help, especially when you're stuck.
31+
* Ensure that you're on track to delivering your project at the end of the work period. If you're not on track, talk with your mentor to come up with a new plan for the project well before the deadline.
32+
* Let your mentor and the organization admins know when you are going to be unavailable. If something sudden comes up, let us know.

templates/layout.html

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!doctype html>
22
<meta charset="utf-8">
3+
<link rel="shortcut icon" type="image/x-icon" href="{{ '/static/favicon.ico'|url }}">
34
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
45
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
56
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
@@ -42,6 +43,7 @@
4243
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
4344
{% for href, title in [
4445
['/gsoc-2019/project-ideas/all', 'Project Ideas'],
46+
['/gsoc-2019/student-expectations', 'Student Expectations'],
4547
['/gsoc-2019/application-instructions', 'Application Instructions'],
4648
] %}
4749
<a class="dropdown-item" href="{{ href|url }}">{{ title }}</a>

0 commit comments

Comments
 (0)