forked from IEEESBNSSCE/ieeesbnssce.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events2019.html
1506 lines (1325 loc) · 65.1 KB
/
events2019.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">AKIASSC</h3><br><i style="margin: 0px"
class="icon-calendar3"></i> 8-10th Feb 2019
</span></div>
<div class="timeline-border"></div>
<div class="entry clearfix">
<div class="entry-timeline">
8<span>Feb</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/2019/1.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/1.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/2.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/2.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/3.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/3.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/4.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/4.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/5.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/5.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/6.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/6.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/7.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/7.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/8.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/8.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/9.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/9.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Day 1</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">The Inaugural ceremony of <b>All Kerala Industry
Applications Society Student Conclave 2019</b> (AKIASSC’19) commenced with
seeking blessing from almighty. Dr. Leesha Paul (Student branch counsellor, IEEE
SB, NSSCE) delivered the IEEE Code of Ethics. Prof. Muhammed Kasim S (Chair,
IA/IE/PELS Jt. Chapter Kerala) welcomed the chief guest , other dignitaries and
audience. The presidential address was delivered by Dr Sudha T (Principal, NSS
College of Engineering, Palakkad). Chief Guest Dr. Sivaji Chakravorthi,
(Director, NIT Calicut) and other dignitaries inaugurated the conclave by
lighting the lamp. Dr. Sivaji Chakravorti delivered the inaugural address and he
wished all the success to the conclave. Ms. Athira M (Chair, IAS SBC NSSCE)
briefed about the activities done last year. Prof. Biju K (Secretary, IA/IE/PELS
Jt. Chapter Kerala) mentioned about the role and significance of IA/IE/PELS Jt.
Chapter Kerala.
<br><br>
A <b>Techincal talk</b> was taken by Er. Dharesam Unnithan K M (Director, Energy
Management Centre Kerala) regarding Energy Efficiency for imrproving
profitability followed by a <b>Non Technical Talk</b> by Dr. Sivaji Chakravorti
(Director, NIT Calicut) Studying engineering- Do we need to do it differently.
<br><br>
As a part of All Kerala Industry Applications Society Student Conclave an
<b>Industrial Visit</b> was conducted at 10 am on 8th Feb 2019. The whole
participants divided into two groups. One batch went to Patspin India Ltd.
Palakkad. 45 Delegates accompanied by five volunteers visited Fluid control
Research Institute and other batch to Patspin India Ltd.
<br><br>
On the first day of AKIASSC’19 8th Feb 2019, 134 delegates along with 20
volunteers visited Malampuzha garden. Prof. Muhammed Kasim S, Dr.Leesha Paul ,
Dr.Vasanthi and Dr.Madhu Mangal accompanied them. In Malampuzha garden, an
icebreaking session was conducted by the crew led by Annmarry and Vaisakh.
Delegates participated actively in the session, which included fun games and
cultural segments followed by group photo session. Delegates really enjoyed
those moments. The lightings in the evening were beautiful.
</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry clearfix">
<div class="entry-timeline">
9<span>Feb</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/2019/10.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/10.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/11.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/11.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/12.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/12.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/13.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/13.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/14.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/14.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/15.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/15.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/16.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/16.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/17.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/17.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/18.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/18.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/19.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/19.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Day 2</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">Second day was started by <b>Three parallel
workshops</b> - Industrial automation with PLC and SCADA by Er.Joseph Rojer
(R&D manager, Walco solutions, Kochi), Lighting Design and New Trends in
Lighting by Er. Toms Maly (Asst. Manager Wipro lightings), Project Management
Principles and Practices by Er. Muraleedharan Manningal (Head State e-Gov
Mission Team & Chair-IEEE Kerala Section, Govt Relations). The session was
interactive with various individual and group activities.
<br><br>
<b>Techincal talks</b> was taken by Dr. K R Suresh Nair (CTO, SFO Technologies
Kochi) regarding Demystifying Hardware Product Development. Another Talk was
taken by Er. C M Varughese (MD, IGA TECH Industrial Electronics Pvt Ltd, Kochi)
about Energy Storage for renewable energy system. Technical Talk was followed by
a <b>Non Technical Talk</b> by Dr. Jacob Chandapillai (Director, Fluid Control
Research Institute, Palakkad) regarding Innovative solutions: key to success.
<br><br>
As a part of All Kerala Industry Applications Society Student Conclave 2019,
<b>Advisor’s Meet</b> was conducted on 9th Feb 2019 from 10:00 am to 2:00 pm.
The Meet was held with the initiative of the Advisors’ of IEEE Kerala Section to
discuss the reforms that need to be introduced in the IEEE Kerala section and
about its’ functioning till date.
<br><br>
We arranged a <b>cultural night</b> dedicated to the delegates at the open stage
of NSS College of Engineering. The program was started at 7.00 pm with the
interactive session arranged by Binsin. He added fun games that engaged the
delegates. This was followed by vibrant musical performance organized by the
college band 'Rudra'. The lead singer was Rakhi R (Chair PELS SBC NSSCE). The
cultural night was fulfilled with a fabulous gale dinner. The program came to an
end at 9.30 pm, which gave wonderful memories and unforgettable moments to each
and everyone who were a part of it.</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry clearfix">
<div class="entry-timeline">
10<span>Feb</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/2019/20.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/20.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/21.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/21.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/22.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/22.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/23.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/23.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/24.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/24.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/25.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/25.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/26.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/26.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Day 3</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">Third day was filled with enthusiasm. The day was
filled with technical talks and non technical talks also different Meets.
<br><br>
<b>Techincal talks</b> was taken by Ms. Revathi T S (Senior Engineer, Tata
Elxsi) regarding Demystifying Hardware Product Development. Another Talk was
taken by Er. Shahim Baker (CEO, Baker Associate Group) about Building Management
Systems. Technical Talk was followed by a <b>Non Technical Talk</b> by Dr. Madhu
Mangal (Vice Chair, Life Member Affinity Group Kerala Section) and the topic was
"My Journey".
<br><br>
As part of AKIASSC’19 (All Kerala Industry Applications Society Student
Conclave) organised by IA/IE/PELS Jt. Chapter Kerala in association with IEEE
IAS SBC NSSCE, WiE Empowerment Summit (WES) was conducted on 10th Feb 2019. It
was an interactive session by women entrepreneurs lead by, Dr. K Bijuna (Vice
Chair IA/IE/PELS Jt. Chapter Kerala), Mrs Jyothi Ramaswami (Vice Chair of WiE AG
Kerala) and Megha Ben (Regional-10 Student Ambassador of IEEE CS). IEEE IAS SBC
Student Chairs gathered on February 10th, offering a chain to get in touch with,
to present an annual report of 2018 and to discuss the plans for 2019. YP Meet
(Young Professional Meet) was held on 10th February 2019 at NSS College of
Engineering as part of AKIASSC'19. A team of 7 members from YP joined for the
meeting. The team was headed by Er. Shahim Baker (Secretary IEEE Kerala Section)
and Er. Thomas Sabu, (Secretary Kerala YP). The team also included Er. Sudev and
Er. Jishnu who are also active members of Kerala YP.
<br><br>
The valedictory function started at 3:00 pm at the college auditorium. Prof. K
Biju delivered the welcome speech. He welcomed Prof. Muhammad Kasim S (Chair,
IA/ IE/ PELS Jt. Chapter Kerala), Dr. Leesha Paul (Counselor, IEEE SB NSSCE) and
Er. Shahim Baker (CEO, Baker Associates Group). Abhinav R (Secretary, IEEE IAS
SBC NSSCE) delivered the vote of thanks. Feedback session from the delegates got
very good comments as expected. The memorable event AKIASSC’19 ended with the
valedictory function.
</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry clearfix">
<div class="entry-timeline">
20<span>Feb</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="slide"><a href="images/events/2019/34.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/34.jpg" alt="#"></a></div>
</div>
</div>
<div class="entry-title">
<h2><span>ANNUAL GENERAL MEETING </span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">The meeting was held on 20th February 2019 that
witnessed the announcement of the new Execom members for the year 2019-20. The
ceremony started with the welcome address by former branch counsellor Dr Leesha
Paul. Later on, Prof. Vijitha, the new branch counsellor of the SB, addressed
the students with a mind-blowing motivational speech. The forthcoming programs
of IEEE for this year were also discussed. Ms Maria, the former Secretary of the
SB submitted the annual report, which was followed by the momento delivery to
former branch counsellor Dr Leesha Paul by Prof. Vijitha. The newly selected
Execom members were called to the stage by Arun, the Ex-chairman of IEEE SB for
entrusting their positions. The meeting was winded up by a cake cutting ceremony
and photograph session of the new Execom.
</p>
</div>
</div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">Spectrum Talk</h3><br>
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
21<span>Feb</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="slide"><a href="images/events/2019/33.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/33.jpg" alt="#"></a></div>
</div>
</div>
<div class="entry-title">
<h2><span>FUTURE PROMISING NOISE CANCELLING TECHNOLOGY </span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE Student Branch of<b> NSS College of
Engineering</b>, Palakkad has conducted the Spectrum Talk on the topic
<b>FUTURE PROMISING NOISE CANCELLING TECHNOLOGY</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 style="text-align:justify">The session was taken by <b>Nayana C T</b>. She
discussed about the importance of noice cancellation and working of MUTE
technology. She 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 eOne Hall, 4pm on 21st February
2019. About 30 students were included in this session.
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, Nayana C T</p>
</div>
</div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">Spectrum Talk</h3><br>
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
26<span>Feb</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/2019/36.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/36.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/37.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/37.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>QUANTUM COMPUTING</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE Student Branch of<b> NSS College of
Engineering</b>, Palakkad has conducted the Spectrum Talk on the topic
<b>QUANTUM COMPUTING</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 style="text-align:justify">The session was taken by <b>Solomon Stuby</b>. He
presented two relevant problems that cannot be solved by a normal computer. This
is where a Quantum computer can play its role. The main advantage of this
technology is speed. Quantum computer can solve problems which a normal computer
cannot even think about. He explained what a ‘Qbit’ is and how it works with
plenty of examples. There are still a lot of limitations for this technology to
come into existence as its size is very large and it must be kept under a
temperature of 15 millikelvins. The future scope of this technology was also
discussed.
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, Solomon Stuby</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">WiE Week Celebration</h3><br> 5th - 15th March
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
5<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/2019/38.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/38.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/39.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/39.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/40.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/40.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/41.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/41.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>WiE Week Celebration</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">As part of <b>International Women’s Day</b>
celebrations in accordance with the WIE week
from march 5th to 15th the <b>IEEE WIE AG of NSSCE</b> has planned various
activities on the
theme – Balance For The Better Technology For Future . Our WIE wing is promoted
by an
active members and supportive faculties. An inaugural ceremony was conducted
with a
session by two eminent women sharing their life journey. On 8th March
International
Women’s Day the woman staffs are recognised with greeting cards and celebrated
along with
unsung heroines and tribal students.</p>
</div>
<div style="margin-top: 450px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">Workshop</h3><br>
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
6<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/2019/27.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/27.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/28.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/28.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Create-It Workshop on Photoshop</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE Student Branch of<b> NSS College of
Engineering</b>, Palakkad has conducted the Workshop <b>Create-It Workshop
on Photoshop</b></p>
<p style="text-align:justify">The session was taken by <b>Swathi Sree</b>. The
Workshop was scheduled for a couple of hours after 4 pm. All the students were
informed about the event beforehand. The session was conducted by Swathi Chandra
R , IEEE SB NSSCE member. In the current scenario , Digital promotions plays a
pivotal role in marketing,
amongst the most creative and efficient are being raised by Cooperatives.
Photoshop serves as a language in communicating a detailed description of the
product/event in a pixelated sheet. The
session spoke about creating a digital poster from a blank page using the basic
tools and layer masks. The workshop was concluded by an interactive session
followed by a competition in designing an ID Card.</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">Spectrum Talk</h3><br>
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
18<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/2019/32.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/32.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/31.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/31.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>5G</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE Student Branch of<b> NSS College of
Engineering</b>, Palakkad has conducted the Spectrum Talk on the topic
<b>5G</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 style="text-align:justify">The session was taken by <b>Ajith M,</b>(Chairman
IAS). 5G will revolutionize the mode of wireless data transfer. The talk was
started by explaining the about 1G, 2G, 3G and 4G. Millimetre waves, Small
Cells, Massive MIMO, Beamforming and Full duplex are five technological
advancement in the field of 5G. More people and devices are consuming more data
than ever before, but it remains crammed on the same bands of the
radio-frequency spectrum that mobile providers have always used. Even if it is
great development in the field of communication, 5G has its own drawbacks. The
talk was concluded by an interactive session followed by the feedbacks from the
listeners.</p>
</div>
<div style="margin-top: 400px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">Seminar Presentation</h3><br>
</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/2019/29.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/29.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/30.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/30.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>ENERGY AUDITING AND SUSTAINABLE ENERGY</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE Student Branch of<b> NSS College of
Engineering</b>, Palakkad has conducted a Seminar Presentation on the topic
<b>ENERGY AUDITING AND SUSTAINABLE ENERGY</b>. 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.
<br><br>The session was taken by <b>Prof. Sheela S</b>. Energy conservation is
growing to be a relevant topic because of the limited availability of
non-renewable energy resources on earth. There are certain initiatives that has
to be taken to access the needs and stabilize the energy spending day-by-day and
there comes the relevance of Energy Audit. It reveals the usage patterns,
identifies waste, over expenditure and generally make us fully cognizant of how
the energy has to be utilized.</p>
</div>
<div style="margin-top: 550px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry entry-date-section"><span style="margin: 0px">
<h3 style="margin-bottom: 0px">PES Day Celebration</h3><br>
</span></div>
<div class="entry clearfix">
<div class="entry-timeline">
30<span>Apr</span>
<div class="timeline-divider"></div>
</div>
<div class="entry-image">
<div class="fslider" data-arrows="false" data-lightbox="gallery">
<div class="slide"><a href="images/events/2019/44.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/44.jpg" alt="#"></a></div>
</div>
</div>
<div class="entry-title">
<h2><span>Science and Technology Quiz</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">IEEE PES SBC NSSCE conducted an <b>Quiz</b> on the
topic <b>Science and Technology</b> in association with PES Day Celebration. The
time duration was fixed to 1-hour where 15 team with 2 members each participated
in the quiz. The IEEE PES Quiz Competition was a grand success and witnessed a
huge participation from Students.
</p>
</div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
5<span>May</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/2019/45.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/45.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/43.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/43.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Sentence Writing Competition</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">
IEEE PES SBC NSSCE conducted an online <b>Sentence Writing Competition</b> on
the word <b>vicarious</b> in association with PES Day Celebration. The
competition was open to all in Kerala, irrespective fo their qaulifications.
The best 3 sentence made with the word vicarious were selected and awarded as
winners.
</p>
</div>
<div style="margin-top: 550px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry clearfix">
<div class="entry-timeline">
5<span>May</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/2019/46.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/46.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/42.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/42.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Pencil Drawing Competition</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">
IEEE PES SBC NSSCE conducted an online <b>Pencil Drawing Competition</b> on the
theme <b>Role Model Portrait</b> in association with PES Day Celebration. The
competition was open to all in Kerala, irrespective fo their qaulifications.
The top 3 drawing which got the maximum likes in instagram were selected and
awarded as winners.
</p>
</div>
<div style="margin-top: 1200px;"></div>
</div>
<div class="entry clearfix"></div>
<div class="entry clearfix">
<div class="entry-timeline">
21<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/2019/50.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/50.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/48.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/48.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/47.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/47.jpeg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>PELS Day Celebration</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">
As a part of <b>PELS Day</b> on 20th June, <b>IEEE PELS SBC NSSCE</b> organized
an event to celebrate PELS Day on 21st June. The event inaugurated by Er.
Jayakrishnan followed by a session by DSC Lead Akarsh Ashok on Google Actions.
The swags sent by IEEE were ditributed to students accordingly and After a Cake
cutting Session, we concluded with a Group Photo.
</p>
</div>
<div style="margin-top: 700px;"></div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
3<span>Aug</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/2019/52.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/52.jpeg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/53.jpeg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/57.jpg" alt="#"></a></div>
</div>
</div>
</div>
</div>
<div class="entry-title">
<h2><span>Android Development Workshop</span></h2>
</div>
<div class="entry-content">
<p style="text-align:justify">
IEEE SB NSSCE Compiling an Android Workshop<br>
The session was commenced with presence of Balagopal Sir and inaugural
speech was delivered by Bhadra Jayakumar. The speaker was Denil C Verghese as
DSC
Core Member. The morning session was based on teaching basic java for Andorid.
The
evening session was based on hands-on project. The session ended with feedback
from
students.
</p>
</div>
<div style="margin-top: 600px;"></div>
</div>
<div class="entry clearfix">
<div class="entry-timeline">
17<span>Aug</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/2019/56.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/56.jpg" alt="#"></a></div>
<div class="slide"><a href="images/events/2019/59.jpg"
data-lightbox="gallery-item"><img class="image_fade"
src="images/events/2019/59.jpg" alt="#"></a></div>
</div>
</div>