Skip to main content

College to Corporate

The transition from college to corporate is drastic and expanded
It has changed me the way I behave and the opinions I used to have. There are different corporate cultures and I would like to give only that I have experienced.
life in corporate


The first thing that I am impressed and happy about was the security people. I am really scared and disliked those security in my college. They felt like that they had power over us. In contrast the people here greeted me. During the initial days I used to laugh and then it had been my pleasure to greet them back. In a way, I felt free that no one is pushing me here. You could relate me only if you have frightening security who would threaten you saying, “I won’t allow you until you get permission from HOD/Dean”.

The second change is that we don’t need to write down anything. In a way it is like a paperless environment. You don’t write letters to get permission for anything, we e-mail things. I know that pain in going around my associate dean for permission for literally everything.

The third change is that you don’t study overnight, you study daily. For some it might be painful task but think in a perspective that you are going to research now. It feels awesome to have no boundaries. No, you don’t have out-of-syllabus concept. You need to look nook and corner to know the stuff you are going to build upon.

Although you would miss those breaks and lunch with your friends and having that big noise outside the class and the low-cost canteen food, you have a different environment here in corporate life. Everyone would be friendly with you.


P.S: These are particularly my views as an experience being in corporate and doesn't reflect as an AVNET employee. This is not a PR.

Comments

Popular posts from this blog

Trip to narsipura Sri Vaidya Narayana murthy - Shimago for cancer treatment

Hi friends. I would like to share my experience about my trip to Shimago and meet Guru Narayana murthy who would treat for cancer, diabetics, kidney diseases. My brother was diagnosed with rectal cancer on October 2014. The news of cancer to a young boy of 26 years shook our whole family. But we are strong as he was getting treatment from world class care clinic in Cleveland - Cleveland clinic, Ohio, USA. As fate had other plans, his cancer came in January, 2017 back after an extensive surgery, chemotherapy and radiotherapy. The doctors made a decision to keep him in hospice care: support for advanced illness. They said that there is no more treatment and only to keep him comfortable as long as he lives, we lost our hopes and that is when we thought of giving a try to Ayurvedic medicine. We found Guruji narasipura narayana murthy. His medicine gave us hopes and I recently went to narsipura to get the medicine. I thought it would be best to give my share of experience in reaching the

Solution to "child margin affects parent" in CSS

The browser implementation is that when the parent has no content and the child requests for margin, the parent is brought down instead of child going down. The solution for these are listed below with their side effects. floats , You  have  to float elements border-top , This pushes the parent at least 1px downwards which should then be adjusted with introducing  -1px  margin to the parent element itself. This can create problems when parent already has  margin-top  in relative units. padding-top , same effect as using  border-top overflow: hidden , Can't be used when parent should display overflowing content, like a drop down menu overflow: auto , Introduces scrollbars for parent element that has (intentionally) overflowing content (like shadows or tool tip's triangle) See the Pen Relative with Margin by Manikanta ( @immnk ) on CodePen .

Redirection in javascript

How Page Re-direction works ? Example 1: This is very simple to do a page redirect using JavaScript at client side. To redirect your site visitors to a new page, you just need to add a line in your head section as follows: <head> <script type="text/javascript"> <!-- window.location="http://www.newlocation.com"; --> </script> </head> To understand it in better way you can  Try it yourself . Example 2: You can show an appropriate message to your site visitors before redirecting them to a new page. This would need a bit time delay to load a new page. Following is the simple example to implement the same: <head> <script type="text/javascript"> <!-- function Redirect() { window.location="http://www.newlocation.com"; } document.write("You will be redirected to main page in 10 sec."); setTimeout('Redirect()', 10000); //--> </script> </head> Here