The Medusa appendix already posted nine of our books-from non-fiction about politics, war and culture to artistic novels. Now the time of the tenth book has come – this is the auto -film writer Zhenya Berezhnaya “(not) about the war.” You can read this story about the war, love and hope now – and completely free. “(Not) about the war” – not just an autobiographical novel, but a very personal artistic diary about wartime everyday life. Here’s how the wife of Berezhnaya herself tells about the creation of the book: in childhood and at school age, significant adults promised me: the story will not happen again. That is why I once said with a naive of 34 peaceful years behind me: never, under no circumstances, I will write about the war. But she happened, and the only thing that remained in between air anxiety was to document what I saw and heard from February 24, 2022. This is a book about overcoming an injury: the heroine has to face not only the loss of the house and experience of refugee, but also with the betrayal of the closest people. In the novel about private life against the background of the disaster there is a place and miracles: responsive strangers, friends, ready to help even in the most difficult situation, and, of course, love. If you live outside Russia and Belarus, the easiest way to get a book is to buy it directly from us. You can do this in the “Magaze”. When buying books of our publishing house, you help Medusa survive. Be sure to download our application-it contains other books “Medusa” (and not only!) Our application still works in Russia without VPN. You can install it for yourself and your loved ones from these links: ️ Android can also be downloaded by direct link. By a “Medusa” application, you will get access to books not only of our publishing house, but also to our friends. Already now you can read such books in it: “My beloved country” by Elena Kostyuchenko, “War and Punishment” by Mikhail Zygar, “I wish the ash to my house” Daria Serenko, “we can repeat” from the “Signal”, “I will not be afraid” of Nathan Scharansky, “The Nazis have few paint” of the anonymous author, “take away my grief” Katerina Gordeeva, “our business is our business -Death ”Ilya Barabanov and Denis Korotkov, the collection“ Auto-Graf ”, compiled by Boris Akunin,“ Dear Editor ”, written by a group of authors, edited by Ivan Kolpakov,“ Bad Russians ”Anton Dolina,“ Rupture ”Daniil Turovsky,“ Our heart beats for all ”Konstantin Zarubin,“ Doping. Forbidden pages ”Grigory Rodchenkov. We will be glad if you share your impressions of the book“ (NOT) about the war ”and other publications“ Medusa ”. Write here: (Email Protected) – We read all letters. (Tagstotranslate) News
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();