Skip to main content

People are the Problem



Imagine you on earth with only your dearest ones. (for some it may be parents, for some their children and wife, or someone else)

You are the only humans in the entire world (not even buildings like today but the books to read or any source of information). Imagine the peace and the calmness in you. You are no more hustling for being better than that guy, not forcing yourself to get what other families are enjoying. You just upskill yourself to learn new things and get better. Wouldn't be one of the best feelings ever?

You roam around the world altogether while embracing nature and it's chilling.

But what about the downside? Imagine your son falling from a big stone and wounding his head, there is a big downside to not getting treated with medication. You may get him cured with your knowledge or he may be more robust with the rough condition he had been dealing with all the time to get him stronger. However, if there is a severe injury and it cannot be cured no matter what you try it would be sad news.

It is better in today's world too, imagine the same condition in an economically suffering family. It would have been a worse scenario with the people's involvement.

I don't know, maybe the ISTP of me idealizing the environment appropriate for me. Or is it actually true for all?

The point I am making is the world today is so random. Entropy is increased extensively. It is becoming more complex as the minutes pass by. It is tremendously hard for an individual to go through all this. And especially for the people in the third world.

It is often easy for people to say focus on your goal and not get affected by others. But it is very difficult for me not to. We are unconsciously or even consciously affected by that.



I try to not get affected by others. I only focus on growing myself better and I also enjoy the process. But when I hear a guy like me or younger doing better than me I cannot stop myself from thinking aggressively about how can I make myself better to achieve the level that guy is doing.

Ultimately, no matter what, I console myself that life is harsh and relieve myself by confronting that I am getting better with the pain I am going through and moving forward. As there is no escape, I choose the method to live this way again stand up and walk my way.









 

Comments

Popular posts from this blog

Prerequisite for Data Science Developers in Python

Data Science is a very important job in today's age of data being the aspect that plays a vital role in most of the field whether it may be the medical field, business, agriculture, engineering, sports and the list go on and on. Python is one of the programming language, which is used for data science and machine learning. It consists of many libraries and a very good community built within the past couple of decades. And it also has the upper hand among other languages as this same language can be used to build the system. While I talk about libraries in Python for Data Science(DS), the first library that come into thought is "NumPy", NumPy (abbreviation for Numerical Python) is the library built with the purpose of scientific calculation in numerical data. It is best for storing the numerical values in an array as a NumPy array that may be single or multi-dimensional (also called Tensors). "Okay, then why not List?"  T...

Why Social Media is good for you?

"Social Media is ruining our generation" you must have heard this sentence hundred time if not more. Infinity scroll feed in our fingertips have changed our life. But is this change only effecting us in bad way? While social media can make us hung in our phone for long long hours with dopamine hit, it also has some good deeds to us which we often fail to look on. The number of new business model and ideas that social media has brought today cannot be ignored. But today I am going to talk the different part that social media has helped humans on. One of the most important thing, it helped us is, today information is accessible to all the people. Every person on earth with smartphone and internet connection have access to news and updates from all over the world. In previous time, for one to learn new things they need first accumulate the motivation to gain knowledge then find the resource (which were not easily accessible) like books, magazines, videos, etc. But today, if the...

Understanding Web In General

When we open a browser and type "www.example.com" it establishes the connection as you being in the browser as client and example.com's computer stored somewhere on the internet. When we say the internet connects everything, this is one example. Here, you as a client want to take service from the server example.com. How is the connection established? The connection is established with the help of HTTP protocol. Now let's dig inside HTTP. HTTP is a protocol for transferring Hypertext data from one computer to another on the World Wide Web basically the internet. Let's understand it more with the above example. When you go to example.com. First, the connection is established between a server and you as a client to communicate a socket is established for request and response. Your request to view the homepage is then taken as a request after connection establishment. And the server is designed in such a way that, what should we do when a particular request comes. He...