-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (87 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>York vs Lancaster App Jam</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<div id="header-content">
<div class="logo">
<div class="sub">York vs Lancaster</div>
<div class="main">Roses Revival App Jam</div>
<div class="sub">2nd May 11am-5pm</div>
</div>
<div class="buttons">
<button disabled>The event has now taken place</button>
</div>
</div>
</div>
<div id="main">
<div id="taken-place-box">
<p>
<b>The jam has now taken place!</b>
</p>
<p>
Participants were tasked with building something based around the
Reddit API. We had some really creative submissions!
</p>
<p>
Thank you to everybody who took part. Stay tuned for any more
events in the future!
</p>
</div>
<hr>
<p>
<b>Are you a keen or budding programmer?</b>
</p>
<p>
Lancaster and York have come together this May 2nd to host the <b>Roses Revival App Jam</b>! Either individually or in teams, you will have 6 hours to design and create an app based off an existing API.
</p>
<p>
Submissions will be marked according to the following criteria:
</p>
<ul>
<li>Efficiency (10%)</li>
<li>Code Structure (10%)</li>
<li>Design/Approach to the task (50%)</li>
<li>Use of the API (30%)</li>
</ul>
<p>
Each section will be marked out of 10 and scaled by the weighting of that section.
</p>
<p>
We will be opening a Slack server that you will be free to join if you wish to talk to others or receive support for the App Jam. Though, feel free to create your own groups/servers on whichever platforms you prefer.
</p>
<p>
The chosen API and judges are yet to be announced and this page will be updated as such.
</p>
<p>
Good luck, and happy coding!
</p>
<hr>
<small>Brought to you by</small>
<div class="logos">
<a href="https://hacksoc.org/"><img src="img/hacksoc-logo.svg" alt="HackSoc"></a>
<a href="https://www.facebook.com/lucompsoc"><img src="img/lucss-logo.svg" alt="Lancaster University Computer Science Society"></a>
</div>
</div>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162782444-1"></script>
<script src="fingerprint.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-162782444-1', {
'storage': 'none',
'clientId': new Fingerprint().get()
});
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
</body>
</html>