-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrules.html
109 lines (99 loc) · 6.08 KB
/
rules.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PennApps</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta property="og:title" content="PennApps Fall 2013" />
<meta property="og:description" content="PennApps is a 48-hour hackathon @ The University of Pennsylvania"/>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="stylesheets/vendor/foundation.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="stylesheets/vendor/normalize.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="stylesheets/app.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="stylesheets/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class='contain-to-grid fixed'>
<nav class='top-bar'>
<ul class='title-area'>
<li class='name'>
<h1><a href='index.html'>PennApps</a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class='top-bar-section'>
<ul class='right'>
<li><a href="history.html">Past Competitions</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="press.html">Press</a></li>
<li><a href='http://pennapps.com/sponsorship.pdf'>Sponsor PennApps!</a></li>
</ul>
</section>
</nav>
</div>
<header>
</header>
<div class="container">
<div class="row" id='rules'>
<div class='large-12 columns'>
<div class='page-header'>
<h1>Rules</h1>
</div>
<ol>
<li>
<strong>Participation:</strong> Participants must be full-time or part-time University students, except where permission is explicitly given. Participation is closed to immediate family of contest judges and any individual actively employed by a sponsoring company at the time of the competition.
</li>
<li>
<strong>Teams:</strong> Teams must consist of between one and four participants. Teams must submit a list of members by 11:59PM on Friday, September 6th, and all modifications to team composition must be verified by PennApps organizers.
</li>
<li>
<strong>Submissions:</strong> Each team is permitted one submission that must be received by 11AM on Sunday, September 8th. All code must have been produced solely by team members, working on-site, after 8:00PM on Friday, September 6th. By submitting a project, you and your team grant the PennApps team and organizers the unrestricted right to use your submission material, at no cost, for promotional purposes of future PennApps events.
</li>
<li>
<strong>Demos: </strong>Demos take place in two rounds. Teams will be placed in one of three groups for the first round. The top five teams in each room, as well as the next top five highest scoring teams overall, will constitute the twenty teams in the second round. First round demos will be two minutes of presentation. Second round demos will consist of three minutes of presentation and then two minutes of Q&A.
</li>
<li>
<strong>Judging:</strong> Judging will be based on four criteria: creativity, technical difficulty, polish, and usefulness, each scored on an 11 point scale. Penalties may be assessed for going over the allotted demo time.
</li>
<li>
<strong>Sponsor prize showcase: </strong>Since not all teams eligible for a sponsor prize will present in the final round, some sponsors may choose to have teams demo during the prize showcase. Teams competing for sponsor prizes may be asked to privately demo for those sponsors whose prizes they are competing for, between 9AM and 11AM on Sunday, September 8th. (Alternatively, some sponsors may choose to just pick a prize winner from the top 20, and some may come up with their own solution)
</li>
<li>
<strong>Winners:</strong> Winners for the 1st through 3rd place prizes as well as the "Dude, They Totally Should Have Won" prize will be selected from the twenty teams in the second round of demos. Winners for the other prizes may or may not come from the full pool at the discretion of the parties giving the prizes and by means of the sponsor prize showcase.
</li>
<li>
<strong>Prizes:</strong> All prizes are subject to <a href="http://www.finance.upenn.edu/comptroller/tax/prizes.shtml">University policies</a> regarding cash and cash-equivalent prizes, including taxation where applicable.
</li>
</ol>
</div>
</div>
</div>
<div class='row'>
<div class='small-12 columns' id='footer'>
<ul>
<li><a href='http://www.seas.upenn.edu'><img src='img/pennengineering.png' width='10%' height='10%' style='display: inline; vertical-align: middle' ></a></li>
<li>Crafted by <a href='http://yef.im'>Geoff</a></li>
<li>Photos by <a href='http://twitter.com/quietlykrazy'>Sam</a> and <a href='https://twitter.com/mdkragon'>Jiali</a></li>
<li>Follow <a href='http://twitter.com/PennApps'>@PennApps</a></li>
<li><a href='http://blog.pennapps.com/'>Blog</a></li>
<li>© 2013 PennApps</li>
</ul>
</div>
</div>
<script src="scripts/vendor/zepto.min.js"></script>
<script src='scripts/vendor/foundation.min.js'></script>
<script>
$(document).foundation();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33300151-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>