Actionists released after they shut down Shenstone's Israeli weapons factory โ all in a day's work
Source: https://x.com/Pal_action/status/1862245804343230812
Gary Hill likes this.
Actionists released after they shut down Shenstone's Israeli weapons factory โ all in a day's work
Source: https://x.com/Pal_action/status/1862245804343230812
Gary Hill likes this.
youtu.be/y3Ga4DiV7eM?si=u83-0rโฆ
#PalestineAction #activism #Palestine
To mark a year of genocide in Gaza, we publish this powerful interview with two Israeli dissidents who took part in a Palestine Action siege of the Elbit HQ....YouTube
Gary Hill likes this.
presstv.ir/Detail/2024/12/21/7โฆ
#PalestineAction #activism #Palestine
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.
youtu.be/mJLldwhc3A4?si=baZlwoโฆ
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.
youtu.be/AzrFiLo4y6A?si=CsrSPqโฆ
#MohammadMarandi #propaganda #WesternMedia #Iran
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
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
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
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โฆ
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)
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
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/โฆ
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โฆ
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 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โฆ
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)
Narrated version: Shunning the US intelligence consensus, Trump and top principals rely on Israeli fraud to bomb Iran.Aaron Matรฉ (Aaron Mate)
How can Iran counter a US-Israeli assault aimed at its destruction?The Electronic Intifada
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.
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โฆ
You never guess which country I'm talking about...Ricky Hale (Council Estate Media)
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โฆ
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.
Articles about politics, economy, culture, history, sports, tourism in DPRKwww.pyongyangtimes.com.kp
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.
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โฆ
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โฆ
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โฆ
How to use uv and the Python inline script metadata proposal PEP 723 to run scripts seamlessly.Cottongeeks
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
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.
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.
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?
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
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โฆ
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
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)
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
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โฆ
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โฆ
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
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.
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)
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