forked from jerrod-crook/jerrod-crook.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (137 loc) · 7.34 KB
/
index.html
File metadata and controls
152 lines (137 loc) · 7.34 KB
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
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Oct 23, 2021 13:05:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var d = new Date();
d.setHours(d.getHours() - 7);
var now = d.getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and second
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</head>
<body style="padding: 10px">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">Home</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="2022/Challenge1.html">Challenge 1<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge2.html">Challenge 2<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge3.html">Challenge 3<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge4.html">Challenge 4<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge5.html">Challenge 5<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge6.html">Challenge 6<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="2022/Challenge7.html">Challenge 7<span class="sr-only">(current)</span></a>
</li>
</ul>
<a class="btn btn-primary btn-lg" href="https://forms.office.com/r/vwdg0cmgkN" role="button" >Register</a>
</div>
</nav>
<div class="jumbotron">
<h1 class="display-4">Tyler Tech Programming Competition</h1>
<p class="lead"></p>
<hr class="my-4">
<!--<p>Looking for an internship or full time? Talk to us!</p>
<a class="btn btn-primary btn-lg" href="https://www.tylertech.com/careers/job-listings/software-development-intern-21-10536-01" role="button" >Internship</a>
<a class="btn btn-primary btn-lg" href="https://www.tylertech.com/careers/job-listings/software-developer-21-10415-01" role="button" >Full Time</a>-->
</div>
<div class="container">
<div class="row">
<div class="col-8">
<div class="card">
<div class="card-body">
<h5 class="card-title">Details</h5>
<p class="card-text">Tyler Tech has developed 6 coding challenges in order of varying difficulty. They are all language agnostic, meaning you can use any programming language that you like</p>
<p class="card-text">You can solve challenges in any order you desire</p>
<p class="card-text">When you think you have the answer raise your hand and we will confirm your answer. (We may ask to see your code/notes).</p>
<p class="card-text">Wrong answers do not count against you, so guess as much as you like</p>
<p class="card-text">With every correct answer your entire team may choose some SWAG</p>
<p class="card-text">All questions are found on this website. Feel free to ask us clarifying questions and use the internet as you see fit</p>
<p class="card-text">You will have 4 hours to code with an hour lunch in between</p>
</div>
</div>
<br/>
<div class="card">
<div class="card-body">
<h5 class="card-title">How To Win</h5>
<p class="card-text">Whoever has the correct answers for all 6 challenges first will be the winner</p>
<p class="card-text">In the event that no team completes all the challenges, the winner will be whoever finished the most challenges the earliest</p>
<p class="card-text">Second and third place follows the same rules</p>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<div class="card-header">
Schedule
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">10ish to 12 - CODE</li>
<li class="list-group-item">12 to 1 - EAT</li>
<li class="list-group-item">1 to 3ish - CODE</li>
</ul>
</div>
<br/>
<div class="card">
<div class="card-header">
Rules
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Only 4 participants per team</li>
<li class="list-group-item">You can only code on 1 machine</li>
<li class="list-group-item">You <strong>can not</strong> code during lunch, but you can talk about the problems</li>
</ul>
</div>
<br/>
<div class="card">
<div class="card-header">
Prizes
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">1st Place - $500</li>
<li class="list-group-item">2nd Place - $300</li>
<li class="list-group-item">3rd Place - $100</li>
</ul>
</div>
</div>
</div>
</div>
<br/>
</body>