Skip to main content

HOW HAS THE CREATION OF CODE IMPACTED US AS HUMANS



The invention of coding has revolutionized the way we live and communicate. today almost everything around us is being run by a written code and thus has made our lives easier. look at the device you are reading this, the mobile phone where you get a notification, your washing machine, everything has a code that makes it function. 

Coding, or programming, has had a significant impact on society and the way we live our lives. It has enabled the development of many technologies and tools that we use daily, such as computers, smartphones, and the internet. It has also brought in the idea of automation of processes leading to AI, and this has increased productivity and efficiency. It has hence contributed to the creation of new industries and job opportunities. interesting fields such as the internet of things, artificial intelligence, virtual reality, and 3d game development are created due to the advent of code.

The Internet which came into existence due to coding has given humans limitless access to information in a way never imagined before. the concept of online was thus developed and all kinds of information were being shared online. websites started popping up for different purposes creating this web of data in circulation.

Coding introduced a new concept of games and today game development is a subject and a field in itself and game development is a million-dollar industry. Further, the idea of automating processes using written algorithms has brought radical changes in our lives in a way coding did not, for instance, the concept of self-driving cars is a reality now.

Our way of doing business, earning income, and conducting business transactions has taken a sharp 90 degrees turn into a new direction due to the fact that coding made it possible to have no cash in hand still be able to buy and sell and hence we are now heading towards a cashless society. coding has taken businesses online and people can buy anything from anywhere in the world expanding business possibilities. this advancement and automation in business is known as Fintech. Coding also recently gave us a new form of money, cryptocurrencies, which act like stocks however you can buy and sell anything using them.

Lastly, coding has enabled humans to create unimagined things. it is like clay that you can mold into literally anything, from a simple calculator to creating art masterpieces using AI coding has given humanity a new way of thinking communicating, and living.

Comments

Popular posts from this blog

ARRAYS VS VARIABLES IN PYTHON

Beginners mostly prefer variables over arrays, usually because they dont know the real power of array and they end up wasting time storing bunch of items in tens of variables whereas they can use an array and store all those into one variable ` Why people use variables than array Most programmers when starting out learn how to create variables to store information in as a way to make their program more dynamic. However, when they start writing a program, they soon find themselves using lots of variables for the same datatype which results in a waste of time and memory, then they say to themselves, “There has to be a better way.” If they are smart enough and love to research and update their programming, they will turn to using arrays. Arrays are a complex data structure compared to variables but once the progammer gets the hang of it he will be using it all the time for storing same datatype items. (btw in this blog post: https://cyber1571.blogspot.com/2022/10/arrays-in-python.html...

ARRAYS IN PYTHON

An array in python is a data structure that can hold more than one value at a time just like a list but their is a slight different in both of them which is discussed below. arrays can hold values of only single data type e.g integers or strings. All values in an array are indexed hence have their own unique address by which they can be called at any time. Now the indexing of array values in python always starts from 0, so if I have an array starting from 1 till 100 the first value of this array i.e 1 will have its index number as 0 and the array's last value i.e 100 will have an index number of 99. to visualise it we can say: array:     1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 ,9 , .........., 100           array's       index  :  0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , .........,  99 So now you can easily see how arrays are indexed in python so If using python code which is (discussed below), call out a specific index number it wi...