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 conference 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
- How can I improve the performance of ad script integrations on my webpage?
It appears you've shared a snippet of JavaScript code that manages ad scripts for a webpage. The code includes various integrations for handling ads, notifications, and comments. Below, I will break down the key sections of the code, explain their purpose, and suggest how they might be completed or structured better.
### Key Sections Breakdown
1. **AdSense Slot Removal:**
```javascript
document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
```
This part looks for mobile-specific AdSense containers and removes their content. It's likely being done to prevent showing ads on mobile devices.
2. **AdSense Slot Initialization:**
```javascript
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
adSenseSlots.forEach(function(e){
// Async loading scripts related to AdSense
});
}
```
This section initializes AdSense slots if they exist on the page. You may want to load specific AdSense scripts for each slot here.
3. **Third-party Integrations:**
- **Adman Integration:**
```javascript
window.AdmanQueue=window.AdmanQueue||[];
AdmanQueue.push(function(){ Adman.adunit({id:338,h:' });
```
- **OneSignal Setup:**
```javascript
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
```
Both sections set up third-party services, with OneSignal handling push notifications and Adman possibly handling advertisements.
4. **Disqus Configuration:**
```javascript
var disqus_config = function() {
this.page.url=""; // You may complete the page URL here
this.page.identifier = 1563436; // Unique identifier for the page
};
```
This configures Disqus comments, with the URL needing to be defined.
5. **Dynamic Script Loading:**
```javascript
setTimeout(function(){
(function() {
var d = document,
s = d.createElement('script');
s.src=""; // Complete the URL
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}, 3000);
```
This snippet loads an external script after a 3-second delay. The `src` URL needs to be completed.
6. **Additional Commented-out Integrations:**
Sections like CleverCore, Taboola, and others appear to be placeholders or examples, suggesting where scripts might go.
### Suggestions for Structuring and Completing the Code
- **Ensure URLs are Defined:** Make sure to provide URLs for script sources where they are missing.
- **Consolidate `asyncLoadScript` Calls:**
- Create a reusable `asyncLoadScript(url)` function to simplify and reduce redundancy in the script loading process.
- **Error Handling:**
- Consider including error handling while loading external scripts to enhance robustness.
- **Comment Clarity:**
- Clean up the comments for clarity, especially in the sections of commented-out code to identify potential integrations clearly.
- **Example of a Function to Load Scripts:**
```javascript
function asyncLoadScript(src) {
var script = document.createElement('script');
script.src = src;
script.async = true;
document.head.appendChild(script);
}
```
### Final Note
The code is a comprehensive representation of various ad and notification integrations. Make sure all necessary URLs are filled in, and that the appropriate logic is applied when loading scripts to ensure optimal performance and compliance with any ad service policies.