-
Notifications
You must be signed in to change notification settings - Fork 9
/
collab.go
93 lines (66 loc) · 3.04 KB
/
collab.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package test161
var collabMsgs = map[string]string{
"asst1": CollabMsgAsst1,
"asst2": CollabMsgAsst2,
"asst2.1": CollabMsgAsst2,
"asst2.2": CollabMsgAsst2,
"asst3": CollabMsgAsst3,
"asst3.1": CollabMsgAsst3,
"asst3.2": CollabMsgAsst3,
"asst3.3": CollabMsgAsst3,
}
const CollabMsgAsst1 = `
- Pair programming to complete the implementation tasks is strongly
encouraged.
- Answering the code reading questions side-by-side with your partner is
strongly encouraged.
- Helping other students with Git, GDB, editing, and with other parts of the
OS/161 toolchain is encouraged.
- Discussing the code reading questions and browsing the source tree with
other students is encouraged.
- Dividing the code reading questions and development tasks between partners
is discouraged.
- Copying any answers from anyone who is not your partner or anywhere else and
submitting them as your own is cheating.
- You may not refer to or incorporate any external sources without explicit
permission.`
const CollabMsgAsst2 = `
- Pair programming to complete the implementation tasks is strongly
encouraged.
- Writing a design document with your partner is strongly encouraged.
- Having one partner work on the file system system calls while the other
partner works on process support is a good division of labor. The partner
working on the file system system calls may finish first, at which point they
can help and continue testing.
- Answering the code reading questions side-by-side with your partner is
strongly encouraged.
- Discussing the code reading questions and browsing the source tree with other
students is encouraged.
- Dividing the code reading questions and development tasks between partners is
discouraged.
- Any arrangement that results in one partner writing the entire design
document is cheating.
- Any arrangement that results in one partner writing all or almost all of the
code is cheating.
- Copying any answers from anyone who is not your partner or anywhere else and
submitting them as your own is cheating.
- You may not refer to or incorporate any external sources without explicit
permission.`
const CollabMsgAsst3 = `
- Pair programming to complete the implementation tasks is strongly
encouraged.
- Writing a design document with your partner is strongly encouraged.
- Answering the code reading questions side-by-side with your partner is
strongly encouraged.
- Discussing the code reading questions and browsing the source tree with other
students is encouraged.
- Dividing the code reading questions and development tasks between partners is
discouraged.
- Any arrangement that results in one partner writing the entire design
document is cheating.
- Any arrangement that results in one partner writing all or almost all of the
code is cheating.
- Copying any answers from anyone who is not your partner or anywhere else and
submitting them as your own is cheating.
- You may not refer to or incorporate any external sources without explicit
permission.`