- Cyta Ελλάς Τηλεπικοινωνιακή: 13811
- ForthNet / Nova: 13731
- WIND Ελλάς: 13700
- ΟΤΕ (για σταθερά): 13788
- ΟΤΕ (για κινητά άρα CosmOTE): 13738
- Vodafone / ΠΑΝΑΦΟΝ: 13840
- ΔΕΔΔΗΕ (βλάβες): 2111900500 (αντί του 11500)
- Γραμμή δημότη Αμαρουσίου: 2132038136 (αντί του 15321)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "what": "Timezone synonyms", | |
| "based_on": "tzdata 2026b-0ubuntu0.24.04.1", | |
| "as_of": "2026-07-13T15:01:20.995943+00:00", | |
| "description": "Based on if-or-exactly-when-utcoffset-changes-to-what-utcoffset for the next ten years, group2timezones has an array of arrays of (arbitrary group_id, synonym groups), while timezone2group is just a mapping of timezone name to group_id.", | |
| "group2timezones": [ | |
| [ | |
| 0, | |
| [ | |
| "Africa/Ceuta", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json, time | |
| import functools as ft | |
| import _thread as thr, queue as que | |
| import asyncio as aio | |
| from aiohttp import web | |
| def processor(que_i: que.Queue): | |
| """This is an example of a worker thread that waits on a queue.Queue; | |
| it receives Futures and params, does the work, schedules the completion of the Future.""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # υπολογισμός βάσεων | |
| from typing import List, NamedTuple | |
| class Μαθητής(NamedTuple): | |
| όνομα: str | |
| μόρια: int | |
| σχολές: List[str] | |
| class Σχολή(NamedTuple): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/python -O | |
| # championship | |
| import random | |
| import itertools as it | |
| TEAMS= ( | |
| 'Γιαννίκος Αντοχής', | |
| 'Κουράγιο Βαγιεκάνο', |