Skip to content
Popup Example

Earn From News Kiosk

“Hard but fair” in TV criticism: billions for the Bundeswehr

March 18, 2025
“Hard but fair” in TV criticism: billions for the Bundeswehr

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!

“Thank you for your service”: What is often experienced in America that citizens on the street with strangers in uniform people would like to stand up for the security of the whole society with their lives would be unthinkable in this country. Police officers or soldiers are not thanked. And when you sit in a talk show, you will sometimes even be mocked, like “hard but fair”. Previously, Mateis TikTok players were shown in which he translated his life as a soldier for a young audience, NATO or the Munich Security Conference in colorful pictures. When Matei didn’t quite understand the question, the one -seventy -year -old hooked: “Do you think your work is attractive?” Because the truth is: “The Bundeswehr is sexist, racist and right -wing radical.” The end of the war at the end of the negotiation table david Matei was used for ten years with the mountain hunters and, among others, in Afghanistan. He did not shy away from the foolish general judgment, he defended himself eloquent and did not even need the support of the veteran Roderich Kiesewetter (CDU), who was in use in the Balkans before moving to politics as a soldier, which was also revealing towards the end of the show because the former editor -in -chief of the “Frankfurt Rundschau” was a hardened interlocutor Interest in her counterpart, while in view of the large situation in which we are currently in the world, demanded prudence and an exchange of the actors. Peace in Ukraine must now be negotiated, she asked again and again as if it only needed one call to Putin, while she assumed Friedrich Merz that he was doing more “than just defense” with the motto “Whatever IT Takes”, and is therefore also invested in the armaments industry because “the auto industry is being packed”. “A lot starts with the language,” Bascha Mika had noticed any other point. It was true, she might be countered, while gravel weather had to adjust one of her arguments again: Most wars would end at the negotiating table, the journalist claimed. In fact, this only applies to forty percent. Neither the Second World War nor the second Iraq war ended in this way. Is it upgrading without an alternative? “Billions for the Bundeswehr: Is it up to date without alternative?” the talk show was overwritten on Monday evening. Who the political scientist Nicole Deitelhoff in the previously broadcast ARD extra “Defense – how does Germany protect himself?” Had heard about some of the statements in the subsequent conversation. The director of the Leibniz Institute for Peace and Conflict Research was vehemently advocating for a “change in consciousness” in Germany in view of the new threat situation: on the one hand a three-year war of aggression by the Russians in Ukraine, on the other hand, a US president who distances himself from Europe and questions the NATO guarantee. And because this is now “approaching us with all our might”, the professor believes the high expenditure on the upgrading of the Bundeswehr is justified. At the same time, she demands a discussion about it in society to sensitize the danger: “The many money serves above all of our security. So that Russia does not even come up with the idea of ​​attacking us.” In fact, Germany has always felt safe with the broad back of the big brother beyond the Atlantic and was therefore able to be responsible for morality, while the ugly geopolitics were given to the Americans. That’s over. After Trump has brought the balance of terror into the imbalance, foreign politician paves gravel weather for a common European defense umbrella, as possible nuclear. Julian Nida-Rümelin speaks of a “Gaullist moment”-Charles de Gaulle had already spoken out in vain for a European defense policy as later as Emmanuel Macron later. “High -risk” and “reckless” was, the Munich philosophy professor continued, as under Angela Merkel did not use the armaments spending efficiently and the national defense and the compulsory military service were suspended. Who could know how Russia, the largest nuclear power in the world, would develop after the collapse of the Soviet Union. The podcaster, which recently published the book “Why I would never fight for my country”, doesn’t say much that evening. It would not be the first discussion about the refusal of war. But the twenty -seven -year -old is limited to vary the title of his book: he does not want to die and is not ready to let his life for this country. “No, at the end of the day you are the next.” But he also denies others the willingness of national defense when he thinks that a large part of the “population prefers to live under foreign rule than to die in combat”. Do the raped women, kidnapped children and people displaced from their houses see it that way in the occupied areas of Russia?

Credit-Read More

News kiosk Latest Posts

// 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);

// 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();