Skip to main content

3 Reasons why Overthinking is Good

 

No, overthinking everything does not make you as smart as Einstein. When have you ever thought about something that was worth overthinking anyway? Overthinking is a serious mental habit that makes us sadder in most cases, or otherwise delusional.

Yet, there are certain advantages to your lifestyle that might make you think you're better off being an overthinker.

You can always see red flags

Since you always think too much about every little weird/adverse/seemingly disrespectful action or word said to you by every person, and especially more so by people close to you, you have a huge advantage over people who are toxic, or are vulnerable to end up with toxic people. Not just qualities like toxicity, but even people who might seemingly end up backstabbing you, cheating on you or just put you down.
Haven't you heard people say, "I don't know why I trusted him/her. The red flags were always there."
It might not be THAT easy to fool you or run you over because you're somebody who looks around on all sides of the road every 5 steps you take.

You analyze relationships, see the changes and can choose to take action

Waking up till 3 am and thinking about how you and your partner or best friend have started drifting apart might not be a reflection of absolute silliness. Sure, sometimes, you might be over-overthinking it. But this frequent analysis of relationships with people closer to you is something that can help a person maintain meaningful relationships. 
And when you do start to see the changes, you can choose to either save the relation, or let it go (if you found red flags).
In fact, one of the major reasons a person overthinks is because they are control freaks. That's why, they think and try to predict.

You can always improve yourself

It's not just about the people and relationships around you. Sometimes, it is about you. If you truly are an overthinker, you will never always blame it on others or even always think about others. Overthinking involves constantly doubting yourself, which upto a certain point, is good. 
It's only when we question our most fundamental values and principles that we truly get the most righteous and correct answers. 
You have explored perspectives, thinking about what a certain person must have thought about you, then questioned if you should be even thinking what others think about you in the first place, and the list goes on. But these series of questions, although mind-tiring, make us realize eventually what we should truly focus on.

You see, we have sessions (not strictly time-based) of overthinking daily where everyday, we think a zillion different thoughts and never ever have we been able to reach a final conclusion, because the thoughts never end. But they do make us realize a lot such as these things above.

So don't be sad or frustrated because you think too much. It's not all bad. 
Limit if it gets to the point where you're interacting less and thinking more. Go out, keep working and on the way home, "overthink".

How do you stop yourself from thinking too much though?

Get it in your head that nobody is more important to you than you. So if anybody is not a part of your life, it won't destroy your's or their life. 
Anything else you say to yourself like 'It's complicated', is just... bleh. I know it probably doesn't make a lot of sense if you have kids, but I'm a 21 year old guy who seems to be really enjoying life following this principle. Once we accept this, we can move on to objectivly see if a person who's being a jerk does deserve to be in our life or not.

So long, fellow Overthinkers!

Comments

Popular posts from this blog

Namaste JavaScript Quick Notes

Note:  Akshay Saini's Namaste JavaScript is probably the best course for JavaScript developers out there. These are my personal notes that I made while watching the course; they serve more of as an online quick reference for my understanding and revision, and I hope it benefits anyone reading it too! Everything in JS happens inside an Execution Context. Before a JS code is run, memory is allocated and variables are set as undefined   , and functions are set as their exact code in the scope within the Execution Context. The global execution context hosts all the global variables and function definitions. An Execution Context has 2 components: Memory, that stores variables and functions; and Code, that reads and executes the code. Call Stack maintains the order of execution contexts. Since JS is single threaded and asynchronous, at one point of time, only one function is executed which is at the top of the call stack. For each function, an execution context is created before executi

i3wm essentials - I (Brightness)

So you have started using i3 and somehow managed to open your browser and almost resumed your normal work.  But wait, the brightness is too much isn't it? Or is it too low? The mousepad used to work fine, but now all of a sudden tapping does not equal click?!  Don't worry.  This blog series will tell you all about the essential setup commands and common shortcuts that I use to navigate my work in i3, and how you can too. Changing the brightness So you just started i3 and you just can't take this brightness setting. You go for your function keys, and damn! They aren't working. Quick fix: Run the following command if you need to change the brightness ASAP. xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1 This will give an ouput that's the name of your monitor.  Use that monitor name here and change the values of brightness to suit your needs. xrandr --output <monitor-name> --brightness 0.7 Now that your eyes are comfortable, let me show

i3wm essentials - II

Welcome back! Let's continue this guide with other setup essentials for i3. Enabling Mousetap Chances are that if you're using a laptop, then tapping on the mousepad does not equal a click for you. You need to enable tapping in your config. Fortunately, there is one documentation available that works for majority of the setups. I don't need to explain this one in detail. Here you go: Enable tap to click in i3 . Volume Control This one is simple again. Do you remember the i3 config file I talked about in the previous blog ? All you need to do is go to that file and find the line: bindsym XF86AudioRaiseVolume Just below that line you will find lines with XF86AudioLowerVolume and XF86AudioMute too. Anyway, the truth is, there are 2 sets of lines with these keywords. Chances are that the line: bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink-volume 0 +5% Will be uncommented and the line: bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink vo