Andrea Manesi

Andrea Manesi was an Albanian leader who organized a revolt in 1607 against the Ottoman Empire. He declared himself to be the second Skanderbeg, instructed by celestial beings to depose the Sultan and take his place. Gaining fame as having miraculous abilities and helping the poor, he increased the number of his supporters until the revolt was put to an end by Ottoman armies.

Life

Andrea Manesi was born in Qullëz, a village between Lezhë and Shkodër in northwest Albania. Raised in a period of intense conflict between the Ottoman Empire and Albanians seeking independence, in 1607 he started to claim that he was contacted by celestial beings, and instructed by them to take control of the empire.[1] Manesi claimed that he was a successor of Skanderbeg, the Albanian leader who fought against the Ottomans, and that Sultan Ahmed I had no right to rule. Claims about him making miracles and helping poor people emerged. In front of 3000 Albanian men, he foresaw attempts by the Sultan to kill him. Soon Manesi, supported by ever growing numbers of rebels, reduced taxes and called on local officials to do their job honestly. After some regions of Albania, such as Dukagjini, Kthella and Selita joined the revolt, Andrea Manesi was invited to pay a visit to the Sublime Porte but refused to do so. As a response, the Sultan ordered large armies to attack the rebellious regions, though Manesi and his supporters continued their activities until 1610. After failing to secure support from Spain, the revolt was definitely put to an end.[2]

Legacy

Andrea Manesi is a rather obscure figure in historiography. His history is valuable not only in the context of Albanian-Ottoman relations of that time, but also in demonstrating mechanisms of myth creation as well. Emerging from the status of an ordinary person, by realizing the importance of gaining fame, he reached the status of a regional leader.[3]

gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
gollark: <@332271551481118732> Expression parsing is done, I think.

See also

References

  1. Instituti i Historisë (1967). Studime historike, Volume 4. Akademia e Shkencave. p. 199.
  2. Pulaha, Selami (2002). Historia e popullit shqiptar, Vellimi 1. Botimet Toena. p. 540.
  3. Zeqo, Moikom (July 17, 2010). "Dy shqiptarë të 4 shekujve më parë". gazetadita.al. Dita. Retrieved June 10, 2018.

Sources

  • Instituti i Historisë (1967). Studime historike, Volume 4. Akademia e Shkencave.
  • Pulaha, Selami (2002). Historia e popullit shqiptar, Vellimi 1. Botimet Toena.
  • Zeqo, Moikom (July 17, 2010). "Dy shqiptarë të 4 shekujve më parë". gazetadita.al. Dita. Retrieved June 10, 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.