Skip to main content

My IEEE Story

As a proud student member of IEEE. I would like to say IEEE is a great place to build your professional life and gain experiences.IEEE is a great place for those students who are curious to gather knowledge .not the only knowledge, programmes held by IEEE are based on fun and enjoyment too.


 IEEE Student/Young professional / Women in engineering Congress 2017 can be mention as an example for such events. It was one of the best events I participated in my undergraduate life.lots of volunteers were participated in that. there I was able to build up a lot of friendships and relationships with the volunteers all around the country .we share those relations even after the Congress which help us to share our ideas and knowledge .that help me to solve problems which are impossible for me to solve alone. I got this golden chance only because of IEEE .i will always be thankful to IEEE for giving us such opportunities.




Image may contain: 7 people, including Chathura Buddhika, Ravindu Sandeepa, Chandima Abeysinghe, Isuru Sachitha and Emindu Perera, people smiling, text

Not only that, the fun,  glamour,  education,  laughter, the inspiration we had from those events are unforgettable .there were outbound sessions and cultural nights which made our day.
IEEE workshop on big data analytics was another programme which helped me to expand my knowledge about subjects like Introduction to data science and machine learning, data stream computing, adaptive learning, data analytics, and real-time applications.
Taking membership in IEEE is one of the best decisions I made in my life.it not only improve my knowledge, it improved my personality too.it taught me how to handles situations, how to deal with people etc.and also it gave me chance to share knowledge and collaborate with people.
I will be always thankful to IEEE for giving me chance to take membership. and I will love to continue my membership with IEEE in future also.

Comments

Popular posts from this blog

How to proceed once you selected an organization in GSoC

How to proceed once you selected an organization in GSoC? In GSoC, each step you follow is very critical to get selected as a GSoC intern.For each step difficult increase and you have been specified what kind of specialize domain chose to select.Here is my experience in GSoC after I selected an organization. Once you selected an organization, you have done research to select a project which best suits your skills and time availability. First, find present and past project ideas given by the organization and note the projects you prefer. Then go through the mail achieves and fine mails about selected project ideas. From those mail archives, you can get a better understanding of those projects and what kind of future improvement they require. After that try to build an implementation for selected project and create a repository for that.then send a mail to selected organization mailing list stating your interest and showcase the what you have implemented. also, the...

Useful C++ code snippets

Setting up  Precision to given decimal point   “std:setprecision()”  method used along with  “std:fixed” provides precision of  outputting floating point numbers correct to decimal numbers mentioned in the parameter  of the setprecision method. header file #include <iomanip> std:setprecision() defined no of digits in number. Without using std:fixed() method setprecision()  will   limit whole numbers digits to given precision. In order to print precision of decimal point both setprecision() and fixed() method using before printing values, code snippet : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 // setprecision example #include <iostream> // std::cout, std::fixed #include <iomanip> // std::setprecision int main (){ double doubeleValue = 3.34535 ; std::cout << std::setprecision( 4 ) ; std::cout << doubeleValue<< '...