In a letter to the President of SYRIZA’s KO Nikos Pappa, Thanos Moraitis states, among other things, that the recent developments in SYRIZA deeply sadden him and that with his move as a member of parliament he expresses his opposition to “choices and behaviors that have injured irreparably the unity and values of the progressive movement”.
The resignation letter of Thanos Moraitis to Nikos Pappa
To him
President of the Parliamentary Group SYRIZA PS Nikos Pappa
Mr President,
The recent developments deeply sadden me, as does every progressive citizen in our country.
It is imperative that I express my opposition to choices and behaviors that have irreparably injured the unity and values of the progressive movement. Unfortunately, the past two months have been a period of intense division and frustration for our members, delegates, and the Left and progressive world, culminating in the travesty convention that damaged our credibility.
I cannot continue to serve in a position of responsibility, working with people who overlook the most precious legacy of the progressive space: collectivity and respect for Democracy. Indifference to our values and ethics cannot be tolerated.
Therefore, I decide to resign from the position of director of the Parliamentary Group of SYRIZA PS. I would like to thank the Members of Parliament and the staff of the KO secretariat for our cooperation at a critical time for all of us. In these extremely difficult times for Democracy and the future of the progressive party, I choose to remain true to the values with which I have walked my entire political career.
Sincerely, Thanos Moraitis.
Schertsos: New platform for real estate pricing for each neighborhood – The goals for 2025
Marinakis: On Tuesday the arrangement for the personal doctor
What is SYRIZA’s response to the complaints about the undemocratic exclusion of delegates
Georgiadis: “After Kasselakis, the grand finale of the great gift that SYRIZA is giving me will be the exit of Polakis”
Gletsos: “Kasselakis was a foreign body – Now we will produce a president… a Syrian”
SYRIZA: The torture of the drop from Kasselakis supporters – Who stay until they leave
#SYRIZA #Thanos #Moraitis #resigned #director #Parliamentary #Group
**1. How can asynchronous script loading improve website performance and user experience?**
It looks like you're working with a JavaScript snippet that is related to loading various advertising and analytics scripts asynchronously. This is common practice in web development to improve page load performance and user experience.
The code appears to include different sections for various third-party services, such as:
1. **Google AdSense**: Loading ad units conditionally and using `asyncLoadScript()` to manage ad loading.
2. **Phaistos Adman**: Similar script loading for another ad service.
3. **OneSignal**: Initialization for push notifications.
4. **Disqus**: Configuration for comments section loading.
5. **CleverCore**: Though commented out in snippets, appears to be an ad service or analytics tool.
6. **Taboola/Project Agora**: Another asynchronous loading for content recommendation.
7. **Glomex**: Integrated ad platform that involves timing functions for script loading.
8. **Dalecta & Vidoomy**: Mentioned as well, likely other advertising solutions.
It’s important to remember to replace the placeholder comments (like `//asyncLoadScript(')`) with actual script URLs and to ensure that the async scripts respect user privacy and comply with regulations such as GDPR, where applicable.
Here's an example of how you might structure some of your async script loads:
```javascript
function asyncLoadScript(src) {
var script = document.createElement('script');
script.src = src;
script.async = true;
script.onload = function() {
console.log(src + ' loaded.');
};
document.body.appendChild(script);
}
// Example usage
asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
```
If you intend to run this code, ensure that you include the actual URLs and specify any necessary configurations, such as IDs and identifiers required by each of the services you're integrating.