Mărculești

Mărculești (Romanian pronunciation: [mərkuˈleʃtʲ]) is a city in Florești District, in northern Moldova, with a population of 2,081 at the 2004 census. The city was once the site of a Jewish agricultural and mercantile colony, to its destruction in the Holocaust.[3]

Mărculești
Town
Mărculești
Coordinates: 47°52′7″N 28°14′51″E
CountryMoldova
DistrictFlorești District
Government
  MayorIon Vîrlan (PCRM[1])
Area
  Total5 km2 (2 sq mi)
Elevation
90 m (300 ft)
Population
  Total1,396
Time zoneUTC+2 (EET)
  Summer (DST)UTC+3 (EEST)

In film and television

Filmmaker Matthew Mishory's 2015 documentary Absent was filmed in Mărculeşti, the site of a horrible atrocity in 1941 in which all of the village's Jews were massacred by the Romanian army.[4] The film introduces the current residents of Mărculeşti, some of who seem to be unaware (or unwilling to discuss) what happened.[5] Mishory's own grandparents lived in the village, escaping to Israel just before the start of the Holocaust. In an interview with Tablet, Mishory discussed the complex emotions of filming there: "The history of Mărculeşti and the Holocaust pose impossible intellectual and theological questions. All I can say is that my feelings about what happened in Mărculeşti are complicated. I remain a practicing Jew. And I also have serious doubts about human nature. I'm angry that people who live overlooking a killing field lie about their history. But I also have a lot of empathy for the current residents of the village and their difficult circumstances".[6] The film had its world premiere at the Astra Film Festival in Sibiu, Romania[7] and led to efforts to preserve Mărculeşti's abandoned Jewish cemetery.

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.