In full turmoil, the billionaire spoke on March 21 to try to appease investors, employees and customers. © Stefani Reynolds/Bloomberg – Elon Musk has been in turmoil since the start of the year. Save safeguarded Receiving Tesla Elon Musk alerts bet on the effect of surprise to try to turn off the fire: in full turmoil, the boss of Tesla indeed “improvised” an internal meeting on March 21 at the company’s headquarters in Texas, broadcast live, informs the Frandroid site. Its objective: to reassure investors, employees and customers, while Tesla crosses a tumultuous period marked by boycott campaigns and sales in free fall worldwide, as well as acts of vandalism directed towards vehicles or concessions of the brand. Since January, the Tesla action has lost around 40% of its value. But for Elon Musk, this is only a bad time to spend. According to him, the company remains solid – an assertion that does not seem to share its own brother and the president of the board of directors, who sold their shares for several million dollars in February. “Do not sell your Tesla actions, strongly advised Elon Musk, hold on. I firmly believe that we make the right choices, even if the markets do not yet reflect it. ” A message addressed in particular to investors, with the hope, no doubt, to re -mobilize them. Read also: Tesla: Elon Musk pushed towards the exit? Will the Cybercab and the Optimus robot help up the slope? More than 7 million Tesla vehicles are currently circulating worldwide. This figure, Musk brandished him to justify his confidence in the brand, a world leader in high -end electric, just in front of Chinese byd. Elon Musk also took advantage of this surprise meeting to make some announcements: confirmation of the upcoming arrival of Cybercab or the production of 5,000 copies of the humanoid robot Optimus in 2025. Projects on which he counts to restore his image, very seriously scorned by his polemical speaking and his political commitment to Donald Trump. Receive our latest news each morning, the information to be remembered on the financial markets. (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();