forked from tzarskyz/dotfiles-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarymount.rb
166 lines (134 loc) · 3.25 KB
/
marymount.rb
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
module Marymount
A = Hash.new
B = Hash.new
A['Mon'] = <<END
A Week :: Monday
8:20-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Free
10:00-10:45 -- Independent Study: Latin
10:45-11:30 -- Free
11:30-12:30 -- Lunch
12:30-1:15 -- Free
1:15-2:00 -- Latin I
2:00-2:45 -- Free
2:45-3:30 -- Intro to Programming
3:30-? -- US meeting
END
A['Tue'] = <<END
A Week :: Tuesday
8:20-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Free
10:00-10:45 -- Free
10:45-11:30 -- Latin I
11:30-12:30 -- Lunch
12:30-1:15 -- Intro to Programming
1:15-2:00 -- Free
2:00-2:45 -- Computer Science, Section 2
2:45-3:30 -- Computer Science, Section 4
END
A['Wed'] = <<END
A Week :: Wednesday
8:20-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Free
10:00-10:45 -- Computer Science, Section 3
10:45-11:30 -- Computer Science, Section 1
11:30-12:30 -- Philosophy Club
12:30-1:15 -- Free
1:15-1:45 -- Advisory Group
1:45-2:45 -- Assembly
END
A['Thu'] = <<END
A Week :: Thursday
8:20-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Computer Science, Section 1
10:00-10:45 -- Latin I
10:45-11:30 -- Latin I
11:30-12:30 -- Lunch; Chapel
12:30-1:15 -- Free
1:15-2:00 -- Free
2:00-2:45 -- Intro to Programming
2:45-3:30 -- Free
END
A['Fri'] = <<END
A Week :: Friday
8:15-8:30 -- Advisor
8:30-9:15 -- Intro to Programming
9:15-10:00 -- Free
10:00-10:45 -- Computer Science, Section 3
10:45-11:30 -- Free
11:30-12:15 -- Computer Science, Section 2
12:15-12:45 -- Lunch
12:45-1:30 -- Free
1:30-2:15 -- Computer Science, Section 4
2:15-3:00 -- Free
END
B['Mon'] = <<END
B Week :: Monday
8:20-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Free
10:00-10:45 -- Free
10:45-11:30 -- Free
11:30-12:30 -- Lunch
12:30-1:15 -- Free
1:15-2:00 -- Intro to Programming
2:00-2:45 -- Latin I
2:45-3:30 -- Free
3:30-? -- US meeting
END
B['Tue'] = <<END
B Week :: Tuesday
8:20-8:30 -- Advisor
8:30-9:15 -- Latin I
9:15-10:00 -- Latin I
10:00-10:45 -- Free
10:45-11:30 -- Intro to Programming
11:30-12:30 -- Lunch
12:30-1:15 -- Free
1:15-2:00 -- Free
2:00-2:45 -- Free
2:45-3:30 -- Free
END
B['Wed'] = <<END
B Week :: Wednesday
8:20-8:30 -- Advisor
8:30-9:15 -- Computer Science, Section 3
9:15-10:00 -- Computer Science, Section 1
10:00-10:45 -- Computer Science, Section 4
10:45-11:30 -- Computer Science, Section 2
11:30-12:30 -- Philosophy Club
12:30-1:15 -- Free
1:15-1:45 -- Advisory Group
1:45-2:45 -- Assembly
END
B['Thu'] = <<END
B Week :: Thursday
8:20-8:30 -- Advisor
8:30-9:15 -- Independent Study: Latin
9:15-10:00 -- Free
10:00-10:45 -- Intro to Programming
10:45-11:30 -- Free
11:30-12:30 -- Lunch; Chapel
12:30-1:15 -- Free
1:15-2:00 -- Free
2:00-2:45 -- Latin I
2:45-3:30 -- Computer Science, Section 3
END
B['Fri'] = <<END
B Week :: Friday
8:15-8:30 -- Advisor
8:30-9:15 -- Free
9:15-10:00 -- Latin I
10:00-10:45 -- Computer Science, Section 4
10:45-11:30 -- Computer Science, Section 2
11:30-12:15 -- Computer Science, Section 1
12:15-12:45 -- Lunch
12:45-1:30 -- Free
1:30-2:15 -- Free
2:15-3:00 -- Free
END
end