Skip to main content

Let us dream together

I feel as a society and people we don't ask our friends and relatives and people in general, what are your dreams? Life is a competition and we are mostly all trying to get ahead. Instead of waiting for society to ask me, what are your dreams, I realised I could just go ahead and tell society and the world in a blog post. I was chatting with a friend and three things came to mind - losing weight, finishing my second book and being the best human being I could be (a better Muslim). But I needed to think about this some more. If we know our dreams we can find our best fit and role in society and we would know how to support each other.

At the highest level I want to be happy and comfortable and I want others to be happy and comfortable. My pursuits must be purpose driven. I have a passion for tech and I have a problem solvers' mindset. I dream of being the best tech blogger and tech youtuber I can be. I have put much effort into this over the years. I have built a good foundation and I have many years of experience specifically with these and in the tech space.

I want to build a youtuber studio. I want to create a proper desk setup where I can also do my coding. My favorite tech youtuber is Marques Brownlee. I admire how he explains things and I admire how he started simply and built himself to be the best tech youtuber. We hardly have any tech bloggers and tech youtubers in Trinidad or even in the Caribbean.

Why are my dreams important to me? I think my dreams can benefit myself and the world. The world is a better place when all of us reaches our best potential. It works in the context of a meaningful life and giving of ourselves. See my blog post on my understanding of life. Having dreams and working towards them makes life beautiful. Every day I get up and I thank God. I ask myself what can I do that gets me closer to my dreams. What can I do today to make me a better human being. A better Muslim. A better citizen of Trinidad and Tobago. A better person in this world.

It will not be easy. Life is full of ups and downs. We face challenges all the time. Look out for your friends. Look out for your relatives. Look out for others. Lend a helping hand. Give words of encouragement. Let us be dreamers together. Bard thinks that Martin Luther King Junior said, "Let us be dreamers together, and create a world where everyone is loved and accepted." This does sound like something he would say but I could not find this quote anywhere else online. My advice to others is to do like I did and write about your dreams. Let others know about your dreams and don't be afraid to ask for help with your dreams.

Comments

Anonymous said…
Love it, we need more dreamers

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...

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...