© Bloomberg/Getty Images – Elon Musk was appointed Minister of “government efficiency” within the Trump administration. Save save Receive Tesla alerts the end of the trip to Tesla? Sales of the American manufacturer have dropped in Europe since the beginning of 2025. Registrations have decreased by 49% over one year in January and February in the European Union, for a total of 19,046 vehicles and 1.1% market share according to figures from the Association of European Automobile Manufacturers (ACEA) published on March 25. In the United States and abroad since the investiture of Donald Trump. Elon Musk, at the head of Tesla but also X or even SpaceX, is criticized for its positions and for its limitless support to the American president. According to a survey by The Guardian newspaper, 20% of Americans support the boycott of companies who have lined up on Donald Trump’s agenda as Tesla. Read also: Trump in trade war: in France, which companies have the most to lose? Tesla lagging behind her Chinese rival, bydsur the only month of February, sales fell 47.1 % for Tesla, but with a slightly improvement market at 1.4 %, more or less the level of Jeep, and less than the Saic Chinese, with its hybrids and electrics sold under MG. For the year 2024, Tesla’s main competitor, Chinese Byd exceeded the symbolic bar of $ 100 billion in turnover (107.2 billion) for $ 97.7 billion for the American manufacturer. Since the arrival at the White House of Donald Trump, the Tesla action has not experienced a single positive week according to the business magazine Business Insider. The actions of the American manufacturer fell by more than 15% to Wall Street. And this, even though the American president said that he was going to buy a Tesla, in support of his right arm. The brand is the subject of many acts of vandalism across the Atlantic but also in Europe. In parallel, the aging range of the manufacturer is pointed out. Tesla recalled all of the Cybertruck pick -ups sold – they are only available on the American market, more than 46,000 vehicles, for technical defect. XAI, XAI and Space X are pulling all, the affairs of the one who was appointed Minister of “government efficiency” by Donald Trump, are doing well. X, bought by Elon Musk in 2022 to 44 billion dollars, found its superb. The valuation of the social network had fallen under 10 billion dollars in September 2024, abandoned by advertisers and criticized for its moderation policy. In mid-March, X has raised almost a billion dollars with the value of the platform to $ 44 billion. In parallel, the businessman launched Xai, publisher of the Grok chatbot, direct competitor of Openai and its famous Chatgpt. The company backed by X makes its conversational robot train directly on social network data. In November 2024, the value of XAI was $ 50 billion according to the American press. 384 billion dollars of personal fortune other companies were doing very well. SpaceX was estimated at $ 350 billion in early December 2024, according to Bloomberg. It is 67% more than in June where the company was worth 210 billion dollars. In a survey published on March 23, the New York Times reveals that Elon Musk’s company should obtain billions of dollars via new public contracts established between the billionaire and Donald Trump which aim in particular to use SpaceX rockets to transport military equipment around the world or even the Starlink satellites to develop Internet access in rural areas – while it was prohibited under the Biden administration. SpaceX also has several in progress requests to build new launch sites in Florida and California on federal land, specifies the American newspaper. As for Neuralink, Elon Musk’s company raised $ 323 million in twice in August and November 2023 before setting up its first cerebral implant in a patient in January 2024. Despite the billionaire boycott call, the businessman continues to get rich. According to the Bloomberg index, Elon Musk’s fortune was around $ 384 billion in 2024, the year in which he won $ 155 billion. According to a report published in September 2024 by Informa Connect Academy, it could be the first billionaire in the world from 2027 with more than $ 1,000 billion. Receive our latest news every day, selecting the main news of the day. (tagstotranslate) tesla
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();