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 because of 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 OSSTH until the end of June 2025 and provisions regarding the operation of the OSSTH 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: The “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 are the potential performance benefits of using asynchronous script loading for third-party services like AdSense?
This code snippet appears to be orchestrating the loading and execution of various third-party services on a webpage. It utilizes a combination of techniques including:
* **DOM Manipulation**:
The code uses `document.querySelectorAll`, `.forEach` and `.remove()` to target specific HTML elements containing ad slots (e.g., `.adsbygoogle`, `.adsense-for-mobile`) and either remove existing ads or prepare for new ones.
* **Asynchronous Script Loading**:
The `asyncLoadScript` function (whose implementation isn't provided) is used to dynamically insert script files into the page.
This allows scripts like **AdSense, Adman (Phaistos), OneSignal, Disqus, Taboola/Project Agora, Glomex, Dalecta and Vidoomy** to load independently without blocking the main page rendering.
* **Conditional Loading:**
Some scripts are loaded conditionally based on the presence of specific elements (e.g., `adsbygoogle` for Google AdSense) ensuring they are only loaded if necessary.
* **Delayed Execution:**
`setTimeout` is used to introduce delays for certain script loading, potentially due to dependencies on other scripts or to ensure a smoother user experience.
**Purpose:**
The overall purpose seems to be to integrate a variety of advertising, analytics, and social features onto the page, maximizing revenue and engagement opportunities.
**Dynamic Adsense Insertion:**
The logic removing ad slots for mobile devices suggests a strategy for delivering optimized ad experiences based on screen size.
The use of `asyncLoadScript` combined with a reference to AdSense code directly amplified by the Stack Overflow discussion [[1](https://stackoverflow.com/questions/6197768/dynamic-adsense-insertion-with-javascript)]hints at a method allowing the client page to queue and manage the rendering of AdSense ads. This potentially improves performance by avoiding synchronous blocking and optimizing the ad loading process.
**Important Considerations:**
It's crucial to ensure these third-party integrations respect user privacy and comply with relevant regulations.
Include appropriate consent mechanisms for data collection and tracking.