百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术文章 > 正文

Vance drives home that EU is on its own

itomcoil 2025-02-21 13:38 5 浏览

Vance drives home that EU is on its own: China Daily editorial - Opinion - Chinadaily.com.cn

This is an editorial from China Daily.

Although United States Vice-President JD Vance's 20-minute speech at the Munich Security Conference on Friday was the only address in the international security forum this year that was met with silence from the beginning to the end, it was arguably the one that produced the most animated response afterward.

Instead of taking advantage of the forum to introduce the Donald Trump administration's latest plan to end the Ukraine crisis, as anticipated, shortly after a 90-minute "cordial" call between the US leader and his Russian counterpart, or to explain to what extent the new US administration expects the European countries to boost their security spending, Vance shocked his European audience by launching a blistering attack on the US' European allies, accusing them of betraying their values, and ignoring people's concerns on immigration and free speech.

"It was a very weird 20 minutes ... Vance's speech went down very badly — unequivocally badly. It was extraordinarily poorly judged." That was how the BBC commented on the US vice-president's speech, which a US commentator told the United Kingdom media outlet "was all for US domestic consumption".

Vance might have gone too far in seeking to woo his domestic audience by "trying to pick a fight" with Europe, as the European Union's foreign policy chief, Kaja Kallas, said, since it comes at a time when the EU countries already feel betrayed by the Trump administration on the Ukraine crisis, with the US administration hinting that a settlement can be realized through its direct talks with Moscow, omitting both Ukraine and the bloc.

In particular, Vance inappropriately singled out Germany, the host country of the conference, as the target for his lecturing of his European audience about the "values" the Trump administration upholds, just a week before Germany heads to its federal elections. The Alternative for Germany, a far-right and right-wing populist political party in Germany that is polling in second place is endorsed by Trump adviser and billionaire Elon Musk.

Understandably, German Chancellor Olaf Scholz sharply rebuked Vance one day later saying Germany will not accept outsiders intervening in the country's elections — "That is not done, certainly not among friends and allies". Which makes one wonder whether the US will have any left after another four years of "America first".

No wonder when Vance tried to enliven the atmosphere during his Friday address with presumably an impromptu joke, "if American democracy can survive 10 years of (climate campaigner) Greta Thunberg scolding, you guys can survive a few months of Elon Musk", he failed to raise a single laugh in the hall.

On the same day as Vance bombed his Munich debut, French President Emmanuel Macron urged Europe to respond to "the electroshock" triggered by the return of the Trump administration to the White House with a new approach to defense and the economy.

But the French leader speaking to the Financial Times didn't expect that apart from the economy and security, the Trump administration would also try to dictate how the US' European allies should address their culture-war issues at home — key themes of Trump's campaign for the US presidency — in a bid to try and intervene in the domestic politics of the European countries.

That should serve to further highlight what Macron told the UK newspaper in his interview: "This is Europe's moment to accelerate and execute ... It has no choice. It is running out of road."

Although the EU conceived different solutions to cope with the possible impact of the comeback of Trump since he won the 2024 US president election in November, it still seems to have been caught unprepared by the administration's indifference. It is high time the bloc reflected on its hitherto passivity in not only dealing with the US but also some other burning issues concerning its immediate interest, and sought to uphold its strategic autonomy in foreign policy.

相关推荐

MySql安装与使用

介绍mysql是目前最流行的关系型数据库管理系统,在WEB应用方面MySQL是最好的RDBMS(RelationalDatabaseManagementSystem:关系数据库管理系统)应用软件...

使用AI来搭建一个用户系统,步骤应该是怎样的呢?

我给AI的第一个问题是这样的:创建一个java21+springboot3.4+mysql21的一个用户系统,需要使用JWT,支持多语言,使用swagger,这个用户系统都应该包含哪...

Mysql 8.4数据库安装、新建用户和数据库、表单

1、下载MySQL数据库yuminstall-ywgetperlnet-toolslibtirpc#安装wget和perl、net-tools、libtirpcwgethtt...

介绍如何在 MySQL 中创建新用户并授予权限?

MySQL是一个开源的关系型数据库管理系统,常用于存储和管理大量的结构化数据。在使用MySQL进行数据管理时,为了安全和方便管理,通常需要创建新用户并授予相应的权限。本文将介绍如何在MySQL...

Mysql创建用户和权限管理

MySQL是一个多用户的数据库,最高权限管理者是root用户,它拥有着最高的权限操作。包括select、update、delete、update、grant等操作。如果有其他用户想使用MySQL,那么...

Mysql:创建用户详解

1、创建并授权用户--创建可从任何主机连接的用户CREATEUSER'myuser'@'%'IDENTIFIEDBY'mypassword'...

Python 实现【字符匹配】

defis_match(s,pattern):m,n=len(s),len(pattern)dp=[[False]*(n+1)for_inrange...

Python自动化:openpyxl工作簿、工作表相关操作

新建工作簿、工作表importopenpyxl#创建空白工作簿,会自动生成一个工作表:Sheetwb=openpyxl.Workbook()#新建工作表#create_sheet...

python每日一练之三数排序

概述今天主要分享一个三树排序的实例,大家可以自己测试玩一下~需求输入三个整数x,y,z,请把这三个数由小到大输出。方法一:如果是要练练手就随便找个排序算法实现一下#usr/bin/python#...

Python输出语句print()

Python中的输出语句主要通过内置函数print()实现,它可以灵活输出文本、变量、表达式结果等内容到控制台或其他文件。以下是详细介绍及示例:一、print()基本语法print(*object...

Python设置excel表格格式,这3个属性6个模块,要表格好看

前言:通过前面两篇文章,我们用Python处理excel数据得到了结果并保存了文件。打开文件会发现,文件里表格是没有设置格式的,还需手动调整行高列宽等样式,很麻烦。其实,通过Python库模块,能轻松...

python入门-day5-循环语句

以下是为“Day5:循环语句”设计的详细学习任务计划。这个任务旨在帮助初学者掌握Python中的循环语句(for和while),并通过实践理解它们的应用场景。Day5:循环语句学习目标...

Python基础编程必备!涵盖常见语法与操作的代码示例合集

以下是一份Python基础代码示例合集,涵盖了常见的语法和操作,适合初学者快速掌握基本编程概念:1.基础语法python#打印输出print("Hello,World!")#变...

Python循环语句实用教程

一、循环基础1.while循环基本语法:while条件表达式:循环体代码while循环流程图:应用示例:#简单计数器count=0whilecount<5:...

在 Python 中如何向一个已排序的数组(列表) 中插入一个数呢

在Python中如何向一个已排序的数组(列表)中插入一个数呢?方法有很多种,关键在于原来数组是什么样的排序,用到啥排序方法效率高,就用哪种。我们来练习其中的几种插入方法,另外也掌握下遍历数组的...