- 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
| 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= ( | |
| 'Γιαννίκος Αντοχής', | |
| 'Κουράγιο Βαγιεκάνο', |