Skip to main content

Get Back Your Lost Motivation By This

How Get Back Lost Motivation Motivation that is lost is often from some outter source; a motivational video, audio, book, or anythings that burns fire inside you but then after some time, you lost that motivation. If this happens with you quite often then you can get the never ending motivation source below:


The source

Connect with your source" things and people that makes you feel alive, your origin, place you came from, your family(If they motivates you) . That habit/passion that makes your soul alive. You won't need any motivation to do things if you are complete with yourself and people you work or live with; in simple words with those people you spend your most of time. Be complete with them. Accept the way they are and the way they are not".

As within so without

You no longer need any motivation to work on things and project if you know why you started that things or project in the first place. Most important thing you need in order to work continuosly is your REASON to work daily and consistently. If you loose your motivation quite soon after starting things out, it is probable you don't know the real reason why you started it in the first place. It could be money; but what will you BUY with that money. What value/happiness that perticular thing brings to you. Think and find out that reason that you could do it daily.

Results to avoid

Suppose, you choose to join gym and workout . First day or week or month you won't see that desired result. You will get your results only when you do gym and diet consistently for a year or more. As you might have heard that good things take time. Be patient about results as in most of the things you won't get quick results that lasts long. To get something that is great and stays with you for long time, be consistent and have faith in yourself.

Start Small

Small steps are greatest way to get success when you are a newbie at something. Small things that you can do daily are the ones that will help you bring great results. Results might not be visible at start , so don't quit if you find no results. It is certain that whatever it is you choose to do daily try to keep your action as small as you can do it Just Now!

Comments

Popular posts from this blog

100 Reasons to Stay Alive — Small Joys & Big Why’s

Life can feel heavy sometimes. When it does, a simple reminder of what makes living meaningful can help. This list mixes small comforts and long-term goals — plus a few short anecdotes — to pull you back when the weight feels too much. Keep this page handy.

how to stop thinking about work?

Are you on a vacation but can't stop thinking about your work? You might be a responsible person but that is not the reason you are thinking about it. Your routine is changed recently and you are in a new environment that is new to you. We are people of habits and actions.  Get away with the tools you use for your work or things that get your brain to work on. Your mobile, your laptop, camera or anything that trigger you to open it and check something or do something because you do not have anything to do. What could go wrong when you will be back on work. This thing is most common and reveals that you are scared of something or someone. Know that thing is important because you are giving it importance may be more than your health, your relationships and things that are actually important. Exercise is important but not always, drinking water is important but not always so work is important but not always. What you've chosen is to take a break, make sure that you are taking a br...

Makefile – A Simple Way to Automate Your Commands

Have you ever found yourself typing the same long command again and again in a project, and thought… "Life would be so much easier if I didn’t have to type this every single time" ? That’s exactly where a Makefile can help you. What is a Makefile? A Makefile is just a plain text file where you define shortcuts for your commands. It tells the make command what to do when you type something like: make up Instead of writing the whole long command every time, you just run make with the shortcut you defined. A Simple Example Let’s say you’re working with Docker and the command to start your app looks like this: docker-compose -f docker-compose.development.yml up Typing this again and again is boring. Instead, create a file named Makefile in your project root and add this: up: docker-compose -f docker-compose.development.yml up Now, all you need to do is run: make up Boom! Much shorter, much cleaner. Adding More Commands You can add as many shortcuts as you want inside yo...