-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
1743 lines (1635 loc) · 100 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="en">
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0" author="Shubham">
<title>IEEE-NSUT</title>
<!-- Load Roboto font -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!-- Load css styles -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/pluton.css" />
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="css/pluton-ie7.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/jquery.cslider.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.bxslider.css" />
<link rel="stylesheet" type="text/css" href="css/animate.css" />
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/apple-touch-icon-72.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57.png">
<link rel="shortcut icon" href="images/ico/favicon.png">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a href="#home" class="brand">
<img src="images/logo2.png" width="100%" height="100%" alt="Logo" />
<!-- This is website logo -->
</a>
<!-- Navigation button, visible on small resolution -->
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-menu"></i>
</button>
<!-- Main navigation -->
<div class="nav-collapse collapse pull-right">
<ul class="nav" id="top-navigation">
<!-- <li class="active"><a href="#home">Home</a></li> -->
<li class="active"><a href="#">TechWeek'20</a></li>
<li><a href="https://hacknsut.ieeensut.com/">hackNSUT</a></li>
<li><a href="#service">About Us</a></li>
<li><a href="#portfolio">Past Events</a></li>
<li><a href="#about">Our Team</a></li>
<!-- <li><a href="#clients">Hall of Fame</a></li> -->
<li><a href="#price">IEEE-NSUT Chapters</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!-- End main navigation -->
</div>
</div>
</div>
<!-- Start home section -->
<div id="home">
<!-- Start cSlider -->
<div id="da-slider" class="da-slider" style="background: url('images/slider_alt.jpg');">
<div class="triangle" ></div>
<!-- mask elemet use for masking background image -->
<div class="mask"></div>
<!-- All slides centred in container element -->
<div class="container">
<div class="da-slide">
<h2 class="fittext2">TechWeek'20</h2>
<h4>27-29th March</h4>
<!--<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane.</p>-->
<!--<a href="#" class="da-link button">Read more</a>-->
<div class="da-img">
<img class="img-responsive" src="images/logo.png" width="250" alt="image01" >
</div>
</div>
<!-- Start first slide -->
<div class="da-slide">
<h2 class="fittext2">Welcome to IEEE-NSUT</h2>
<h4>Advancing Technology<br /> for Human Welfare</h4>
<!--<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane.</p>-->
<!--<a href="#" class="da-link button">Read more</a>-->
<div class="da-img">
<img class="img-responsive" src="images/logo.png" width="250" alt="image01" >
</div>
</div>
<!-- End first slide -->
<!-- Start second slide -->
<div class="da-slide">
<h2>We help you Create</h2>
<h4>"People who are crazy enough to think<br /> they can change the world are <br /> the ones who do" - Steve Jobs</h4>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>-->
<!--<a href="#" class="da-link button">Read more</a>-->
<div class="da-img">
<img src="images/logo.png" width="250" alt="image02">
</div>
</div>
<!-- End second slide -->
<!-- Start third slide -->
<div class="da-slide">
<h2>We Believe</h2>
<h4>We're not just about using technology,<br /> we live technology.</h4>
<!--<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>-->
<!--<a href="#" class="da-link button">Read more</a>-->
<div class="da-img">
<img src="images/logo.png" width="250" alt="image03">
</div>
</div>
<!-- Start third slide -->
<!-- Start cSlide navigation arrows -->
<div class="da-arrows">
<span class="da-arrows-prev"></span>
<span class="da-arrows-next"></span>
</div>
<!-- End cSlide navigation arrows -->
</div>
</div>
</div>
<!-- End home section -->
<!-- Service section start -->
<div class="section primary-section" id="service">
<div class="container">
<!-- Start title section -->
<div class="title">
<h1><strong>ABOUT US</strong></h1>
<!-- Section's title goes here -->
<!--Simple description for section goes here. -->
</div>
<div class="row-fluid title">
<p align="justify">Started back in 2001, IEEE-DIT has now grown into a multi-faceted chapter, empowering young engineers to enhance their skills and set up milestones in the history of IEEE NSUT. Our foremost objective is to create an environment which promotes students to learn technical knowledge, inculcate managerial skills and develop their overall personalities. We achieve this by sponsoring technical projects, providing opportunities to manage and organize events and to participate in various events and conferences at state as well as national level. IEEE-NSUT Student Branch works to create an atmosphere of technical excellence for the students. It aims at helping students in building an attitude towards applying engineering in daily life by learning ways to use the latest technology on offer.</p>
<br />
<p align="left"><span style="font-weight:bold">Our vision is to</span></p>
<br />
<p align="left">
<span style="font-weight:bold">I.</span> Foster technical initiatives and innovation among students.<br />
<span style="font-weight:bold">II.</span> Add to their qualifications by enabling them to learn new skills.<br />
<span style="font-weight:bold">III.</span> Serve as a forum for collaboration in technical projects.<br />
<span style="font-weight:bold">IV.</span> Equip engineers in the making with the right kind of leadership and interpersonal skills.<br />
<span style="font-weight:bold">V.</span> Define a vision for present and future student members to work forward </p>
</div>
<div class="row-fluid">
<div class="span4">
<div class="centered service">
<!--<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service1.png" alt="service 1">
</div>-->
<h3>Building Foundations</h3>
<p>IEEE-NSUT acknowledges the wide disparity in Students’ skill sets and exposure as they first enter college. We ensure all members get the optimum chance to learn.</p>
</div>
<div class="row">
<p>
</p>
</div>
</div>
<div class="span4">
<div class="centered service">
<!--<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service2.png" alt="service 2" />
</div>-->
<h3>Nurturing Talents</h3>
<p>IEEE-NSUT conducts several workshops and engages its members in exciting projects, also provides them with an unparalleled exposure by organizing distinguished events.</p>
</div>
<div class="row">
<p>
</p>
</div>
</div>
<div class="span4">
<div class="centered service">
<!--<div class="circle-border zoom-in">
<img class="img-circle" src="images/Service3.png" alt="service 3">
</div>-->
<h3>Generating Outputs</h3>
<p>Throughout the years, IEEE NSUT has consistently produced illustrious professionals, widely recognized and reputed for their contributions to different tech domains.</p>
</div>
<div class="row-fluid">
<p>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service section end -->
<!-- Portfolio section start -->
<div class="section secondary-section " id="portfolio">
<div class="triangle"></div>
<div class="container">
<div class=" title">
<h1><strong>PAST EVENTS</strong></h1>
<!--<p>Duis mollis placerat quam, eget laoreet tellus tempor eu. Quisque dapibus in purus in dignissim.</p>-->
</div>
<ul class="nav nav-pills">
<li class="filter" data-filter="all">
<a href="#noAction">All</a>
</li>
<!--<li class="filter" data-filter="web">
<a href="#noAction">Web</a>
</li>-->
<!--<li class="filter" data-filter="photo">
<a href="#noAction">Photo</a>
</li>-->
<!--<li class="filter" data-filter="identity">
<a href="#noAction">Identity</a>
</li>-->
</ul>
<!-- Start details for portfolio project 1 -->
<div id="single-project">
<div id="slidingDiv" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/mba india and abroad.png" alt="project 1" />
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>What after BTech? MBA or MS?</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>5th May 2020, Tuesday</div>
</div>
<p>IEEE NSUT organized a webinar on "What after BTech? MBA or MS?".
The speakers for the webinar will be Alok Bansal - An Expert Career Counselor & Mentor. He
has completed his post-graduation in management from Xavier Institute of Management and
engineering from DTU.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 1 -->
<!-- Start details for portfolio project 2 -->
<div id="slidingDiv1" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/nlp toolkit.png" alt="project 2">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Webinar on Python Natural Language Toolkit</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>8th june 2020</div>
</div>
<p>The Student Branch Chapter of IEEE Computer Society, The North Cap
University in collaboration with Netaji Subhas University of Technology, Delhi and Bhilai Institute
of Technology, Durg organized a Webinar in their webinar series: Technologies that make a
Difference. </p>
</div>
</div>
</div>
<!-- End details for portfolio project 2 -->
<!-- Start details for portfolio project 3 -->
<div id="slidingDiv2" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/image processing and CV.png" alt="project 3">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Industrial Scope of Image Processing and Computer Vision</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>20th june 2020</div>
</div>
<p>IEEE NSUT conducted a Webinar on "Image Processing and Computer
Vision" in collaboration with Dr. Karthik Seemakurthy, research scientist at TCS Innovation labs,
and someone who is pushing the boundaries of technology with innovations in this field. His
achievements are innumerable and his experience is worth listening.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 3 -->
<!-- Start details for portfolio project 4 -->
<div id="slidingDiv3" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/competitive prog.png" alt="project 4">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Problem Solving Strategies for Competitive coding</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>5th July 2020</div>
</div>
<p>CoDeARTS, an SIG of IEEE The NorthCap University SB in collaboration
with IEEE NSUT, conducted a LIVE WEBINAR for the very first time on the topic Problem
Solving Strategies for competitive Coding.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 4 -->
<!-- Start details for portfolio project 5 -->
<div id="slidingDiv4" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/ieee and benefits.png" alt="project 5">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>IEEE and its Benefits</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>20th July 2020</div>
</div>
<p>IEEE NSUT, IEEE GTBIT and seven SB's in collaboration with IEEE Delhi
Section conducted a Webinar on "IEEE and its Benefits". We discussed how IEEE as a society
benefits us and the environment, we live in.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 5 -->
<!-- Start details for portfolio project 6 -->
<div id="slidingDiv5" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/medical devices design and imaging system.png" alt="project 6">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Medical Devices Design and Imaging Systems</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>5th august 2020</div>
</div>
<p>IEEE NSUT conducted a Webinar on "Medical Devices Design and
Imaging Systems" in collaboration with Mr. Renjith CV, Electrical Architect - Medical Imaging at
Philips Healthcare. He has 16+ years of experience in Medical Device Design with expertise in
X-Ray Imaging Chain Design for Cathlab, C-Arm & Diagnostic X-Ray Systems. His experience
speaks more than any other achievement so just grab this opportunity.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 6 -->
<!-- Start details for portfolio project 7 -->
<div id="slidingDiv6" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/smp.png" alt="project 7">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Introduction to Student Mentorship Program</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>2nd October 2020</div>
</div>
<p>IEEE NSUT hosted a webinar to introduce the juniors with the upcoming
Student Mentorship program. It was an interactive session, attended by around 45 students,
where we discussed about the required skillset to match up today’s technological and industrial
requirements. We also discussed various projects and the right sources to research about these
projects. This session was only the 1st of the upcoming many.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 7 -->
<!-- Start details for portfolio project 8 -->
<div id="slidingDiv7" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/ieee orientation.png" alt="project 8">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>IEEE NSUT ORIENTATION</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>30th December 2020</div>
</div>
<p>IEEE NSUT organized its orientation in month of December for the Batch of
2020-2024. Response of student was good,around 120 Student attended the orientation..</p>
</div>
</div>
</div>
<!-- End details for portfolio project 8 -->
<!-- Start details for portfolio project 9 -->
<div id="slidingDiv8" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/writing research article.png" alt="project 9">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Getting yourself Published</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>9th January 2021</div>
</div>
<p>IEEE NSUT, in collaboration with Wise Up Communications, organized a
LIVE SESSION on the topic "Getting Yourself Published - How to write a research article?".</p>
</div>
</div>
</div>
<!-- End details for portfolio project 9 -->
<div id="slidingDiv9" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/c++ basic.png" alt="project 10">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>C++ SIG Beginner</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>YOUTUBE LIVE</div>
<div>
<span>Date</span>17th January 2021</div>
</div>
<p>Topics covered in the first SIG:
1. Setting up coding environment
2. Data types
3. Variables
4. Operators
5. Conditionals
6. Loops
</p>
</div>
</div>
</div>
<div id="slidingDiv10" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/c++ intermediate.png" alt="project 11">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Intermediate Level C++ SIG</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ONLINE</div>
<div>
<span>Date</span>31st January 2021</div>
</div>
<p>IEEE NSUT will be conducting its first Intermediate Level C++ SIG on
Sunday, 31st January 2021.
Topics covered in the first SIG:
1. Pointers
2. Linked Lists
</p>
</div>
</div>
</div>
<div id="slidingDiv11" class="toggleDiv row-fluid single-project" >
<div class="span6">
<img src="images/events/professional growth.png" alt="project 12">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>IEEE As A Professional Society for Growth in Career</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>CISCO WEBEX</div>
<div>
<span>Date</span>4th February 2021</div>
</div>
<p>IEEE NSUT conducted a LIVE SESSION decoding IEEE As A Professional
Society for Growth in Career
Through our webinar, we helped students gain insights on the benefits and hierarchy of IEEE,
volunteering and much more.
</p>
</div>
</div>
</div>
<div id="slidingDiv12" class="toggleDiv row-fluid single-project" >
<div class="span6">
<img src="images/events/data scientist.png" alt="project 13">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>DATA SCIENTIST</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>MICROSOFT TEAMS</div>
<div>
<span>Date</span>27th February 2021</div>
</div>
<p>IEEE NSUT conducted a webinar on “Data Scientist: The sexiest career of
the 21st Century " by Dr. Angshuman Ghosh. He touched the areas of research in Data science,
scope of Data science, How to start a career in the field of Data Analytics and Data science.
</p>
</div>
</div>
</div>
<div id="slidingDiv13" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Orientation.jpg" alt="project 14" />
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>IEEE NSUT ORIENTATION</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>New Block</div>
<div>
<span>Date</span>August 2019</div>
</div>
<p>An orientation on IEEE Organization and the working of IEEE NSUT- from the SIG
workshops to Mentorship Programme to regularly organized conferences and vast IEEE Alumni
Network.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 1 -->
<!-- Start details for portfolio project 2 -->
<div id="slidingDiv14" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/Demistify.jpg" alt="project 15">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>Quick Code</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>ICE CONFERENCE ROOM</div>
<div>
<span>Date</span>August 2019</div>
</div>
<p>IEEE NSUT in partnership with Coding Ninjas organized Quick Code on Day 1 of Innovision'19. We would like to thank all
the participants for their enthusiasm towards the event and help to make it a success.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 2 -->
<!-- Start details for portfolio project 3 -->
<div id="slidingDiv15" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Collapsible.jpg" alt="project 16">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>ELECTONICS-SIG</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>New Block</div>
<div>
<span>Date</span>September 2019</div>
</div>
<p>IEEE NSUT was cheered up by the enthusiasm of all the students who attended the SIG on electronics on Wednesday,
11th September.
We conducted more SIGs on electronics and programming after mid sems.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 3 -->
<!-- Start details for portfolio project 4 -->
<div id="slidingDiv16" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\entre talk.jpg" alt="project 17">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>WORKSHOP ON GAME DEVELOPMENT (In association with Coding Blocks)</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Main Auditorium</div>
<div>
<span>Date</span>October 2019</div>
</div>
<p>A workshop for the learning of basic concepts of game designing and
development and the tools used to do the same along with creating two of your own games.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 4 -->
<!-- Start details for portfolio project 5 -->
<div id="slidingDiv17" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Speaker Session.jpg" alt="project 18">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>SPEAKER SESSION</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Main Auditorium</div>
<div>
<span>Date</span>August 2019</div>
</div>
<p>On 9th August, IEEE-NSUT, in collaboration with Lab-X Foundation, successfully organized a speaker session on
'Navigating to Build a Career in Autonomous Driving and Artificial Intelligence'. The session was given by Matt Lubbers,
Director of Systems Engineering at Voyage, and his wife Tara Lubbers, a senior talent acquisition leader at Amazon.
The session was a wonderful experience for both sides and provided excellent career oriented guidelines for the
audience. We would like to thank MicroGive for helping us out with this excellent event.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 5 -->
<!-- Start details for portfolio project 6 -->
<div id="slidingDiv18" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Ideathon.jpg" alt="project 19">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>CASE STUDY COMPETITION</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>NSUT</div>
<div>
<span>Date</span>August 2018</div>
</div>
<p>A Case-Study competition was successfully organized on 24th August 2018 by IEEE NSIT. The event was graced by Prof.
Sandeep Mann.
The event tested analysis and orientation skills of the participants with a case-study which further motivated them to
learn entrepreneurship.
The event was followed by an inspiring speech by Prof. Sandeep Mann and Mr. Manusheel Gupta about how to solve small
problems in life and move up the ladder successfully.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 6 -->
<!-- Start details for portfolio project 7 -->
<div id="slidingDiv19" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Placement Talk.jpg" alt="project 20">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>IEEE PLACEMENT TALK</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Mini Auditorium</div>
<div>
<span>Date</span>January 2019</div>
</div>
<p>An interactive session about the experiences of those seniors who have achieved
their dream jobs from journey to destiny.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 7 -->
<!-- Start details for portfolio project 8 -->
<div id="slidingDiv20" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\ML workshop.jpg" alt="project 21">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>MACHINE LEARNING WORKSHOP</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Mini Auditorium</div>
<div>
<span>Date</span>February 2019</div>
</div>
<p>Workshop on machine learning concepts, how to write algorithms and make
projects to remain updated and excel in the industry. Topics covered were- Intro to Machine
Learning, K Nearest Neighbours, KMeans Clustering and Project.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 8 -->
<!-- Start details for portfolio project 9 -->
<div id="slidingDiv21" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\google CS.jpg" alt="project 22">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>GOOGLE APPLIED CS WITH ANDROID WORKSHOP</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Mini Auditorium</div>
<div>
<span>Date</span>January 2017</div>
</div>
<p>An initiative to turn Computer Science theory into practice using the Android
platform. The session included a follow up talk on Google Asia Pacific Anita Borg Scholarship,
by a 2016 scholar herself. Using queues and trees for making some cool games.</p>
</div>
</div>
</div>
<!-- End details for portfolio project 9 -->
<div id="slidingDiv22" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images/events/Texas Instruments Workshop.jpeg" alt="project 23">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>TEXAS INSTRUMENTATION WOKSHOP</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>New Block</div>
<div>
<span>Date</span>September 2019</div>
</div>
<p>The workshop was conducted by industry experts from TI,it was a confluence of power electronics and
microprocessors with special focus on industrial application. The 2-day workshop provided hands-on experience on
TI Kits(provided by the TIers conducting the workshop) and covered the following tracks:
1) Renewable power generation technologies
2) Power Quality and Harmonics
3) Smart Grid Technologies
4) Control Design Techniques for Power Electronic Systems
5) PWM Converters and Applications
6) Advanced Topics in Power Electronics
7) Digital Simulation of Power Electronic Systems
</p>
</div>
</div>
</div>
<div id="slidingDiv23" class="toggleDiv row-fluid single-project">
<div class="span6">
<img src="images\events\Mentorship.jpg" alt="project 24">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>MENTORSHIP PROGRAM</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>Mini Auditorium</div>
<div>
<span>Date</span>October 2019</div>
</div>
<p>A guide to building interesting software based projects on Web Development, App
Development, Photoshop, Machine Learning, Python, Image Processing, Java and Animations
like Wireless Modem Configuration Wizard, Design of Prototypic Hand Talk Based on Assistive
Technology for Deaf, Speech Recognition and Synthesis for Linux etc. Also, An introduction to the starting of project and how is it done along with some
examples like Design and Implementation of Home Automation, Hi-Tech Wireless Equipment
Controlling System, Water Level Indicator and Filling Time Estimator etc.</p>
</div>
</div>
</div>
<div id="slidingDiv24" class="toggleDiv row-fluid single-project" >
<div class="span6">
<img src="images\events\Techweek.jpg" alt="project 25">
</div>
<div class="span6">
<div class="project-description">
<div class="project-title clearfix">
<h3>TECH WEEK 2019</h3>
<span class="show_hide close">
<i class="icon-cancel"></i>
</span>
</div>
<div class="project-info">
<div>
<span>Venue</span>NSUT</div>
<div>
<span>Date</span>April 2019</div>
</div>
<p>This is a uniue annual fest of IEEE-NSUT, in which students from various colleges visit and attend the events related to both software and hardware stream.
</p>
</div>
</div>
</div>
<ul id="portfolio-grid" class="thumbnails row">
<li class="span4 mix web">
<div class="thumbnail">
<!-- style="height:230px; width: 370px;" -->
<img src="images/events/mba india and abroad.png" alt="project 1">
<a href="#single-project" class="more show_hide" rel="#slidingDiv">
<i class="icon-plus"></i>
</a>
<h3>What after BTech? MBA or MS?</h3>
<p>SPEAKER: ALOK BANSAL</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix photo">
<div class="thumbnail">
<img src="images/events/nlp toolkit.png" alt="project 2">
<a href="#single-project" class="show_hide more" rel="#slidingDiv1">
<i class="icon-plus"></i>
</a>
<h3>Python Natural Language Toolkit</h3>
<p>SPEAKER: MS. VAISHALI KALRA</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix identity">
<div class="thumbnail">
<!-- style="height:235px; width: 370px;" -->
<img src="images/events/image processing and CV.png" alt="project 3">
<a href="#single-project" class="more show_hide" rel="#slidingDiv2">
<i class="icon-plus"></i>
</a>
<h3>Image Processing and Computer Vision</h3>
<p>SPEAKER: DR. KARTHIK SEEMAKURTHY</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix web">
<div class="thumbnail">
<!-- style="height:230px; width: 370px;" -->
<img src="images/events/competitive prog.png" alt="project 4" >
<a href="#single-project" class="show_hide more" rel="#slidingDiv3">
<i class="icon-plus"></i>
</a>
<h3>Strategies for Competitive coding</h3>
<p>SPEAKER: MR. SUMIT KUMAR</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix photo">
<div class="thumbnail">
<img src="images/events/ieee and benefits.png" alt="project 5" style="height:220px !important; width: 370px !important; ">
<a href="#single-project" class="show_hide more" rel="#slidingDiv4">
<i class="icon-plus"></i>
</a>
<h3>IEEE and its Benefits</h3>
<p>SPEAKER: PROF PRERNA GAUR</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix identity">
<div class="thumbnail">
<!-- style="height:220px; width: 370px;" -->
<img src="images/events/medical devices design and imaging system.png" alt="project 6" />
<a href="#single-project" class="show_hide more" rel="#slidingDiv5" >
<i class="icon-plus"></i>
</a>
<h3>Medical Design and Imaging Systems</h3>
<p style="text-transform: uppercase;">SPEAKER: MR. RENJITH CV</p>
<div class="mask"></div>
</div>
</li>
<li class="span4 mix web">
<div class="thumbnail">
<!-- style="height:230px; width: 370px;" -->
<img src="images/events/smp.png" alt="project 7"/>
<a href="#single-project" class="show_hide more" rel="#slidingDiv6">