-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
101 lines (93 loc) · 4.92 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
---
---
<div id="Home" class="container-fluid text-center">
<div class="row">
<div class="intro-content px-4 px-md-0 col-lg-4 offset-lg-1 d-flex justify-content-center align-items-center flex-column">
<img
alt="Code Hackathon Logo"
id="landing-logo"
src="assets/brand/main-logo-sq.png"
/>
<h1>Code Hackathon</h1>
<h3>We are a team of students in GITAM that aim to promote coding as being fun, challenging & most of all <b>#</b><u>NotBoring</u></h3>
<p class="lead">
In collaboration with the Department of CSE, we organise frequent coding competitions called 'Code Hackathons' on a bi-monthly basis on Saturday afternoons. We may on occasion also take classes to discuss and try out various programming techniques and challenges to further enhance your skills.
</p>
</div>
{% assign event = site.data.events[0] %}
<div class="intro-content col-sm-10 offset-sm-1 col-lg-5 offset-lg-1 d-flex justify-content-center align-items-center flex-column">
<h3>💻 {% if event.has_ended %}You just missed{% else %}Sign up for{% endif %} {{ event.title }} {{ event.order }} 📈</h3>
<br />
<img
alt="{{ event.title }} {{ event.order }} Poster"
class="poster{% if event.has_ended %} old-pic{% endif %}"
src="{{ event.poster_link }}"
style="background: rgb(26, 18, 69);"
/>
<br />
{% if event.has_ended %}
<span class="btn btn-dark disabled btn-lg text-light">Event completed!</span>
{% else %}
<a href="{{ event.register_link }}" class="btn btn-warning btn-lg text-dark" target="_blank">Register</a>
{% endif %}
</div>
</div>
</div>
<div id="About" class="container">
<div class="alert alert-success mt-4 text-center" role="alert">
<h2>
Attempt 👉 Practice 👉 Repeat! <br />
<code>/* Infinite loop achieved! 🎉 */</code>
</h2>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-5 offset-md-1 col-lg-6 offset-lg-0">
<h2>Mission</h2>
<p>To develop a community of people that <code>💜</code> to <code>code</code> and enhance their knowledge through practice, collaboration and sharing!</p>
<h2>How do we do it?</h2>
<ul>
<li>Challenges are placed in an online interface and must be solved in a specified interval of time.</li>
<li>There are <code>6</code> questions consisting of (usually) <code>2 Easy, 2 Medium & 2 Hard</code> questions. Try our previous questions in the <code><a href="archive" target="blank">Archive</a></code>.</li>
<li>Each question must pass the hidden test cases in addition to the given sample test cases.</li>
<li>Each test case has some predefined weightage as a part of the total score of the question, and these may not be equal.</li>
<li>The attendees are to attempt these questions in one of the labs assigned.</li>
<li>The <code>2</code> highest scorers are given gifts in collaboration with the Head of Department (CSE).</li>
</ul>
</div>
<div class="col-sm-10 offset-sm-1 col-md-5 offset-md-0 col-lg-6">
<h2>Where is this event organised?</h2>
<p>🖥️ The event itself is organised in the labs of the Department of CSE, however the specific details of the room numbers will be provided within <code>2-3 days</code> of organising the contest.</p>
<h2>How do you find out more?</h2>
<p>📌 Information will be sent to you via text or through your AMC & Class Representative. We also put up information on various notice boards throughout ICT building and the G-Notice board.</p>
<h2>Where can I start practicing?</h2>
<p>🎲 There are several online resources where you can get started: <code><a href="https://www.hackerrank.com/" target="blank">HackerRank</a>, <a href="https://www.hackerearth.com/" target="blank">HackerEarth</a>, <a href="https://www.geeksforgeeks.org/" target="blank">GeeksforGeeks</a>, <a href="https://www.codechef.com/" target="blank">CodeChef</a>, <a href="http://codeforces.com/" target="blank">Codeforces</a>, <a href="https://www.spoj.com/" target="blank">SPOJ</a> & <a href="https://www.topcoder.com/" target="blank">TopCoder</a></code></p>
</div>
</div>
<div class="alert alert-info mt-2 text-center">
<strong>Rookie Hour</strong> is a special contest exclusively prepared for first-year GITAM students to introduce the world of competitive programming to them. We're updating this space for details regarding Rookie Hour soon, with a section for learning materials. Please check this site later for updates.
</div>
</div>
<div id="suggestion-grid" class="container">
<div class="row">
<div class="col-10 offset-1">
<a href="schedule">
<div class="suggestion-card">
<h3>🗓️ Schedule</h3>
<h5>Save the date</h5>
</div>
</a>
<a href="archive">
<div class="suggestion-card primary-card">
<h3>📚 Archive</h3>
<h5>Previous Questions</h5>
</div>
</a>
<a href="leaderboard">
<div class="suggestion-card">
<h3>🏆 Leaderboard</h3>
<h5>Hall of Fame</h5>
</div>
</a>
</div>
</div>
</div>