-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
executable file
Β·166 lines (135 loc) Β· 4.71 KB
/
schedule.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
<!DOCTYPE html>
<html>
<head>
<title>McHacks Schedule</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="McHacks 2017" />
<meta property="og:url" content="https://2017.mchacks.ca" />
<meta property="og:description" content="Canada's most exciting hackathon brought to you by McGill University!" />
<meta property="og:image" content="images/red_bird.png" />
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="stylesheets/style.css?v=1.1" />
<link rel="stylesheet" type="text/css" href="stylesheets/checkbox.css" />
<!-- <link href="css/bootstrap.min.css" rel="stylesheet"> -->
</head>
`
<body>
<a href="index.html">
<div class="bird-reg" id="birdbox">
<img id="bird_logo" src="images/logo__grey__720.png" alt="Imagine a bird here">
</div>
</a>
<div id="apply_container">
<div id="app-header">
<h1>McHacks 2017 Schedule</h1>
<small>Schedule subject to change.</small>
</div>
</div>
<div id="schedule_container">
<section>
<table class="sched_table">
<caption><h3>Saturday, January 28th, 2017</h3></caption>
<br>
<br>
<tr>
<th>Time (EST)</th>
<th>Event</th>
</tr>
<tr>
<td>8:00 AM</td>
<td>Registration opens for out of town students</td>
</tr>
<tr>
<td>9:00 AM</td>
<td>Montreal registration opens</td>
</tr>
<tr>
<td>10:00 AM</td>
<td>Opening Ceremonies</td>
</tr>
<tr>
<td>11:00 AM</td>
<td>Team formation event (Lev Bukhman)</td>
</tr>
<tr>
<td>12:00 PM</td>
<td>Hacking begins!<br>First lunch is served</td>
</tr>
<tr>
<td>1:00-1:45 PM</td>
<td>Nuance Talk (2nd Floor, <b>stdout</b>)</td>
</tr>
<tr>
<td>1:45-3:45 PM</td>
<td>Tor Developer Talk (2nd Floor, <b>stdout</b>)</td>
</tr>
<tr>
<td>4:00-5:00 PM</td>
<td>General Electric (2nd Floor, <b>stdout</b>)</td>
</tr>
<tr>
<td>5:00-6:00 PM</td>
<td>ML Workshop (Beginner) (1st Floor, <b>eshutdown</b>)</td>
</tr>
<tr>
<td>7:00 PM</td>
<td>First dinner is served</td>
</tr>
<tr>
<td>7:30-8:30 PM</td>
<td>ML Workshop (Advanced) (2nd Floor, <b>stdout</b>)</td>
</tr>
<tr>
<td>8:00-9:00 PM</td>
<td>Women/minorities in Tech/LSH networking (1st Floor, <b>eshutdown</b>)</td>
</tr>
</table>
</section>
<section>
<table class="sched_table">
<caption><h3>Sunday, January 29th, 2017</h3></caption>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
<tr>
<td>8:00 AM</td>
<td>Breakfast is served</td>
</tr>
<tr>
<td>9:00 AM</td>
<td>Devpost submission due (project description and prize eligibility)</td>
</tr>
<tr>
<td>12:00 PM</td>
<td>Lunch and demo setup</td>
</tr>
<tr>
<td>12:30 PM</td>
<td>Demos!</td>
</tr>
<tr>
<td>2:30 PM</td>
<td>Closing Ceremonies</td>
</tr>
</table>
</section>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/main.js"></script>
<script src="js/trianglify.min.js"></script>
<script>
//var dimensions = target.getClientRects()[0];
var pattern = Trianglify({
x_colors: ['#58445C', '#8B013D', '#972E4C', '#DA7E6F', '#FAE4E4', '#FAE4E4', '#DB7871', '#85013A', '#844556', '#423843'],
y_colors: 'match_x',
cell_size: 130,
variance: 1,
width: window.innerWidth,
height: window.innerHeight
});
document.body.style['background-image'] = 'url(' + pattern.png() + ')';
</script>
</body>
</html>