Skip to main content

How to unlock one’s hidden creative genius?

Everyone wants to be creative and do something that will amaze the world. Creativity doesn’t come out of a scrap, but one has to learn, to work for it, and then implement it in practicality. One needs to have some experience of creating new things, that will help in better productivity. How can you be creative? Let’s find out.



1. Inspire yourself first

If you lack the inspiration for getting something done, you’ll fail to amaze the world. For avoiding this kind of circumstances, you should have the ability to inspire yourself, after this, you’ll be able to inspire the world.



2. Have fun

It is of utmost importance that you enjoy your life. You need to enjoy your life in order to unlock your creativity. If you are happy, you feel like doing something amazing, that’s the time you unlock your creativity. Creativity is not related to intelligence, however, when creativity adds up with intelligence, it’s impossible to obtain some bland stuff.

3. Start day-dreaming
In order to develop logical and critical thinking, you need to start day-dreaming. It develops amazing thoughts in your mind, you just need to work on the idea and shape it into a unique thing.


4. Simplify your life

We always get many things and thoughts, just in a day so we need to prioritize our requirements and get rid of all the extra information we are exposed to. It will help us in achieving our goals in less time.

5. Observe the environment

Creativity doesn’t happen on its own, as mentioned above, rather it comes from engagement, interaction, and observation. You need to meet new people and learn from their experiences. Always have a smile on your face.



6. Get outside

If you feel frustration, just go outside and enjoy nature. You cannot unlock creativity in frustration. You need to relax your mind and think of something you like to think. There is nothing more beautiful than nature.



7. Think long-term



If you think of what people will be thinking of your funeral, you’ll feel the need of doing something, before it’s too late, so think long term. It will differentiate us from all the people, who don’t think about their future.

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 " <...