At the age of 53, Elon Musk, a multifaceted and dark personality who leads the conquest of space through Space X, dominates the electric car market with Tesla and promotes cryptocurrencies against the dollar while at the same time has a declared goal to… abolish the Federal Bank of the USA (Fed), while at the same time controlling a significant part of the flow of global information through the X platform (formerly Twitter), a little far from being labeled “informal co-ruler of the world”.
The first billionaire on the planet, with a fortune that exceeds 320 billion. dollars (Forbes) will take over, according to Trump’s own announcement, the ominous and Orwellian in performance “Ministry of Government Efficiency”, together with businessman, former contender for the Republican nomination, Vivek Ramaswamy. The “ministry” will have… an end date of July 4, 2026, the 250th anniversary of American independence, and will bear the initials DOGE/ Department of Government Efficiency, as a pun on Musk’s Dogecoin cryptocurrency.
Except that this is not a ministry in the strict sense, but an “advisory agency” of dubious constitutional legitimacy, with which Trump will try to bypass the control of Congress and Justice, to impose together with Musk an agenda that is heard nightmare: “Eliminate government bureaucracy, drastically reduce excessive government controls, cut wasteful spending and reorganize federal agencies.”
In other words, to weaken or dismantle state institutions, not only in matters of social welfare, but even currency control! A few days ago, Musk did 100 likes with an e-moji on the post #EndtheFed, of the Republican senator, Mike Lee, while foreseeing the danger, the chairman of the Federal Reserve Bank of the USA (Fed), Jerome Powell, told reporters that he is not going to resign , even if Trump himself asks him to!
According to the Republican president, the new ministry will realize the party’s long-held dreams and “offer advice and guidance outside of government,” while Musk has promised to operate in a transparent manner.
HE WILL STAY IN HIS BUSINESS
Musk’s informal status as the president’s top economic-business advisor will allow him to remain at the helm of his businesses. Moreover, the two “ministers” will not be able to approve decrees, but will cooperate with the Budget Management Office of L. House, with a completely blurred institutional status.
But the destruction they can bring to millions of people and to American society is completely palpable. At a Trump campaign event in October at Madison Square Garden, Musk said the federal budget could be cut by “at least” $2 trillion. dollars, i.e. by one third!
#Elon #Musk #shadow #president #USA
How does this code snippet handle the display of Google AdSense ads on mobile devices?
This code snippet appears to be responsible for loading various third-party ad and tracking scripts on a webpage.
Let's break down what each section does:
**1. Mobile AdSense Removal:**
```javascript
if (window.innerWidth < 768) { document.querySelectorAll('.adsense-for-mobile').forEach(function(e) {
e.querySelector('.adsbygoogle').remove();
});
}
```
This part checks if the screen width is less than 768 pixels (typical for mobile devices). If so, it removes any elements with the class "adsense-for-mobile" which likely contain Google AdSense ads intended for mobile display.
**2. Collecting AdSense Slots:**
```javascript
const adSenseSlots = document.querySelectorAll('.adsbygoogle');
const adSenseSlotCount = adSenseSlots.length;
if (adSenseSlotCount > 0) {
// ... (code for loading AdSense script)
}
```
This section identifies all elements with the class "adsbygoogle" that represent AdSense ad slots on the page. It then checks if any such slots exist. If there are
**3. Loading Scripts and Modules:**
The code then uses a function called `asyncLoadScript` and `asyncLoadModule` to load various external scripts and modules.
Here's a breakdown of what each script likely does:
* **Phaistos Adman:** An ad serving platform. [[1](https://medium.com/@kamotomo/how-to-implement-google-adsense-on-app-router-next-js-98dd568e087a)]
* **OneSignal:** A push notification service.
* **Disqus:** A commenting platform.
* **CleverCore:** An adtech platform (commented out in the code provided).
* **Taboola / Project Agora:** Content recommendation and native advertising platforms.
* **Glomex:** A video player and hosting platform.
* **Dalecta:** A privacy-centric advertising platform.
* **Vidoomy:** A video advertising platform.
**4. CMP Action Completion:**
The `cmpActionCompleted` function is likely called after a consent management platform (CMP) has determined the user's ad preferences. It loads different scripts based on those preferences, influencing which ads are displayed.
**this code snippet demonstrates a common pattern for dynamically loading various third-party scripts and modules for advertising, tracking, and other features on a website.**