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
What are the best practices for integrating Disqus and OneSignal into my website?
It looks like you've shared a snippet of code that includes multiple ad scripts and functionalities for a webpage. Below, I break down several sections of the code and provide guidance on how to improve or complete it:
1. **AdSense Handling**:
- The code removes adsense elements from the page if they exist and then performs an action if there are any `.adsbygoogle` slots.
- Make sure to complete the part where you load AdSense scripts asynchronously. E.g.:
```javascript
asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
```
2. **OneSignal**:
- This section initializes OneSignal for push notifications. Ensure that the `appId` is correct and is configured properly in your OneSignal dashboard.
3. **Disqus Configuration**:
- In the `disqus_config` function, make sure to complete the `this.page.url` line with the actual URL of the current page.
```javascript
this.page.url = window.location.href; // Example: getting current page URL
```
4. **Asynchronous Script Loading**:
- When using `asyncLoadScript`, ensure that the URL of the script is properly passed as an argument.
- If you have an actual callback or a specific script you intend to load, you can create proper functions or comments to define them before they are being called.
5. **General Cleanup**:
- It looks like you have several instances of `asyncLoadScript('` with missing arguments. You should complete these calls with actual script URLs to ensure they are functional. Example:
```javascript
asyncLoadScript('https://example.com/script.js');
```
6. **Delays and Timeouts**:
- You have several `setTimeout` functions which execute the loading of scripts after a delay. Make sure the timing is appropriate for your application context. Generally, a delay might be useful for ads loading after the main content.
7. **Wrap Code for Better Structure**:
- Consider wrapping your code within a function or an IIFE (Immediately Invoked Function Expression) to encapsulate the logic and avoid polluting the global namespace.
Here is an idea for a more structured approach:
```javascript
(function() {
// Function to asynchronously load scripts
function asyncLoadScript(src) {
const script = document.createElement('script');
script.src = src;
script.async = true;
document.body.appendChild(script);
}
// Google AdSense
if (document.querySelectorAll('.adsbygoogle').length) {
asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
}
// Phaistos Adman
// Add the appropriate script URL
asyncLoadScript('https://example.com/adman.js');
// OneSignal initialization
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
// Disqus configuration
var disqus_config = function() {
this.page.url = window.location.href; // Use the actual page URL
this.page.identifier = 1564450;
};
setTimeout(function() {
const script = document.createElement('script');
script.src = 'https://your-disqus-shortname.disqus.com/embed.js';
script.setAttribute('data-timestamp', +new Date());
(document.head || document.body).appendChild(script);
}, 3000);
// Additional ads loading
// Add scripts as needed
})();
```
Ensure you test your implementation after making modifications to confirm that everything works properly and that the ads load as intended.