Skip to main content

Using technology to make PTSC better

I had planned to do a Q and A with PTSC about using tech and providing a better service but I pivoted and created this blog post. I crowd sourced ideas from social media and added my own ideas. What persons don't see is the hardship and begging and following up that goes into getting responses and questions answered from some entities. Whenever I can do this easily it is like a breath of fresh air. I would expect entities to be willing and responsive to persons working to make a difference.

What's the point of this you might ask? Someone is already being paid handsomely to come up with these ideas you might say. The point for me and my blog is about brainstorming and educating. We want an informed public. We want a solutions minded public. We want a public that is willing to help regardless. Such a public will be in a better position to hold the technocrats to account. Such a public will be able to demand better and decide better.

I would not go into the benefits of efficient public transport in this blog post except to say that there are huge benefits. I like the points raised in this article, 6 Reasons Why Access to Transport is so Important. The government recently announced that we are going to develop a new transportation plan relevant to the modern times we live in. Below are a list of ideas for the improvement of PTSC using tech that are worth considering

  • IoT and Big Data and scheduling software
  • eTicketing for convenience
  • Mobile app that shows when and where the next bus among other things
  • Monthly NFC pass for regular users
  • Using green energy to reduce cost and help the environment
  • Smart bus stops possibly starting with the Connected Arima project
  • Preventive maintenance software
  • Ticket machines in convenient locations
  • WiFi on buses to be productive while in transit
  • Learn from UWI student projects
  • Open data and APIs to encourage developers to contribute their own solutions
  • Tech for the business processes of PTSC. Think like any profit making business.

Share your ideas in the comments and share this blog post so that we get the most ideas. One comment I got that made sense was that the biggest improvement would come from having buses use separate lanes from regular traffic and this has nothing to do with tech. I agree but I still think tech will be needed for data and analysis to tell us where to put these dedicated lanes and the bus stops. Also what would be cost and time to build a network of dedicated lanes? I would bet that tech solutions would cost a small percentage of 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...