Home Hardware Tutorial Hardware News Apple iPhone 16: Protests outside Apple Stores worldwide, several arrested

Apple iPhone 16: Protests outside Apple Stores worldwide, several arrested

Sep 23, 2024 am 06:21 AM
facebook iphone icloud ai amazon google meta laptop war test Notebook review reviews tests reports netbook launch battery Israel Gaza Protest Tim Cook congo gaza war boycott

Apple iPhone 16: Protests outside Apple Stores worldwide, several arrested

Apple iPhone 16 launch protests took place outside Apple Stores in over 12 cities across 10 countries including London, Tokyo, Brussels, Cape Town, Amsterdam, Mexico City and Manhattan. The protests were organised by current and former Apple employees.

They demanded, among other things, that no cobalt be sourced from regions such as the Congo, where human rights abuses are taking place. Other minerals from the region used to make iPhones include gold, tantalum, tin and tungsten.

The protesters also criticised Apple's silence on the Gaza war and its involvement in Israel, including the country's second largest research and development centre. The demonstrators also called for people to boycott Apple products and to unsubscribe from services such as iCloud, Apple TV+ and Apple Music.

Banners reading "Apple profits from genocide" and "A child died in Congo for your iPhone" were held aloft, and shouts of "From Congo to Palestine, apartheid is a crime" could be heard. Apple says it does not source minerals from such critical areas and intends to use only recycled cobalt in its products by 2025:

This is a big idea of not having to mine anything, is to use all recycled material, and today we’re using 100% recycled cobalt in the watch and 100% recycled gold, tin, tungsten, and other rare-earth materials in the watch. So we’re really, we’re really proud of this. But for those products that we still do mine, for some of our other products, we have an intense level of tracing in our supply chain all the way back to the mine and the smelter to make sure that the labor used is not child labor.

- Apple CEO Tim Cook

The company has excluded some suppliers in the past due to difficulties with some mines. The protests were mainly organised by a group called "Apple Against Apartheid", made up of current and former Apple employees, although the majority of protesters were not Apple employees.

The number of people taking part in the protests was relatively small, as shown in a video from the Oinat YouTube channel, taken outside an Apple store in London. Most of the protesters were in Berlin, where (few) dozens of people gathered. Five protesters were arrested in the capital, according to Tariq Ra'Ouf, one of the main organisers.

In March, the group published a letter signed by around 300 former and current Apple employees, claiming that Apple would reprimand or fire its employees if they supported the Palestinian people by wearing pins or similar items.

In the past, Google employees have protested against Project Nimbus, a contract between Google and Amazon with the Israeli government to provide cloud computing infrastructure and artificial intelligence (AI) to the Israeli military, among other things. Amazon and Meta workers have also clashed with their employers over war-related issues.

▶ load Youtube video

The above is the detailed content of Apple iPhone 16: Protests outside Apple Stores worldwide, several arrested. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Can mysql return json Can mysql return json Apr 08, 2025 pm 03:09 PM

MySQL can return JSON data. The JSON_EXTRACT function extracts field values. For complex queries, you can consider using the WHERE clause to filter JSON data, but pay attention to its performance impact. MySQL's support for JSON is constantly increasing, and it is recommended to pay attention to the latest version and features.

Understand ACID properties: The pillars of a reliable database Understand ACID properties: The pillars of a reliable database Apr 08, 2025 pm 06:33 PM

Detailed explanation of database ACID attributes ACID attributes are a set of rules to ensure the reliability and consistency of database transactions. They define how database systems handle transactions, and ensure data integrity and accuracy even in case of system crashes, power interruptions, or multiple users concurrent access. ACID Attribute Overview Atomicity: A transaction is regarded as an indivisible unit. Any part fails, the entire transaction is rolled back, and the database does not retain any changes. For example, if a bank transfer is deducted from one account but not increased to another, the entire operation is revoked. begintransaction; updateaccountssetbalance=balance-100wh

Master SQL LIMIT clause: Control the number of rows in a query Master SQL LIMIT clause: Control the number of rows in a query Apr 08, 2025 pm 07:00 PM

SQLLIMIT clause: Control the number of rows in query results. The LIMIT clause in SQL is used to limit the number of rows returned by the query. This is very useful when processing large data sets, paginated displays and test data, and can effectively improve query efficiency. Basic syntax of syntax: SELECTcolumn1,column2,...FROMtable_nameLIMITnumber_of_rows;number_of_rows: Specify the number of rows returned. Syntax with offset: SELECTcolumn1,column2,...FROMtable_nameLIMIToffset,number_of_rows;offset: Skip

How to optimize MySQL performance for high-load applications? How to optimize MySQL performance for high-load applications? Apr 08, 2025 pm 06:03 PM

MySQL database performance optimization guide In resource-intensive applications, MySQL database plays a crucial role and is responsible for managing massive transactions. However, as the scale of application expands, database performance bottlenecks often become a constraint. This article will explore a series of effective MySQL performance optimization strategies to ensure that your application remains efficient and responsive under high loads. We will combine actual cases to explain in-depth key technologies such as indexing, query optimization, database design and caching. 1. Database architecture design and optimized database architecture is the cornerstone of MySQL performance optimization. Here are some core principles: Selecting the right data type and selecting the smallest data type that meets the needs can not only save storage space, but also improve data processing speed.

Can mysql workbench connect to the sql server Can mysql workbench connect to the sql server Apr 08, 2025 pm 05:30 PM

No, MySQL Workbench cannot connect directly to SQL Server because it is only MySQL compatible. You need to use other tools or methods, such as using SQL Server Management Studio (SSMS), a common database client (such as DBeaver, DataGrip), or a command line tool (such as SQLCMD).

The primary key of mysql can be null The primary key of mysql can be null Apr 08, 2025 pm 03:03 PM

The MySQL primary key cannot be empty because the primary key is a key attribute that uniquely identifies each row in the database. If the primary key can be empty, the record cannot be uniquely identifies, which will lead to data confusion. When using self-incremental integer columns or UUIDs as primary keys, you should consider factors such as efficiency and space occupancy and choose an appropriate solution.

Navicat's method to view MongoDB database password Navicat's method to view MongoDB database password Apr 08, 2025 pm 09:39 PM

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

Monitor MySQL and MariaDB Droplets with Prometheus MySQL Exporter Monitor MySQL and MariaDB Droplets with Prometheus MySQL Exporter Apr 08, 2025 pm 02:42 PM

Effective monitoring of MySQL and MariaDB databases is critical to maintaining optimal performance, identifying potential bottlenecks, and ensuring overall system reliability. Prometheus MySQL Exporter is a powerful tool that provides detailed insights into database metrics that are critical for proactive management and troubleshooting.

See all articles