Skip to main content

How to live in the present moment

You remember, when you were around your friends or family or on a trip enjoying or reading a book or working on a project. When you were lost in the present moment. You were thinking nothing. You was in that moment enjoying things and people around you. Whatever you were doing that time. You was in action/ motion that time. Anxiety of future hits you when you are still and same goes with the heartaches of the past.

A person who has no goal, purpose today. Has fear and anxiety of tomorrow. A person who isn't at peace with his/her past will be haunted by wounds of past.

To be in present, you need to cut out the strings holding you in past or future. I'm not against planning for your future or learning from past mistakes, failure or any analysis that can help you today or tomorrow. Most beautiful memories of yours are in past. Lots of opportunities that can transform you and your life are waiting for you in the future and it's nothing wrong to think about it for awhile. As you know anything more than need is poison. So keep the lessons with you and positive attitude towards where you and your life is going.

Anytime you find yourself wondering about things in your head, write them down on paper. Organise your place where, you spend most of your time. Be hard on yourself when you wake up in the morning and do exercise. Force yourself to sit for meditation and do deep breathing exercises. Eat healthy, Live happy.

Have a good day / night.

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