Stalida

Stalida (Greek: Σταλίδα, older form Stalis) is a village that lies between Malia and Hersonissos on the north coast of Crete, Greece. The name derives from the Greek verb stalizo, which means 'stop for a rest' as this was a location where shepherds and farms rested in between villages. It is a lively resort, attracting tourists from many European countries. It has a long, sandy beach and a variety of shops, bars and tavernas. From Stalis, the Bulgarian trail leads to Mochos village, built by the captive Bulgarians during WWII. In the village's main square, one finds the Byzantine church of St. Ioannis (St. John) dating back to 1600. Popular with families, it is 30 km from Nikos Kazantsakis airport in Heraklion.

Stalida

Σταλίδα
Stalida
Coordinates: 35°18′N 25°00′E
CountryGreece
Administrative regionCrete
Regional unitHeraklion
MunicipalityHersonissos
Municipal unitMalia
Highest elevation
10 m (30 ft)
Lowest elevation
0 m (0 ft)
Population
 (2011)[1]
  Rural
1,237
Time zoneUTC+2 (EET)
  Summer (DST)UTC+3 (EEST)
Area code(s)7007

Resort

Quieter than the neighbouring resorts of Malia and Hersonissos, Stalis has a more relaxed atmosphere and still has a wide array of bars and restaurants. The resort is popular with a mix of nationalities.

gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.

References

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