Karla Sofía Gascón has won the award granted by the union of actors and actresses on Monday for the best interpreter in an international production for her role in Emilia Pérez, the first award she receives after the controversy generated by a tweet of racist dyes she published in networks years ago. In the intervention he has made after receiving the prize in the Price Circus of Madrid, the actress stressed: “I am not a robot, I am an actress, a woman like the others, with my virtues and my defects, sometimes a bit fool, and with a wonderful daughter whom I want to leave a better world.
” Lee also Sílvia Colomé acknowledges that he has always “fought” against “the dark side” after evoking the war of the galaxies, his “favorite saga”, in his words, has recognized that he has always “fought” against “the dark side.” “Even the dark side of myself,” he added. At the AFonica, at times excited, the actress, who has developed almost all her career in Mexico, recalled a few words of Jamie Lee Curtis about the hatred of “her trans trans.” Karla Sofía Gascón has been excited to receive the award of the Union of Actors and Actresses Juanjo Martín / Efe “they hate her simply because there is a continuous -and any excuse is good to attack us: five years ago I was doing microteatro functions for a single person and did not stop insulting me, and a week ago, in the Oscar, some would have liked to burn me as in the Inquisition.” Gascón has expressed his love for interpretation, a work that in his opinion consists in perfecting the work of the companions of cast, something that is, he stressed, what he wanted to do in Emilia Pérez. Read also “I wanted to be an example of overcoming” after paying tribute to the classmates, he declared them: “I wanted to be an example of overcoming, I am not able to have not been able to be in the way I would have liked, but I will continue fighting and working because I love my work.” Karla Sofía Gascón poses with the prize won this Monday Kiko Huesca / Efe has concluded with this message: “That the force accompanies us in all the dark moments that we have left to live, and let’s start with ourselves, with that dark side that we have inside: more love and less hate.”
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();