forked from ryhan/projector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (115 loc) · 4.14 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
<!doctype html>
<html>
<head>
<!-- Meta Data -->
<title>Projector</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/reset.css"></head>
<link rel="stylesheet" type="text/css" href="css/projector.css"></head>
<!-- Javascript Frameworks + Libraries -->
<script src="js/libs/jquery.min.js"></script>
<script src="js/libs/underscore.min.js"></script>
<!-- Javascript Logic -->
<script src="js/slides.js"></script>
<script src="js/twitter_observer.js"></script>
<script type="text/javascript" src="//use.typekit.net/ixo3mdn.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<meta http-equiv="refresh" content="3600">
</head>
<body>
<div class="slides" id="slideSet">
<div class="slide">
<img src="img/tartanhacks-word-logo-larger-white.png" style="width: 100%;"/>
</div>
<div class="schedule slide">
<h1> Friday Schedule</h1>
<ul>
<li><span class="time">5:45</span> Check In
<div class="location">GHC 4th Floor</div></li>
<li><span class="time">6pm</span> Dinner
<div class="location">GHC 6121</div></li>
<li><span class="time">12am</span> Midnight Snack
<div class="location">GHC 6121</div></li>
</ul>
</div>
<div class="schedule slide">
<h1> Saturday Schedule</h1>
<ul>
<li><span class="time">8am</span> Breakfast
<div class="location">GHC 6121</div></li>
<li><span class="time">12pm</span> Lunch + "How to Demo"
<div class="location">GHC 4, Rashid</div></li>
<li><span class="time">6pm</span> Hacking Ends + Dinner
<div class="location">GHC 4, Rashid</div></li>
</ul>
</div>
<div class="schedule slide">
<h1> Saturday Demo Schedule</h1>
<ul>
<li><span class="time">6:30</span> Demos Begin
<div class="location">GHC 4, Rashid</div></li>
<li><span class="time">8:30</span> Judging + Speaker
<div class="location">GHC 4, Rashid</div></li>
<li><span class="time">9pm</span> Awards Ceremony
<div class="location">GHC 4, Rashid</div></li>
</ul>
</div>
<div class="slide">
<img src="img/tartanhacks-word-logo-larger-white.png" style="width: 100%;"/>
</div>
<div class="message slide">
<h1>All Done?</h1>
<p>If you'd like to submit your project, head over to<br/>
<strong>tartanhacks.com/submit</strong></p>
</div>
<div class="slide">
<img src="img/tartanhacks-word-logo-larger-white.png" style="width: 100%;"/>
</div>
<div class="message slide">
<h1>Deadline</h1>
<p>We have a hard deadline of <br/><strong>6PM EST on January 26th</strong> for submissions.</p>
<p>No late submissions will be eligible for prizes.</p>
</div>
<div class="message slide">
<h1>Thanks Dropbox!</h1>
<p>We'd like to say a special word of thanks to <strong>Dropbox</strong>,
<br/> our flagship sponsor for TartanHacks 2013.</p>
<p>If you haven't already joined up, head over to dropbox.com
and grab an account.</p>
</div>
<div class="slide">
<img src="img/tartanhacks-word-logo-larger-white.png" style="width: 100%;"/>
</div>
<div class="message slide">
<h1>Demos</h1>
<p>You'll get major bonus points for showing off your project on our
provided <strong>MacBook Air running Chrome</strong>.
<p>If you can't, no sweat, just uncheck the box when submitting your hack.</br>
<strong>tartanhacks.com/submit</strong></p>
</div>
</div>
<script>
$(function() {
return false;
var s = new SlideSet();
setInterval(function(){s.next();}, 7000);
function handleTweets(tweets){
var approved_handles = {
"tartanhacks":true,
"scottylabs":true,
"builtbyryhan":true};
var isApproved = function(str){
return (approved_handles[str.toLowerCase()] == true);};
_.map(tweets, function(tweet){
if (isApproved(tweet.user) && tweet.text.charAt(0)!="@"){
var message = "<h1>@"+tweet.user +"</h1><p>"+ tweet.text+"</p>";
s.queue(message, "tweet warning message");
}
});
};
var thObserver = new TwitterObserver("TartanHacks", handleTweets);
thObserver.watch(60000);
});
</script>
</body>
</html>