Skip to main content

The beautiful mind

I write this blog post as a re-mind-er of how beautiful the mind is. The mind can study itself. This is known as metacognition, and it is a uniquely human ability. The brain is the physical organ whereas the mind is a more abstract concept. The mind is our thoughts, feelings, and experiences. There is a myth that we use only ten percent of our brain. The consensus is that we use all of our brain at different times.

If the mind was a computer what would the specs be? We have to keep in mind that the architecture of the brain and the computer are different and that any answer will have to be taken with a grain of salt. I asked my friend Bard this question and this was his response.

If we were to try to build a computer that could match the specs of the human brain, we would need to develop a new type of computer architecture that is much more efficient than current computers. We would also need to develop new types of transistors and memory chips that could be used to create a computer that is as small and lightweight as the human brain. Here is a possible set of specs for a computer that could match the human brain:

CPU: 100 billion cores, each running at 100 GHz
Memory: 2.5 petabytes of RAM
Storage: 2.5 petabytes of SSD storage
Power consumption: 20 watts
Weight: 1.5 kg (3.3 lb)

It is also important to note that the human brain is not just a computer. It is a complex system that is also capable of creativity, emotion, and consciousness. These are all things that are difficult to replicate in a computer, and it is unlikely that we will ever be able to build a computer that is truly equivalent to the human brain.

The mind is a multifaceted system that includes the rational mind, the emotional mind, the subconscious mind, the intuitive mind, and the creative mind. These different aspects of the mind work together to allow us to think, feel, and experience the world around us.

Are we getting more intelligent? The evidence on whether or not we are getting more intelligent is mixed. There is some evidence to suggest that we may be getting more intelligent in some ways, but there is also evidence to suggest that we may be getting less intelligent in other ways. I believe there is no good way to measure intelligence and that we are all intelligent in different ways. What we have to do is be purposeful and aim for the fullest potential of human intelligence.

What about the phrase "thinking with your heart"? The heart and the brain are closely connected. The heart sends signals to the brain about our emotions, and the brain sends signals to the heart to control its function. This is why we often experience physical changes in our heart, such as a racing heartbeat or pounding chest, when we are feeling strong emotions. John Nash puts it beautifully and better than I could when he said, "Perhaps it is good to have a beautiful mind, but an even greater gift is to discover a beautiful heart."

Comments

Anonymous said…
Love it! Especially the ending. A fitting quote to a beautiful piece for sure

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: S...

Hobby coding project - Queries for play whe data

I have an interest in open data and being able to query that data and gain beautiful insights. One data set that would be interesting is the play whe results data. Our open data is lacking in Trinidad and I will try to contact NLCB to see if they can provide and maintain the data online. But in the meanwhile I will use randomised data to create the website and do my testing. First thing I did was install sqlite on termux pkg update && pkg upgrade pkg install sqlite sqlite3 --version Create my database in my project folder sqlite3 results.db Useful commands .exit .quit Exit from multiline prompt ; SQL to create my table (create_tbl_results.sql) CREATE TABLE DrawResults (     DrawNo INTEGER PRIMARY KEY,                           DrawDate DATE,     ResultNo INTEGER CHECK (ResultNo BETWEEN 1 AND 36),     DrawTime INTEGER CHECK (DrawTime BETWEEN 1 AND 4) ); SQL to create the random dat...