Jamraya

Jamraya or Jemraya (Arabic: جمرايا) is a village in the Qudsaya District of Rif Dimashq (Damascus Countryside) in southern Syria. It lies 3 miles (5 km)[2] to the northwest of the Syrian capital of Damascus city, beyond Mount Qasioun, and is now an outlying suburb of greater Damascus.[3][4] It is between al-Hamah and Qudsaya town to the south, and Ashrafiyat al-Wadi to the north. It is about 10 miles (15 km) from the Lebanese border.[5] According to the Syria Central Bureau of Statistics, the village had a population of 1,156 in the 2004 census.[1]

Jamraya

جمرايا
Village
Jamraya
Coordinates: 33.56°N 36.217°E / 33.56; 36.217
Country Syria
GovernorateRif Dimashq
DistrictQudsaya
SubdistrictQudsaya
Population
 (2004 census)[1]
  Total1,156
Time zoneUTC+2 (EET)
  Summer (DST)UTC+3 (EEST)

Military facilities

A military research facility of the Syrian Scientific Studies and Research Center is located in Jamraya; weapons are developed and stored here, and the site has been accused of developing chemical weapons.[4][6][7] The highly secretive military facility was established in the 1980s, when Syria was a Soviet ally.[8]

A parking lot at the research center was the site of a January 31, 2013 Israeli airstrike on missiles parked there. Another Israeli attack on May 5, 2013 destroyed buildings located in a chicken farm a mile from the research center.[9] An Israeli airstrike on January 12, 2019 damaged a suspected Iranian target in a Syrian military base 1.5 km west of the research center.[10]

gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```
gollark: !esowiki WHY
gollark: Yes.
gollark: Stop using the passive voice!

References

  1. General Census of Population and Housing 2004. Syria Central Bureau of Statistics (CBS). Rif Dimashq Governorate. (in Arabic)
  2. Kelley, Michael (February 2, 2013). "Israel's strike on Syria was a brilliant tactical move". Business Insider Australia. Archived from the original on May 9, 2013. Retrieved May 11, 2013.
  3. Tom Watkins and Chelsea J. Carter, Syrian TV: Israeli Rockets Target Damascus Suburb (May 6, 2013), CNN.
  4. Edmund Sanders and Patrick J. McDonnell, Israel Says Strikes in Syria Target Arms for Hezbollah (May 5, 2013), Los Angeles Times.
  5. Karin Laub and Josef Federman, Syria says Israel strikes military research center (May 4, 2013), Associated Press.
  6. Damascus military facilities 'hit by Israel rockets' (May 5, 2013), BBC.
  7. Alexander Marquardt, Syria Warns Israel of 'All Possibilities' After Strikes (May 5, 2013), ABC News.
  8. Profile: Syria's top-secret Jamraya research centre (May 5, 2013), BBC.
  9. McMahon, Felim (7 May 2013). "Syria – [Public] Analysis of where air strikes blamed on Israel hit – May 05". Storyful. Archived from the original on 15 July 2014. Retrieved 11 May 2013.
  10. https://www.almasdarnews.com/article/satellite-images-taken-after-israeli-strikes-reveal-level-of-damage-on-syrian-sites/


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