Welcome to Friendica.Eskimo.Com
Home of Censorship Free Hosting

E-mail, Web Hosting, Linux Shell Accounts terminal or full remote desktops.
Sign Up For A Free Trial Here
Please tell your friends about federated social media site that speaks several fediverse protocols thus serving as a hub uniting them, hubzilla.eskimo.com, also check out friendica.eskimo.com, federated macroblogging social media site, mastodon.eskimo.com a federated microblogging site, and yacy.eskimo.com an uncensored federated search engine. All Free!
Palestine Action keeps winning
presstv.ir/Detail/2024/12/21/7…
#PalestineAction #activism #Palestine
Palestine Action keeps winning
In today’s show, we’ll be exploring how Palestine Action’s activities have struck another costly blow against the Israeli arms manufacturer, Elbit Systems.PressTV
Gary Hill likes this.
BREAKING: Palestine Action Scotland destroyed the electricity supply to Leonardo's Edinburgh weapons factory, disrupting the production of laser targeting systems for Israel's F-35 fighter jets.
Source: Pal_action on x/twitter
Gary Hill likes this.
After an action and subsequent correspondence, Hinks Haulage will refuse to take work from Israel's biggest weapons producer and Howmet Aerospace, suppliers of F-35 fighter jet parts.After their quick response to our campaign, they are now no longer a target.
--- Pal_action on x/twitter
Gary Hill likes this.
Huda Ammori | Free Political Prisoners | 20 September 2024
youtu.be/mJLldwhc3A4?si=baZlwo…
Huda Ammori | Free Political Prisoners | 20 September 2024 | Defend Our Juries
Juries are a microcosm of democracy. Permitted to hear the evidence, they regularly acquit those who act to protect life. Oil and arms industry lobbyists are...YouTube
Gary Hill likes this.
An IT security guy at a place I once worked said the executives were the biggest security vulnerability the company had because they wanted what they wanted and didn't care much about security. I think that's what tool Maersk down a few years ago - some exec installed malware that spread to the entire network.
"they normally put big all caps bold red warning if the person is a VIP, eg C suite, so they get VIP service - ie anything goes."
Okay, why is every right winger allowed to criticize Israel all of a sudden?👈🏻
Star Of Remphan Or Seal Of Solomon?
Alex Jones Reveals The True Origin Of Modern Israel's So-Called Star Of David
Not sure. It certainly was not acceptable to criticize them a few years ago.
If I remember correctly, Alex Jones tip toed around the Israel issue for about a decade. I have seen earlier videos where he had criticisms.
Mohammad Marandi on Western Propaganda
youtu.be/AzrFiLo4y6A?si=CsrSPq…
#MohammadMarandi #propaganda #WesternMedia #Iran
From Truth to Propaganda: Mohammad Marandi Accuses Democracy Now of Echoing U.S.-Israel Agenda
As tensions escalate between Israel and Iran, Iranian analyst Mohammad Marandi exposes how Western media — even so-called progressive outlets like Democracy ...YouTube
like this
Abdul-Salam praises great sacrifices made by Iran's leadership in deterring "Israel"
SANAA, June 24 (YPA) - Head of the Sanaa negotiating delegation, Mohammed Abdul-Salam, praised the great stance and sacrifices made by Iran's leadership, people, and army during the 12-day war with the Israeli enemy.In a post on X, he emphasized thatاحسن (Yemen Press Agency)
UPDATE: NARA has taken this down/rescinded, and stated that it had "many inaccuracies."
This is NOT GOOD. #archives "
Restricted-Access Federal Facility, Effective July 7, 2025
Effective July 7, 2025, the National Archives at College Park, MD, will become a restricted-access federal facility with access only for visitors with a legitimate business need. It will no longer be open to the general public." archives.gov/college-park
The National Archives at College Park, Maryland
We hold permanent records created by Federal agencies that include: Textual records from civilian agencies Army unit records dating from WW1 Navy unit records dating from WW2 Still pictures Electronic records Cartographic and architectural holdings …The National Archives at College Park, Maryland
forbidden secrets of ancient X11 scaling technology revealed
People keep telling me that X11 doesn’t support DPI scaling, or fractional scaling, or multiple monitors, or something. There’s nothing you can do to make it work. I find this surprising. Why doesn’t it work? I figure the best way to find out is try the impossible and see how far we get.
I’m just going to draw a two inch circle on the screen. This screen, that screen, any screen, the circle should always be two inches. Perhaps not the most exciting task, but I figure it’s isomorphic to any other scaling challenge. Just imagine it’s the letter o or a button we wish to draw at a certain size.
I have gathered around me a few screens of different sizes and resolutions. My laptop screen, and then a bit to the right a desktop monitor, and then somewhere over that way a nice big TV. Specifically:
$ xrandr | grep \ connected
eDP connected primary 2880x1800+0+0 (normal left inverted right x axis y axis) 302mm x 189mm
DisplayPort-0 connected 2560x1440+2880+0 (normal left inverted right x axis y axis) 590mm x 334mm
DisplayPort-1 connected 3840x2160+5440+0 (normal left inverted right x axis y axis) 1600mm x 900mm
I think I just spoiled the ending, but here we go anyway.
I’m going to draw the circle with OpenGL, using a simple shader and OBT. There’s a bunch of not very exciting code to create a window and a GLX context, but eventually we’re going to be looking at the shader. This may not be the best way to draw a circle, but it’s my way. For reference, the full code is in circle.c.
<span class=tp>void</span> main<span class=st>(</span><span class=st>)</span>
<span class=st>{</span>
float thick <span class=op>=</span> radius <span class=op>/</span> <span class=nm>10</span>;
<span class=kw>if</span> <span class=kw>(</span>abs<span class=cm>(</span>center<span class=op>.</span>y <span class=op>-</span> gl_FragCoord<span class=op>.</span>y<span class=cm>)</span> <span class=op><</span> thick<span class=op>/</span><span class=nm>2</span><span class=kw>)</span>
thick <span class=op>=</span> <span class=nm>2</span>;
float pi <span class=op>=</span> <span class=nm>3</span><span class=op>.</span><span class=nm>14159</span>;
float d <span class=op>=</span> distance<span class=kw>(</span>gl_FragCoord<span class=op>.</span>xy<span class=op>,</span> center<span class=kw>)</span>;
float angle <span class=op>=</span> atan<span class=kw>(</span>gl_FragCoord<span class=op>.</span>y <span class=op>-</span> center<span class=op>.</span>y<span class=op>,</span> gl_FragCoord<span class=op>.</span>x <span class=op>-</span> center<span class=op>.</span>x<span class=kw>)</span>;
angle <span class=op>/=</span> <span class=nm>2</span> <span class=op>*</span> pi;
angle <span class=op>+=</span> <span class=nm>0</span><span class=op>.</span><span class=nm>5</span>;
angle <span class=op>+=</span> <span class=nm>0</span><span class=op>.</span><span class=nm>25</span>;
<span class=kw>if</span> <span class=kw>(</span>angle <span class=op>></span> <span class=nm>1</span><span class=op>.</span><span class=nm>0</span><span class=kw>)</span> angle <span class=op>-=</span> <span class=nm>1</span><span class=op>.</span><span class=nm>0</span>;
float amt <span class=op>=</span> <span class=kw>(</span>thick <span class=op>-</span> abs<span class=cm>(</span>d <span class=op>-</span> radius<span class=cm>)</span><span class=kw>)</span> <span class=op>/</span> thick;
<span class=kw>if</span> <span class=kw>(</span>d <span class=op><</span> radius <span class=op>+</span> thick && d <span class=op>></span> radius <span class=op>-</span> thick<span class=kw>)</span>
fragment <span class=op>=</span> vec4<span class=kw>(</span>rgb<span class=cm>(</span>angle<span class=cm>)</span><span class=op>*</span>amt<span class=op>,</span> <span class=nm>1</span><span class=op>.</span><span class=nm>0</span><span class=kw>)</span>;
<span class=kw>else</span>
discard;
<span class=st>}</span>
I got a little carried away and made a pretty color wheel instead of a flat circle.
The key variable is radius
which tells us how many pixels from the center the circle should be. But where does the shader get this from?
glUniform1f(0, radius);
Okay, but seriously. We listen for configure events. This is the X server telling us our window has been moved or resized. Something has changed, so we should figure out where we are and adjust accordingly.
<span class=kw>case</span> ConfigureNotify<span class=op>:</span>
<span class=st>{</span>
XConfigureEvent <span class=op>*</span>xev <span class=op>=</span> <span class=kw>(</span><span class=tp>void</span> <span class=op>*</span><span class=kw>)</span>&ev;
<span class=tp>int</span> x <span class=op>=</span> xev<span class=op>-></span>x;
<span class=kw>for</span> <span class=kw>(</span><span class=tp>int</span> i <span class=op>=</span> <span class=nm>0</span>; i <span class=op><</span> <span class=nm>16</span>; i<span class=op>++</span><span class=kw>)</span> <span class=kw>{</span>
<span class=kw>if</span> <span class=cm>(</span>x <span class=op>>=</span> screen_x<span class=bi>[</span>i<span class=bi>]</span> && x <span class=op>-</span> screen_x<span class=bi>[</span>i<span class=bi>]</span> <span class=op><</span> screen_w<span class=bi>[</span>i<span class=bi>]</span><span class=cm>)</span> <span class=cm>{</span>
float r <span class=op>=</span> screen_w<span class=bi>[</span>i<span class=bi>]</span> <span class=op>/</span> screen_mm<span class=bi>[</span>i<span class=bi>]</span> <span class=op>*</span> <span class=nm>25</span><span class=op>.</span><span class=nm>4</span>;
<span class=kw>if</span> <span class=bi>(</span>r <span class=op>!=</span> radius<span class=bi>)</span> <span class=bi>{</span>
radius <span class=op>=</span> r;
<span class=bi>}</span>
<span class=kw>break</span>;
<span class=cm>}</span>
<span class=kw>}</span>
width <span class=op>=</span> xev<span class=op>-></span>width;
height <span class=op>=</span> xev<span class=op>-></span>height;
<span class=st>}</span>
Getting closer. The numbers we need come from the X server.
XRRScreenResources <span class=op>*</span>res <span class=op>=</span> XRRGetScreenResourcesCurrent<span class=st>(</span>disp<span class=op>,</span> root<span class=st>)</span>;
float screen_mm<span class=st>[</span><span class=nm>16</span><span class=st>]</span> <span class=op>=</span> <span class=st>{</span> <span class=nm>0</span> <span class=st>}</span>;
float screen_w<span class=st>[</span><span class=nm>16</span><span class=st>]</span> <span class=op>=</span> <span class=st>{</span> <span class=nm>0</span> <span class=st>}</span>;
float screen_x<span class=st>[</span><span class=nm>16</span><span class=st>]</span> <span class=op>=</span> <span class=st>{</span> <span class=nm>0</span> <span class=st>}</span>;
<span class=tp>int</span> j <span class=op>=</span> <span class=nm>0</span>;
<span class=kw>for</span> <span class=st>(</span><span class=tp>int</span> i <span class=op>=</span> <span class=nm>0</span>; i <span class=op><</span> res<span class=op>-></span>noutput; i<span class=op>++</span><span class=st>)</span> <span class=st>{</span>
XRROutputInfo <span class=op>*</span>info <span class=op>=</span> XRRGetOutputInfo<span class=kw>(</span>disp<span class=op>,</span> res<span class=op>,</span> res<span class=op>-></span>outputs<span class=cm>[</span>i<span class=cm>]</span><span class=kw>)</span>;
screen_mm<span class=kw>[</span>j<span class=op>++</span><span class=kw>]</span> <span class=op>=</span> info<span class=op>-></span>mm_width;
<span class=st>}</span>
j <span class=op>=</span> <span class=nm>0</span>;
<span class=kw>for</span> <span class=st>(</span><span class=tp>int</span> i <span class=op>=</span> <span class=nm>0</span>; i <span class=op><</span> res<span class=op>-></span>ncrtc; i<span class=op>++</span><span class=st>)</span> <span class=st>{</span>
XRRCrtcInfo <span class=op>*</span>info <span class=op>=</span> XRRGetCrtcInfo<span class=kw>(</span>disp<span class=op>,</span> res<span class=op>,</span> res<span class=op>-></span>crtcs<span class=cm>[</span>i<span class=cm>]</span><span class=kw>)</span>;
screen_w<span class=kw>[</span>j<span class=kw>]</span> <span class=op>=</span> info<span class=op>-></span>width;
screen_x<span class=kw>[</span>j<span class=op>++</span><span class=kw>]</span> <span class=op>=</span> info<span class=op>-></span>x;
<span class=st>}</span>
It’s somewhat annoying that physical width and virtual width are in different structures, and we have to put the puzzle back together, but there it is.
Some more code to handle expose events, the draw loop, etc., and that’s it. A beautiful circle sized just right. Drag it over onto the next monitor, and it changes size. Or rather, it maintains its size. Send it over to the next monitor, and same as before.
Time for the visual proof. A nice pretty circle on my laptop. Another circle on my monitor. And despite the 4K resolution, a somewhat pixely circle on my TV. Turns out the hardest part of this adventure was trying to hold an uncooperative tape measure in place with one hand while trying to get a decent, or not, photo with the other.
We were so close to perfection. Somebody at the factory screwed up, and my TV is actually 66.5” wide, not the claimed 63 inches. So if we learn anything today, it’s that you shouldn’t use a consumer LG TV for accurately measuring the scale of structural engineering diagrams, at least not without further calibration.
The good news is we’ve done the impossible. Even better, I didn’t mention that I wasn’t actually running this program on my laptop. It was running on my router in another room, but everything worked as if by MIT-MAGIC-COOKIE-1. Alas, we are still no closer to understanding why people say this is impossible.
Anyway, I think the point is we should probably ignore the people who can’t do something when they tell us we can’t do it either. I woke up this morning not knowing precisely how to draw a scaled circle, having never done so before, but armed with a vague sense that surely it must be possible, because come on of course it is, I got it working. And now look at me, driven insane by the relentless stare of three unblinking eyes.
With my new knowledge, I also wrote an onscreen ruler using the shape extension. Somewhat tautological for measuring the two inch circle, but in the event anyone asks, I can now tell them my terminal line height is 1/8”, and yes, I measured.
Forbidden secrets of ancient X11 scaling technology revealed
Link: flak.tedunangst.com/post/forbi…
Discussion: news.ycombinator.com/item?id=4…
DragonForce Ransomware Cartel are claiming credit for attacks on Marks and Spencer, Co-op and Harrods and say more victim orgs are coming bloomberg.com/news/articles/20…
M&S Cyber Attack: ‘DragonForce’ Hacking Gang Takes Credit for UK Retail Attacks
The UK supermarket chain Co-op said hackers were able to access and extract customer data from one of its systems during a recent cyberattack.Ryan Gallagher (Bloomberg)
Unknown drone attack targets Taji Camp in Baghdad, Iraq
Multiple explosions were heard in the Iraqi capital, Baghdad, particularly at Camp Taji, a military installation used by Iraqi and the US-led coalition forces.Al Mayadeen English (Unknown drone attack targets Taji Camp in Baghdad, Iraq)
Nanook likes this.
like this
Xi to attend gathering marking 80th anniversary of victory against Japanese aggression, fascism - China Military
Chinese President Xi Jinping will attend a gathering marking the 80th anniversary of the victory in the Chinese People's War of Resistance Against Japanese Aggression and the World Anti-Fascist War.eng.chinamil.com.cn
You can follow us in other languages. Visit our website for more information wordsmith.social/protestation/…
Hamas' Al-Qassam Brigades execute complex ambush on zionist force in Gaza
Hamas' Al-Qassam Brigades execute complex ambush on zionist force in Gaza
Al-Qassam Brigades, the military wing of the Islamic Resistance Movement (Hamas), announced on Tuesday that its fighters carried out a complex ambush targeting a Zionist force entrenched inside a house south of Khan Younis in the southern Gaza Strip.www.saba.ye
Workers and students in Manchester and Bradford speak out against Iran war, Palestine Action ban - World Socialist Web Site
wsws.org/en/articles/2025/06/2…
Workers and students in Manchester and Bradford speak out against Iran war, Palestine Action ban
Ahmed, a rail worker, told WSWS, “The attack on Iran is totally unjustified, it’s also a total threat to democracy… Before we know it, we won’t be able to protest.”World Socialist Web Site
reshared this
AI training, per se, is now considered "fair use" and Constitutionally protected in the U.S.
news.bloomberglaw.com/ip-law/a…
Anthropic Wins Right to Use Copyrighted Books to Train AI Models
Anthropic PBC convinced a California federal judge that using copyrighted books to train its generative AI models qualifies as fair use.Annelise Levy (news.bloomberglaw.com)
if ai training is fair use, and whatever ai produces is effectively public domain...
i feel like this is the best path to completely destroy copyright once and for all
A federal judge sides with Anthropic in lawsuit over training AI on books
Link: techcrunch.com/2025/06/24/a-fe…
Discussion: news.ycombinator.com/item?id=4…
A federal judge sides with Anthropic in lawsuit over training AI on books without authors' permission | TechCrunch
The ruling isn't a guarantee for how similar cases will proceed, but it lays the foundations for a precedent that would side with tech companies over creatives.Amanda Silberling (TechCrunch)
Audio: Trump’s attack on Iran is ‘unconditional surrender’ to Israel
Narrated version: Shunning the US intelligence consensus, Trump and top principals rely on Israeli fraud to bomb Iran.Aaron Maté (Aaron Mate)
« Iran, US, France: faire entendre la voix des peuples » - QG TV
What comes next, as war escalates?
How can Iran counter a US-Israeli assault aimed at its destruction?The Electronic Intifada
Chaque message de Van der Leyen est une raison de quitter l'UE
Commentaire peu politiquement correct de Hal Turner, qui a posté cette chose imprimée par la Présidente (non élue) de la C.E. : "La Gauleiter Ursula von der Führer annonce simultanément que l'Iran ne doit jamais se doter de la bombe (même s'il n'existe aucune preuve qu'il tente d'en fabriquer une), et affirme que le droit international doit être respecté et que l'Iran doit s'engager dans une solution diplomatique crédible.
Ceci après que l'Iran a déjà été bombardé sans déclaration de guerre à deux reprises au cours des dix derniers jours, sans mentionner toutes les frappes aériennes qu'il a subies, ses hôpitaux et ses ambulances délibérément ciblés, et après avoir tenté de négocier uniquement pour que les autres parties bombardent leurs diplomates et attaquent leur territoire pendant les négociations.
C'est une chose pour von der Leyen d'être un serpent nazi, une escroc corrompu et une menteuse congénitale, mais ici, avec son message, nous atteignons de nouveaux sommets de schizophrénie."
like this
Emmanuel Florac reshared this.
Mais comme l'UE, les milliardaires serrent trop fort et toujours les mêmes. Ils sont en train de scier les forces vives, les enthousiasmes, les dynamiques sociétales dont ils se repassaissent, en vrais vampires qu'ils sont. Et ça va les tuer, pour peu qu'on les aide un peu à se péter la gueule.
alexandrehedan likes this.
Israelis are flocking to Cyprus like it was promised to them in a 3,000 year old book. Cypriots are freaking out about the loss of sovereignty as Zionists buy up huge chunks of real estate, in case they lose occupied Palestine. It could be a matter of time until Cypriots are forced out of their homes into concentration camps and called "antisemites" for objecting. The world let Zionists get away with this once so don't doubt it would let it happen a second time.
councilestatemedia.uk/p/countr…
Country that broke 962 ceasefires breaks another one...
You never guess which country I'm talking about...Ricky Hale (Council Estate Media)
Péonia on X: La prophétie de Todd sur la guerre en Ukraine: pourquoi la Russie a déjà gagné et pourquoi l'Europe s'autodétruit.
via Strategic Culture
📍Il y a des voix qui, dans le grand fracas de l’histoire, murmurent des vérités que personne ne veut entendre. Et puis, il y a celle d’Emmanuel Todd. Historien, démographe, essayiste, Todd n’est pas un commentateur ordinaire. C’est l’homme qui, en analysant les taux de mortalité infantile et les structures familiales, a prédit l’effondrement de l’Union soviétique alors que tous la croyaient éternelle. Un « détective de la démographie » capable de discerner les fissures profondes sous la surface des empires.
Aujourd’hui, cette voix s’exprime à nouveau, avec une clarté brutale qui ébranle nos certitudes. Dans une récente interview explosive accordée à la presse germanophone, Todd ne mâche pas ses mots. Le sujet est la guerre en Ukraine, mais son analyse va bien au-delà du champ de bataille. Elle parle de nous. De notre avenir. Sa thèse, simple et terrifiante, est la suivante : la Russie a gagné la guerre, et l’Occident, perdu dans un labyrinthe d’illusions, ne s’en est même pas rendu compte.
Il ne s’agit pas de l’opinion d’un « idiot utile » du Kremlin, comme il s’attend lui-même à être qualifié. C’est le diagnostic implacable d’un médecin observant son patient – l’Europe – s’infliger des blessures mortelles, persuadé de lutter pour son salut. C’est un voyage au cœur des ténèbres de notre époque, une analyse que nous devons avoir le courage d’écouter.
📍Le choc de la normalité : un voyage à Moscou
Pour comprendre le raisonnement de Todd, il faut commencer par là : Moscou. Invité à une série de conférences, l’intellectuel français s’attendait à trouver une capitale assiégée, écrasée par les sanctions et le poids d’une guerre totale. Au lieu de cela, il a vécu ce qu’il appelle un « choc de normalité ».
Imaginez la scène. Les rues grouillent de vie, les regards rivés sur les smartphones. Les magasins sont pleins, les paiements s’effectuent par carte bancaire, les trottinettes électriques filent comme à Paris. Todd relève un détail presque comique, mais révélateur : « La grande différence, c’est que tous les escalators et ascenseurs fonctionnaient. » Ce n’est pas l’image d’un régime au bord de l’effondrement. C’est celle d’un pays qui a absorbé le choc, s’est réorganisé et continue de vivre.
Cette « normalité » n’est pas anecdotique, mais constitue le premier pilier de sa thèse. Alors que l’Ukraine mène une guerre existentielle pour sa survie, pour la Russie, il s’agit d’une opération stratégique qui, malgré un coût humain terrible, n’a pas déstabilisé le cœur du système. Les sanctions, selon Todd, ont même eu un effet paradoxal : elles ont contraint Poutine à mettre en œuvre des mesures d’autarcie économique et à renforcer des liens commerciaux alternatifs, des politiques qu’il n’aurait jamais pu imposer en temps de paix. La Russie s’est adaptée.
📍L’Occident, en revanche, semble avoir perdu le contact avec la réalité.
L’Apocalypse comme révélation : la défaite de l’Amérique et le déclin de l’Occident
Quand Todd affirme que la Russie a gagné la guerre, il ne parle pas d’un défilé triomphal à Kiev. Son analyse est stratégique. L’objectif premier des États-Unis, explique-t-il, était d’utiliser l’armée ukrainienne comme un intermédiaire pour infliger une défaite stratégique à Moscou, l’affaiblir et provoquer son effondrement. Ce plan a échoué.
Consciente de l’impossibilité de faire plier la Russie sur le terrain, l’Amérique a changé de cap et déclaré une guerre commerciale ouverte à la Chine. Pour Todd, c’est là le véritable tournant. C’est le début de l’Apocalypse, non pas au sens de la fin du monde, mais dans son acception biblique originelle : une « révélation ». La guerre en Ukraine a mis au jour une vérité cachée : la puissance américaine n’est plus absolue.
Les arsenaux se vident, la capacité de production militaire est en difficulté, et le contrôle du système financier mondial commence à vaciller.
Dans ce grand jeu, l’Europe est la véritable victime, la véritable perdante. Ses dirigeants, de Macron à Merz, s’agitent, promettent des armes, prononcent des discours enflammés, mais n’ont aucun poids dans la conduite de la guerre. « Ils sont les marionnettes des Ukrainiens et des Américains », assène Todd, « mais ils n’ont pas encore compris que la guerre est perdue. » Ils fournissent armes et argent, mais sont exclus des décisions importantes. Ils rêvent de poursuivre une guerre que d’autres ont déjà décidé d’abandonner.
📍L’envie de suicide : le psychodrame d’une Europe à la dérive
C’est ici que l’analyse de Todd devient plus sombre et plus inquiétante. Observant l’Europe de l’extérieur, il perçoit les signes d’une pathologie profonde, une sorte de folie collective qu’il décrit par une expression glaçante : « une soif de suicide » (Sehnsucht nach Selbstmord).
Il ne s’agit pas d’une exagération, mais d’un diagnostic étayé par des décisions politiques qui semblent inexplicables, sinon comme des actes d’automutilation :
• Des sanctions contre la Russie qui ont porté bien plus de préjudice à l’industrie européenne qu’à l’industrie russe.
• La décision de l’Allemagne d’abandonner l’énergie nucléaire en pleine crise énergétique, qualifiée d’« absurde » par Todd.
• Le renoncement volontaire au gaz russe bon marché, pilier de la compétitivité industrielle allemande, sans plan B durable.
Pour Todd, ce n’est pas de la politique. C’est une « maladie des classes dirigeantes », une élite qui a perdu tout sens des réalités et des responsabilités, prisonnière d’un moralisme abstrait qui la pousse à prendre des décisions contraires à ses propres intérêts vitaux. C’est un continent qui, sous couvert de défendre des valeurs pacifistes, prolonge une guerre sanglante. Un paradoxe révélateur d’une profonde crise identitaire.
📍L’ombre de l’Allemagne : le danger que nous refusons de voir
Si l’Europe est la grande perdante, l’Allemagne en est le cœur problématique. L’analyse de Todd sur le rôle de l’Allemagne est peut-être la partie la plus originale et la plus alarmante de son entretien. Selon lui, l’Allemagne a perdu sa souveraineté. Le silence assourdissant de ses institutions et de ses médias sur le sabotage de Nord Stream en est la preuve la plus flagrante. « L’Allemagne est à nouveau un pays occupé », affirme-t-il, « et sa véritable capitale est Ramstein », la plus grande base aérienne américaine en Europe.
Mais c’est l’avenir qui l’inquiète le plus. L’idée, portée par le nouvel establishment politique allemand (incarné par Friedrich Merz), de construire « l’armée la plus puissante d’Europe » est perçue par Todd comme un acte d’« irresponsabilité historique ». Pourquoi ? Parce que, contrairement à la France ou à la Grande-Bretagne, l’Allemagne dispose d’un immense potentiel industriel. Si ce potentiel était mis au service d’un réarmement massif, la perception de la menace en Europe changerait radicalement.
Todd rappelle un fait historique que l’Occident semble vouloir oublier : l’Allemagne est responsable de la mort de 25 millions de Russes pendant la Seconde Guerre mondiale. Que l’Allemagne, plus que quiconque, envisage aujourd’hui de se réarmer contre la Russie est un fait qui ne passe pas inaperçu à Moscou. Face à ce qu’elle perçoit comme une menace existentielle, la doctrine militaire russe prévoit le recours à des armes nucléaires tactiques.
Le scénario cauchemardesque de Todd va encore plus loin. Il craint que, sous couvert d’un antifascisme de façade, l’Allemagne n’adopte des méthodes illibérales contre la dissidence interne, à l’image de l’AfD. Sa vision est terrifiante : une Europe où, bientôt, les Français et les Polonais pourraient redouter davantage les Allemands que les Russes.
La fin de la mondialisation et le retour de l’histoire.
Tout cela – la guerre, la crise européenne, le réarmement allemand – ne sont pas des événements isolés. Ils sont les symptômes d’un processus bien plus vaste : la fin de la mondialisation. Le mythe d’un monde plat, sans frontières, où les cultures sont interchangeables et où seul le marché compte, s’effondre sous nos yeux.
Le Brexit, Trump et le succès des forces populistes en Europe ne sont pas des accidents, mais la preuve que les peuples veulent redevenir eux-mêmes. « Il s’avérera que les gens sont très différents », affirme Todd. « Les Italiens sont italiens, et les Français sont français. » Cette « implosion de la mondialisation » est la deuxième Apocalypse, la deuxième révélation : le retour des nations, avec leurs identités, leurs intérêts et leurs peurs ancestrales. Et cela, prévient-il, pourrait conduire à l’effondrement de l’Union européenne.
Qu’est-ce que cela signifie pour l’avenir ? Cela signifie que la Russie ne fait plus confiance à l’Occident et ne croit plus aux traités. Poutine, selon Todd, poursuivra ses objectifs stratégiques : la conquête de toute l’Ukraine orientale jusqu’au Dniepr, y compris Odessa, pour sécuriser la flotte russe, et la neutralisation complète de ce qui reste de l’État ukrainien.
Les thèses d’Emmanuel Todd sont dérangeantes.
Provocatrices. Pour beaucoup, inacceptables. Mais la question n’est pas de savoir si elles nous plaisent. La question est : et s’il avait raison ? Et si, avec notre présomption morale et notre aveuglement stratégique, nous étions les artisans de notre propre ruine ? Ignorer son analyse est un luxe que nous ne pouvons peut-être plus nous permettre.
strategic-culture.su/news/2025…
#géopolitique #impérialisme #guerre
xcancel.com/Galadriell__/statu…
La Profezia di Todd sulla Guerra in Ucraina: Perché la Russia ha già Vinto e l’Europa si Autodistrugge
Ci sono voci che, nel grande frastuono della storia, sussurrano verità che nessuno vuole ascoltare. E poi c’è la voce di Emmanuel Todd. Storico, demografo,…Strategic Culture Foundation
fanch_301 likes this.
www.pyongyangtimes.com.kp
Articles about politics, economy, culture, history, sports, tourism in DPRKwww.pyongyangtimes.com.kp
Le très regretté Bernard Stiegler explique dans cette vidéo que la prolétarisation c'est le moment où le savoir est externalisé dans des machines, et où l'opérateur devient un prolétaire asservi par le propriétaire de la machine.
files.mastodon.social/cache/me…
like this
Emmanuel Florac reshared this.
If you're making music that can even obliquely be considered "protest music," I'd love to help you get it out there by mixing and mastering for cheap (or even free, depending on your financial circumstances).
Art made by conscientious people is very good for the world.
I've already mixed and mastered one protest song from a mutual here on fedi. 😀 Allow me to help, if you need. Send me a DM or find my email from my website.
Lyon abandonne Microsoft office pour renforcer sa « souveraineté numérique » - Next
La Ville de Lyon va progressivement remplacer la suite Microsoft par des logiciels bureautiques libres, dont « Only Office pour la bureautique, ainsi que Linux et PostgreSQL pour les systèmes et bases de données ».
next.ink/brief_article/lyon-ab…
Lyon abandonne Microsoft office pour renforcer sa « souveraineté numérique » - Next
La Ville de Lyon va progressivement remplacer la suite Microsoft par des logiciels bureautiques libres, dont « Only Office pour la bureautique, ainsi que Linux et PostgreSQL pour les systèmes et bases de données ».Next
like this
Pacomm reshared this.
Well, here's a piece of good news! The #Coop is going to boycott #Israel over the #GazaGenocide.
Support the Co-op, folks!
mailchi.mp/palestinecampaign/t…
Here's confirmation from the Jewish chronicle.
thejc.com/news/uk/co-op-to-sto…
Co-op to stop stocking Israeli goods after pressure from activist members
The supermarket has banned goods from Russia, Iran Yemen and Israel, due to its ‘commitment to peace’Jane Prinsley (The Jewish Chronicle)
Nanook likes this.
Our socials: fediverse.blog/~/ActaPopuli/fo…
Fun with uv and PEP 723
Link: cottongeeks.com/articles/2025-…
Discussion: news.ycombinator.com/item?id=4…
Fun with uv and PEP 723
How to use uv and the Python inline script metadata proposal PEP 723 to run scripts seamlessly.Cottongeeks
No proof Iran wants to develop nuclear weapons — Russian Federation Council Deputy Speaker Kosachev
Russian Federation Council Speaker Konstantin Kosachev told RT that Iran has repeatedly stated its commitment to non-proliferation and there's still no proof Tehran is developing nuclear weapons despi...Odysee
@nanook @ernestoDuracelli @lauren Except where you have WiFi
(and I guess that was the whole point, eh?)
@nanook @ernestoDuracelli @lauren I cannot talk for the op, but I'm not buying a tablet because they are way too big for me.
Unfortunately my 7" tablet has a bad battery and is... ancient (for such a device, and slow, and actually an Intel device). The thing is that size is an issue. Phones are getting too big to put in my pockets, and tablets are too big. Maybe I'll convert an e-reader (or actually get a cheap phablet). Though a tablet would just be a "nice to have" now.
UN condemns Gaza aid 'death trap' as dozens reported killed by Israeli fire
bbc.com/news/articles/c15wz2ee…
'At least 46 people waiting for aid have been killed by Israeli fire in two incidents in central and southern Gaza, according to rescuers and hospitals.
UN agencies have condemned the US and Israel-backed food distribution system, with one official calling it "an abomination" and "a death trap".'
#Palestine #Gaza #Israel
@palestine
UN condemns Gaza aid 'death trap' as dozens reported killed by Israeli fire
At least 46 people waiting for aid have been killed by Israeli fire in two incidents, rescuers and hospitals say.Yolande Knell (BBC News)
reshared this
okay, still kind of stuck on the iran israel war, bc fog of war and censorship and media bias makes it hard to fill in some of the blanks...
the palestine chronicle published this article with a photo that is allegedly a screen grab from a photo of the iranian attack on al-udeid air base in qatar.
palestinechronicle.com/live-bl…
can anyone verify if this is legit? because that "one missile" landing must have been a hell of a weapon to cause a scene like that.
LIVE BLOG: Iran's Massive Barrage after Trump Announces Ceasefire | Horrific 'Aid' Massacre - Day 626 - Palestine Chronicle
Iranian armed forces have launched a retaliatory operation, dubbed Annunciation of Victory, targeting a US base in Qatar.admin (Palestine Chronicle)
Fascistm is , above all, business:
Stephen Miller’s Financial Stake in ICE Contractor Palantir Raises Conflict Concerns
migrantinsider.com/p/stephen-m…
Stephen Miller, the influential Trump administration aide behind its hardline immigration policies, holds a substantial financial stake in Palantir Technologies — a key tech contractor for U.S. Immigration and Customs Enforcement — raising new ethics questions, according to a report published Tuesday by the Project on Government Oversight.
Stephen Miller’s Financial Stake in ICE Contractor Palantir Raises Conflict Concerns
POGO report shows top Trump adviser owned six-figure stock in company profiting off deportations.Pablo Manríquez (Migrant Insider)
Nanook likes this.
Stephen Miller’s Financial Stake in ICE Contractor Palantir Raises Conflict Concerns
Ya Think?
Digital Harvest: BlackRock, Vanguard, State Street – Shareholders in the Shadows
They don’t sell seeds. They don’t own tractors. They don’t run warehouses or ship grain. But BlackRock, Vanguard and State Street are among the most powerful actors in global agriculture. Together,…OffGuardian
like this
We are under seige in #LA:
A suspected fed. agent is seen exiting a Dodge Charger @ an intersection & pointing his gun @ members of the public. Acc. to #Pasadena officials, the vehicle's license plate is a "cold plate," or untraceable, which is typically used by law enforcement in undercover criminal operations. "One question is this a law enforcement agent or someone pretending to be a law enforcement agent, & there is no good answer" (Mayor Gordo).
yahoo.com/news/people-masked-i…
'Who are these people?' Masked immigration agents challenge local police, sow fear in L.A.
Local police have little or no insight into where the federal enforcement actions are taking place. In some cases, local cops have been mistaken for federal ...Nathan Solis, Richard Winton (Yahoo News)
⏫
Like I've been saying, and now elected officials are saying it, we can't tell that they're police officers? How do we know they're not faking it? And if we don't know if they are or not, are we not obligated to assume they aren't cops and stop it?
This really is the end of trust in law and order for what might be a sufficiently critical mass to start the process of abolition
Tucker Carlson's recent interview with Ted Cruz surprised many with his strong critique of the U.S.-Israeli alliance. But Carlson's "woke right" view has a long history in conservative politics and should not be mistaken for Palestine solidarity.
mondoweiss.net/2025/06/how-to-…
#Palestine #Israel #Gaza
@palestine @israel
How to understand Tucker Carlson’s criticism of Israel
Tucker Carlson’s recent interview with Ted Cruz surprised many with his strong critique of the U.S.-Israeli alliance. But Carlson’s “woke right” view has a long history in conservative politics and should not be mistaken for Palestine solidarity.Walter Lucken IV (Mondoweiss)
European countries call for restraint amid escalating conflict in Mideast - People's Daily Online
Protesters holding placards are pictured in The Hague, the Netherlands, June 22, 2025. (Xinhua/Zhaoen.people.cn
European countries have based their social stability on the low cost of energy and know it will all fall apart if oil/gas spikes and blows it all to pieces. Is so, Syria might look like a kids party compared to civil disorder in EU, with population density as it is.
Another #Supertramp classic, the #Logical-Song.
#music #video
Source: youtube.com/watch?v=BuinvmsRGN…
The Logical Song by the fabulous @ #rogerhodgson co-founder of Supertramp - #cover by #TheGraystones
The Logical Song by the fabulous @rogerhodgson co-founder of Supertramp - cover by The Graystones
Supertramp have such a unique sound and have created tons of amazing hits and we LOVE The Logical Song written and sung by the amazing Rodger Hodgson. We lea...YouTube
like this
“Europe is going to pay in a BIG way, as they should, and it will be your win.” – NATO chief
The state of these fuckers. mastodon.energy/@Sustainable20…
Kees van der Leun (@Sustainable2050@mastodon.energy)
Attached: 1 image NATO boss Rutte (fmr Dutch PM) sends app to Trump, who promptly publishes it. "Wow, your bombing of Iran was great; it makes the world a safer place!" Straight from The Hague, formerly known as the International City of Peace an…mastodon.energy
Sozan reshared this.
#Smooth-Operator by @SadeSME performed by The #Graystones (4 min)
March 14, 2025
#TheGraystones
#music #video
We love Sade... and Smooth Operator is such an iconic song. Her voice is so effortless and silky and the groove is great. We worked really hard on this song to get it right. We hope you enjoy it!
(We wanted to say that the audio in our live performances is overwhelmingly live and, on many videos, is 100% live. To some select songs, we may add layers of sound, such as harmonies or string parts. But the original live sound as the foundation for our videos, and then we might decide to add/replace some parts, if we feel it would help to bring the song even closer to the original that we’re honoring - but always in service of the art! With love, The Graystones)
Source: youtube.com/watch?v=FGWTKRRjKN…
Smooth Operator by @SadeSME performed by The Graystones - such an iconic song!
We love Sade... and Smooth Operator is such an iconic song. Her voice is so effortless and silky and the groove is great. We worked really hard on this song ...YouTube
like this
Al Green introduces article of impeachment against Trump
Rep. Al Green (D-Texas) filed an article of impeachment against President Trump on Tuesday, accusing the president of failing to notify or seek authorization from Congress before the U.S. launched strikes on three Iranian nuclear sites over the weekend.
The resolution alleges “abuse of presidential powers by disregarding the separation of powers—devolving American democracy into authoritarianism by unconstitutionally usurping Congress’s power to declare war.”
“President Trump’s unilateral, unprovoked use of force without congressional authorization or notice constitutes an abuse of power when there was no imminent threat to the United States, which facilitates the devolution of American democracy into authoritarianism,” Green’s resolution reads.
Congress has the sole power to “declare war” under the Article 1 of the U.S. Constitution. Presidents of both parties have struck adversaries without approval from the legislature.
Pretty easy to argue this comes under 'official duties' too. Surely there's a thousand other reasons he could be impeached that would stick.
I agree they'll never get the votes to pass anything, but they should keep doing it anyway. Flood the zone back at these arseholes and put them on the back foot.
Why Trump Is Now Trying To Extricate From The War Against Iran - Oriental Review
Neither Israel nor the US have the capacity to fight Iran for a long time, but will Israel allow Trump to comply with his ‘deal’ with Iran?Eric ZUESSE (Oriental Review)
U.S. Senate Democrats have succeeded in eliminating more than a dozen policy changes from Republicans’ “big, beautiful bill” after successfully arguing that the elements didn’t comply with the strict rules that go along with writing a budget reconciliation bill.
#Tucson #Arizona
Senate rules process strips SNAP cuts, other GOP priorities from ‘big, beautiful bill’
U.S. Senate Democrats have succeeded in eliminating more than a dozen policy changes from Republicans’ “big, beautiful bill” after successfully arguing that the elements didn’t comply with the strict rules that go along with writing a budget reconcil…TucsonSentinel.com
In Gaza, death is no longer an event...
It's a daily routine. We passed through the cemetery's door 600 times,
and returned bearing new names for mourning.
reshared this
relentless_eduardo
in reply to HighHorseStrong 🩸 • • •they are not really concerned about Iranian sleeper cells
it is just another fear bomb they throw into society to destabilize it, the communist pathway to power