Skip to main content

TJ's theory of human evolution

Human evolution from the eyes of a programmer


From the first life that appeared on Earth, there have been so many species that came into existence. As Darwin showed, a species can evolve from a common ancestor into a specific species with unique properties and behaviors of its own. Each species may possess some abilities based on its properties and behaviors. The abilities of a species can be used to get an understanding of development and intelligence. For example, a simple microorganism would only show the capabilities of primitive life i.e. energy consumption, reproduction, growth, and development. However, a developed higher species may display abilities like building nests, homes, communication with sound patterns, etc. 

Evolution of species as a class diagram
Evolution of species as a class diagram


Among, all the animals, humans are capable of quite peculiar and advanced abilities that come with the large brain and cognitive development. Humans have developed so advance with our capabilities we have complex languages to communicate, use advanced tools, complex social behaviors, sophisticated homes, and so on. Not only that humans are capable of probing nearby planets and beyond. 

However, my question is are humans are so advanced and evolved as they claim to be? 

Fact 1

If you pick some average animal from a species it would display the abilities and properties that would be common to all the individuals in that species. For example, if you take a bird it would definitely be able to build a nice nest as any other bird of that species. If you pick a woodpecker, it would know how to build in a tree. So it will be for most of the other animals. 

If you pick a random human from the street and ask him/her how the electricity is generated? Would they be really able to answer that? Or how computers are built? or how to do taxes? If you do this as a social experiment, few would know how to do some stuff, but most wouldn't. 

One can argue that humans have social behaviors and live in communities. So, each individual doesn't need to know or should have the ability to do everything. It does sound like a fair answer but not so perfect I would argue. 

If you consider some social creatures like ants or bees, each individual is made for a designated purpose from their birth. Their whole population of a colony is genetically controlled by a single queen if you think that way. What about humans? doesn't sound like it. 

Another argument would be humans do not have such a hive behavior but their social behavior is different than that. Unlike a hive, the genetic details are passed along to their children by each individual. Still, humans can be trained for specific tasks, therefore the above problem doesn't really matter.

Again, it is a fair answer still with few loopholes. It is true for some of the social animals and humans before a couple of centuries ago. If there is are some specific tasks in the society, some people would be trained for that purpose and will be experts. If for some reason, one or all of the individuals who are performing this specific task dies, it can be replaceable by some other individuals with some sort of training and effort. Yes, this has been true for centuries of human societies, but is it really true now? 

Within the last couple of centuries of this writing (2021 AD), humans have made such discoveries where they are extremely complex. Let's say for some reason, all of the computer scientists/engineers/scholars related to computer technology seize to exist suddenly. What would happen? Would it be possible for other individuals to understand and develop computer technology from the scratch? Well, if they had the information on how to do that, yeah definitely somebody would be able to refer the information and follow the same. If the information is not there anymore about a specific field, then arguably it would take them maybe a century of research and development to come back. Well, it seems it is not a matter of abilities now but a matter of information we can store, access, and understand. 

Information has become super easy to access with the world wide web access. However, there can be matters of understanding them. Might take some time and several people to understand something from the beginning where they are not familiar with before. 

Fact 2

If a group of humans isolated with limited resources, would they still live like social and civilized human beings? Maybe for some time, but after some point, their ancestral instincts would kick in and will bring back the animal within. Eventually, they would display the primitive behavior where the strongest individual survive.

Well, we can develop an interesting counterargument on it. What if the survival of the strongest always has been there and still is in human society? The strong will beat up the weak and get the food and other amenities by force. For the Weak, they would have to be good at something where the Strong is not good at getting done alone. Maybe growing crops or herding animals. So, the Strong would need the support of these Weak individuals to survive. Then the Strong would stop beating them up for getting the services in return. This is still true for most parts of the world where the groups are being controlled by pirates, militia, and whatnot. 

When the same concept evolved with years and made things different by the economy, trading and money. 


Conclusion

Still, humans are not civilized enough to put behind animal instincts. 

Still, the survival of the strong takes place in human societies. 

Human society consists of heterogeneous individuals. 

Humans totally depend on storing and accessing information and learning them fast. Apparently, they have been producing information faster and faster but humans are not capable of learning them fast enough. Therefore very few individuals are providing the new advances to the human population (could be technological or cultural) and the rest of the individuals are just using them without any understanding of it (eg: computers, software, economy). 

Finally, Humans are still evolving and apparently not fast enough as a community. 


Comments

Popular posts from this blog

Install Docker on Windows 11 with WSL Ubuntu 22.04

This is to install Docker within Ubuntu WSL without using the Windows Docker application. Follow the below steps. Install Ubuntu 22.04 WSL 1. Enable Windows Subsystem for Linux and Virtual Machine platform Go to Control Panel -> Programs -> Programs and Features -> Turn Windows features on or off 2. Switch to WSL 2 Open Powershell and type in the below command. wsl --set-default-version 2 If you don't have WSL 2, download the latest WSL 2 package and install it.  3. Install Ubuntu Open Microsoft Store and search for Ubuntu. Select the version you intend to install. I'd use the latest LTS version Ubuntu 22.04. Click on the Get button. It will take a couple of minutes to download and install. 4. Open up the installed Ubuntu version that was installed. If you get an error like the below image, make sure to install the WSL2 Kernel update .  If it's an older Ubuntu version the error message would be something like the image below. Error: WSL 2 requires an update to its ...

How to fix SSLHandshakeException PKIX path building failed in Java

TL ; DR 1. Extract the public certificate of the website/API that you are trying to connect from your Java application. Steps are mentioned in this post 2. Use the Java keytool to install the extracted certificate into the "cacerts" file (Trust store) keytool -import -trustcacerts -alias <domain name> -file <public certificate>.cert -keystore /path_to_java_home/jre/lib/security/cacerts -storepass changeit 3. Restart your Java application Exception A typical exception stack trace would look like below. javax.net.ssl. SSLHandshakeException : sun.security.validator.ValidatorException: PKIX path building failed : sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Alerts.java:192) at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1959) at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:302) at sun.security.ssl.Handshake...

Automatically open Chrome developer tools in a new tab

Sometimes we need to check the console or the network transactions of a link that opens up in a new tab. By default, the Chrome developer tools are not opening in a new tab. So, by the time when we hit F12 and open the dev tools, part of the information we needed could be already gone.  There's a setting in dev tools where you can keep the dev tools open automatically in a new tab. To enable that, hit F12 and open up the dev tools. Click on the settings icon in the top right corner. In the Preferences section, scroll down to the bottom. You'll be able to find the option to Auto-open DevTools for popups. Select the checkbox and we're good to go!