The case was revealed in November 2020, following a complaint to the Internal Affairs Sub-Directorate of Northern Greece of EL.AS. He himself was put on leave from his university duties, when the criminal investigation began, with the “incorruptible” of EL.AS. to “dust off” all the surgeries he performed.
In fact, from the specific investigation it emerged that between 2018 and 2020 he had also collected “bags” from other patients – more than 15 – and for this reason a second case file was filed against him for bribery, by follow-up and by profession, which is pending in the criminal courts. Recently, patients and their relatives were tried and acquitted, because they had given “bags” (to bribe an employee).
Before the Magistrates’ Court who found him guilty, the convicted doctor denied the charge, claiming that he was the victim of fraud. He also stated that the disputed surgery was to be performed in a private hospital and that half of the money was intended for him as a fee and the rest for his scientific team.
Shock in Rhodes: Dead 35-year-old pregnant woman – Battle to save the baby
Cyprus: Planning for an extended meeting of the parties involved
Acropolis: Dead 28-year-old who fell from the 5th floor of an apartment building
Menidi: Two injured in shootings
#Thessaloniki #doctor #sentenced #bag #euros
How can I optimize asynchronous script loading in my JavaScript code for better ad performance on my webpage?
It looks like you've provided a snippet of JavaScript code that handles various advertising and tracking scripts on a webpage. The script seems to focus on loading different advertisement services conditionally, managing mobile ads, and initiating services such as OneSignal for notifications and Disqus for comments.
Here's a breakdown of the key components in the provided code:
1. **Adsense Handling**:
- The script checks for mobile ad elements and removes the associated advertisements based on certain conditions.
- It counts and processes all the AdSense slots present on the page.
2. **Asynchronous Script Loading**:
- It seems there are placeholders (`asyncLoadScript('...')`) for loading various ad scripts asynchronously. This typically improves page loading performance by not blocking the main thread.
3. **Specific Integrations**:
- **Phaistos Adman**: Implements a queue to allow specific ad unit configurations.
- **OneSignal**: A service to implement web push notifications, initialized with an application ID.
- **Disqus**: Commenting platform where initialization is handled with a specific page URL and identifier.
- **CleverCore**: Another ad service that, when implemented, loads a script dynamically and supports certain attributes for callback mechanisms.
4. **Taboola/Project Agora** and other ad services are mentioned in comments but appear incomplete or not fully implemented.
5. **Timeouts for Delayed Loading**:
- Several parts of the code use `setTimeout` to delay script loading, which can help in scenarios where certain conditions must be met or when waiting for certain elements to be fully available.
6. **Conditional Loading**:
- It checks for specific elements and only proceeds to load scripts if those elements exist, ensuring efficient resource management.
### Recommendations for Completing the Code:
1. **Replace Placeholders**:
- Make sure to replace placeholder strings within `asyncLoadScript('...')` with the actual URLs required for loading the scripts.
2. **Complete Ad Services**:
- Ensure that all required advertising services, such as Taboola, Phaistos Adman, and Vidoomy, have their corresponding implementation completed.
3. **Error Handling**:
- Consider adding error handling mechanisms for asynchronous script loading to catch failures and fallback to default behavior when necessary.
4. **Optimize the Timing**:
- Evaluate the use of `setTimeout` and adjust the timing as per the performance needs of the webpage.
5. **Clean Up Comments**:
- Remove or finalize commented-out placeholder code to maintain clarity and reduce confusion.
If you need help with specific parts of this code or require further functionality, please let me know!