Canadian passenger Dan So, 41, filmed people around him frantically trying to stand as objects fell and shattered around them as Royal Caribbean’s Explorer of the Seas capsized violently during a storm off its coast of Africa last week – with objects around them smashing to the ground.
“It was like the Titanic,” So told Kennedy News and Media, seeing “people screaming and glasses breaking.”
“I thought this could be the end and the ship would go into the water,” he added of the alarming “45 degree” tilt.
“I took out my mobile phone and texted my colleagues, telling them I don’t know what’s going to happen and to be careful. I was writing my last message, thinking I was going to die,” added the 41-year-old, who was traveling on a cruise ship for the first time in his life.
One passenger was reportedly injured during the bad weather as passengers were taken to their rooms for an hour for necessary checks to be carried out.
The ship made an unscheduled stop in Las Palmas to help the injured passenger before continuing on its way, the company said.
A cruise ship tilted 45 degrees in the Atlantic ocean causing chaos on board pic.twitter.com/97LcAMQ5L9
— Daily Loud (@DailyLoud) November 11, 2024
Melania Trump: Not moving into the White House – “This time it will be different”
Black Friday: What consumers should watch out for
Brazil: Man strapped with explosives detonates outside Supreme Court
Kostas Martakis: “When I entered, some people told me to undress”
#Horror #Storm #hits #cruise #ship #forces #list #degrees #Titanic #video
How do I configure Disqus comments for my website using JavaScript?
It appears that you've pasted a fragment of JavaScript code that primarily deals with the setup and loading of various third-party scripts, specifically for advertising, notification services, and comment systems. The code handles a few functionalities and integrates services like Google AdSense, OneSignal for notifications, Disqus for comments, and others.
Here are some explanations of the key parts of the code:
1. **AdSense Slot Management**: The code begins by checking for any existing `.adsbygoogle` elements, which are typically Google AdSense ad slots. If any are found, it attempts to remove them (perhaps during a refresh or an update).
2. **Adman Queue**:
```javascript
window.AdmanQueue = window.AdmanQueue || [];
AdmanQueue.push(function() {
Adman.adunit({ id: 338, h: ' });
});
```
This part initializes a queue for Adman ads, setting up an ad unit to be displayed.
3. **OneSignal Initialization**:
```javascript
window.OneSignalDeferred = window.OneSignalDeferred || [];
OneSignalDeferred.push(function(OneSignal) {
OneSignal.init({
appId: "487cc53b-3b66-4f84-8803-3a3a133043ab",
});
});
```
This segment initializes the OneSignal notification service with a specific app ID.
4. **Disqus Configuration**:
```javascript
var disqus_config = function() {
this.page.url = "";
this.page.identifier = 1565586;
};
```
Here, the configuration for Disqus is set up, but the URL seems to be missing.
5. **Script Loading**:
The code includes several placeholders for loading scripts asynchronously (e.g., `asyncLoadScript('`). However, the URLs or necessary parameters for these scripts are not provided in the pasted snippet.
6. **CleverCore and Other Services**: It also shows commented-out sections for services like CleverCore, Taboola/Project Agora, and Glomex, indicating that those may also be intended for integration but are currently not active.
7. **Delays with `setTimeout`**: There are several instances of `setTimeout` used, indicating a desire to load certain scripts or modules after a specified delay, likely to improve page loading performance or manage the timing of ad displays.
### Suggestions
If you're looking to enhance or troubleshoot this code, consider the following:
- **Provide URLs**: Fill in the placeholders for script URLs, as these are essential for the loading of third-party services.
- **Error Handling**: Implement error handling to handle cases where a script fails to load.
- **Loading Strategy**: Consider using a more sophisticated loading strategy, like lazy loading for ads, to improve performance and user experience.
- **Configuration**: Ensure that configurations like `disqus_config` have the full required data for functionality.
- **Readability**: Improving comments and structure within the code can help you or any collaborators understand the purpose of each section more efficiently.
If you have specific questions or want to focus on a particular aspect of this code, feel free to ask!