-
Notifications
You must be signed in to change notification settings - Fork 0
/
dayof2018.html
353 lines (323 loc) · 14.1 KB
/
dayof2018.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>AthenaHacks Live</title>
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- this should fix FB when you post the link -->
<meta property="og:image" content="http://imgur.com/a/gIR3O"/>
<meta property="og:description" content="AthenaHacks - Southern California's premier all-female hackathon!"/>
<meta property="og:url" content="http://www.athenahacks.com"/>
<meta property="og:title" content="AthenaHacks"/>
<meta name="description" content="AthenaHacks is Southern California's premier all-female hackathon!">
<meta name="author" content="">
<!-- this should clear cache for users -->
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no"/>
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="vendors/animate/animate.min.css">
<link rel="stylesheet" href="vendors/skeleton/normalize.css">
<link rel="stylesheet" href="vendors/skeleton/skeleton.css">
<link rel="stylesheet" href="vendors/responsive-nav/responsive-nav.css">
<link rel="stylesheet" href="resources/css/custom.css">
<link rel="stylesheet" href="resources/css/reset.css"> <!-- schedule CSS reset -->
<link rel="stylesheet" href="resources/css/style.css"> <!-- schedule style -->
<link rel="stylesheet" href="css/main.css">
<!-- Scripts
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="vendors/responsive-nav/responsive-nav.min.js"></script>
<script src="https://use.fontawesome.com/9f7b7f8456.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon-hand-peace-o.ico">
<link rel="icon" href="resources/images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="resources/images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="dayof-nav">
<a href="index.html"><i class="fa fa-arrow-circle-left" style="vertical-align:text-bottom"></i> Back to AthenaHacks</a>
</div>
<div class=countdown>
<!-- Display the countdown timer in an element -->
<h1 style="padding-top: 5%">Time Remaining</h1>
<div class="main" id="clockdiv">
<div class="timer">
<span class="days time"></span>
</div>
<div class="timer">
<span class="hours time"></span>
</div>
<div class="timer">
<span class="minutes time"></span>
</div>
<div class="timer">
<span class="seconds time"></span>
</div>
</div>
<script>
function getTimeRemaining(endtime) {
var t = Date.parse(endtime) - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}
function initializeClock(id, endtime) {
var clock = document.getElementById(id);
var daysSpan = clock.querySelector('.days');
var hoursSpan = clock.querySelector('.hours');
var minutesSpan = clock.querySelector('.minutes');
var secondsSpan = clock.querySelector('.seconds');
function updateClock() {
var t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days + " days";
hoursSpan.innerHTML = ('0' + t.hours).slice(-2) + " hours";
minutesSpan.innerHTML = ('0' + t.minutes).slice(-2) + " min";
secondsSpan.innerHTML = ('0' + t.seconds).slice(-2) + " sec";
daysSpan.style.width = "100%";
hoursSpan.style.width = "100%";
minutesSpan.style.width = "100%";
secondsSpan.style.width = "100%";
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
var timeinterval = setInterval(updateClock, 1000);
}
var deadline = new Date("February 25, 2018 11:30:00");
initializeClock('clockdiv', deadline);
</script>
</div>
<div class="links">
<table width=100%>
<tr>
<th width=20%><a
href="https://join.slack.com/t/athenahacks2018/shared_invite/enQtMzEyNzMwMDQwMTQ1LWVkY2YzMzI3NDRkNTAyZTU0N2QzMDlmYjRkMTE3NzllYzk1YzlhMWZhNmQ2NzA5MjI4NDQyMzk3YzVkNjE2NjA"><i
class="fa fa-slack fa-3x"></i><br>Slack</th>
<th width=20%><a href="https://github.com/athenahacks"><i class="fa fa-gears fa-3x"></i><br>Hackpacks</th>
<th width=20%><a href="https://athenahacks2018.devpost.com/"><i class="fa fa-folder fa-3x"></i><br>Devpost
</th>
<th width=20%><a href="Leavey_Library_Basement.jpg"><i class="fa fa-map-signs fa-3x"></i><br>Hackspace</th>
<th width=20%><a href="USCMap.png"><i class="fa fa-map-marker fa-3x"></i><br>USC Map</th>
</tr>
</table>
</div>
<div class="schedule" id="schedule">
<div class="container">
<div class="schedule-header">
<div>
Schedule
</div>
</div>
<div id="day-tag">
<strong>Saturday</strong>
</div>
<table class="table table-bordered" style="margin-bottom:35px">
<tbody>
<tr>
<th scope="row" width=20%>10 am - 12 pm</th>
<th width=60%>Check In <br/>Team Formation</th>
<th width=20%> Outside Hoffman Hall</th>
</tr>
<tr>
<th scope="row">12 pm - 1 pm</th>
<th>Opening Ceremony + Keynote</th>
<th>Edison Auditorium (Hoffman)</th>
</tr>
<tr>
<th scope="row" colspan="3" style="color:#FFFFFF;background-color:#FFB6C2">HACKING BEGINS!</th>
</tr>
<tr>
<th scope="row">1 pm - 2 pm</th>
<th>Lunch <br/>Team Formation Cont'd <br/> Hacker/Sponsor Breakout</th>
<th> Leavey Library (LVL) Patio <br/> <br/> LVL Hacking Space</th>
</tr>
<tr>
<th scope="row">1:30 pm - 2:30 pm</th>
<th>Recruiting Sessions</th>
<th>LVL Hacking Space</th>
</tr>
<tr>
<th scope="row">2:30 pm - 4 pm</th>
<th>Android Workshop (Led by Facebook)<br/>iOS Workshop (Led by Facebook)<br/>Unity Workshop (Led by
Zynga)
</th>
<th>LVL 13<br/>LVL 16<br/>LVL 17</th>
</tr>
<tr>
<th scope="row">4 pm - 5 pm</th>
<th>Cognitive Science Workshop (Led by Microsoft)<br/>Intro to Web Development (Led by Google)</th>
<th>LVL 13<br/>LVL 17</th>
</tr>
<tr>
<th scope="row">5 pm - 6:30 pm</th>
<th>Intro to ML, AI, and Predictive Analysis Workshop (Neudesic)</th>
<th>LVL 16</th>
</tr>
<tr>
<th scope="row">5 pm - 9 pm</th>
<th>Oculus Demo (Facebook)</th>
<th>Room 3AA</th>
</tr>
<tr>
<th scope="row">6:30 pm - 7:30 pm pm</th>
<th>How to Rock Your Internship (Led by Redfin)<br/>Intro to Data Science (Led by BlackRock)</th>
<th>LVL 13<br/>LVL 16</th>
</tr>
<tr>
<th scope="row">7:30 pm - 8:30 pm</th>
<th>Dinner</th>
<th>LVL Patio</th>
</tr>
<tr>
<th scope="row">8:30 pm - 9:30 pm</th>
<th>Fireseide Chat w/ Susan Finley</th>
<th>LVL 13</th>
</tr>
<tr>
<th scope="row">9:30 pm - 10:30 pm</th>
<th>Cupstacking Competition (MLH)</th>
<th>LVL 16</th>
</tr>
<tr>
<th scope="row">11 pm - 11:30 pm</th>
<th>Cookie Decorating (USC Girls in Tech)</th>
<th>LVL 13</th>
</tr>
</tbody>
</table>
<div id="day-tag">
<strong>Sunday</strong>
</div>
<table class="table table-bordered" style="margin-bottom:35px">
<tbody>
<tr>
<th scope="row" width=20%>12 am - 1:30 am</th>
<th width=60%>Screening of 'Hidden Figures'</th>
<th width=20%>LVL 17</th>
</tr>
<tr>
<th scope="row">12 am - 1 am</th>
<th>Midnight Boba</th>
<th>LVL Hacking Space</th>
</tr>
<tr>
<th scope="row">2 am - 7 am</th>
<th>Time to Hack!</th>
<th>LVL Hacking Space</th>
</tr>
<tr>
<th scope="row">7 am - 8 am</th>
<th>Breakfast</th>
<th>LVL Patio</th>
</tr>
<tr>
<th scope="row">8 am - 9 am</th>
<th>Morning Yoga (with ACM)</th>
<th>LVL 16</th>
</tr>
<tr>
<th scope="row">9 am - 10 am</th>
<th>Tips for Technical Interviews (Bloomberg)</th>
<th>LVL 17</th>
</tr>
<tr>
<th scope="row">10 am - 11 am</th>
<th>Women in Games Panel (Hosted by Zynga)</th>
<th>LVL 16</th>
</tr>
<tr>
<th scope="row">10 am - 12 pm</th>
<th>Devpost Office Hours</th>
<th>LVL 13</th>
</tr>
<tr>
<th scope="row" colspan="3" style="color:#FFFFFF;background-color:#FFB6C2">SUBMISSIONS DUE @ 11:30 AM!
</th>
</tr>
<tr>
<th scope="row" colspan="3" style="color:#FFFFFF;background-color:#FFB6C2">HACKING ENDS @ NOON!</th>
</tr>
<tr>
<th scope="row">12 pm - 1:30 pm</th>
<th>Lunch and Ice Cream Truck (by Facebook)</th>
<th>LVL Patio</th>
</tr>
<tr>
<th scope="row">1:30 pm - 2:30 pm</th>
<th>Project Expo</th>
<th>LVL 13 + 16</th>
</tr>
<tr>
<th scope="row">2:30 pm - 3 pm</th>
<th>Judging</th>
<th>LVL 13 + 16</th>
</tr>
<tr>
<th scope="row">3 pm - 5 pm</th>
<th>Closing Ceremony</th>
<th>Edison Auditorium (Hoffman Hall)</th>
</tr>
<tr>
<th scope="row">5 pm - 6 pm</th>
<th>Buses Depart :(</th>
<th>Behind Leavey</th>
</tr>
</tbody>
</table>
</div>
</div>
<!--MLH Badge-->
<!-- MLH -->
<a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000"
href="https://mlh.io/seasons/na-2018/events?utm_source=na-2018&utm_medium=TrustBadge&utm_campaign=na-2018&utm_content=gray"
target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/gray.svg"
alt="Major League Hacking 2017 Hackathon Season" style="width:100%"></a>
</body>
</html>
<script>
var nav = responsiveNav(".nav-collapse", { // Selector
animate: true, // Boolean: Use CSS3 transitions, true or false
transition: 284, // Integer: Speed of the transition, in milliseconds
label: "AthenaHacks", // String: Label for the navigation toggle
insert: "before", // String: Insert the toggle before or after the navigation
customToggle: "", // Selector: Specify the ID of a custom toggle
closeOnNavClick: false, // Boolean: Close the navigation when one of the links are clicked
openPos: "relative", // String: Position of the opened nav, relative or static
navClass: "nav-collapse", // String: Default CSS class. If changed, you need to edit the CSS too!
navActiveClass: "js-nav-active", // String: Class that is added to element when nav is active
jsClass: "js", // String: 'JS enabled' class which is added to element
init: function () {
}, // Function: Init callback
open: function () {
}, // Function: Open callback
close: function () {
} // Function: Close callback
});
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</body>
</html>