Skip to main content

How to maintain fitness when your life is extremely busy

Hello Everyone,
A fit man



 How can one maintain his/her fitness in an extremely busy and exhausting life?

We all want to remain fit, of course, without Gym LOL. Fitness is an important factor in life. You can enjoy good health and good health means a good and a happy life isn't it?. Just look at the people with diseases, you will probably like the idea of fitness. You may not be medically fit, but you can be physically fit, its in your hands. No matter how busy you are. Lets discover some tips to stay fit and healthy all the time no matter how busy life you may be living:


  • Focus on your diet
  • Exercise when you're free
  • Enjoy healthy sleep 

Focusing on your diet

               Eat whatever you want but eat a balanced diet. You should not over eat, make sure your stomach have some room for more food after you have eaten. You must add cereals and fruits to your diet. A healthy and balanced diet means everything for being fit. Eat at fixed times on regular basis. You should avoid having too much tea or coffee, 1 or 2 cups a day are more than enough. Do not drink water right after you have eaten your meal, it causes slow digestion and slow digestion causes irritation. 

Exercising at free time

              You may not have enough time to go to gym due to early morning jobs or studies, just take some rest and exercise a bit if you are joyful, otherwise leave to the weekends. Night provides pleasant environment for jogging and other lighter activities. Do exercise at least 25 minutes, it may be jogging, push-ups, walking or planks. It will help you digest the food and you can have a good and healthy sleep. 

Enjoying healthy sleep

             Healthy sleep means a better morning tomorrow. You will be fresh, optimistic and enjoyable. Sleep as early as possible, so you will have enough time for a long and pleasant sleep. After coming back from jobs, schools or colleges you must spend a quality time with your family, after all you just came from a stressed environment of creepy Bosses or Teachers, and you need your family the most. Do try to exercise if possible. You feel happy after exercising because the neural hormones activity increases in your body and it helps you enjoy a sound sleep.

   Were these activities useful? Please let me know in the comment section..

Comments

Popular posts from this blog

CEME NUST, another aspect of story....

    There has been a rise in the controversy that the students of the College of Electrical and Mechanical Engineering, NUST are not treated nicely. However, I can assure that there is no other institution in Pakistan which can provide a healthy and grooming environment for the freshmen. They may provide you the advanced technology labs and buildings, but as a matter of fact, they will not train you for your better tomorrow as CEME does.      I am a student of CEME, and most importantly the most junior DE-40 in the CEME. I am against any of the rumors trying to damage the reputation of CEME, NUST. We are taught to be better persons for our society, we are taught to speak in front of public, we are taught to take responsibilities, we are taught to deal with the things calmly, we are taught to respect our elders and peers, we are taught to make decision quickly and precisely, we are taught to lead our life in a disciplined way.     As far as tha...

C++ Program for solving 2nd equatiion of motion (Kinematics)

As we know the 2nd equation of motion   #include<iostream> #include<cmath> using namespace std; void main() { double vi, vf, a, s; int eq; cout << "Press 1 to solve for acceleration, 2 for distance, 3 for initial velocity and 4 for final velocity \n"; cin >> eq; if (eq == 1) { cout << "Enter vf, vi and s \n"; cin >> vf >> vi >> s; a = (pow(vf, 2) - pow(vi, 2)) / (2 * s); cout << "Acceleration is " << a << endl; } else if (eq == 2) { cout << "Enter vf, vi and a \n"; cin >> vf >> vi >> a; s = (pow(vf, 2) - pow(vi, 2)) / (2 * a); cout << "Distance is " << s << endl; } else if (eq == 3) { cout << "Enter vf, s and a \n"; cin >> vf >> s >> a; vi = sqrt(pow(vf, 2) - 2 * a*s); cout << "Initial velocity is " <...