Meta owner Mark Zuckerberg has announced this. It will be replaced by Community Notes, which is a similar system to that used in Elon Musk’s Platform But what exactly was the Fact Check program and what was there in it that required its closure and how will the new feature coming in its place affect everyone? What is this feature of Meta? Through this feature, the authenticity of the content of a post is checked. It is worked in collaboration with Fact Checking Partners, an independent and certified organization. If a post is found to contain misinformation or misleading facts, it is marked as “fact checked,” and the post appears less in the Facebook and Instagram feeds or is given a warning. Why was it being posted? Meta had implemented the fact checking program in the year 2016 to stop the spread of misinformation. The company did this when it was accused of its role in spreading false claims in the 2016 presidential elections. In 2023, Meta said that this program has spread to 100 institutions and 60 languages. was an initiative that worked to identify and correct false or misleading information spread on social media platforms like Facebook and Instagram. Mark Zuckerberg has announced this change. (Symbolic picture: Wikimedia Commons) Why is it being closed? After checking in the fact checker, the post was lowered in the ranking, but it could not be eliminated. The company says things don’t work that way. At least this does not happen in America. Experts may also be inclined towards one side based on their viewpoint and level. Meta has also said that now they will not lower the ranking of the content. Now they are introducing a new feature in its place in which there will be no judgment or discouragement on the basis of facts. What is the new feature coming in its place? Zuckerberg clearly said in his video, “We are going to get rid of the fact checker and replace it with Community Notes which is like an X” Information about a user’s post in Community Notes You can comment on this and tell whether according to you this is wrong or misleading information. Not only this, they can give sources, facts, other evidence or references in support of their claims. This change is also directly related to the election of Donald Trump. (Symbolic picture: Wikimedia Commons) What will be its effect? This feature will have a direct impact on Meta (earlier Facebook), Instagram and even threads. While experts are divided on its advantages and disadvantages, some also say that this change could lead to conflict with the European Union. This may not be good news for tech platforms even if they comply with EU regulations. Also read: Explainer: Why does Makar Sankranti fall only on 14th? When does it change? This change has a deep connection with Donald Trump. Fact checker also came only when Donald Trump won in 2016. After this, it is being changed only when they return. Not only this, Facebook had also banned Trump in the Capitol Hill case in 2021. Now that Trump is making a comeback, Zuckerberg has already met Trump. Meta is now coordinating with the Trump administration. He has also donated one million dollars i.e. Rs 8 crore 60 lakh to this Trump inauguration committee. FIRST PUBLISHED : January 9, 2025, 14:23 IST
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();