Thessaloniki: A doctor was sentenced for a “bag” of 5,000 euros

The Three-member Misdemeanor Court of Thessaloniki found him guilty of bribery of an employee, with the recognition of the mitigating factor of his previous cohabitation, while the sentence was suspended.

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 I ensure ⁤that my web app⁢ integrates‍ with services like OneSignal and ⁣Disqus smoothly?

It looks like you have‌ a snippet of JavaScript‍ code that's involved in loading ads ​and integrating various third-party services like AdSense, OneSignal, Disqus, and others. However, ‍it appears the code is incomplete ‌and contains a ⁢lot of commented-out sections as well as placeholders for URLs and parameters. Here’s a brief‌ explanation and‍ a potential way to clean up or complete parts of ⁣this code.

###⁣ Suggestions for Completing the⁣ Code:

1. **Fixing Async⁣ Script Loading**: Ensure ‌the `asyncLoadScript`⁢ function is‌ properly defined elsewhere in your code.‌ It should handle loading scripts asynchronously and manage their execution in the right order.

2. **Filling in AdSense & ‌Other⁤ Scripts**: You should replace the placeholders (e.g., `'`) with actual URLs or codes relevant​ to the services you're ⁤trying to integrate. For​ example:

```javascript

asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');

```

3. **Handling Conditional‍ Loading**: Make sure to check the presence of⁢ elements and conditionally load ‍scripts based on whether they exist‌ or‍ not.

4. **Complete the Disqus Configuration**:⁤ In the Disqus configuration, ensure that ‍you fill in `this.page.url` with the actual page URL:

```javascript

this.page.url = window.location.href;

```

5. **Taboola/Project Agora and Additional Services**: Similar to AdSense, ensure that you fill in the correct URLs for these services and any required configurations.

6. **Load Order**: Ensure that scripts that depend on each other are loaded in the correct order. For example, if some analytics or ad services are dependent on the DOM being fully loaded, consider wrapping them inside `DOMContentLoaded` event listeners or similar.

### Example​ of a Revised⁤ Snippet:

Here’s a more structured ​example⁣ based on common patterns used ⁤in such scripts:

```javascript

document.addEventListener('DOMContentLoaded', function() {

// Load Adsense⁢ script if ads are present

‌ if (document.querySelectorAll('.adsbygoogle').length)​ {

asyncLoadScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');

⁤ }

// OneSignal​ integration

⁣ window.OneSignalDeferred = window.OneSignalDeferred || [];

OneSignalDeferred.push(function(OneSignal) {

⁤ ⁣ OneSignal.init({

⁢ appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",

​ ⁢ });

⁤ });

⁢// Disqus integration

var disqus_config = function() {

‍ this.page.url = window.location.href; // set⁣ canonical url

⁤ this.page.identifier = '1564450'; // set unique identifier for this page

};

‍ setTimeout(function() {

var d = document,

​ ‌ s = d.createElement('script');

⁢ s.src = 'https://YOUR_DISQUS_SHORTNAME.disqus.com/embed.js';

s.setAttribute('data-timestamp', +new Date());

(d.head || d.body).appendChild(s);

‌ }, 3000);

// Additional‌ Integrations (Phaistos, ⁤Taboola, etc.)

//⁣ Add your own asyncLoadScript calls here

});

```

### Conclusion

Clean the code by ensuring that⁤ all necessary functions and scripts ‌are loaded correctly, refactoring where‍ necessary, and fitting ⁤with the coding best practices for readability and maintenance.⁤ If‍ you have specific​ issues or sections of the ⁤code that require further clarification, ​feel free to elaborate!

Leave a Replay