Skip to main content

Let's learn more about e-waste

The following is a question and answer segment with the Basel Convention Regional Centre for Training and Technology Transfer for the Caribbean following my blog post on the topic.

How do you define e-waste?


Reference is made to our website for questions 1 and 2.

Describe the work that BCRC-Caribbean is doing for e-waste?

To add to question 2, currently, the BCRC-Caribbean is executing a project entitled Management of E-Waste in Guyana, Suriname and Trinidad & Tobago, which includes the following components:

- The updated report on the current e-waste management practices in the three 
project countries
- Proposal on a sub-regional approach to the management of e-waste and the development of training materials
- Development of a business plan for the proposed management solutions
- Dissemination of project results and knowledge dissemination

Tell us about the e-waste survey?

There are two e-waste related surveys that have been posted to our social media in the recent past. The first is a Knowledge, Attitudes and Practices (KAP) survey for old mobile phones, to assess the general public’s knowledge on the disposal of used and end-of-life mobile phones, as a precursor activity under the project Demonstration of the Environmentally Sound Management of Used Mobile Phones in Trinidad and Tobago, which aims to educate the public on the impacts of improper disposal and will also be hosting a collection drive of used and end-of-life mobile phones.

The next survey that was posted to our social media pages dealt with the disposal of e-waste in general by households in Trinidad and Tobago, as part of the data collection process of the project Management of E-Waste in Guyana, Suriname and Trinidad and Tobago.

Do we in Trinidad and Tobago need a national policy on e-waste?

Currently, in Trinidad and Tobago, there are no legislation that are specific to e-waste, however there is a national policy that addresses the disposal of hazardous waste. Trinidad and Tobago is a party to the Basel Convention on the Transboundary Movements of Hazardous Wastes.

With technology rapidly evolving and the need for technology products increasing with the remote environment that has be catalysed due to the pandemic, necessity arises for the proper tools to effectively manage e-waste. While it may fall under the national policy which was developed for hazardous wastes, it may not be generally known or understood the effects of e-waste.

We can direct you to the Ministry of Planning and Development and the Ministry of Public Utilities for more information on this question.

What can we do to deal with e-waste?

Persons can have their e-waste safely disposed of through certified disposers. The Environmental Management Authority (EMA) can be contacted to get a full listing of which companies or organisations have a Certificate of Environmental Clearance (CEC) for the ESM of e-waste.

There is an e-waste collection drive for the collection of used and end-of-life mobile phones, along with a campaign that intends to educate the public on the dangers of e-waste and how the e-waste is handled to be discarded, in order to address the public’s concerns.

How can we profit from e-waste management?

A major benefit of the environmentally sound management (ESM) of e-waste is the impacts to human health and the environment. By ensuring that these materials are properly and safely disposed of, the risk of human exposure to toxic chemicals is reduced, and in the long run reduces the drastic effects on health and the environment.

Additionally, e-waste management can contribute positively to the circular economy, where components of the e-waste can be recycled.

The refurbishment, and resale of used electrical and electronic devices can also be profitable, as well as the sale of certain components of the e-waste.

For more information on the situation and context of e-waste in Trinidad and Tobago, the Ministry of Planning and Development, Environmental Protection and Planning Division and the Environmental Management Authority can be contacted.

How big of a problem is e-waste?

The United Nations International Telecommunication Union’s Global E-Waste Monitor 2020 revealed that 63.6 million metric tonnes of e-waste was discarded globally, 2.01 billion tonnes. The average annual generation of e-waste for Trinidad and Tobago for the period 2015-2033 is approximately 45,000 tonnes.

More information can be found here:



For more information on the situation and context of e-waste in Trinidad and Tobago, the Ministry of Planning and Development, Environmental Protection and Planning Division and the Environmental Management Authority can be contacted.

What can we learn from other countries?

Information on improving e-waste collection and safe disposal, as well as lessons learnt from other countries can be found here:

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