More than 250 corporate signatories joined together to try and deal with plastic pollution in an announcement timed to coincide with the 5th Annual "Our Ocean Conference" in Bali, Indonesia.
Under terms of the agreement, the companies agreed to, among other things, make all of the plastics they produce recyclable by 2025. The signatories, including Coca-Cola, Danone, and Kellogg, also agreed to a 2025 deadline to increase the amount of recycled plastic they use in the production of their various products.
Environmental groups like Greenpeace cautiously welcomed the announcement as "moving in the right direction," but say the agreement is way too open-ended to have much of an impact.
The facts are that around the world, according to a recent study, a whopping 91 percent of all plastic is never recycled. And all that plastic ends up in landfills, in the ocean, in the food chain and ultimately in us.
Greenpeace also noted that this agreement doesn't change much because "corporations are not required to set actual targets to reduce the total amount of single-use plastics they are churning out. They can simply continue with business as usual after signing the commitment."
Business as usual is also how the group Oceana views the agreement. It put out a stronger statement, denouncing the agreement. "None of these companies have committed to stop using plastic, to stop putting plastic into consumer products, or to even offer consumers alternatives."
Most environmental groups are urging signatory companies like Coca-Cola and UniLever to stop the flow of plastics at the source.
"Every company that signed the declaration should commit to a meaningful, time-bound and specific percent-reduction of the amount of plastic it is putting into the market," Oceana said in a statement. "...and to find alternative ways to package and deliver its products."
In fact, Greenpeace officials point out that "11 of the largest consumer goods companies’ current plans allow them to increase their use of single-use plastics and none have set clear elimination or reduction targets."
Despite the best intentions of the agreement, most environmental groups say this won't do much to slow the amount of plastic building up around the world.
The companies that signed on, however, say this agreement will allow them to "eliminate the plastic items we don’t need; innovate so all plastics we do need are designed to be safely reused, recycled, or composted; and circulate everything we use to keep it in the economy and out of the environment."
Since its beginning, the annual Our Ocean Conference has worked with private companies and governments around the world to protect 12.4 million square kilometers of ocean with monetary commitments worth more than $18 billion.

L162的更多相关文章

  1. Windows Phone 十八、加速计

    加速度传感器 手机的加速度传感器工作时是通过 x.y.z 三个轴的偏移来计算的 在代码基本的 API 主要集中在 Accelerometer 类型中 主要是使用该类型的对象捕获 ReadingChan ...

  2. CoreCLR源码探索(三) GC内存分配器的内部实现

    在前一篇中我讲解了new是怎么工作的, 但是却一笔跳过了内存分配相关的部分. 在这一篇中我将详细讲解GC内存分配器的内部实现. 在看这一篇之前请必须先看完微软BOTR文档中的"Garbage ...

  3. 原创-使用pywinauto进行dotnet的winform程序控制(一)

    pywinauto自动化控制win32的ui的程序,网上有好多的教程.但是操作dotnet写的winform教程,就少之又少.今天我就来分享我的pywinauto操作dotnet的winform的研究 ...

  4. 记一次bypass某场景GD库及拓展分析

    0x00 前言 gou楼兰师傅发来个站说是过不了gd库,问我有啥办法没有,给了他之前海贼师傅说的jpg_payload脚本,但是绕不过,问他拿了站点,写了个jpg_payload批量的fuzz脚本,f ...

  5. 手写Koa.js源码

    用Node.js写一个web服务器,我前面已经写过两篇文章了: 第一篇是不使用任何框架也能搭建一个web服务器,主要是熟悉Node.js原生API的使用:使用Node.js原生API写一个web服务器 ...

  6. kubelet CPU 使用率过高问题排查

    kubelet CPU 使用率过高问题排查 问题背景 客户的k8s集群环境,发现所有的worker节点的kubelet进程的CPU使用率长时间占用过高,通过pidstat可以看到CPU使用率高达100 ...

  7. [SPDK/NVMe存储技术分析]012 - 用户态ibv_post_send()源码分析

    OFA定义了一组标准的Verbs,并提供了一个标准库libibvers.在用户态实现NVMe over RDMA的Host(i.e. Initiator)和Target, 少不了要跟OFA定义的Ver ...

随机推荐

  1. STM32-串行SPI nor

    源:FLASH 存储学习-串行SPI nor 1.1 SST25VF080B简介1.1.1 主要特性 关键点:容量.速度(时钟速度.读写速度).功耗. l 容量:8MBit: l 最高SPI时钟频率: ...

  2. Zabbix 关联onealert实现电话报警

    Zabbix 关联onealert实现电话报警 系统环境:Linux Centos 7.4 应用版本:Zabbix 3.0.22 OneAlert官方地址:http://www.onealert.co ...

  3. jQuery判断元素是否显示 是否隐藏

    var node=$('#id'); 第一种写法 if(node.is(':hidden')){ //如果node是隐藏的则显示node元素,否则隐藏 node.show(); }else{ node ...

  4. centos 最新版git 致命错误: zlib.h:没有那个文件或目录

    遇到此类问题通常是缺少对应的库文件. 由于yum install是老版本的git 还是1.8的 如果需要安装新版本的git,官方给出的url:https://git-scm.com/download/ ...

  5. PostgreSQL 递归查询 (转)

    数据库中的数据存在父子关系(单继承,每一条记录只有一个父亲).  如果要查询一条记录以及他的所有子记录,或者要查询一条记录以及他的所有父记录.那么递归查询就再合适不过了.可以简化复杂的SQL语句 现在 ...

  6. python-高阶函数和闭包

    高阶函数:把函数作为参数传入,这样的函数成为高阶函数. 高阶函数,higher-order function Abs()内置函数:绝对值 函数名是什么:指向函数的变量 传入函数 一个函数的参数是否可以 ...

  7. JAVA基础补漏--SET

    HashSet: 1.无序集合. 2.底层是一个哈希表结构,查询速速很快. 哈希表==数据 + 链表/红黑树 特点:查询速度快. 存储数据到SET中: 1.计算数据的HASH值. 2.查看有没有相同H ...

  8. layer弹出层的关闭及父页面的刷新问题

    当在主页面执行添加或修改时,用弹出层是比较好的选择,如何关闭弹出层并对父级页面进行操作呢 首先在父级页面中打开一个添加页面(弹出层) 在添加页面的表单提交函数中添加如下代码: function for ...

  9. 【Semantic Segmentation】U-Net: Convolutional Networks for Biomedical Image Segmentation 论文解析(转)

    目录 0. 前言 1. 第一篇 2. 第二篇 3. 第三篇keras实现 4. 一篇关于U-Net的改进 0. 前言   今天读了U-Net觉得很不错,同时网上很多很好很详细的讲解,因此就不再自己写一 ...

  10. 【边框回归】边框回归(Bounding Box Regression)详解(转)

    转自:打开链接 Bounding-Box regression 最近一直看检测有关的Paper, 从rcnn, fast rcnn, faster rcnn, yolo, r-fcn, ssd,到今年 ...