Skip to main content

Technology research and inventions in Trinidad

I am trying to figure out what technology research and inventions have happened in Trinidad and Tobago and some quick searches on the internet are not helping. I think this sort of information should be easily available and publicized. Is it because there is not much research and invention happening in the technology space? I wish there was one place I could go to to see all the research and inventions that are happening in the tech space locally. And the info should be simply presented in ways that the layman can make use of this. Maybe you can help me and comment where I should be looking or who I should be contacting? I know there is TTLAB, UWI, UTT, Cariri, and NIHERST where I could start with my question and which I will do. Maybe the open data folks can create a listing from each of these bodies: title of research or invention, details, contact, link to more details, date, comment and tags.

I asked my friend Bard, what info do you have about technology research and inventions from Trinidad? The most interesting thing he returned with was this bit that I could not verify with Google: Perovskite Light-Emitting Diodes (PeLEDs) at UWI's Centre for Advanced Materials are revolutionizing displays for TVs, phones, and computers. I see lack of public information and promotion as a challenge and opportunity. It is an opportunity to create a dedicated platform, possibly under the guidance of the Ministry of Digital Transformation, that could aggregate information on research, inventions, and success stories in the technology space.

And if it is found that there is little happening in tech research and invention then we can start asking questions and thinking about ways where we can promote tech research and invention. My friend Bard tells me that we can identify the gaps by conducting surveys and interviews: Talking to researchers, entrepreneurs, investors, and policymakers can reveal challenges and areas needing more focus. Also analyzing existing data and benchmarking against other countries. Then we can begin promoting tech research and invention by increasing funding, encouraging collaboration, simplifying regulations and bureaucracy, developing talent and skills, and creating a supportive environment. Building a culture that celebrates innovation, entrepreneurship, and risk-taking can attract talent and encourage investment.

VTT in Finland is an example of how a country can focus on research and innovation. VTT stands for Valtion Teknillinen Tutkimuskeskus: This translates to "National Technical Research Centre." According to their website, VTT is a visionary research and innovation partner for companies and society: VTT is one of Europe’s leading research institutions. We are owned by the Finnish state. We advance the utilization and commercialisation of research and technology in commerce and society. What can we learn from them and what can be the equivalent of this in Trinidad? Share your thoughts with us in the comments below.

Comments

Popular posts from this blog

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

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...

Why is the Caribbean not a tech hub?

Why is the Caribbean not a tech hub? I saw this question online and it got me thinking. Who should be asking this question? Who should be answering this question? Do we have the data to answer this question? Besides data, what else do we need to answer this question? And when we have answers, who is going to do the work to change things? This is what my friend Chatty had to say: The question "Why is the Caribbean not a tech hub?" is really a question about history, capital, education, governance, culture, and coordination, not just technology. The Caribbean is often unfairly compared to places like Silicon Valley or Shenzhen without acknowledging that those regions benefited from massive investment, large markets, and long-term industrial planning, while Caribbean nations were shaped by colonial extraction, small fragmented markets, debt, and brain drain. We have some useful data, but not enough to fully understand the region’s digital potential, and data alone cannot answer ...