forked from IEEESBNSSCE/ieeesbnssce.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents2018.html
1477 lines (1252 loc) · 61.4 KB
/
events2018.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 dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Tricodia" />
<!-- Stylesheets
============================================= -->
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700|Raleway:300,400,500,600,700|Crete+Round:400i"
rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="css/swiper.css" type="text/css" />
<link rel="stylesheet" href="css/dark.css" type="text/css" />
<link rel="stylesheet" href="css/font-icons.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/responsive.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Document Title
============================================= -->
<title>IEEE Students Branch NSSCE</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<style>
@media (min-width: 992px) {
#header .button {
margin: 30px 10px;
-webkit-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
}
body.top-search-open #header .button {
opacity: 0;
}
#header.sticky-header:not(.static-sticky) .button {
margin-top: 10px;
margin-bottom: 10px;
}
}
@media (max-width: 991px) {
#header .button {
display: none;
margin: 10px 5px 20px;
}
#header .button.d-block {
display: inline-block !important;
}
}
</style>
</head>
<body class="stretched sticky-responsive-menu">
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<!-- Top Bar
============================================= -->
<div id="top-bar" class="d-none d-md-block" style="background-color: #2E4490; color:white;">
<div class="container clearfix">
<div class="col_half nobottommargin" style="padding: auto; margin: auto;">
<a href="https://www.ieee.org/" style="color: white;" target="_blank">IEEE.org</a>|
<a href="http://ieeexplore.ieee.org/Xplore/home.jsp" style="color: white;" target="_blank">IEEE
Xplore Digital Library</a>|
<a href="http://standards.ieee.org/" style="color: white;" target="_blank">IEEE Standards</a>|
<a href="https://spectrum.ieee.org/" style="color: white;" target="_blank">IEEE Spectrum</a>|
<a href="https://ieeekerala.org/" style="color: white;" target="_blank">IEEE Kerala Section</a>|
<a href="http://www.ieeer10.org/" style="color: white;" target="_blank">IEEE Region 10</a>|
<a href="https://www.ieee.org/sitemap.html" style="color: white;" target="_blank">More Sites</a>
<!-- <strong>Call:</strong> 1800-547-2145 | <strong>Email:</strong> [email protected]</p> -->
</div>
</div>
</div><!-- #top-bar end -->
<!-- Header
============================================= -->
<header id="header">
<div id="header-wrap">
<div class="container clearfix">
<div id="primary-menu-trigger"><i class="icon-reorder"></i></div>
<!-- Logo
============================================= -->
<div id="logo">
<a href="index.html" class="standard-logo" data-dark-logo="images/logo2.png"><img
src="images/logo2.png"></a>
<a href="index.html" class="retina-logo" data-dark-logo="images/logo2.png"><img
src="images/logo2.png"></a>
</div><!-- #logo end -->
<!-- Primary Navigation
============================================= -->
<nav id="primary-menu">
<ul class="one-page-menu" data-easing="easeInOutExpo" data-speed="1500">
<li class="current"><a href="" data-href="#header">Home</a></li>
<li><a href="" data-href="#Achievements">Achievements</a></li>
<li><a href="#">Excom</a>
<ul>
<li><a href="execom2022.html">
<div>Excom 2022</div>
</a></li>
<li><a href="execom2021.html">
<div>Excom 2021</div>
</a></li>
<li><a href="execom2020.html">
<div>Excom 2020</div>
</a></li>
<li><a href="execom2019.html">
<div>Excom 2019</div>
</a></li>
<li><a href="execom2018.html">
<div>Excom 2018</div>
</a></li>
</ul>
</li>
<li><a href="#">SB chapters</a>
<ul>
<li><a href="pes.ieeesbnssce.org">
<div>PES</div>
</a></li>
<li><a href="ias.ieeesbnssce.org">
<div>IAS</div>
</a></li>
<li><a href="pels.ieeesbnssce.org">
<div>PELS</div>
</a></li>
<li><a href="">
<div>RAS</div>
</a></li>
<li><a href="">
<div>CS</div>
</a></li>
<li><a href="">
<div>IES</div>
</a></li>
<li><a href="">
<div>VTS</div>
</a></li>
<li><a href="">
<div>IMS</div>
</a></li>
<li><a href="">
<div>ComSoc</div>
</a></li>
</ul>
</li>
<li><a href="#" data-href="#events">Events</a>
<ul>
<li><a href="events2020.html">
<div>Events 2020</div>
</a></li>
<li><a href="events2019.html">
<div>Events 2019</div>
</a></li>
<li><a href="events2018.html">
<div>Events 2018</div>
</a></li>
</ul>
</li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
<a href="join-form.html" class="button button-circle">Join Us</a>
</nav>
</div>
</div>
</header><!-- #header end -->
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<div class="container clearfix">
<!-- Post Content
============================================= -->
<div class="postcontent clearfix">
<!-- Posts
============================================= -->
<div id="posts" class="post-timeline clearfix">
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">WIE Week Celebrations</h3><br><i style="margin: 0px"
class="icon-calendar3"></i> 5-8th March 2018
</span></div>
<div class="timeline-border"></div>
<div class="entry clearfix">
<div class="entry-timeline">
5<span>Mar</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/17.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/17.jpg" alt="#"></a>
</div>
<div class="entry-title">
<h2><span>Speech Competition </span>- Day 1</h2>
</div>
<div class="entry-content">
<p>WIE chapter of NSS college of Engineering celebrated WIE week starting with a
speech competition called LetMeSpeek on 5th March 2018 at 4.00pm in E one hall.
The coordinators of the event were Athira M, Haritha H. Around 11 students
participated ,best of two were selected from them. They were given the topic
''INDIAN WOMEN IN SCIENCE AND TECHNOLOGY ''.All of them delivered with immense
contents but on certain criteria Anjali Jayaram and Gayathri were selected for
hub level event .The videos of the same were uploaded</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
6<span>Mar</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<a href="images/events/13.jpg" data-lightbox="image"><img class="image_fade"
src="images/events/13.jpg" alt="#"></a>
</div>
<div class="entry-title">
<h2><span>Quiz Competition </span>- Day 2</h2>
</div>
<div class="entry-content">
<p>WIE conducted the quiz competition at E one hall at 4pm. Activity coordinators
Reja Khathun and Swetha Vijayan volunteered the program and 75 students
participated. The event was conducted as a group of two. Ajay Nair and Anirudh
were the winners of the quiz.</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
7<span>Mar</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-title">
<h2><span>Cartoon Competition & Games</span>- Day 3</h2>
</div>
<div class="entry-content">
<p> WIE conducted cartoon competiotion on 7th March ,2018 .The venue for the program
was eOne hall at 4pm.Around 10 students participated.They were given the topic
"Adventures of women in kitchen and outside world".</p>
<p>As part of the womens day celebration fun games were conducted by the IEEE
members on 7th march 2018 at 4 pm.The outdoor games filled with the students
with excitement and energy,Providing them a great refreshment.
</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
8<span>Mar</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/10.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/10.jpg" alt="#"></a></div>
<!-- <div class="slide"><a href="images/events/14.jpg" data-lightbox="gallery-item"><img class="image_fade" src="images/events/14.jpg" alt="#"></a></div> -->
<div class="slide"><a href="images/events/16.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/16.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>International Women's Day Celebration </span>- Day 4</h2>
</div>
<div class="entry-content">
<p>WIE chapter of NSS college of Engineering celebrated International Women's Day on
8th March 2018 at 11.00 am in E one hall.Our guests were women scientist
Dr.Sunitha K Nayar who is also an alumnus of our college and former principal
Dr.Geetha Varma. The function was anchored by IEEE member Mariya Chandy. The
function was presided by Dr. Sudha T, principle of NSS College of Engineering.
IEEE staff advisor, Dr. Leesha Paul delivered the welcome note. Dr.Geetha Varma,
the keynote speaker delivered thought for the day including the relevance of
purple ribbon.Dr.Sunitha K Nayar delivered a talk on multi tasking women .It was
followed by cultural events.The function was concluded by a thank note from
Akhila D, WIE chairperson.</p>
</div>
<div style="margin-top: 500px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>Birth Of The Twins</h3><i style="margin: 0px" class="icon-calendar3"></i>27th
March 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
27<span>Mar</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/29.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/29.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/27.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/27.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/32.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/32.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Inauguration Of PES And IAS</span></h2>
</div>
<div class="entry-content">
<p>
The inauguration of student chapters of IAS and PES was conducted by Dr. K.P.
Mohandas(Chairman, Conference Activity Board, IEEE Kerala Section) , Dr.
Muhammed Kasim (Chairman, IAS/IES/PELS Joint Chapter, IEEE Kerala Section),
Prof. Biju K (Secretary, IAS/IES/PELS Joint Chapter, IEEE Kerala Section) and
Er. Shine Sebastian (Assistant Engineer, KSEB Thrissur) on 27th March 2018.
Inaugural Ceremony was followed by a technical session on Power Generation and
Distribution by Er. Shine Sebastian.
</p>
<p>
The inaugural function commenced with seeking blessings from Almighty. Ms.
Athira M (Chairperson IAS Student Chapter) delivered the IEEE code of ethics to
the gathering. Dr. Leesha Paul, IEEE SB Counsellor, welcomed the chief guest and
other dignitaries on and off the dais. Dr. K.P. Mohandas, Dr. Muhammed Kasim,
Prof. Biju K and Er.Shine Sebastian inaugurated the activities of PES and IAS
student chapters-‘BIRTH OF THE TWINS’, by switching on a Bluetooth automated
curtain raiser which was developed by the IEEE Student Branch of NSSCE. Followed
by the inauguration, Dr. K P Mohandas and Dr. Muhammed Kasim addressed the
gathering on ‘various activities of IEEE student branch’ and ‘importance of IEEE
student membership’ respectively. In this auspicious occasion the official logo
release and IEEE SB NSSCE website launch was done by Prof. Biju K in the
presence of all other dignitaries and student branch volunteers. Following this,
Prof. Biju K expressed his views on ethical conduct of IEEE Student Chapter.
</p>
<p>
Dr. Vasanthi V conveyed her thoughts on future activities of IEEE NSSCE SB. The
official meeting was concluded at 2 pm with the Vote of thanks delivered by Mr.
Abhinav R (Chairman PES Student Chapter). Following the official inaugural
ceremony, the technical session was conducted by Er. Shine Sebastian (Assistant
Engineer, KSEB Thrissur) on the topic ‘Power Generation and Distribution’.
Resource person started the session with introducing Hydro Electric Power
Generation and briefed the working of generator, turbine and transformer used in
generation and distribution with ICT enabled lectures. Technical session was
concluded at 4 pm followed by high tea. The inaugural and technical session
witnessed an overwhelming participation of 6 dignitaries, 24 volunteers and
about 120 students from various departments. The meeting was officially
dispersed at 4:15 pm.
</p>
</div>
<div style="margin-top: 480px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>Contessa 3.0</h3><i style="margin: 0px" class="icon-calendar3"></i>13th June
2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
13<span>June</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/36.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/36.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/37.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/37.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/38.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/38.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Awareness Class</span></h2>
</div>
<div class="entry-content">
<p>As part of <b>CONTESSA 3.0</b> we conducted an orientation class about
Engineering and IEEE. The class mainly focused on different engineering
branches, entrance exams, cut off marks etc, which was followed by a session on
IEEE and it's benefits and we wind up an objective test for the students</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>MHM'18</h3><i style="margin: 0px" class="icon-calendar3"></i>27-29th July 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
27<span>July</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/44.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/44.JPG" alt="#"></a></div>
<div class="slide"><a href="images/events/45.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/45.JPG" alt="#"></a></div>
<div class="slide"><a href="images/events/46.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/46.JPG" alt="#"></a></div>
<div class="slide"><a href="images/events/47.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/47.JPG" alt="#"></a></div>
<div class="slide"><a href="images/events/48.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/48.JPG" alt="#"></a></div>
<div class="slide"><a href="images/events/49.JPG"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/49.JPG" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>MHM 2018</span></h2>
</div>
<div class="entry-content">
<p>IEEE Malabar Hub Meet 2018 was conducted by IEEE SB NSSCE in association with
IEEE Malabar section. It was a three day event scheduled from 27th to 29th of
July 2018 comprising of Technical talks, cultural events and workshops such as
Alexa, Engine Overhauling, Crack the interview and Text mining.</p>
<p> <span>MHM`18</span>came into being 0n 27th of july ,started off by the chairman
of IEEE Malabar Section Dr.Gopakumar . The informal turning up of Dr.Anzar VSAC
of IEEE Malabar section, Dr.Sudha T principal of NSSCE, Mr. Harikumar Assistant
executive engineer of KSEB Kalamassery ,Dr.Leesha Paul Branch Counsellor of IEEE
SB NSSCE, Dr.Vasanthi IAS chapter advisor of IEEE SB NSSCE bring about the event
triumphant. . With the blessings of almighty the guests set alight the lamp and
the event was officially inaugurated. Following this Mr.Arun k R ( chairman of
IEEE SB NSSCE) took around the IEEE Code of ethics to the gathering. The
inaugural session was draw to a close by the vote of thanks by IEEE Malabar Hub
student representative Mr .Muhammed faiz .</p>
<p>A session handheld by Harikumar sir on IoT was main attraction to the meet
followed by the music performance by music band of NSSCE. The session provided
the method of networking the physical objects for internet connectivity by
providing an IP address .The networking through treasure hunt followed by
various interactive session have made the initial day fruitful .</p>
<p>On 28th of July the 4 workshops were set into dawn by professionals,</p>
<p> <span>ALEXA </span> on digital hall of NSSCE handheld by Rabeer sir from the
Quovadis Robosoftech was based on the virtual assistant Amazon Alexa developed
by Amazon for voice based Smarthome assistance. Through this workshop the
delegates were able to the Echo Dot, Amazon Tap, Echo Look etc . The tracking
and analysing of Alexa is the main theme for Rabeer sir.</p>
<p><span>ENGINE OVERHAULING</span> by Vishnu Ravunni sir from the Srishti Robotics
at the ALU GF hall was a practical approach to the participants .They were
directed to view the internal parts of engine and are able to arrange them. The
combination of theory and physical work were provide the delegates an fascinated
experience.</p>
<p><span>CRACKTHE INTERVIEW</span> went ahead by the assistant professor Of College
Of Engineering Trikaripur Ajith Aloshy sir at e-one hall was not only a plain
theory session , through the fun and entertainment they were awared about the
resume , CV and also the way to be an active participant in an interview.</p>
<p> <span>TEXT MINING </span>done by the Research scholar from NITC Manu Madhav sir
at the CNC Lab put forwarded the the brilliant ways to deliver information from
text. The evaluation of input text and structured into a data pattern with the
guide of Python. The retrieval of data from the text through modelling a pattern
from the input by addition and removal of some linguistic features lend a hand
to scan the document and scientific discoveries, encryption of data, and
biomedical literature PubGene etc. </p>
<p>By evening the first three sessions of workshops were break off and delegates
were directed to auditorium wearing Traditional attires. Following the photo
shot on 6.00 pm ramp walk by the participants ,DJ music, and Thug of war lead
the way to an enthusiastic evening and gala dinner.</p>
<p>On 29th of July the successive sessions of workshops were reinstated and by
12.00pm it was terminated by the closing ceremony through feedback session of
students .The delegates have expressed their views and many students showed
their interest to be an IEEE Member.</p>
<p>The spirited participation of 200 and more delegates and dedication of 39
volunteers and guidance of 3 and more chapter advisors and branch counsellor put
together the successive journey and victorious ending of IEEE Malabar Hub Meet
2018. The colleges which put up their blooming young engineers to MHM`18 HAVE
listed below</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>Workshop on IOT And Technical Writing Skills</h3><i style="margin: 0px"
class="icon-calendar3"></i>4th August 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
4<span>August</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/41.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/41.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/42.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/42.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/43.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/43.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>One Day Workshop</span></h2>
</div>
<div class="entry-content">
<p>As part of <b>CONTESSA 3.0</b> we conducted an orientation class about
Engineering and IEEE. The class mainly focused on different engineering
branches, entrance exams, cut off marks etc, which was followed by a session on
IEEE and it's benefits and we wind up an objective test for the students</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>Emergency lanterns and chargers</h3><i style="margin: 0px"
class="icon-calendar3"></i>20th - 30th August 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
10<span>Days</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/75.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/75.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/76.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/76.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Emergency lanterns and chargers for Kerala Flood Relief Camps</span></h2>
</div>
<div class="entry-content">
<p> After a Century, Kerala faced flood again which drowned every inch of Kerala
causing
disasters and every living being was mourning about one thing or other. But even
in this
situation, Students from IEEE SB NSSCE formed a meeting how they can help and
concluded
with making Emergency Lanterns and Emergency Chargers.
</p>
<p>
Even though many people are in
the relief camp, they either don’t have electricity or they don’t have enough
lights/chargers for
all. This idea was initiated by IEEE students, students from NSSCE and alumni’s
volunteered
to help us and made the work more quickly. A total of 1200 Emergency lanterns
and 50
Emergency chargers were made. These were delivered to various relief camps set
up in different
districts and was also useful for repair or cleaning purposes. The emergency
lanterns can be
used for 1.5 days with full brightness but it lasts 3 days.
</p>
<p>
The emergency lanterns and chargers cost 30 and 25 rupees respectively per piece
but few were ready to donate money whose profit was given to Chief Ministers
Relief Fund. The work was divided into two – in the morning, day scholars help
to make the lanterns and chargers and in 3 NSS COLLEGE OF ENGINEERING,
PALAKKAD-8 night, the hostellers completed the work started in the morning.
After 4 – 5 days of functioning, IEEE SB NSSCE was able to make Emergency
lanterns and Emergency chargers as per the users need and distributed to relief
camps at different parts of Kerala. Students and Alumni’s Volunteering was
exceptional during the production process.
</p>
</div>
<div style="margin-top: 500px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>Spectrum Talk</h3><i style="margin: 0px" class="icon-calendar3"></i>6th
September 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
6<span>Sep</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/51.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/51.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/52.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/52.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/53.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/53.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>MIND-CONTROLLED ROBOTIC THIRD ARM GIVES NEW MEANING TO
“MULTITASKING"</span></h2>
</div>
<div class="entry-content">
<p>IEEE Student Branch of<b> NSS College of Engineering</b>, Palakkad has conducted
the Spectrum Talk on the topic <b>‘Mind-Controlled Robotic Third Arm Gives New
Meaning to MULTITASKING’</b>. It was the talk based on the topic which was
selected from the Spectrum, IEEE monthly magazine. It was conducted as a part to
provide the IEEE members to get update with the new technologies and also
provide an open space to discuss with the upcoming technologies with its pros
and cons. It gives good platform for developing the soft skills of the members.
</p>
<p>The programme was kick started with the introduction given by <b>Sarath M V</b>
(S7 EEE)about the importance of the spectrum talk. The main session was taken by
<b>Akarsh Ashok</b>, CS student and an IEEE member also. He discussed about the
need for the third arm and how it become useful for the humanity. He mentioned
about the changes that will happen in the world of technology by the
introduction of such a product to the market and showed some videos on this
experiment. It was conducted at EEE Seminar Hall, 4pm on 6th September 2018.
About 40 students were included in this session. The programme was concluded by
<b>Haritha V</b> (S5 EEE), which was followed by the review talk by<b> Dr.
Leesha Paul</b> (IEEE Staff counsellor).
It was very useful session for the participants and they were enthusiastic by
being part of the spectrum talk. And it was a nice interactive session taken by
the key speaker, Akarsh Ashok</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>CONTENT WRITING COMPETETION </h3><i style="margin: 0px"
class="icon-calendar3"></i>25th September 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
25<span>Sep</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/64.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/64.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/65.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/65.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>CONTENT WRITING COMPETETION</span></h2>
</div>
<div class="entry-content">
<p>The IEEE student branch of<b> NSS college of Engineering</b>, Palakkad attained
an amazing growth in the year 2018. The membership strength has increased as
compared to the previous year. The students were much interested in the
technical activities especially in the field of computer science, Electrical
engineering and Electronics engineering. This led to the thought of conducting
various events, awareness programs and competition among students.</p>
<p>
The competition was scheduled about a week before the event. several meetings
were held regarding the planning of the program. The event is scheduled as a
part of IEEE day celebration. A pre competition was conducted to shortlist the
most skilled students. And about 12 of them where selected for the competition.
A wide publicity was given for the event inside and outside the campus. The
content writing competition was charted for one hour with the topic ‘Inevitable
Evil’ Which is held at IEEE room NSS College of Engineering on 25 September 2018
at 4 pm .The main objective of the program was to improve the writing skills of
the students and spread the spark of IEEE day . The winners of the competition
were given an opportunity to join the <b>IEEE SB NSSCE </b> writing team. The
competition was organised by Haritha H and Athira M who were the excom members
of IEEE SB NSS College of Engineering. It was a successful event and it kick
started the real capability of students. The event winded up at 5pm.
</p>
<p>A review meeting was held after the whole program with the executive members. The
program was evaluated as a successful program by the executive committee.
</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>TECHNICAL PRESNTATION</h3><i style="margin: 0px" class="icon-calendar3"></i>28th
September 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
28<span>Sep</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/54.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/54.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/55.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/55.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/56.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/56.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>AC VS DC</span></h2>
</div>
<div class="entry-content">
<p>As part of immense activities and events conducted by <span>IEEE Student Branch
NSSCE</span>, a technical presentation was conducted on the topic
<b>Alternating Current versus Direct Current</b> by Abhinav R (Vice-chair IEEE
SB NSSCE) on 28th Sept 2018.</p>
<p>The presentation mainly dealt the question, which current hurts the most? A basic
idea of Alternating Current and Direct Current was given to the students
assembled. After which there was a technical presentation showcasing the effect
of different current in human body, which was conducted by passing different
tolerable voltages. And the results were tabulated and charted, which was
further discussed to establish the capacitive property of human body.</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry entry-date-section"><span>
<h3>IEEE DAY CELEBRATIONS</h3><i style="margin: 0px"
class="icon-calendar3"></i>2-15th October 2018
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
2<span>Oct</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/62.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/62.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/63.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/63.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>IEEE Day Celebration</span></h2>
</div>
<div class="entry-content">
<p>
The IEEE student branch of NSS college of Engineering, Palakkad attained an
amazing growth in the year 2018. The membership strength has increased as
compared to the previous year .The students were much interested in the
technical activities especially in the field of computer science , Electrical
engineering and Electronics engineering. This led to the thought of conducting
various events, awareness programs and competition among students as part of the
<span><b>IEEE DAY 2018 </span></b>
</p>
<p>
<b><span>IEEE SB NSSCE </b></span>had celebrated <b><span>IEEE Day</span></b> in
a very memorable way. The celebration begun at 10:00 am and kick started with
the cake cutting by Dr. Vasanthi V, followed by exe-com members of the Student
Branch. Once the members started volunteering themselves in the celebration the
true spirit of <b>IEEE Day </b>emerged in them. After the cake cutting ceremony,
a brief keynote on <b> IEEE Day </b> was given to the students by<b> Mr. Ajith
</b>, <b>Vice chair IEEE IAS SB NSSCE</b>. After which, there was a photo shoot
of all the members showcasing their spirit of<b> <span>IEEE Day</span></b>. The
program came to an end by 12:00 noon with a video shoot of the celebration. The
celebration witnessed about 70 IEEE Members.
</p>
<p>
The <b>IEEE Day</b> Celebration was a grand success and witnessed an huge
participation from IEEE members of the Student Branch. We are looking forth to
conduct further IEEE day activities in SB level.
</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
6<span>Oct</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<div class="slide"><a href="images/events/60.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/60.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/61.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/61.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Debate Competition</span></h2>
</div>
<div class="entry-content">
<p>
The IEEE Student branch of <b> NSS COLLEGE OF ENGINEERING</b>, PALAKKAD has
conducted a debate competition as part of the IEEE day activities. The close
involvement of the participants was the highlight of this programm.
</p>
<p>
The debate competition was commenced on 6th October 2018 at 4.00pm in the
Aluminum hall. The disputation held on the topic <b>' should section 377 of IPC
be removed from constitution and decriminalized in India? '</b>. It was
conducted with 14 participants grouped into pairs. The judgment was done by
<b>Prof. Sudheer. P </b>and <b> Assnt.Prof. Nimitha Muraleedharan </b> of
electrical department. With the strong debating that lasted for one hour,
<b>Alvin Sebastian </b>and <b> Divin Krishnan </b> of 7th semester won the
prize. The volunteering section was handled by the IEEE members <b>
Athira.S</b>, <b> Arya Thambi </b> and <b>Ajay</b>.
</p>
<p>
The debate competition held on behalf of the IEEE day activities paved the way
to showcase the extraordinary talents of students. We ensure more activities to
conduct in the SB level to bring the IEEE wing of our college to an extended
level.
</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
8<span>Oct</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="flexslider">
<div class="slider-wrap">
<a href="images/events/69.jpg" data-lightbox="gallery-item"><img
class="image_fade" src="images/events/69.jpg" alt="#"></a>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>PES Quiz Competition</span></h2>
</div>
<div class="entry-content">
<p>
The IEEE student branch of NSS college of Engineering, Palakkad attained an
amazing growth in the year 2018. The membership strength has increased as
compared to the previous year. One of the main event conducted as part of IEEE
Day was the Quiz Competition which was organised by <b>PES Kerala Chapter</b> .
</p>
<p>
The quiz was conducted on behalf of the <b>PES chapter</b>, Kerala section. The
quiz comprised of <b>40</b> enthusiastic participants. The venue of the program
was the DLH room of NSS College of engineering. The information regarding the
competition was made to reach the students of every branch, with the help of our
publicity team, who did a splendid job in that. The first round, that was
conducted on the above prescribed date was purely a written round. And the
questions were divided into four sections: logical answering, current affairs,
about Kerala and general knowledge. The quiz provided the students an
opportunity to make use of their up to date knowledge on various affairs. It