-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
223 lines (196 loc) · 8.25 KB
/
index.html
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<title>OCamlBee!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 60px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
.wics {
background: black;
}
td{
text-align: center;
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="../assets/ico/favicon.png">
<script src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="http://goo.gl/Hus0U">Sign up!</a></li>
<li><a href="#rules">How do I play?</a></li>
<li><a href="#sponsors">Sponsors</a></li>
</ul>
<h3 class="muted" style="color: #003f7f">OCamlBee!</h3>
</div>
<hr>
<div class="jumbotron">
<h1>Ready to test your speling ability?</h1><br>
<h3> Did you catch that? Here's what you'll need: </h3>
<div style="text-align: left; padding: 0 0 0 200px;">
<ul>
<li>A team of two (you and a friend)!</li>
<li>Minimal coding experience in OCaml.</li>
<li>Be ready to have a good time.</li>
<li>Get to know more of the CS community.</li>
<li>Want to win some prizes.</li>
</ul>
</div>
<h3>When / Where</h3>
<div style="text-align: left; padding: 0 0 0 200px;">
<ul>
<li><b>Monday, April 29th, 7:30 pm</b>. Mark your calendars!</li>
<li>Maxwell Dworkin 119.</li>
</ul>
</div>
<h4> Check out the rules and information below! </h4><br>
<a class="btn btn-large btn-success" href="http://goo.gl/Hus0U">Sign up today!</a>
</div>
<hr>
<a name="rules"></a>
<h1 style="text-align: center">The Rules</h1>
<div class="row-fluid marketing">
<div class="span6">
<h4>Rules of the Bee</h4>
<div>
<ul>
<li>Players will first hear the problem statement. For example:
<pre>Write a function that takes two
integers and returns their sum.</pre></li>
<li>Players will alternate writing the code, each specifying one character at a time.</li>
<li>Players are not allowed to talk to one another after the problem statement is given. Communication can only be through code written.</li>
<li>Writing comments in code is allowed. Your code will only be tested for functionality in the end.</li>
<li>Players will have 4 minutes per problem to write a complete function, starting from when the problem is completely read.</li>
<li>Players can ask for problem clarifications ONLY at any time. (No communication about algorithms or library functions.)</li>
<li>Players can use the standard keyboard and the “Clear line” option which will delete the entire line that the two teams are working on.</li>
<li>For these specific keywords, use the following phrases:</li>
<li style="list-style-type : none;">
<ul>
<li>‘\t’ : “TAB”</li>
<li>‘\n’ : “NEWLINE”</li>
<li>‘clear’ : ‘CLEAR LINE’</li>
</ul>
</li>
</ul>
</div>
<h4>Functions</h4>
<div>
<ul>
<li>Function must be named "camel". Example solution to the problem above:
<pre>let camel x y = x + y</pre></li>
In other words... "l, e, t, space, c, a, m, e, l, space, equals, ..."
<li>Watch out for runtime errors (division by zero, interpretation error, etc.)</li>
<li>Your code MUST compile using OCaml 4.0.</li>
<li><b>You may use ANY module in the <a href="http://caml.inria.fr/pub/docs/manual-ocaml/libref/index.html">OCaml Standard Library</a></b>. This includes List, Set, Map, String, etc.</li>
<li>Your code will be tested on a small set of test cases for verifcation. However all decisions by the judges will be final.</li>
</ul>
</div>
</div>
<div class="span6">
<h4>Teams</h4>
<div>
<ul>
<li>Each team must have 2 members.</li>
<li>If you don't have a partner, sign up anyway and we will pair you up!</li>
</ul>
</div>
<h4>Scoring</h4>
<div>
<ul>
<li>Teams who spell out a correct solution in a round will move to the next round.</li>
<li>If no teams correctly spell out a solution in a round, all teams from that round will move on.</li>
<li>When there are no more than 3 teams left and only one team correctly spells a solution, that team will be the Champion.</li>
<li>If there are more than 3 teams left and only one team moves to the next round, that team must solve an additional problem to be crowned Champion. If they are unsuccessful, all teams from the previous round will remain.</li>
</ul>
</div>
<h4>Tips</h4>
<div>
<ul>
<li>Use comments to communicate.</li>
<li>Make use of clear lines!</li>
<li>Bring an identical twin.</li>
</ul>
</div>
<h4>Misc. / Questions</h4>
<div>
<ul>
<li>These rules are meant as general guidelines. Finding technicalities is not in good nature of the Bee.</li>
<li>Also, check out the <a href="https://www.facebook.com/events/446039482146400/">Facebook event</a>!</li>
</ul>
</div>
</div>
</div>
<hr>
<h1 style="text-align: center">Sponsors</h1>
<a name="sponsors"></a>
<div class="footer">
<div id="club-sponsors">
<table>
<colgroup>
<col width="25%">
<col width="5%">
<col width="10%">
<col width="5%">
</colgroup>
<tr>
<td colspan=1>
<a class="logo" href="http://hcs.harvard.edu"><img src="hcslogo.png"/></a>
</td>
<td colspan=6>
<a class="logo" href="http://www.janestreet.com/"><img src="janestreet.jpg"/></a>
</td>
</tr>
</table>
</div>
</div>
<div class="special" style="text-align: center">
<p>Also, special thanks to Tony Ho, Neal Wu, and Saagar Deshpande for the Python Bee earlier this year!</p>
</div>
</div> <!-- /container -->
</body>
</html>