-
Notifications
You must be signed in to change notification settings - Fork 74
/
impulse.html
499 lines (436 loc) · 22.9 KB
/
impulse.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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- A small abstract idea about the website -->
<meta name="abstract" content="This Website is about IEEE NITK Student Chapter's Impulse Hackathon">
<!-- Important Keywords to be noted in the website -->
<meta name="keywords" content="IEEE, IEEE NITK, SPS NITK, NITK Surathkal, NITK, Clubs in NITK, Technical Clubs in NITK, Impulse, Competition, Hackathon">
<!-- Tell the spider to index the first page and other pages as well-->
<meta name="robots" content="index, follow">
<!-- How often should spiders come back to your page -->
<meta name="revisit-after" content="3 days">
<!-- Copyright regarding the website -->
<meta name="copyright" content="IEEE NITK">
<!-- Tells Google Bot not to duplicate description -->
<meta name="googlebot" content="noodp">
<!-- Language for the website -->
<meta name="language" content="English">
<!-- Refers to distribution of the page -->
<meta name="distribution" content="global">
<!-- Disallow spammers for the webpage -->
<meta name="no-email-collection" content="http://www.metatags.info/nospamharvesting">
<!-- Rating for the page -->
<meta name="rating" content="general">
<!-- Content Type for the page -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Fixing viewport on mobile views -->
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1.0">
<title>Impulse | IEEE NITK</title>
<link rel="shortcut icon" href="embedathon/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Prociono">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<!-- Font - Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="shortcut icon" href="embedathon/img/favicon.ico" type="image/x-icon">
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- This property belongs to IEEE NITK -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L6M5H3BJC8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L6M5H3BJC8');
</script>
<!-- Favicons -->
<link href="embedathon/img/favicon.ico" rel="icon">
<link href="embedathon/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Poppins:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="embedathon/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="embedathon/lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="embedathon/lib/animate/animate.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="assets/css/impulse.css" rel="stylesheet">
</head>
<body>
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<h4><a href="#hero" style="color: white">IMPULSE</a></h3>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#hero">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<section id="hero">
<div class="hero-container">
<a href="#hero"><img src="assets/img/logos/impulse.png" alt="Impulse logo" style="width:80%; max-width: 450px; margin-top: 30px;" /></img></a>
<h2>IMPULSE</h2>
<h2>24-Hour Signal Processing Hackathon <br> <h6>National Institute of Technology Karnataka</h6> <h4 style="color: azure;"> 10<sup>th</sup> - 13<sup>th</sup> JANUARY 2024 </h4> </h2>
<!-- <a class="btn btn-primary btn-xl js-scroll-trigger" href="https://forms.gle/zTzaTWPXiWkpv13e8" target="_blank">Register Now</a> -->
<h4 class="btn btn-primary btn-xl js-scroll-trigger" style="margin-bottom: 0;">Registrations Opening soon</h4>
<br>
<a href="#about" class="btn-get-started">↓</a>
</div>
</section><!-- #hero -->
<main id="main">
<section id="about">
<div class="container wow fadeInUp">
<div class="row about-container">
<div class="col content">
<h2 class="title">WHAT IS IMPULSE?</h2>
<p>
Impulse is a first of its kind, 24-hour signal processing hackathon conducted by IEEE NITK student branch in association with IEEE NITK SPS student chapter. It presents you with interesting problem statements to ensure a fun-filled learning experience. In addition to the hackathon, a workshop will also be conducted prior to the final event to enhance your experience with us! <br>
<strong style="color: black;">Open to 1st and 2nd year B.Tech students from all over India!</strong>
<br>
</p>
</div>
</div>
</div>
<br><br>
<div class="container wow fadeInUp">
<div class="row about-container">
<div class="col content text-center">
<h2 class="title">SPEAKERS</h2> <br>
<!-- <div class="row">
<div class="col-lg-6 text-center mx-auto" id="first_speaker">
<div class="container">
<img src="/assets/img/shayan_srinivas.png" alt="Prof. Achuta Kadambi" class="img-fluid img-responsive"> </img>
</div>
<br>
<h4 style="color: black;"> <strong>Prof. Shayan Srinivasa Garani</strong> </h4>
Prof. Shayan Srinivasa Garani is currently the Director of PNSI Lab, IISc Bangalore, and the former Chair of the IEEE Data Storage Technical Committee. He received his Ph.D. in Electrical and Computer Engineering from Georgia Institute of Technology - Atlanta, M.S. from the University of Florida - Gainesville, and B.E. from Mysore University. Before joining IISc, he held senior engineering positions within Broadcom Corporation, ST Microelectronics, and Western Digital. His research interests include broad areas of applied mathematics, physical modeling, coding, signal processing, and VLSI systems architecture for novel magnetic/optical recording channels, quantum information processing, neural nets, and mathematical modeling of complex systems.
</div>
<div class="col-lg-6 text-center">
<div class="container">
<img src="/assets/img/events/Impulse/Shreyas-Rao.jpg" alt="Pradyumna Chari" class="img-fluid img-responsive" style="width: 300px; height: 270px; object-fit: contain;"></img>
</div>
<br>
<h4 style="color: black;"> <strong>Shreyas Rao</strong> </h4>
Shreyas Rao is a final year student from the department of Electrical and Electronics Engineering, NITK. His interests lie in the fields of signal processing and machine learning. He has previously interned at Spectrum lab - IISc Bangalore and the University of Illinois Urbana-Champaign. He is also the Chair of the Signal Processing Society at the IEEE NITK Student Chapter.
</div>
</div> -->
<h2>To be revealed Soon!</h2>
</div>
</div>
</div>
</section><!-- #about -->
<section id="facts">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Prizes</h3>
<p class="section-description">Exciting Prizes await you!</p>
</div>
<div class="row counters">
<!-- <div class="col-md-4 text-center">
<span data-toggle="counter-up">5000 </span>INR
<p>Winner</p>
</div>
<div class="col-md-4 text-center">
<span data-toggle="counter-up">3000</span>INR
<p>First runner up</p>
</div>
<div class="col-md-4 text-center">
<span data-toggle="counter-up">2000</span>INR
<p>Second runner up</p>
</div>
<div class="col-lg-12 col-12 text-center">
<center>
<p style="font-size: 1.5em; ">Certificates for all those who clear preliminary round!</p>
</center>
</div> -->
<!-- ---------------------- -->
<div class="col-lg-12 col-12 text-center">
<center>
<!-- <p style="font-size: 1.5em; ">Prizes and goodies worth 10k!</p> -->
<p style="font-size: 1.5em; ">Prizes and goodies to be announced soon !</p>
</center>
</div>
<!-- -------------------------------- -->
</div>
</div>
</section><!-- #schedule -->
<section id="schedule">
<div class="container wow fadeInUp">
<div class="section-header">
<br>
<h3 class="section-title">SCHEDULE</h3>
<p class="section-description"></p>
</div>
<!-- <div class="container">
<div class="row">
<div class="col-lg-10 text-center" style="margin: auto;">
<div id="day-1" class="schedule-day">
<table class="table table-schedule" >
<tbody>
<tr>
<td>10<sup>th</sup> Jan, 2023</td>
<td>7:00 PM - 8:00 PM</td>
<td>Screening Test(HackerEarth)</td>
</tr>
<tr>
<td>11<sup>th</sup> Jan, 2023</td>
<td>6:30 PM</td>
<td>Talk on Multirate Signal Processing by Prof.Shayan Srinivasa Garani, IISc Bangalore </td>
</tr>
<tr>
<td>12<sup>th</sup> Jan, 2023</td>
<td>7:00 PM - 8:00 PM</td>
<td>Online workshop on Multiresolution Pyramids by Shreyas Rao, SPS Chair, IEEE-NITK</td>
</tr>
<tr>
<td>13<sup>th</sup> Jan, 2023</td>
<td>9:00 PM</td>
<td>Hackathon (24 Hours) begins</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div> -->
<div class="container">
<div class="row">
<div class="col-lg-10 text-center" style="margin: auto;">
<div id="day-1" class="schedule-day">
<table class="table table-schedule" >
<tbody>
<tr>
<td>10<sup>th</sup> Jan, 2024</td>
<td>TBD</td>
</tr>
<tr>
<td>11<sup>th</sup> Jan, 2024</td>
<td>TBD</td>
</tr>
<tr>
<td>12<sup>th</sup> Jan, 2024</td>
<td>TBD</td>
</tr>
<tr>
<td>13<sup>th</sup> Jan, 2024</td>
<td>TBD</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="faq">
<div class="container wow fadeInUp">
<div class="row">
<div class="container">
<br>
<div class="section-header">
<h3 class="section-title">FREQUENTLY ASKED QUESTIONS</h3>
<br><br>
</div>
<div class="container" style="margin-bottom: 5%;">
<div class="row">
<div class="col-lg-12 mx-auto text-justify">
<div id="toggle" class="toggle-panel">
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse1" style="cursor: pointer;">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5" style="size: .5em;">
Who all are eligible to apply?
</h5>
</a>
</button>
<div id="collapse1" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-1">
<p class="panel-text display-7 panel-body">
1st and 2nd-year undergraduate students from any college across India are eligible to participate.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse3">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
Is there a registration fee?
</h5>
</a>
</button>
<div id="collapse3" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-3">
<p class="panel-text display-7 panel-body">
<ol>
<li>No registration fees for NITK students</li>
<li>No registration fees for teams with at least one IEEE member</li>
<li>A registration fee of Rs.150 for teams with all non-NITK or non-IEEE members</li>
</ol>
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse4">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
Is it necessary to be from EC or EEE background?
</h5>
</a>
</button>
<div id="collapse4" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-4">
<p class="panel-text display-7 panel-body">
No, it is not compulsory for the candidates to be from EC or EEE background. All enthusiastic students are welcome to apply.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse5">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
The preliminary test is on Hackerearth. Is it a competitive coding test?
</h5>
</a>
</button>
<div id="collapse5" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-5">
<p class="panel-text display-7 panel-body">
No. The test will have questions about the basics of Linear Algebra, Signals and Systems, Aptitude and some Python coding. It will not have any competitive coding style questions.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse6">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
How many members in a team?
</h5>
</a>
</button>
<div id="collapse6" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-6">
<p class="panel-text display-7 panel-body">
A maximum of two members are allowed per team.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse7">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
Is it necessary to have an IEEE member in a team comprising of non-NITK students?
</h5>
</a>
</button>
<div id="collapse7" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-7">
<p class="panel-text display-7 panel-body">
No, it's not necessary for a team to have an IEEE member in the team. Refer to eligibility of the event.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse11">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
How can we prepare for the event?
</h5>
</a>
</button>
<div id="collapse11" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-11">
<p class="panel-text display-7 panel-body">
Brush up on your knowledge of Linear Algebra, Signals and Systems, aptitude and the basics of Python.
</p>
</div>
</div>
<div class="card">
<button class="card-header collapsed" data-toggle="collapse" role="button" href="#collapse12">
<a class="panel-title card-title text-black">
<h5 class="arrow display-5">
Should I clear the preliminary round to attend workshops and talks?
</h5>
</a>
</button>
<div id="collapse12" class="panel-collapse card-body noScroll collapse" role="tabpanel" data-parent="accordion" aria-labelledby="FAQ-12">
<p class="panel-text display-7 panel-body">
No, the workshop and talks are open for everyone who registers for the Hackathon.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- #call-to-action -->
<section style="margin-bottom: 5%;">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Organized by</h3>
<center>
<div class="row">
<div class="col-lg-6 mx-auto">
<a href="https://ieee.nitk.ac.in/"><img src="assets/img/ieee_nitk.png" alt="IEEE NITK Logo" style="max-width: 250px; margin-top: 50px;margin-bottom: 50px;" />
</a>
</div>
<div class="col-lg-6 mx-auto">
<a href="https://signalprocessingsociety.org/"><img src="assets/img/logos/sps.png" alt="SPS Logo" style="max-width: 200px;" />
</a>
</div>
</div>
</center>
</div>
</div>
</div>
</section>
<!--==========================
Contact Section
============================-->
<section id="contact">
<div class="container wow fadeInUp">
<div class="section-header">
<h3 class="section-title">Contact Us</h3>
<center>
<br>
<p>
<strong>Pranav M Koundinya</strong> : <a href="mailto:[email protected]"> [email protected]</a><br>
<strong>Raghuram Kannan</strong> : <a href="mailto:[email protected]"> [email protected]</a><br>
<strong>Kaliki Venkata Srinanda</strong> : <a href="mailto:[email protected]"> [email protected]</a>
</p>
</center>
<br>
</div>
<div class="social-links">
<a href="https://www.facebook.com/IEEENITK/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/ieee_nitk/" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/ieee-nitk-surathkal/" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</section><!-- #contact -->
</main>
<footer id="footer">
<div class="container">
<div class="copyright">
© Copyright <strong>IEEE NITK</strong>. All Rights Reserved
</div>
</div>
</footer><!-- #footer -->
<a href="#hero" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- JavaScript Libraries -->
<script src="embedathon/lib/jquery/jquery.min.js"></script>
<script src="embedathon/lib/jquery/jquery-migrate.min.js"></script>
<script src="embedathon/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="embedathon/lib/easing/easing.min.js"></script>
<script src="embedathon/lib/wow/wow.min.js"></script>
<script src="embedathon/lib/waypoints/waypoints.min.js"></script>
<script src="embedathon/lib/counterup/counterup.min.js"></script>
<script src="embedathon/lib/superfish/hoverIntent.js"></script>
<script src="embedathon/lib/superfish/superfish.min.js"></script>
<!-- Template Main Javascript File -->
<script src="embedathon/js/main.js"></script>
</body>
</html>