Skip to main content

Why Can't I Take Action



Past Pattern

As people grow up every single individual has some definite believe about themselves in regards of there capabilities and abilities.
If you are reading this it is more likely that you had been through something in the past that created your believe about yourself that I am not capable of doing difficult things.
And good news is that, you can change your believe about yourself by positive affirmation, trying new things, meditation and subconscious programming.

Big Plans

Often people start big projects(personal/professionl) with great anthusiasm and but after sometime they loose motivation and most of the people quit with the project they started. This experience later becomes an believe which results into the current life pattern of procastination. If A man want to do something , Nothing can stop him. Just start small this time.

Appreciate Efforts

We are obssessed of results. This is the reason many of us designed to appreciate only results but not efforts. Your every single effort whether small or big counts to bring you closure to your success. Appreciate yourself for every single effort you put in towards your goals.

Comparision

Everybody is different from other one. Even you are different from what you were ten years ago. If comparing makes you feel bad/good about yourself it's not so kind to yourself. You have your own life experience which was totally different from the person you are comparing with yourself. You are your biggest suppportor. Take inspiration from others success. Learn from others failures and check yourself from the same.

Planning

Planning is good, but only planning for so long and not executing things because you are desiring some perfect plan to start. If you are taking long time to plan things then it is a sign that you have fear of failure. Failure can't stop a person who wants to succeed. The only this stopping you is inaction on your plan.

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