-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 3.02 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
<!DOCTYPE html>
<html>
<head>
<link href='/css/reset.css' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<link href='/css/main.css' rel='stylesheet' type='text/css'>
<link href='/css/magnific-popup.css' rel='stylesheet' type='text/css'>
</head>
<body>
<nav>
<ul class='navbar'>
<li>
<a href='/index.html'>Home</a>
</li>
<li>
<a href='/competitions.html'>Competitions</a>
</li>
<li>
<a href='/resources.html'>Resources</a>
</li>
</ul>
</nav>
<section class='text'>
<h1>Open Source Game Coding Competition</h1>
<p>The open source game coding competition is an annual tradition where programmers come together to socialize, collaborate, and compete. Teams of up to three people work together to produce a game in the span of 24 hours. To ensure that there is a spirit of spontaneity, each team is given several themes that they must incorporate. At the end of the 24 hours, each entry is judged based upon creativity, usage of themes, difficulty of implementation, and fun.</p>
<h2>See what it is about:</h2>
<div style="text-align:center; margin-top:20px">
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/Fil-LXC9CRA" frameborder="0">
</iframe>
</div>
<p><strong>Ascii Ascii Revolution</strong><br/><em>Lindsey Bieda, Jackie Kircher, and James Larkby-Lahet</em><br/>1st Place, OSGCC 4, 2010</p>
<h2>Learn by doing!</h2>
<p>This competition is certainly open to the novice and expert alike. You do not need to have a team in mind as you will be placed with a team such that a novice programmer is paired with a skilled programmer. This competition should serve as an educational experience as much as a fun social event. There are many opportunities to level up your skills:</p>
<ul>
<li>You will learn git and distributed version control</li>
<li>You will be able to learn a new language or framework</li>
<li>You will have the opportunity to team up with more experienced programmers</li>
<li>You will gain experience in managing a team</li>
</ul>
<h2>Rules</h2>
<p>Each team must produce a game and all assets of the game must be created or researched within the 24 hours. Any framework or language is acceptable, as long as it is available to everyone freely. There are no other restrictions. Interesting and innovative approaches are encouraged so that we all may learn. The code for the game will be actively maintained by a git repository which will be made public after the competition. </p>
</section>
<script src='/js/jquery.js' type='text/javascript'></script>
<script src='/js/jquery.magnific-popup.min.js' type='text/javascript'></script>
<script src='/js/app.js' type='text/javascript'></script>
</body>
</html>