-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
1608 lines (1480 loc) · 93.1 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
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx">
<head>
<link rel="shortcut icon" href="images/Logos/prody.png" />
<title>Prodyogiki'19 | Home :: ISTE</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<meta name="keywords" content="The annual technical fest of ISTE students' chapter,NIT Hamirpur organised events covering all aspects of technical education.The 7 days technical spree began with an interactive session for students on internships/training related queries.Paper presentation provided the required platform to the students to present their innovations." />
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-133299467-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-133299467-1');
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-T6SGLRQ');</script>
<!-- End Google Tag Manager -->
<!--Google Search Console-->
<meta name="google-site-verification" content="mWgP-e4TzdZBp2PPY6eLhY8vyw2MgUSBv8Z8DE0Jv-U" />
<!--Open Graph-->
<meta property="og:title" content="Prodyogiki 2K19" />
<meta property="og:site_name" content="Prodyogiki ISTE" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Annual Technical fest hosted by Team ISTE, NIT Hamirpur" />
<meta property="og:image" content="https://sauravchandra1.github.ioimages/Logos/prody.png" />
<meta property="og:url" content="https://istenith.me/" />
<!--/Open Graph-->
<link rel="stylesheet" href="css/full-slider.css">
<!-- Custom Theme files -->
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" media="all">
<link href="css/style.css" type="text/css" rel="stylesheet" media="all">
<link href="css/fonts.css" type="text/css" rel="stylesheet" media="all">
<link href="css/colors.css" type="text/css" rel="stylesheet" media="all">
<!-- our capabilities -->
<link href="css/timeline.css" type="text/css" rel="stylesheet" media="all">
<!-- courses -->
<link href="css/gridview.css" rel="stylesheet" type="text/css">
<!-- font-awesome icons -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- //Custom Theme files -->
<!-- online-fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900" list rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
</head>
<style>
.Contact-Us
{
position : absolute;
margin-left: 60px;
float : right;
}
</style>
</div>
</div>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T6SGLRQ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- banner -->
<!-- <div class="banner"> -->
<header>
<div id="face" class="text-center">
<div id="logos" class="fifty origin">
<img src="images/Logos/nith.svg" alt="">
<img src="images/Logos/prodyogiki.svg" alt="">
<img src="images/Logos/ISTEs.svg" alt="">
</div>
<div id="whatis" class="fifty origin">
<div id="name" data-boi="PRODY">PRODYOGIKI</div>
<div id="year">2K19</div>
</div>
<div id="teaser" class="fifty origin">
<p>Prodyogiki is here get a glimpse!!</p><br>
<a class="btn btn-light" onclick="showVideo()"> Watch Trailer! <i class="fa fa-play"></i> </a>
</div>
<div id="tv" class="overlay">
<button id="closer" class="btn btn-danger origin fifty" onclick="hideVideo()">
<i class="fa fa-close"></i> close
</button>
<iframe id="cathode" class ="fifty origin"width="352" height="198" src="https://www.youtube.com/embed/rYydsT_lt7s" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<script>
function showVideo() {
$("#tv").show();
}
function hideVideo() {
$("#tv").hide();
}
</script>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
</header>
<!-- header -->
<nav class="navbar fixed-top navbar-expand-lg navbar-light navbar-fixed-top">
<div class="container">
<h1 class="wthree-logo" ; style="margin-left: 3%">
<a href="http://istenith.me" id="logoLink" data-blast="color" style="color:#428bca;">
<img src="images/Logos/ISTEsblue.svg" width="51px" height="51px" /> <span class="f8">ISTE</span></a>
</h1>
<div class="position-relative">
<a href="#menu" id="toggle">
<div id="toggler">
<span></span>
</div>
</a>
<div id="menu">
<ul>
<li class="active"><a href="#face">Home</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#workshops">Workshop</a></li>
<li><a href="#ourSponsors">Our Sponsors!</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</nav>
<a class="page-scroll" id="topper" href="#page-top"><img src="images/move-top.png"></a>
<style>
#topper {
position:fixed ;
bottom : 21px;
right : 21px;
width: auto;
z-index: 2;
}
#topper img {
height : 10vh;
filter: drop-shadow(5px 5px 2px rgba(0,0,0,0.5));
}
</style>
<!-- //header -->
</div>
<div id="parallax">
<!-- ABOUT US -->
<br><br>
<div id="aboutUs" class="container">
<div class="jumbotron">
<h1 class="text-center">
ABOUT TEAM ISTE
</h1>
<p style="text-align: justify;">
Indian Society for Technical Education (ISTE), NIT Hamirpur has been proactively working to provide
students with a variety of opportunities for their social and professional development. We strive
to build camaraderie among students and offer them a venue for a variety of skill development.
</p>
<br> <br>
<h1 class="text-center">
PRODYOGIKI 2019
</h1>
<p style="text-align: justify;">
Every technocrat’s first hand at practical implementation of what has been learnt. Every nerd’s
passion. And the most fulfilling exploration of technology that any engineer can do. This is merely
the glimpse of the show. The Prodyogiki of ISTE, NIT Hamirpur is designed to challenge and motivate
the students at the same time, and bring out their best. The Prodyogiki is the best representative
of the concept = “multi-disciplinary”. The 7 days technical spree is filled with an interactive
session, workshops, events and quizzes for students promise to be melting pots of different
engineering and technical fields and will set new benchmarks in collaboration between different
disciplines.
</p>
<br>
<div class="row">
<div class="col-md-12">
<!-- <button href="events/brochure.pdf" class="btn btn-primary" download> -->
<a class="btn btn-primary brochure" href="events/brochure.pdf" download style="text-decoration: none; color: white;"
target="_Blank">GET BROCHURE</a>
<!-- </a></button -->
</div>
</div>
</div>
</div>
<!-- /ABOUT US -->
<!-- SCHEDULE -->
<section id="schedule">
<div class="container py-3">
<br>
<hr class="seperator">
<br>
<h3 class="agile-head text-center">Schedule</h3>
<br>
<div class="row my-3">
<!--Empty Dates NECESARRY to for js date to work-->
<div class="date off" style="display:none;"></div>
<div class="col-lg-3 col-md-3 col-sm-12 text-center date off " data="2">
<h3>2<sup>nd</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#datathonWorkshop" class="scheduleLink">Python & Data Science Workshop : Give
Feedback!</a>
</div>
</div>
<div class="row my-3">
<div class="col-lg-3 col-md-3 col-sm-12 text-center date off " data="3">
<h3>3<sup>rd</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#roboholicWorkshop" class="scheduleLink">Roboholics Workshop : Give Feedback!</a>
</div>
</div>
<div class="row my-3">
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off" data="4">
<h3>4<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#longCoding" class="scheduleLink">Long Coding Challenge</a>
<a class="scheduleLink" href="https://www.hackerearth.com/challenge/college/iste-prodyogiki-long-coding-challenge-2019/">
Participate Now! </a>
</div>
</div>
<div class="row my-3">
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off " data="5">
<h3>5<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#shortCoding" class="scheduleLink">Short Coding Challenge</a>
</div>
</div>
<div class="row my-3">
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off " data="6">
<h3>6<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#dataThon" class="scheduleLink">Datathon Competition</a>
</div>
</div>
<div class="row my-3">
<div class="date off" style="display:none;"></div>
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off " data="8">
<h3>8<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<div>
<a href="#chemecar" class="scheduleLink">Chem-e-Car</a>
<a href="#rotolare" class="scheduleLink">RotoLare</a>
</div>
</div>
</div>
<div class="row my-3">
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off " data="9">
<h3>9<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#chemBoat" class="scheduleLink"> Chem Boat</a>
<a href="#codeRelay" class="scheduleLink"> Code Relay</a>
<a href="#sandTower" class="scheduleLink"> Sand Tower</a>
<a href="#chemHunt" class="scheduleLink"> ChemHunt 2.0</a>
<a href="#basculeBridge" class="scheduleLink"> Bascule Bridge</a>
<a href="#electroventure" class="scheduleLink"> ElectroVenture</a>
<a href="#opencv" class="scheduleLink"> Open CV Workshop</a>
<a href="#rubeGoldberg" class="scheduleLink"> Rube Goldberg 2.0</a>
</div>
</div>
<div class="row my-3">
<div class=" col-lg-3 col-md-3 col-sm-12 text-center date off " data="10">
<h3>10<sup>th</sup><br>FEB</h3>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 event-card ">
<a href="#aceArduino" class="scheduleLink">Ace The Arduino</a>
<a href="#paperPlane" class="scheduleLink">Paper Plane</a>
<a href="#traceTheRace" class="scheduleLink">Trace the Race</a>
<a href="#roboSoccer" class="scheduleLink">Robo Soccer</a>
<a href="#captureTheFlag" class="scheduleLink">Capture The Flag</a>
<a href="#roboClencher" class="scheduleLink">Robo Clencher</a>
<a href="#eggDropChallenge" class="scheduleLink">Egg Drop</a>
</div>
</div>
</div>
<!--script>
var d = new Date();
var today = d.getDate();
var dates = document.getElementsByClassName("date");
var i=0;
for(i=0;i<today-1;++i) {
dates[i].classList.add("off");
}
dates[today-1].classList.add("active");
</script-->
</section>
<!-- workshops -->
<section class="courses-sec py-lg-5 pb-5" id="events">
<div class="container">
<br>
<hr class="seperator">
<br>
<div class="title-sec-agile text-center">
<h3 class="agile-head">Events</h3>
<p class="title-text"></p>
</div>
<div id="products" class="row view-group py-5">
<div class="item col-md-6 col-lg-4 ">
<div id="shortCoding" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/scc.jpg" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Short Coding Challenge</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Coding is what coders are really great at. But can they handle the
immense
time pressure which has so often stopped even the best coders from
acing
the test! This Prodyogiki 2019, Team ISTE brings to you the Short Coding
Challenge where top coders will race against time to solve as many
problem
statements as possible and emerge as the winner!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/yKzRH90yG4YpVKhr2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/shortCoding.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Sahaj Kulsreshtha<br> +91 8318241743</h6>
</div>
<div class="col-6 text-right">
<h6>Jitaksh Kapoor <br> +91 7696166014</h6>
</div>
</div>
</p>
</p>
</a>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="codeRelay" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/cr.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Code Relay </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Ever imagined what a coding relay would turn out to be? Team ISTE
brings to
you Code Relay, a fast paced coding competition, which consists of 3
rounds
which are to be played one after the other by a single participant. The
participant with the most points at the end wins. So coders energise
yourself to take on this coding marathon!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/0sedEwKWjYGK8QBB3"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/codeRelay.pdf"
download>Get
Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Varan Singh Rohila<br> +91 9958428533</h6>
</div>
<div class="col-6 text-right">
<h6>Yash Punia<br> +91 9873921954</h6>
</div>
</div>
</p>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="dataThon" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/events/DataScience.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Datathon </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Data analytics capablities enables us to analyze data with greater depth,
sophistication and efficiencies through innovaions such as artificial
intelligence, machine learning, natural learning processing and bots.
ISTE has launched DATATHON, which invites participants from across
institutions, who will join us in our quest of developing models for the
appropriate sourcing and usage of data across businesses.
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/Yzwuxa47W219T1UF3">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/datathonEvent.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Varan Singh Rohila<br> +91 9958428533</h6>
</div>
<div class="col-6 text-right">
<h6>Vishal Dhiman<br> +91 8278843542</h6>
</div>
</div>
</p>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="longCoding" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/lcc.png" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Long Coding Challenge</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
The sequel to the Short Coding Challenge that served as a test of time.
But
what's also important is a test of endurance, patience and the
willpower to
stay strong for the entire course of the race to ultimately emerge as
the
winner! Team ISTE brings to you Long Coding Challenge. Coders from the first year
only will
battle
against each other to survive at the top of the leaderboard till the
time
runs out. Ready, Set, Code!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-primary register" href="https://www.hackerearth.com/challenge/college/iste-prodyogiki-long-coding-challenge-2019/"
target="_Blank">
Participate Now! </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/longCoding.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Varan Singh Rohila<br> +91 9958428533</h6>
</div>
<div class="col-6 text-right">
<h6>Sarvesh Lal Srivastava <br> +91 9473850718</h6>
</div>
</div>
</p>
</p>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="aceArduino" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/events/arduino.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Ace The Arduino </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Started in 2003 as a program for students at the Interaction Design Institute Ivrea
in Ivrea,
Italy, the Arduino Project soon became a global phenomenon for budding technocrats
who loved
tinkering with circuits. It aimed to provide a low-cost and simplified means for
novices and
professionals to create devices that can interact with their environment using
sensors. In
this event, teams will get their shot at building circuits using the beloved open
source
electronic prototyping platform – Arduino!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/BJoOSrZ7Iz3DheEz2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/acetheArduino.docx"
download> Get
Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Marmik Sharma<br> +91 9418490421</h6>
</div>
<div class="col-6 text-right">
<h6>Abhay Raj Singh <br> +91 9630459118</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="electroventure" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/tv.jpeg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
ElectroVenture </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
What a valorous experience we all get, when the protagonist of our favourite sci-fi
movie does audacious tasks, - designing a complex gadgetry with a venturesome team,
limited capital and winning gambles with high risks, fascinating right?
Team ISTE provides a riveting platform, Electroventure to line such experiences
again in a technical atmosphere along with your friend.
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/n1TwPtAxeK9jGplj2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/electroventure.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Parthivi Jain<br> +91 9634092969</h6>
</div>
<div class="col-6 text-right">
<h6>Tanuja Pal <br> +91 8756709760</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="traceTheRace" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/trace.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Trace (the Race) </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Ever imagined how robots move on their own without any human
interference?
In this game participants must work together to design and build a
autonomous robotic vehicle that can navigate without any human guidance
or
control. The team that completes the task in the arena by getting the
maximum points would be adjudged the winner.
<br><br>
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/DFjdbrfUMrZbgYeD3"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/traceTheRace.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Marmik Sharma<br> +91 9418490421</h6>
</div>
<div class="col-6 text-right">
<h6>Diksha Aggarwal <br> +91 7833879977</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="captureTheFlag" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/ctf.jpeg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Capture the Flag </h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Team ISTE brings to you a fun game, Capture the Flag. It is a simple
game
where two teams have a flag and the objective is to capture the other
team’s flag, located at the team’s base and bring it safely back to
their
own base. However the twist here is that there will be bots doing the
match
and you will be controlling them!
So energise yourself as you prepare to take on this competition.
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/cEaQFBFwKABNz2is1"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/captureTheFlag.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Mukul C. Mahadik<br> +91 8626866284</h6>
</div>
<div class="col-6 text-right">
<h6>Yash Punia<br> +91 9873921954</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="roboSoccer" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/rs.jpeg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
RoboSoccer</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
All those fans of MESSI and RONALDO out there, tired of brawling? Time
to
stop talking and start acting. This Prodyogiki, get ready to play with
bots.
Paint your faces, boot-up your bots, set them in soccer field and
scream
VISCA BARCA/ HALA MADRID!! Team ISTE brings to you Robo-Soccer, a 1v1
Soccer match between bots. So charge up your batteries, upload your
code
and kick off!!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/469xZX5nZQgjnTRD3"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/roboSoccer.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Kunal Kishore<br> +91 9113366358</h6>
</div>
<div class="col-6 text-right">
<h6>Vidhi Shekhawat <br> +91 8696185185</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="roboClencher" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/clench.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
RoboClencher</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Gear up for one of the most-awaited events of Proyogiki 2019 as the
bots
are ready to race it out! But the road to the finish won't be all that
easy. Teams will manouevre their bots across a path full of tricky
obstacles while also moving blocks around to clear their path. The team
that completes the race in the fastest time will be judged the winner!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/8v3gYExw2tNd6ta12"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/roboClench.pdf"
download>Get
Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Vivek Gusain<br> +91 9675197084</h6>
</div>
<div class="col-6 text-right">
<h6>Harshvardhana <br> +91 8726732531</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="rotolare" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/rc.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
RotoLare</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Each one of us has wanted to experience the thrill of riding a
rollercoaster atleast once in our lifetime. But has anyone thought how these
popular rides are built in the first place? Team ISTE presents RotoLare
-
where teams must successfully build a miniature rollercoaster model.
The
most efficient, innovative and safe design would be adjudged the
winner!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/BdW1LriCX33qhqZC2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/rotolare.pdf"
download>Get
Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Achyut Sharma<br> +91 8696434820</h6>
</div>
<div class="col-6 text-right">
<h6>Nimish Lata<br> +91 8769629367</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="basculeBridge" class="thumbnail card" style="min-height: 740px;">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/hb.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Bascule Bridge</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
One of the most important constructions to be made by
mankind,
bridges have been in existence for eons. But what really matters is the
safety and reliability factor associated. Team ISTE brings to you
Bascule
Bridge event to test your construction skills. Give your constructing
abilities the wings to build an efficient hydraulic bridge using Popsicle
sticks. <br>
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/MEJQ6IbWZRKo0m9E2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/basculeBridge.pdf"
download>Get
Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-12 text-left">
<h6>Abhiraj Singh Rathore <br> +91 7597707388</h6>
</div>
<div class="col-6 text-right" style="display: none;">
<h6>Nimish Lata<br> +91 8769629367</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="eggDropChallenge" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/egg.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Egg Drop Challenge</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
In this activity, participants are challenged to protect an egg from
breaking after it is dropped from a set height. Their aim would be to
design a contraption to protect their raw egg. The idea of egg drop
project
is to use as few materials as possible to make the packaging strong
enough
to withstand the fall. The team with most efficient contraption design
would be adjudged the winner!
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/GAMxIKRVNNj8XTez2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/eggDropChallenge.pdf"
download>Get Details</a>
</div>
</div>
<br>
<p class="contact-me">Contact Us</p>
<div class="row contacts">
<div class="col-6 text-left">
<h6>Vivek Gusain<br> +91 9675197084</h6>
</div>
<div class="col-6 text-right">
<h6>Aditi Singh<br> +91 9882229195</h6>
</div>
</div>
</p>
</p>
</div>
</div>
</div>
<div class="item col-md-6 col-lg-4">
<div id="sandTower" class="thumbnail card">
<div class="img-event">
<img class="group list-group-image img-fluid" src="images/st.jpg" alt="" />
</div>
<div class="caption card-body">
<h4 class="group card-title inner list-group-item-heading">
Sand Tower</h4>
<p class="group inner list-group-item-text" style="text-align: justify;">
Beaches. Sand. Voila! Sandcastles! Team ISTE brings to you "Sand Tower"
wherein participants have to build a frustum of given specs using a
given
quantity of sand provided by team ISTE. The team with the best design
and
sustainable model would be adjudged the winner! So go on and unleash
the
builder in you!
<br> <br> <br>
<p class="group inner list-group-item-text" style="text-align: justify; font-size: 14px">
<div class="row">
<div class="col-6">
<a class="btn btn-outline-light register" href="https://goo.gl/forms/KxVTkM4t0CfyuxkG2"
target="_Blank">
Register Here </a>
</div>
<div class="col-6 text-right">
<a class="btn btn-outline-light details" href="events/sandTower.pdf"
download>Get
Details</a>