-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·993 lines (879 loc) · 38.3 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
<!DOCTYPE html>
<html>
<head>
<!-- Meta info -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Official website of init.">
<meta name="author" content="The init Crew">
<title>Home | #!nit</title>
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" />
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- UIkit -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.28/css/uikit.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.28/js/uikit.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.28/js/uikit-icons.min.js"></script>
<!-- Misc Plugins -->
<link rel='stylesheet' href='assets/css/animate.css' />
<!-- Cool animations -->
<link rel='stylesheet' href='assets/css/font-awesome.min.css' />
<!-- Font Awesome Icons -->
<!-- Our resources -->
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="shortcut icon" href="assets/img/favicon.png" />
<script type="text/javascript" src="assets/js/main.js"></script>
<script type="text/javascript" src="assets/js/terminal2.js"></script>
<script type="text/javascript" src="assets/js/calendar.js"></script>
</head>
<body data-spy="scroll" data-target=".uk-dotnav" data-offset="50">
<!-- Preloader Begin-->
<div class="preloader" style="">
<center>
<div style="margin-top : 250px; vertical-align: middle !important;">
<div class="heart-rate">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px"
height="73px" viewBox="0 0 150 73" enable-background="new 0 0 150 73" xml:space="preserve">
<polyline fill="none" stroke="#009B9E" stroke-width="3" stroke-miterlimit="10" points="0,45.486 38.514,45.486 44.595,33.324 50.676,45.486 57.771,45.486 62.838,55.622 71.959,9 80.067,63.729 84.122,45.486 97.297,45.486 103.379,40.419 110.473,45.486 150,45.486"
/>
</svg>
<div class="fade-in-hr"></div>
<div class="fade-out-hr"></div>
</div>
</div>
</center>
</div>
<script>
</script>
<!-- Preloader End -->
<!-- FLOATING OBJECTS DEFINED HERE -->
<!-- Logo on top left. -->
<div class="hashlogo hidden" style="position: fixed; top: 10px; left: 15px; z-index: 999;">
<a href="#home" uk-scroll>
<img class="img img-responsive" style="height:35px;" src="assets/img/icon.png">
</a>
</div>
<!-- The Dotted Navigation -->
<div id="dot-nav" class="uk-position-center-right uk-position-medium" style="position: fixed !important; z-index: +1;">
<ul class="uk-dotnav uk-dotnav-vertical" uk-scrollspy-nav="closest: li; scroll: true; offset: 30">
<li class="uk-active" title="Home" uk-tooltip="pos: left">
<a href="#home" uk-scroll>Home</a>
</li>
<li title="#!nit" uk-tooltip="pos: left">
<a href="#init" uk-scroll>#!nit</a>
</li>
<li title="Scripts" uk-tooltip="pos: left">
<a href="#scripts" uk-scroll>Scripts</a>
</li>
<li title="ASD" uk-tooltip="pos: left">
<a href="#asd" uk-scroll>ASD</a>
</li>
<li title="Workshops" uk-tooltip="pos: left">
<a href="#workshops" uk-scroll>Workshops</a>
</li>
<li title="Members" uk-tooltip="pos: left">
<a href="#members" uk-scroll>Members</a>
</li>
<li title="IEEE Compsoc" uk-tooltip="pos: left">
<a href="#IEEE" uk-scroll>IEEE CompSoc</a>
</li>
</ul>
</div>
<!-- Someone please tell me what this does? -->
<div id="menu-icon" style="position: fixed; top:10px; right:10px; z-index: 1001 !important;" uk-toggle="target: #offcanvas-nav-primary">
</div>
<!-- Again, what the hell is this? If not required, please delete. -->
<!-- <button class="uk-button uk-button-default uk-margin-small-right" type="button">Primary Nav</button> -->
<div class="uk-offcanvas-content">
<div id="offcanvas-nav-primary" uk-offcanvas="overlay: false; flip: true">
<div class="uk-offcanvas-bar uk-flex uk-flex-column" style="background-color: #000; width:100vw; z-index: -1; letter-spacing: 2px; font-size : 32px;">
<ul class="uk-nav uk-nav-primary uk-nav-center uk-margin-auto-vertical" uk-scrollspy-nav="closest: li; scroll: true">
<li class="uk-active">
<a href="#home" uk-scroll>Home</a>
</li>
<li>
<a href="#init" uk-scroll>#!nit</a>
</li>
<li>
<a href="#scripts" uk-scroll>Scripts</a>
</li>
<li>
<a href="#asd" uk-scroll>ASD</a>
</li>
<li>
<a href="#workshops" uk-scroll>Workshops</a>
</li>
<li>
<a href="#members" uk-scroll>Members</a>
</li>
<li>
<a href="#IEEE" uk-scroll>IEEE CompSoc</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Does this still do anything other than set the background? -->
<div id="particles-js"></div>
<!-- <div id="fullpage"> -->
<!-- FLOATING OBJECTS END HERE -->
<!-- HOME SECTION BEGINS HERE -->
<section id="home" class="section active" style="width: 100%; min-height: 100vh;">
<!-- Logo -->
<div class="col-md-6 col-md-offset-3 text-center" id="logo-area">
<center>
<img class="img img-responsive" style="max-height:180px;" src="assets/img/logo.png">
<h3 class="uk-heading-line uk-text-center">
<span>Code With Us</span>
</h3>
</center>
<!-- Terminal -->
<div class="col-sm-6 col-sm-offset-3 center-block term-input" id="cons">
<main class="prompt" style="color: #55ff55;">
<span>Android Workshop 1.0 on April 18</span>
</main>
</div>
<script type="text/javascript">
// Check assets/js/terminal.js for the rest of the code
$(document).ready(function () {
setTimeout(function () {
$(".preloader").hide(100);
$("body").addClass("scrollY");
terminal('.prompt span');
}, 1000);
});
</script>
</div>
</section>
<!-- HOME SECTION ENDS HERE -->
<!-- INIT SECTION BEGINS HERE -->
<section id="init" style="width: 100%" class="section uk-padding-large">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program init begin
</h3>
</div>
<div class="col-sm-12">
<div class="row container">
<div class="col-md-6 uk-padding-large uk-padding-remove-vertical main-content">
<p class="text-justify" style="color:#426E86; font-size: 18px !important">
<span>#!nit</span> was an idea born of the necessity for change, a change that would take you from the drawing
board of the classroom to pragmatic code. We built
<span>#!nit</span>
to instil a culture of collaborative hacking and to forge a platform for collective growth.
<span>#!nit</span> is our love for code, pursued to share this passion among others.
<span>#!nit</span> is our revolution to the everyday monotony of college.
<span>#!nit</span> is our contribution to growing a community we owe much to.
<br>
<br> Init is our movement. Be a part of our movement.
</p>
</div>
<div id="svg-logos" class="col-md-6 uk-margin-large uk-margin-remove-vertical">
<div class="row uk-margin uk-margin-remove-horizontal">
<img class="img img-responsive pull-right" style="max-height: 400px !important;" src="assets/img/logo.png">
</div>
<br>
<br>
<br>
<div class="main-content text-right" style="color:#426E86;">
<span style="font-size: 18px">For the
<span style="color:firebrick">❤</span> of Open Source
<br>
</span>
The
<span style="font-family: monospace; font-weight: bold">#!nit</span> Crew
</div>
</div>
</div>
</div>
<div class="col-sm-12 uk-padding uk-padding-remove-top">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program init end
</h3>
</div>
</div>
</div>
</section>
<!-- INIT SECTION ENDS HERE -->
<!-- SCRIPTS SECTION BEGINS HERE -->
<section id="scripts" uk-scrollspy="cls:uk-animation-fade;repeat:true;" style="width: 100%" class="section uk-padding-large">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">program scripts begin</h3>
</div>
<div class="col-sm-12">
<div class="row container">
<div class="col-md-6 uk-padding-large uk-padding-remove-vertical main-content">
<p class="text-justify" style="color:#426E86; font-size: 18px !important">
Scripts have been designed with a focus on core programming skills to give you a boost into development. Each session will
walk you across the basics of a programming language or framework and gear you with enough intel to guide
your progress through the murky waters of the Internet.
<br>
<br> Each Script will be conducted over a duration of two consecutive days, two post-college sessions of 1 hour
each. We intend to conduct these Scripts in college class rooms and therefore will limit seating to 80 students.
</p>
</div>
<div class="col-md-6 uk-padding uk-padding-remove-bottom main-content" style="padding-top:0px;">
<!-- This really needs to be fixed. -->
<div class="panel-group" id="scriptsAccord">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#scriptsAccord" href="#javascript">
JavaScript: The Chocolate Sauce to the Vanilla Web</a>
</h4>
</div>
<div id="javascript" class="panel-collapse collapse">
<div class="panel-body">
<center>
<table>
<tr>
<td>
<b>Date</b>
</td>
<td class="data">20th and 21st February</td>
</tr>
<tr>
<td>
<b>Time</b>
</td>
<td class="data">3:45 to 5:00 p.m.</td>
</tr>
<tr>
<td>
<b>Venue</b>
</td>
<td class="data">Seminar Hall 1</td>
</tr>
<tr>
<td>
<b>By</b>
</td>
<td class="data">Harsha Vamsi & Ankit Sinha</td>
</tr>
</table>
<center>
<a class="btn register" href="http://slides.com/harshavamsi/deck-1#/" target="_blank">Slide Deck</a>
</center>
</center>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#scriptsAccord" href="#python">
Python: Where Magic Meets Code</a>
</h4>
</div>
<div id="python" class="panel-collapse collapse in">
<div class="panel-body">
<center>
<table>
<tr>
<td>
<b>Date</b>
</td>
<td class="data">20th and 21st March</td>
</tr>
<tr>
<td>
<b>Time</b>
</td>
<td class="data">3:45 to 5:00 p.m.</td>
</tr>
<tr>
<td>
<b>Venue</b>
</td>
<td class="data">Room 201</td>
</tr>
<tr>
<td>
<b>By</b>
</td>
<td class="data">Abhijit Theophilus & Prateek Gupta</td>
</tr>
<tr>
<td class="data regclosed" colspan="2">Registrations open on 17th March (Saturday)</td>
</tr>
</table>
<!-- <a class="btn register">Registrations are now closed. Sorry!</a> -->
</center>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#scriptsAccord" href="#science">
Scientific Computing: The Portal to Mad Power</a>
</h4>
</div>
<div id="science" class="panel-collapse collapse">
<div class="panel-body">
<center>
<span class="disclaimer">Details to be disclosed soon.</span>
<center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 uk-padding uk-padding-remove-top">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program scripts end
</h3>
</div>
</div>
</div>
</section>
<section id="asd" uk-scrollspy="cls:uk-animation-fade;repeat:true;" style="width: 100%" class="section uk-padding-large">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program asd begin
</h3>
</div>
<div class="row container uk-padding-large uk-padding-remove-vertical">
<div class="col-sm-6 text-left">
<!-- My own motherfucking calendar. Fuck this shit. -->
<table class="calendar">
<tr class="month">
<th colspan="7">
<button id="prev" onclick="prevMonth()">❮</button>
<span id="monthname"></span>
<button id="next" onclick="nextMonth()">❯</button>
</th>
</tr>
<tr class="daysoftheweek">
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</table>
</div>
<br>
<div class="col-sm-6 main-content text-justify" style="color: #426E86; font-size: 18px">
In order to broaden our reach to you, we intend to conduct the ASD classes, bringing Appealing yet Significant Discussions
regarding the approach and resources required to enter the world of Computer Science.
<br>
<br> An application oriented series of talks, we intend to touch upon various aspects of programming in terms of
our experiences and expertise as well as aspects of practical need, such as placements, competitive coding, project
management, etc.
</div>
</div>
<div class="col-sm-12 uk-padding uk-padding-remove-top">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program asd end
</h3>
</div>
</div>
</div>
</section>
<!-- SCRIPTS SECTION ENDS HERE -->
<!-- WORKSHOP SECTION BEGINS HERE -->
<!-- Is there no way we can include this? :/ -->
<section id="workshops" uk-scrollspy="cls:uk-animation-fade;repeat:true;" style="width: 100%" class="section uk-padding-large">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">program workshops begin</h3>
</div>
<div class="uk-padding-large uk-padding-remove-bottom ">
<p class="main-content" style="color:#426E86; font-size: 18px !important">
Workshops will be more detailed, hands-on events that focus on taking you from the 101s of a skill to prepping you to use
your newfound abilities in practical environments. Each workshop focuses on a core upcoming subfield in Computer
Science and arms you with a working understanding of its fundamentals and reach.
<br> Workshops will be conducted on a weekend, or a holiday and will be wrapped up at lunch. We know no one likes
to spend a Sunday afternoon in college, we'll ensure you won't have to. The Workshop may span a day or two depending
on the content being presented.
</p>
<div class="promos">
<div class="promo first">
<ul class="features">
<li class="brief">The Web in 6 Hours</li>
<li>A Workshop on</li>
<li class="price">Full Stack Web Development</li>
<li> </li>
<li>
<i>Details to be disclosed soon.</i>
</li>
<li> </li>
</ul>
</div>
<div class="promo third">
<ul class="features">
<li class="brief">Predicting the Future through Math</li>
<li>A Workshop on</li>
<li class="price">Data Science</li>
<li> </li>
<li>
<i>Details to be disclosed soon.</i>
</li>
<li> </li>
</ul>
</div>
<div class="promo second">
<ul class="features">
<li class="brief"> </li>
<li> </li>
<li class="price">
<small>To be Announced Later.</small>
</li>
<li> </li>
<li> </li>
<li> </li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program workshops end
</h3>
</div>
</div>
</div>
</section>
<!-- WORKSHOP SECTION ENDS HERE -->
<!-- MEMBERS SECTION BEGINS HERE -->
<section id="members" style="min-height: 100vh;" uk-scrollspy="cls:uk-animation-fade;repeat:true;" class="section uk-padding-large">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-top">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program members begin
</h3>
</div>
<!-- JERRY'S SECTION -->
<section class="container">
<div class="row active-with-click">
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Blue-Grey">
<h2>
<span class="memname">Abhijit Theophilus</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/jerry.jpg">
</div>
<div class="mc-description">
An ardent Coder. A passionate Gamer.
<br> A love for Coffee and Conversation.
<br> A strong believer in collective growth,
<br> persistence and a free-spirited mindset.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone">+91 78990 79069</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/jerrytheo/"></a>
</span>
</div>
</article>
</div>
<!-- SOMYA'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Grey">
<h2>
<span class="memname">Somya Bansal</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/somya.jpg">
</div>
<div class="mc-description">
A student, listener and learner. A logical person who's great at organising. Love music, singing, bad puns and jokes.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone-alt">+91 97408 81851</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/somya-bansal/"></a>
</span>
</div>
</article>
</div>
<!-- VAMSI'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Blue-Grey">
<h2>
<span class="memname">Harsha Vamsi</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/vamsi.jpg">
</div>
<div class="mc-description">
Passionate programmer and tech enthusiast. Love working with new frameworks and building cool new open source projects. </div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone">+91 80500 12762</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/harshavamsi/"></a>
</span>
</div>
</article>
</div>
<!-- KRISHNA'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Grey">
<h2>
<span class="memname">Krishna Chaitanya</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/krishna.jpg">
</div>
<div class="mc-description">
Final year Comp Science engineer, with a hint of knowledge in technology. Like to listen to anything interesting.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone-alt">+91 77601 49491</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="https://github.com/krishnamadgula/"></a>
</span>
</div>
</article>
</div>
<!-- SANDRA'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Blue-Grey">
<h2>
<span class="memname">Sandra Anil</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/sandra.jpg">
</div>
<div class="mc-description">
High-energy, enthusiastic person with a passion for technology. I love solving problems and developing systems to tackle
challenges in our everyday life.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone">+91 80950 08686</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/sandra44/"></a>
</span>
</div>
</article>
</div>
<!-- PRATEEK'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Grey">
<h2>
<span class="memname">Prateek Gupta</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/Prateek.jpg">
</div>
<div class="mc-description">
Physical Hacker!
<br> Trying to build stuff by breaking them first.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone-alt">+91 79752 11160</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/KalariMonk/"></a>
</span>
</div>
</article>
</div>
<!-- ANKIT'S SECTION -->
<div class="col-md-4 col-md-offset-2 col-sm-6 col-xs-12">
<article class="material-card Blue-Grey">
<h2>
<span class="memname">Ankit Sinha</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/ankit.jpg">
</div>
<div class="mc-description">
Full time science student, love dogs, can build stuff.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone">+91 87895 51015</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/ankitksinha/"></a>
</span>
</div>
</article>
</div>
<!-- ARKO'S SECTION -->
<div class="col-md-4 col-sm-6 col-xs-12">
<article class="material-card Grey">
<h2>
<span class="memname">Arkoprabho Bhattacharjee</span>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="assets/img/arko.jpg">
</div>
<div class="mc-description">
Determined dreamer. Poet. Artist.
<br> Also, a guy who tends to be specifically random at times! :P
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<span style="float:left">
<div class="phone-alt">+91 90360 57140</div>
</span>
<span style="float: right; padding-right: 10px;">
<a href="mailto:[email protected]" class="fa fa-fw fa-envelope"></a>
<a class="fa fa-fw fa-github" target="_blank" href="http://github.com/arko97x/"></a>
</span>
</div>
</article>
</div>
</div>
</section>
<script>
$(document).ready(function () {
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<!-- Why is this here and not in a css file? -->
<style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
</style>
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program members end
</h3>
</div>
</div>
</div>
</section>
<!-- MEMBER SECTION ENDS HERE -->
<!-- IEEE SECTION BEGINS HERE -->
<section id="IEEE" uk-scrollspy="cls:uk-animation-fade;repeat:true;" style="width: 100%; min-height: 100vh;" class="section uk-padding-large uk-padding-remove-vertical">
<div class="container">
<div class="row">
<div class="col-sm-12 uk-padding uk-padding-remove-bottom">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program compsoc begin
</h3>
</div>
<div class="col-sm-12">
<div class="row container">
<div class="col-md-5 uk-margin-large pull-right">
<center>
<img class="img img-responsive" src="assets/img/pesitcs.png" uk-scrollspy="cls:uk-animation-fade">
</center>
</div>
<div class="col-md-7 uk-padding-large uk-padding-remove-vertical pull-left main-content">
<p style="color:#426E86; font-size: 18px" class="text-justify">
PESITSouth IEEE Computer Society was started in 2017 by the Computer Science Department of PESIT South Campus. We organize
workshops, seminars and renowned events like inGenius (annual) and the Pursuit (bi-annual Online Treasure
Hunt)!
</p>
</div>
</div>
<div class="row container">
<div class="col-md-5 uk-margin-large pull-right">
<center>
<img class="img img-responsive" src="assets/img/bangcs.png" uk-scrollspy="cls:uk-animation-fade">
</center>
</div>
<div class="col-md-7 uk-padding-large uk-padding-remove-vertical pull-left main-content">
<p style="color:#426E86; font-size: 18px" class="text-justify">
The IEEE Computer Society is the world's leading membership organization dedicated to computer science and technology. Serving
more than 60,000 members, the IEEE Computer Society is the trusted information, networking, and career-development
source for a global community of technology leaders that includes researchers, educators, software engineers,
IT professionals, employers, and students.
</p>
</div>
</div>
</div>
<div class="col-sm-12 uk-padding uk-padding-remove-top">
<h3 style="color:#2F3131; font-family: monospace !important; font-weight: bold" uk-scrollspy="cls:uk-animation-slide-left">
program compsoc end
</h3>
</div>
</div>
</div>
</section>
<!-- IEEE SECTION ENDS HERE -->
<!-- FOOTER BEGINS HERE -->
<section id="footer" class="footer">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center" style="padding-bottom: 10px;">
<span class="made-with" style="color:#2F3131">Made with
<span style="color:firebrick">❤</span> by the #!nit crew</span>
</div>
</div>
</div>
</section>
<!-- FOOTER BEGINS HERE -->
<!-- What are all these functions here for?
Can we please clean this up? -->
<script>
$(function () {
$('.material-card > .mc-btn-action').click(function () {
var card = $(this).parent('.material-card');
var icon = $(this).children('i');
icon.addClass('fa-spin-fast');
if (card.hasClass('mc-active')) {
card.removeClass('mc-active');
window.setTimeout(function () {
icon
.removeClass('fa-arrow-left')
.removeClass('fa-spin-fast')
.addClass('fa-bars');
}, 800);
} else {
card.addClass('mc-active');
window.setTimeout(function () {
icon
.removeClass('fa-bars')
.removeClass('fa-spin-fast')
.addClass('fa-arrow-left');
}, 800);
}
});
});
</script>
<script type="text/javascript" src="assets/js/svg.min.js"></script>
<script>
var menu = SVG('menu-icon').size(60, 60);
var item = menu.line(0, 10, 50, 10).move(0, 10);
item.stroke({
color: '#2d9687',
width: 5,
linecap: 'round'
});
var item2 = menu.line(0, 25, 50, 25).move(0, 25);
item2.stroke({
color: '#2d9687',
width: 5,
linecap: 'round'
});
var item3 = menu.line(0, 40, 50, 40).move(0, 40);
item3.stroke({
color: '#2d9687',
width: 5,
linecap: 'round'
});
</script>
<script type="text/javascript" src="assets/js/jquery.nicescroll.min.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-67302990-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="assets/js/classie.js"></script>
<!-- This breaks the logo. -->
<!-- <script type="text/javascript" src="assets/js/svganimations2.js"></script> -->
</body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-101348891-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-101348891-2');
</script>
</html>