Skip to main content

Early computers at UWI Mona

Prof. Emeritus Robert J. Lancashire of UWI Mona read my blog post and emailed me some information relating to the early computers at UWI Mona and I had to share bits of it on my blog for anyone who finds these bits of history fascinating. Please feel free to message me with additional information or corrections or feedback. We really should pay tribute to the pioneers and early efforts that laid the foundation for the progress that we enjoy today. Before I started I did a Google search to see what I could find. Bard tells me that UWI Mona campus established the island's first computer center in 1961. This center initially housed an IBM 1620 computer, which was primarily used for scientific and engineering calculations, which is the information I also have. Some other early computers included another IBM mainframe following the Jamaica census and a Convex 3440 supercomputer (1992).

According to wikipedia, Ronald Cedric Read, born in 1924 and passed away in 2019, was a British mathematician and university professor. Ron (as he was called) shared notes on the differential analyser on 22nd and 23rd May 2008 that I got in my email from Robert. I like the date 23rd of May because I was born on the 23rd of May. The first computer at UWI Mona (back then the University College of the West Indies) was a differential analyser which Ron and Sze-Chit Yeung and Ian Isaacs began building in 1952 or 1953. According to the notes I have, "A differential analyser is an analogue computer, that is, one that is mechanical as opposed to digital. In it, numbers are represented by the rotations of shafts and wheels. It is used to solve differential equations."

The differential analyser when completed was used for demonstration purposes and also, to a small extent for research but not as much as was expected. Due to space constraints the machine had to be dismantled and parts stored but would be later rebuilt around 1960. The Mathematics department later acquired its first digital computer, the IBM1620, which became operational in 1962. According to the bulletin I have, at the time the bulletin was issued, the IBM1620 would have been used extensively for research in Physics and Mathematics, and for statistical calculations. The bulletin went into detail about how the IBM1620 worked and ended with the following, "It is extremely likely then that the University's computer will not only help to further academic research inside the University, but, by virtue of its many applications to planning and optimizing problems, as well as its more obvious uses, will also be an asset to Jamaica in general."

I also have in my possession the resume of Ron as given by his daughter. He studied both at the University of Cambridge and at the University of London. He went from Assistant Lecturer to Lecturer to Senior Lecturer to Reader and finally Full Professor, all these at the UWI between 1950 and 1970. His areas of interest included enumeration problems, especially graphical enumeration, application of computers to combinatorial problems, graph theory algorithms and problems of chemical documentation. He gave many invited talks and attended many invited seminars and was the recipient of several research grants. He was involved in the publication of several books and many research reports and many publications and papers. I was certainly impressed by the extent of his many years of work and the world is certainly better for this.


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