-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
81 lines (72 loc) · 3.22 KB
/
index.php
File metadata and controls
81 lines (72 loc) · 3.22 KB
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
<?php include("head.php") ?>
<div class="hideable">
<h1>Overview</h1>
<p>As you might guess, these are not the department's personal Russian emperors. Rather, a "czar" is a member of the department who is providing a service to the department as a volunteer.<br/>
<br/>There is no requirement that students act as czars, but the work that czars do helps the department run smoothly and everybody benefits in some way from the czar system, so you are urged to take on czarships occasionally to carry your share of the burden of department work.<br/>
<br/>If there is a czarship that you think should be created (particularly if you would be willing to take it on yourself at the beginning), contact the Czar Czar (currently Matthew Milano, <a href="mailto:milano@cs.cornell.edu">milano@cs</a>) and let him know.</p><br/>
<h1>Current Czars</h1>
<br/>
<table class="schedule">
<tr>
<td><b>Title</b></td>
<td><b>Czars</b></td>
</tr>
<?php
czar('Arcade', 'Tom Magrino, Sean Ogden', '');
czar('Brown Bag', 'Jonathan Shi, Eston Schweickart', 'brown_bag.php');
czar('Coke', 'Pramook Khungurn, Andrew Hirsch', 'coke.php');
czar('Colloquium', 'Too many to list, see page', 'colloquium.php');
czar('Czar Czar', 'Matthew Milano', 'czar.php');
czar('Desk', 'Fabian Mühlböck', 'desk.php');
czar('Espresso', 'Sean Ogden', 'espresso.php');
czar('Foosball', 'Dylan Foster', 'foosball.php');
czar('Game Night', 'Laure Thompson', 'game_night.php');
czar('Hockey', 'Jack Hessel, Joe Kider, Curtis Josey, Vincent Rahli', 'hockey.php');
czar('Kitchen', 'Deniz Altinbuken', 'kitchen.php');
czar('Mentoring', 'Brad Gulko, Paul Upchurch', 'mentoring.php');
czar('Outreach', 'Tom Magrino', 'outreach.php');
czar('Picnic', 'Tom Magrino', 'picnic.php');
czar('Photo', 'Chin Isradisaikul', 'photo.php');
czar('Programming Contest', 'Daniel Fleischman', 'programming.php');
czar('Quotes', 'Edward Tremel', 'quotes.php');
czar('Wiki', 'Jason Yosinski', 'http://wiki.cs.cornell.edu/index.php?title=Main_Page');
czar('Refrigerator', 'Tom Magrino', 'fridge.php');
czar('Social Hour','Rahmtin Rotabi','');
czar('Student Brown Bag', 'Timothy Langlois', 'student_brown_bag.php');
czar('Systems Lunch', 'Edward Tremel', 'systems_lunch.php');
czar('TGIF', 'Josh Moore', 'tgif.php');
czar('Theory Tea', 'Sam Hopkins', 'theory_tea.php');
czar('Visit Day', 'Dylan Foster, Jack Hessel, Fran Mota, Maithra Raghu, Xanda Schofield', 'visit.php');
?>
</table>
<br/>
<h1>Open Czarships</h1>
<p>If you are interested in any of these positions, please email the <a href="mailto:milano@cs.cornell.edu">Czar Czar</a>!</p><br/>
<table class="schedule">
<tr>
<td><b>Title</b></td>
</tr>
<?php
czar('Frisbee', '', 'frisbee.php');
czar('T-Shirt Czar', '', 'tshirt.php');
czar('Milk', '', 'milk.php');
?>
</table>
<br/>
<h1>Lapsed Czarships</h1>
<br/>
<table class="schedule">
<tr>
<td><b>Title</b></td>
</tr>
<?php
czar('GPSA Representative', '', 'rep.php');
czar('Newspaper', '', 'newspaper.php');
czar('Relocation Czar', '', '');
czar('Talks Website', '', 'talks.php');
czar('Theater', '', 'theater.php');
czar('Videotaping', '', 'video.php');
?>
</table>
</div>
<?php include("foot.php") ?>