-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.html
2576 lines (2202 loc) · 115 KB
/
event.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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="author" content="PSG iTech" />
<meta name="description" content="Yukta:,the national level inter-collegiate fest for those who want ot express the talents of different."/>
<meta name="keywords" content="yuktaha,Yukta:,Yuktaha,"/>
<meta name="application-name" content="Yuktaha" />
<title>YUKTAHA 2K17</title>
<!-- Google fonts -->
<link href='assets/1.css' rel='stylesheet' type='text/css'>
<!-- font awesome -->
<link href="boot.css" rel="stylesheet">
<!-- bootstrap -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<!-- animate.css -->
<link rel="stylesheet" href="assets/animate/animate.css" />
<link rel="stylesheet" href="assets/animate/set.css" />
<link rel="stylesheet" href="loader/normalize.min.css">
<link rel="stylesheet" href="loader/css/style.css">
<!-- gallery -->
<link rel="stylesheet" href="assets/gallery/blueimp-gallery.min.css">
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.png" type="image/png">
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.body.style.backgroundColor="rgba(0,0,0,0.5)";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.body.style.backgroundColor="rgba(255,255,255,1)";
}
</script>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="login/style.css">
<style>
body {
font-family: "Lato", sans-serif;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 5000;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s
}
.sidenav a:hover, .offcanvas a:focus{
color: #f1f1f1;
}
.sidenav .closebtn {
position: relative;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
<style>
@-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
}
</style>
</head>
<body >
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<div class="topbar animated fadeInLeftBig"></div>
<!-- Header Starts -->
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation" id="top-nav" >
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="modal" data-target="#register" aria-pressed="false" autocomplete="off" style="color:white">
REGISTER
</button>
<br><br>
<span style="font-size:30px;cursor:pointer;color:white;padding-left:10%" onclick="openNav()">☰</span>
</div>
<!-- Nav Starts -->
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right scroll">
<li ><a href="#cse">CSE</a></li>
<li ><a href="#eee">EEE</a></li>
<li ><a href="#mech">MECH</a></li>
<li ><a href="#civil">CIVIL</a></li>
<li ><a href="#ece">ECE</a></li>
<li> <a href="#mgm">INTERNO INSINIA</a></li>
<li ><button type="button" class="" style="color:#777;margin-top:2.28em;background :none;border : none;padding-left:1em; " data-toggle="modal" data-target="#register" aria-pressed="false" autocomplete="off">REGISTER</button></li>
</ul>
<!-- #Nav Ends -->
</div>
</div>
</div>
</div>
<!-- #Header Starts -->
<div id="mySidenav" class="sidenav" >
<b style="padding-left:25%;font-size:170%;color:white;">YUKTA:'17</b>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" style="padding-left:70%">×</a>
<br><br><br><br><br>
<h4 style="font:Calibri"><a href="index.html">Home</a>
<a href="event.html">Events</a>
<a href="workshop.html">Workshop</a>
<a href="paper.html">Paper presentation</a>
</h4>
<!--THIS-->
<!--THis-->
</div>
<h3></h3>
<!--<h2 align=center>Computer Science Engineering</h2>
-->
<div id="cse" class=" clearfix grid">
<h3></h3><h3></h3><h3></h3>
<h2 align=center style="color:white">COMPUTER SCIENCE ENGINEERING</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/1.jpg" alt="img01"/>
<figcaption>
<h2>Code Blitz</h2>
<p><br> Time: 11AM-3PM<br>Venue:Virtualization lab<br>
<u><a data-toggle="modal" data-target="#myModalcodeblitz">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/2.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>Web Ninja</h2>
<p> Time: 1PM-3PM<br>Venue:SAP Lab<br>
<u><a data-toggle="modal" data-target="#myModalwebninja">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/4.jpg" alt="img01"/>
<figcaption>
<h2>Androxus</h2>
<p><br> Time: 11AM-3PM<br>Venue:IOT Lab<br>
<u><a data-toggle="modal" data-target="#myModalandroxus">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/3.jpg" alt="img01"/>
<figcaption><br><br>
<h2>Carbine Coders</h2>
<p><br> Time: 9AM-11AM <br>Venue:Oracle lab<br>
<u><a data-toggle="modal" data-target="#myModalcarbinecoders">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/postermania.jpg" alt="img01"/>
<figcaption>
<h2>Renoir's Sculptivision</h2>
<p><br> Time: 11AM-1PM<br>Venue:SAP Lab<br>
<u><a data-toggle="modal" data-target="#myrenoirssculptivision">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<h3></h3>
<!-- works -->
<div id="eee" class=" clearfix grid">
<h2 align=center style="color:white">ELECTRICAL AND ELECTRONICS ENGINEERING</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/123.jpg" alt="img01"/>
<figcaption>
<h2>Circbuzz</h2>
<p><br> Time: 10AM-12PM<br>Venue:E3-206<br>
<u><a data-toggle="modal" data-target="#myModalcircbuzz">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/12345.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>e-Doodle</h2>
<p><br> Time: 10AM-12PM<br>Venue:E3-207<br>
<u><a data-toggle="modal" data-target="#myModaledoodle">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/1234.jpg" alt="img01"/>
<figcaption>
<h2>Electro Bolt</h2>
<p><br> Time: 10AM-12PM<br>Venue:E3-204<br>
<u><a data-toggle="modal" data-target="#myModalelectrobolt">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/volt tackle 1.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>Volt tackle</h2>
<p><br> Time: 9AM-12PM<br>Venue:E3-208<br>
<u><a data-toggle="modal" data-target="#myModalvolttackle">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<h3></h3>
<!-- works -->
<div id="mech" class=" clearfix grid">
<h3></h3>
<h2 align=center style="color:white"> MECHANICAL ENGINEERING</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/contraption.jpg" alt="img01"/>
<figcaption><br><br><br><br><br><br>
<h2>Contraption</h2>
<p><br> Time: 10:30AM-1:00PM<br>Venue: E6-405<br>
<u><a data-toggle="modal" data-target="#mycontraption">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/techquiz.jpg" alt="img01"/>
<figcaption>
<h2>Techie Quiz</h2>
<p><br> Time: 9AM-11AM<br>Venue: E6-302<br>
<u><a data-toggle="modal" data-target="#mytechiequiz">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/machinist.jpg" alt="img01"/>
<figcaption><br><br><br><br><br><br>
<h2>Mr.Machinist</h2>
<p><br> Time: 9AM-11AM<br>Venue: E6-402<br>
<u><a data-toggle="modal" data-target="#mymrmachinist">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/autocad.jpg" alt="img01"/>
<figcaption>
<h2>Third Dimension</h2>
<p><br> Time: 9AM-11AM<br>Venue: CAD LAB<br>
<u><a data-toggle="modal" data-target="#mythirddimension">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<!-- works -->
<h3></h3>
<!-- works -->
<div id="civil" class=" clearfix grid">
<h2 align=center style="color:white"> CIVIL ENGINEERING</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/zenith edifice.jpg" alt="img01"/>
<figcaption><br><br><br>
<h2>Zenith<br>Edifice</h2>
<p><br> Time: 12PM-3:30PM<br>Venue:E1-301<br>
<u><a data-toggle="modal" data-target="#myModalzedifice">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/viruoso.jpg" alt="img01"/>
<figcaption><br><br>
<h2>Virtuoso</h2>
<p><br> Time: 10AM-3PM<br>Venue:E1-406<br>
<u><a data-toggle="modal" data-target="#myModalvirtuoso">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/enroute.jpg" alt="img01"/>
<figcaption><br><br><br><br><br><br>
<h2>En route</h2>
<p><br> Time: 10AM-3PM<br>Venue:E1-303<br>
<u><a data-toggle="modal" data-target="#myModalenroute">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/cad.jpg" alt="img01"/>
<figcaption><br><br><br><br><br><br>
<h2>Cad n Code</h2>
<p><br> Time: 10AM-1PM<br>Venue:E1-307<br>
<u><a data-toggle="modal" data-target="#myModalcadncode">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<!-- works -->
<h3></h3>
<!-- works -->
<div id="ece" class=" clearfix grid">
<h2 align=center style="color:white"> ELECTRONICS AND COMMUNICATION ENGINEERING</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/find and diffuse.jpg" alt="img01"/>
<figcaption><br>
<h2>Find and Defuse</h2>
<p><br> Time: 9:30AM-12PM<br>Venue: E2-207<br>
<u><a data-toggle="modal" data-target="#myfind">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/e_adapt.jpg" alt="img01"/>
<figcaption>
<h2>E-adept</h2>
<p><br> Time: 1:30PM-3PM<br>Venue:E2-307<br>
<u><a data-toggle="modal" data-target="#mye">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/digital hunt.jpg" alt="img01"/>
<figcaption><br><br><br><br><br>
<h2>Digital hunt</h2>
<p><br> Time: 9:30AM-10:30AM<br>Venue:E2-306<br>
<u><a data-toggle="modal" data-target="#myhunt">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/path.jpg" alt="img01"/>
<figcaption>
<h2>Perilous Path Trailer</h2>
<p><br> Time: 10AM-12PM<br>Venue:E2-105<br>
<u><a data-toggle="modal" data-target="#mytrail">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/circdiscern.jpg" alt="img01"/>
<figcaption><br><br><br>
<h2>Circuit discern</h2>
<p><br> Time: 10:30AM-12:00PM<br>Venue:E2-101<br>
<u><a data-toggle="modal" data-target="#mydis">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<h3></h3>
<div id="mgm" class=" clearfix grid">
<h2 align=center style="color:white">INTERNO INSINIA</h2>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/phineas.jpg" alt="img01"/>
<figcaption><br><br><br>
<h2>Phineas n'Ferb</h2>
<p><br> Time: 10AM-1PM<br>Venue:E4-404<br>
<u><a data-toggle="modal" data-target="#myferb">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/best manager.jpg" alt="img01"/>
<figcaption>
<h2>Best Manager</h2>
<p><br> Time: 9AM-1PM<br>Venue:E6-202<br>
<u><a data-toggle="modal" data-target="#mymanager">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/brand wars.jpg" alt="img01"/>
<figcaption>
<h2>Brand Wars</h2>
<p><br> Time: 9AM-1PM<br>Venue:E4-405<br>
<u><a data-toggle="modal" data-target="#mywar">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/fight the nerve.jpg" alt="img01"/>
<figcaption><br>
<h2>Fight the Nerve</h2>
<p><br> Time: 9AM-12PM<br>Venue:E1-207<br>
<u><a data-toggle="modal" data-target="#mynerve">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/spell kraze.jpg" alt="img01"/>
<figcaption>
<h2>Spell Kraze</h2>
<p><br> Time: 9AM-11AM<br>Venue:E6-303<br>
<u><a data-toggle="modal" data-target="#myspell">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/gab fest 1.jpg" alt="img01"/>
<figcaption><br><br><br><br><br><br>
<h2>Gab fest</h2>
<p><br> Time: 9:30AM-11:00AM<br>Venue:E3-302<br>
<u><a data-toggle="modal" data-target="#myModalgabfest">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/co adjuvancy.jpg" alt="img01"/>
<figcaption><br><br><br>
<h2>Coadjuvancy</h2>
<p><br> Time: 9AM-12PM<br>Venue:E2-401<br>
<u><a data-toggle="modal" data-target="#myco">View more</p> </a> </u>
</figcaption>
</figure>
<figure class="effect-oscar wowload fadeInUp">
<img src="images/portfolio/hindi.jpg" alt="img01"/>
<figcaption>
<h2>Hindi Gyan Kshetra</h2>
<p><br> Time: 10AM-12PM<br>Venue:E3-308<br>
<u><a data-toggle="modal" data-target="#myhindi">View more</p> </a> </u>
</figcaption>
</figure>
</div>
<h3></h3>
<div class="footer text-center spacer" >
<p class="wowload flipInX">
<a href="www.facebook.com/yuktaha"><img src="images/portfolio/FB.png"/></a>
<a href="www.twitter.com/yuktaha2K17"><img src="images/portfolio/twitter.png"/></a>
<a href="www.instagram.com/yuktaha"><img src="images/portfolio/isnta.png"/></a>
<br> <b>© 2017 Yuktaha. All rights reserved.</b>
</div>
<!-- # Footer Ends -->
<script>
function regi()
{
alert("Please Login to register");
}
</script>
<!--THIS-->
<!--CSE-->
<!-- Modal content-->
<div id="myModalcodeblitz" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">CODE BLITZ</h4>
</div>
<div class="modal-body">
<p>Are you a passionate Coder who likes to play with Algorithmic challenges,then sharpen your wit to face an exhilarating set of problems. Remember speed and accuracy matters a lot. Come up with a solution, code it and beat the clock to prove your prowess</p>
<br>
<p><b>FORMAT </b><br>
• It is a single round coding contest with six problems,spanning for 150 minutes<br>
• Problem Statement will be given such that the input to the program and the desired output are defined<br>
• Participants are expected to write the code that performs the necessary processing/transformations<br>
• A submitted solution is checked against several testcases and a response will be generated<br>
• The objective is to solve the as many problems as possible</p>
<p><b>RULES</b><br>
• Each team should have two members<br>
• The team members need not be from the same institution/college<br>
• Mobile phones and other materials are not allowed inside the contest arena<br>
• Teams involved in any kind of malpractice will be immediatly disqualified<br>
• The decision taken by the organizers will be final<br>
• Lone wolves are not allowed</p>
<p><b>CONTACT DETAILS</b><br>
Ram Prakash P : 9489889301<br>
Sailesh : 9092499086
</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalwebninja" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Web ninja</h4>
</div>
<div class="modal-body">
<p>Are you someone who loves designing as well as coding? Have you sat hours at an end trying to make a website and loved it?</p>
This is Web ninja, a competition where you can showcase your talents in coding as<br> well as designing. Put your skills to the test and design a website as the clock ticks<br>
<br><p><b>Round 1</b><br>
• There will be an MCQ in all the web technologies which will test your design skills<br>
• There will be 30 questions which has to be answered in 30 minutes</p>
<p>Round 2</b><br>
• You will be given a template on spot, out of which you need to create the nearest match of it<br>
• The team who creates an exact or nearest match within a short period of time will be declared as winners</p>
<p><b>RULES</b><br>
• A team must consists of 2 members<br>
• Team members can be from different colleges<br>
• Usage of internet, mobile phones and other electronic gadgets is strictly prohibited<br>
• Basic knowledge in HTML, CSS and JavaScript is needed<br>
• Decision of the Judges will be final</p>
<p><b>CONTACT DETAILS</b><br>
Vasanthan S : 9894753624<br>
Rashmi :9443314141</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalandroxus" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Androxus</h4>
</div>
<div class="modal-body">
<p> Have you always been fascinated by the world of Android? Then brace yourselves for 'ANDROXUS 2K17'.</p>
<br> Here's your chance to prove that you're unbeatable in your app development skills</br>
<p><b>DESCRIPTION</b><br>
Are you someone who’s always got the eye for spotting errors? Then this round’s for you! It’s just a warm-up to the much awaited Android app development round!
This will be a code debugging round, where you will be provided with a program with some errors in it.
You’ll have to debug the errors within the given time.
Eclipse IDE will be used. Let’s see how you debug your way through the grand finals !</p>
<p><br><b>Round 1</b></br>
• The first round will be a debugging round in which the participants will be debugging a program<br>
• The selection will be based on the maximum number of errors found and least time taken to correct it<br>
• Eclipse IDE will be used for this round<br></p>
<p><b>DESCRIPTION</b><br>
Winning this round is what it takes to be THE ANDROXUS. Can you become an ANDROXUS? Then show us how good your designing and implementing skills are in Android!
It’s more than enough to have a basic understanding of Android, because, guess what, you’ll be given Internet access!
This round will be an Android App Development round.
In this, you’ll have to choose a slot and develop an Android app for the problem statement specified in that slot.
Can you, with the help of Mr.Google, make your way to becoming the ANDROXUS of 2k17?
<p><br><b>Round 2</b></br>
• This is the round where you will be exhibiting your android skills<br>
• You will be given with the problem statement for which you need to showcase your skills<br>
• The winners will be selected on the basis of UI/UX, performance, Memory Space usage<br></p>
<p><br><b>RULES</b></br>
• Competitors must develop only native android apps<br>
• Competitors must bring their own android phones and connectors in case they need<br>
• Participants must only work with android studio<br></p>
<p><br><b>CONTACT DETAILS</b></br>
Akil Ayyapan R A : 9787919223<br>
Krishna Prasad A S : 8608648420</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalcarbinecoders" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Carbine Coders</h4>
</div>
<div class="modal-body">
<p>Explore a new dimension of coding through <b>Carbine Coders 2K17!!</b> Quick-witted people with basic coding skills are the ones we’re looking for.
The event will also test the swift thinking abilities and problem solving skills of the participants.</p>
<p><b>Round 1: Get acquainted with Python</b><br>
• Have you always wanted to learn Python, but never got around to it? Take your first baby steps in Python with us. <br>
• You’ll be provided with a few programs in python, where the lines of code are jumbled.<br>
• Rearrange the lines of code to pass the test cases and stay alive in the competition.<br>
<b>P.S. </b>You’ll have access to the Internet, in case you need to sort out your syntactical queries.<br>
<br><b>Selection criteria:</b><br>
The team that solves the most number of problems in the given 45 minutes will qualify for the next round.</p>
<p><b>Round 2: A twist in the tale</b><br>
• Each team will be provided with two different problem statements,one for each member.<br>
<b>P.S. </b> Expect the unexpected.<br>
<br><b>Selection criteria:</b><br>
The team that solves both the problems statements the fastest will be declared the winners.</p>
<p><b>RULES</b><br>
• Each team must consist of two members, not necessarily from the same college<br>
• Mobiles phones and other electronic gadgets are strictly prohibited<br>
• Decisions taken by the Judges will be final and binding</p><br>
<p><b>Event Co-ordinators:</b><br>
Hari Nandha J R : 9003791901<br>
Rishika Jain A : 9487583082</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myrenoirssculptivision" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Renoir's Sculptivision</h4>
</div>
<div class="modal-body">
<p> Idea's change the way a person can think. It is based on how we express them. Posters are the way of exhibiting ideas.</p>
<br> We have come with the theme. Try to do something innovative in a way that will inspire generations</br><br>
<p><b>FORMAT</b><br>
• On-spot theme will be given<br>
• Only one round is conducted on which the winner will be selected<br>
• The working platform will be <b>Adobe Photoshop CC 2015</b><br>
• The maximum time Limit will be 120 minutes</p>
<p><b>RULES</b><br>
• A team can consists of maximum two members<br>
• Teams can consists of students from different colleges<br>
• Plagiarism is not allowed<br>
• Usage of patterns must be priorly informed to the co-ordinators<br>
• Minimum knowledge is required<br>
• Judges decision is final</p>
<p><b>CONTACT DETAILS</b><br>
Mayil vahanam P : 9487748910<br>
Manoj : 9952318334
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<!--THIS-->
<!--EEE-->
<div id="myModalcircbuzz" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Circbuzz</h4>
</div>
<div class="modal-body">
<p>How POWERFUL is your Brain?
This event is to test understanding of basic electronic engineering concepts by answering objective type questions on Moodle platform. The questions will cover the fields of electronic devices, embedded systems, signal processing, and power electronics</p>
<p><br><b>ROUND 1</b><br>
• Preliminary round consists of 20 MCQs.<br>
• Top 6 teams will be selected based on their score.<br>
• In case of tie, time taken will also be considered.<br></p>
<p><br><b>ROUND 2</b><br>
• Mixed Bag round consists of different set of questions from given areas, conducted like a buzzer round.<br>
• Top 2 teams will be announced as winners based on their scores.<br>
• In case of tie, extra questions will be added.<br></p>
<p><br><b>RULES</b></br>
• Each team should consists 2 members<br>
• Use of mobile phones and other electronic gadgets except calculators are strictly prohibited<br>
• Team members can be from different colleges<br>
• Judges decision will be final<br></p>
<p><br><b>CONTACT DETAILS</b><br>
Ragavi S : 8754211705<br>
Vimal Das S: 9003342880</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModaledoodle" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">e-Doodle</h4>
</div>
<div class="modal-body">
<p>To design basic electronic circuits such as logic gates and analog circuits and debug the circuits by locating faulty parts, identifying wrong design and wiring, using digital multimeter and oscilloscope</p>
<p><br><b>Round 1</b></br>
MCQs: 30 questions in 30 minutes (in case of tie,time taken to finish would be considered)<br></p>
<p><br><b>Round 2</b></br>
Circuit Designing and Debugging (In case of tie on the spot questions would be asked and the team that gives the quickest correct answer would be qualified).<br></p>
<p><br><b>RULES</b></br>
• Team can consists of maximum of 3 members<br>
• Mobile phones are strictly prohibited<br>
• Judges decision would be final<br></p>
<p><br><b>CONTACT DETAILS</b><br>
Padmakumari P: 9994569577<br>
Mohan Kumar N: 9600403815</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="myModalelectrobolt" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Electro Bolt</h4>
</div>
<div class="modal-body">
<p> “Straighten yourself up, twist your flair out”<br><br>
OBJECTIVE: To test the understanding of basic electrical engineering concepts by answering objective type questions on Moodle platform.
</p>
<p><b>Round 1</b><br>
Multiple choice questions (MCQs) on Moodle platform</p>
<p><b>Round 2</b><br>
• Application based questions<br>
• Two members per team <br>
• 6 teams will be selected for the second round</p>
<p><b>RULES</b><br>
• 2 per team<br>
• Mobile phones are strictly prohibited<br>
• Judges decision would be final</p>
<p><b>CONTACT DETAILS</b><br>
Santhosh T : 96291 88559<br>
Rega G : 87543 09685</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
</div><div id="myModalvolttackle" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Volt Tackle</h4>
</div>
<div class="modal-body">
<p>This event is to test the knowledge on Design and Debugging of electric circuits. Participants should analyze the given components, design a given circuit or complete a partly designed circuit and ensure that the circuit is functioning as expected</p>
<p><b>Round 1</b><br>
• This is a written test round.<br>
• Participants will be given questions on finding the errors in the circuit</p>
<p><b>Round 2</b><br>
• To design circuits for the given specification<br>
• The students will be given incomplete circuits and asked to find the missing parts and complete the circuit</p>
<p><b>RULES</b><br>
• Components would be provided<br>
• Three members per team.<br>
• Judges decision will be final<br>
• No electronic gadgets are allowed </p>
<p><b>CONTACT DETAILS</b><br>
Gunasanthi R : 8489461807<br>
Vijay Shankar S : 7708990599</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<!--MECH-->
<div id="mycontraption" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Contraption</h4>
</div>
<div class="modal-body">
<p>Tired of being penalized for over engineering???</p>
<p>For all those who love to complicate things – start your train of thoughts, and come up with all the bizarre and uncommon ideas and put them together to accomplish the most common task.
<br>Make your own over engineered mechanism to achieve a simple task and get rewarded for it. The more the merrier.</br>
<br>Go ahead, make the life tougher!!!!<br></p>
<p><b>GOAL STATEMENT</b><br>
• Use various forms of energy conversion techniques to accomplish the goal<br>
• <b>A BALL SHOULD FALL INSIDE THE BOX</b><br>
• To achieve the requirements given in the format of the event</p>
<p><b>FORMAT</b><br>
• A ball should fall inside the box of dimension 20cm * 20cm * 15cm (l*b*h)<br>
• The box should be placed 75cm from the model<br>
• A normal tennis ball size can be used<br>
• Maximum number of pitches outside the box will be given maximum points<br>
• The arrangement should have minimum number of 5 steps before completion of final task<br>
• Automatic start and parallel steps will be awarded maximum points. No points will be awarded for manual start<br>
• The entire contraption, while operating, shall fit and remain completely within an imaginary box whose dimensions are 6 feet * 6 feet* 5 feet<br>
• The teams are not provided any walls or tables for the model<br>
• Power supply of 230V / 50 Hz and a flat ground for display<br>
• Necessary tool kits should be brought by the participants</p>
<p><b>RULES</b><br>
• The number of members per team is restricted to 5<br>
• Only 1 team member may interact with the model once the evaluation begins. This applies to resetting the model too<br>
• The model must complete the task as described in the goal statement<br>
• Teams must use minimum of 3 energy conversions<br>
• The model must take no more than 15 minutes per run<br>
• A step in the model should be considered as a transfer of energy from one action to another. Identical transfers of energy in succession will be considered as one step<br>
• For example, a set of dominoes falling onto each other will be considered as one step.<br>
• Any loose or flying objects must remain within the set boundaries of the model<br>
• Contestants are responsible for removing their arrangement and any debris left after the completion<br>
• Core committee members reserve the right to disqualify any team violating the rules or indulging in misbehaviour<br>
• Abstract must be submitted on or before <b>Feb 15, 2017</b> to <b>vision.mech@psgitech.ac.in</b><br>
• Use of loose electrical connections, flames and hazardous materials in the arena room should be avoided</p>
<p><b>SETUP</b><br>
• Setup time before first attempt – 120 minutes<br>
• Number of chances to show model – 2<br>
• Setup time between two trials – 20 minutes<br>
• Second trial given will have point reduction of 10% from the scores obtained</p>
<p><b>JUDGING CRITERION</b><br>
• Innovation<br>
• Visibility of steps<br>
• Theme based demonstration<br>
• Continuity without any human intervention<br>
• Recycled/scavenged materials used<br>
• Number of conversions</p>
<p><b>PENALTIES</b><br>
• Run Length exceeded<br>
• Human Intervention<br>
• Deviation from the initial design report</p>
<p><b>ABSTRACT DETAILS</b><br>
• Details of all participants with contact numbers<br>
• E-mail ID for further contact<br>
• Summary of contraption<br>
• Total number of energy conversions<br>
• Number of innovative steps<br>
• Detailed write up of each and every step</p>
<p><b>CONTACT DETAILS</b><br>
Mani Shankar : 9677437659<br>
Jothi Saravanan : 9042073063</p>
<button type="button" class="btn btn-default btn-block" onclick="regi()">Register</button>
</div>
</div>
</div>
</div>
<div id="mytechiequiz" class="modal fade" role="dialog" >
<div class="modal-dialog" >
<!-- Modal content-->
<div class="modal-content" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Techie Quiz</h4>
</div>
<div class="modal-body">
<p>Hey Wizards!!!</p>