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 “corrupt” members 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 timeout durations for ad loading be optimized based on varying page content loading times?
It appears you're working with a snippet of JavaScript (possibly integrated within an HTML page) that handles various advertising and tracking scripts, including Google AdSense, OneSignal, Disqus, and others. The code contains async script loading mechanisms, configurations for ad serving, and setup for notifications.
Here’s a brief overview and suggestions to refine or complete different parts of your code:
1. **Google AdSense Integration**:
- The code checks for AdSense slots and appears to load the required scripts asynchronously. Make sure to utilize the correct AdSense script URL when calling `asyncLoadScript()`.
2. **OneSignal Notification**:
- The OneSignal integration looks correct. Ensure that the app ID is properly configured; consider arranging the initialization script within the same function to avoid race conditions.
3. **Disqus Integration**:
- The `disqus_config` function sets the URL and identifier for comments. Make sure to substitute placeholders with actual values, especially for the `this.page.url`.
4. **Dynamic Script Loading**:
- The `asyncLoadScript()` appears to be a custom function designed to load scripts dynamically. Make sure that its implementation is defined somewhere in your code.
5. **Error Handling**:
- Consider adding error handling for script loading via `asyncLoadScript` to gracefully handle situations where scripts fail to load.
6. **Timeouts**:
- For the delayed actions (e.g., Glomex, Dalecta), assess if the timeout durations are adequate. If these ads depend on page content, loading times might vary, and it’s beneficial to adapt based on load conditions.
7. **Commented-Out Code**:
- There are several segments of code that are commented out (like Taboola/Project Agora and CleverCore). Review these and determine if they are still needed, or if they can be cleaned up to improve readability.
8. **Syntax Issues**:
- Double-check certain string syntax that seems incomplete, e.g., URLs or callback functions for `asyncLoadScript()`. Ensure you finish those strings to avoid runtime errors.
Here's a refined approach to some portions:
```javascript
if (adSenseSlots.length > 0) {
adSenseSlots.forEach(function(slot) {
// Load AdSense script for each slot
asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
});
}
// Disqus integration
var disqus_config = function() {
this.page.url = "YOUR_PAGE_URL_HERE"; // Set your full URL for canonical tagging
this.page.identifier = 1564450; // Replace with your page's unique identifier
};
setTimeout(function(){
var d = document,
s = d.createElement('script');
s.src = "https://YOUR_DISQUS_SHORTNAME.disqus.com/embed.js"; // Complete URL for Disqus
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
}, 3000);
// Continue with other ad and script loading safely
```
Make sure the URLs are replaced with actual working ones, and consider testing in multiple browsers to ensure compatibility and performance. Always keep user experience in mind when loading ads, such as loading them after the main content to avoid blocking the rendering of your page.