Skip to main content

Love, Purpose, and Ten Dollars

This will be my submission to this future leadears competition


I was scrolling through facebook and saw this essay contest posted by TATT. At first I was excited. I am a writer. I am a nooby book writer. I have been a blogger and tech blogger for about 20 years. My excitement turned to disappointment when it appeared to me that I might not be the target audience or that I do not have the expertise to write for this topic. However, I decided that I am still going to give it a try. Maybe it encourages the organization and judges to have a category in the future that caters for a wider audience. Surely I will not win but it will get me thinking and it will be an opportunity for learning and of course I will be doing my favorite thing which is writing. The topic is breaking down barriers to sustainability. This is related to our future towards green and digital solutions and the communications industry as I understand it. What policies, regulations and structures are needed? Who pays for these?

Right off the bat I would like to answer the question of who pays. Who benefits, who profits and who can afford should pay, comes to my mind. What is the communications industry? I turned to Google for this question and found a website that listed 40 examples. From ISPs to Web hosting to Mobile device manufacturers. In Trinidad we have the Telecommunications Authority of Trinidad and Tobago (TATT) supported by the government and our taxes. My most direct and most dependent part from the communications industry is my internet connection and the web services and the mobile phone that I use. I pay for my internet through the ISP and many of the websites I use are ad supported. As a citizen and blogger and internet user and recognising the importance of my internet and our green and digital future, I am willing to pay ten dollars more on my internet bill and ten dollars more on the purchase of my mobile phone and that goes directly to policy and regulation and structure. Things that in my mind would lead to cheaper and better communications so really it might be a net future savings for me.

I think to ensure future sustainability the players in the communications industry must focus on purpose and doing good rather than profits. When I told my friend Gemini this, he agreed with me saying that there is a strong argument for the communications industry to prioritize purpose and social good alongside profit. We are increasingly drawn to brands with a strong social conscience. There is a growing movement towards what is called "conscious capitalism". The world is interconnected and we can only build a better future together. Love for humanity must be a stronger driver of development than greed. We can do the most amount of research and develop the most sophisticated structures but it must be guided by love and kindness and doing good to truly have an impact and bring real prosperity. This is from the school of hard knocks. Love for humanity fosters a sense of shared responsibility and a willingness to work together for the common good.

So can targets be met and are policies enough? I like to think that anything is possible with the right attitude. From my experience one of the hardest things to do is measure targets and one of the easiest ways to stay motivated is by introducing incentives. So in my simple and minimalist thinking we should offer incentives to the players in the communications industry and the best policies are the simple policies. Simple policies are easier to understand and implement. I realized that I have not touched on the topic of breaking barriers. I guess myself as a non-expert writing on this topic even though I cannot compete with the technocrats is breaking barriers. We can break barriers by getting the views of the man on the street. The everyday citizens who are impacted the most by policies and decisions made at the top. We can break barriers by giving a voice to the ordinary.

Comments

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