Skip to main content

Our futures

For me one of the greatest technological statements was made by Tim Berners-Lee, Inventor of the World Wide Web, when he said, "The Web as I envisaged it, we have not seen it yet. The future is still so much bigger than the past." The potential of technology and all its possibilities is mind blowing to me. There are future advances that no one has thought of as yet. We have an infinite number of futures. Which one do we choose? Who gets to choose our future? 

We need to be informed about the advances in technology and keep the decision makers accountable. The more we know about the potential benefits and risks of new technologies, the better equipped we will be to make informed decisions about how they are developed and used. We have to get involved in public policy discussions about technology. We have to support organizations that are working to promote responsible and ethical technology development. We can use our purchasing power to decide our future of technology.

Tech visionaries can play a vital role in shaping our futures. They can help us to understand the potential of new technologies and to think about how we can use them to create a better world. They can also help us to identify and mitigate the potential risks of new technologies. I have seen several techies ask, "Technology is the answer. What is the question?" In my opinion the question is, what will have the greatest impact on mankind's future. Ray Kurzweil, futurist and inventor, has been vocal about the profound impact technology will have on our future.

Kurzweil has made some bold predictions like technology becoming smarter than humans by 2045. This is something known as singularity. He also thinks we would achieve a level of immortality by 2030 when we would be able to copy our consciousness to machines. This might be in my lifetime and to be honest these two things scare me, even with my normally optimistic self. What scares me the most is the timeframe he specifies. I think if we move too quickly with these types of things then we have less time to react to the potential negatives. Our futures are full of unknowns and these can be scary. The future is a canvas on which we can paint our dreams, but only if we have the courage to embrace the possibilities, balanced with the unknowns.

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