© Getty_images – Some even claim to have canceled their races. Save save Receive the electric car alerts an anti-TESLA movement which continues to swell. While the American brand of electric cars has been the subject of a wave of hatred for several weeks now, Internet users have taken a new initiative to undermine the automaker. Indeed, as BFM TV reports, Internet users have decided to note the Uber drivers rolling in Tesla or refusing the races. “This is what Tesla drivers deserve,” wrote one of them on March 22. This publication has also made more than 55 million views.or, this account was parody but many Internet users have chosen to take the message at the foot of the letter by often noting with a single star the drivers who roll in Tesla. Some even claim to have canceled their races for the same reasons. “I started to cancel all the races that are in Tesla,” says a user. “Uber should offer an ‘not Tesla’ option,” asks another user. Read also: Elon Musk tries everything for the whole in the face of Tesla Tesla’s deconuting adopts an active deterrent strategy The anti-TESLA wave manifests itself above all by a free fall in vehicle sales, an increase in acts of vandalism is also observed. This is how the American manufacturer has decided to respond by activating an unprecedented “weapon”, a new functionality may discourage the most daring. This option will ensure that attempts at vandalism are as unpleasant as noisy. This sentry mode thus made it possible to record suspicious behavior using external cameras, to trigger an alarm, to flash the headlights and to send a remote notification via the mobile application. From now on, in the event of a threat, Cybertruck will broadcast music at maximum volume to scare away the intruder. Tesla has not yet specified if it will be an internal or external diffusion, nor what a precise noise level will be reached. Elon Musk ordered the activation of the sentry mode on all vehicles on display in Tesla dealerships. Receive our latest news twice a week, automotive news at a glance. (tagstotranslate) car u00e9lectric
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();