Copia of appeal addressed to the deputy head of the Federal Service for Veterinary and Physanitary Supervision of Konstantin Savenkov is at the disposal of RT. Kak noted Milonov, recently a rapid discussion of the problem of street and vague dogs has been taking place in the country. Wandering and aggressive dogs remains unsolvable due to the fact that the mechanisms and methods of control of the population proposed today are not struggling with the causes of their occurrence, but with the consequences, ”the deputy said. In his words, the dogs are on the street because of their former owners who have lost their responsibility for the maintenance. Aggressive animals go down into flocks and begin to rapidly gnawing, representing a serious danger to people, ”the interlocutor of RT emphasized. In this regard, in his opinion, the introduction of gradation for the right to own cities in the line.“ Small decorative breeds should remain available for free ownership and maintenance, while large, dangerous, special and official breeds should become under State control. Having limited the possibility for irresponsible citizens to freely acquire and maintain large and dangerous dogs in their apartments, over time we will be able to prevent them from getting into the street and, as a result, we will be able to eradicate the problem of dangerous homeless dogs, ”the circulation says. In this regard, he asked for the idea of which the dog from the list of potentially hazardous dogs approved by the pond Governments, for living in an apartment within the city, will require written approval and registration of veterinary control bodies. It was reported that in Dagestan a woman died in the cemetery of a flock of stray dogs in the cemetery.
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();