In particular, Mr. Staikouras said: “We are ready and finalizing the last details. We will have no negative surprises. There were too many difficulties and we are still trying to fix them” said, among other things, the minister and noted that due to all the delays the total budget, together with the expansion, interest and loans, will amount to 3 billion euros. “Ten prime ministers and respective ministers passed. It is a project that, due to delays, unforeseen events, cost much more than the original budget. The Metro will work for the whole of society, for all citizens” he pointed out.
Regarding the financing of the Metro extensions to the airport and western Thessaloniki, the Minister of Transport and Infrastructure noted: “at the moment we have only planned and we have not decided how we will move to look for financing. European funds may be used in the future. The point is to have the fiscal space to finance them.”
Mr. Staikouras also referred to the amendment of the ministry that was submitted to the Parliament and includes, among other things, the extension of the contracts of the drivers of the OSETH until the end of June 2025 and provisions regarding the operation of the OSETH that enriches the mission in the control of the provided transportation project and the distribution of the resources from the collection of fees. Regarding the construction project of the fly over, he emphasized that it is moving within the schedules, although, as he added, there are collectives that are trying to put up obstacles. Regarding the Tempe train accident, Mr. Staikouras pointed out that “we have a debt to advance the conclusion that is completed in February 2025”.
Weather – Tsatraphyllias: “Cold lake” may bring rain, snow and cold over the weekend
Marinakis: The free afternoon surgeries prove in practice what social policy means
Hatzidakis in Parliament: A budget that combines prudence with growth and social cohesion
The Thessaloniki Metro station that resembles a Formula One track! [φωτο-βίντεο]
#Staikouras #Thessaloniki #Metro #Free #transfers #days #operation
What advertising networks and services are mentioned in the code snippet?
This code snippet appears to manage the loading of various advertising and tracking scripts on a website, including Google AdSense, OneSignal, Disqus, and others. It seems to prioritize mobile display by removing AdSense elements from mobile-specific containers and dynamically loading scripts based on the presence of various elements on the page.
Let me elaborate on what the code seems to be doing:
1. **Adsense Removal (Mobile):** The code first checks if there are any elements with the class "adsense-for-mobile." If found, it removes the ".adsbygoogle" element nested within them. This suggests a mechanism to prevent AdSense ads from displaying on mobile devices.
2. **AdSense Slot Check:** It then looks for all elements with the class "adsbygoogle," which are likely containers for Google AdSense ads.
3. **Dynamic Script Loading:** The code uses a function `asyncLoadScript` (not defined in the provided snippet) to asynchronously load various scripts presumably related to advertising networks and services. These include:
* **Phaistos Adman:** A platform for managing and delivering online ads.
* **OneSignal:** A service for sending push notifications.
* **Disqus:** A platform for commenting systems on websites.
* **Taboola/Project Agora:** Content recommendation engines that often display ads.
* **Glomex:** A video platform and player.
* **Dalecta:** Another service possibly related to advertising or content delivery.
4. **Conditional Loading:** Some scripts are only loaded if specific conditions are met, such as the presence of certain HTML elements on the page. For instance, the script for Glomex is loaded only if there are "glomex-integration" elements present.
5. **Delay Implementations:**
* The code employs `setTimeout` functions to introduce delays before loading some scripts. This might be done to ensure that certain elements on the page are fully loaded before scripts are executed.
It's important to note that without the complete context and definitions of functions like `asyncLoadScript` and `asyncLoadModule`, it's challenging to provide a fully exhaustive analysis of the code's behavior.