
u/happahopp

The Operational Case Against Israel’s Gaza Campaign
warontherocks.comIsrael fortsätter attackera Libanon – flera barn bland minst 19 döda
omni.seSVT/Verian: Tidöpartierna tappar manliga väljare – oppositionen drar ifrån
svt.se10 Ukrainians Humbled Two NATO Battalions. When Will NATO Wake Up?
https://warontherocks.com/10-ukrainians-humbled-two-nato-battalions-when-will-nato-wake-up
> Last May, NATO invited 10 Ukrainians to act as an opposing force during Hedgehog 2025, one of NATO’s largest exercises in the Baltics. The Ukrainians successfully simulated the destruction of 17 armored vehicles and conducted 30 strikes in half a day, effectively neutralizing two NATO battalions before dinner.
Varför beställde vi fler Leopard II? Borde vi gå över till en drönararmé i stället?
https://en.wikipedia.org/wiki/Brain_matures_at_25_myth
> The "brain matures at 25" myth or "twenty-five year old brain" myth is the claim that the human brain, particularly the prefrontal cortex, reaches an adult level maturity approximately around age 25.
> It has been shown that the prefrontal cortex does prune gray matter with age, but these changes are not conclusively linked with better cognitive function or a higher level of socioemotional maturity. It is widely quoted on social media outlets, usually in debates regarding legal age limits or youth behavior.
> The work of Laurence Steinberg is also purported to a significant amount of influence in the spreading of this myth. His research generally focuses around adolescent brain development and risk-development and is generally used to influence the juvenile justice system and provide lighter sentences for offending youth. He proposes the science of neuroplasticity should redefine how society treats "adolescents" and that a specific range of 10-to-25-year olds have undeveloped brains.
> Ongoing work on Eurofighter EK could be the springboard for further collaboration with Sweden. Swedish manufacturer Saab is open to collaboration on a future fighter jet – though this does not necessarily mean a joint programme with Germany. Yet, interfacing on a 6th Generation platform vastly exceeds the current scope of German-Swedish collaboration. Given the fallout with France, German industry may turn particularly hawkish in establishing a major workshare to prevent a repeated deadlock. Sweden will be understandably protective of its own design and construction capabilities. A potential complication to this collaborative work is that neither country has a direct answer on developing a new powerplant. Within NATO, this expertise is found primarily in the US, UK and in France.
>Sweden’s historic preference for a compact platform used from a dispersed posture could clash with Germany’s centralised approach that relies on Main Operating Bases.
I like having a list of all packages I have installed with a comment about what they do or why I installed them. But I always forget to update the text file. So I made these functions. It adds the name of the package to the top of the text file when you add a package.
qeq.txt is the text file.
pma() {
sudo pacman -S "$1"
local file=/path/to/qeq
printf '%s\n' "$1" | cat - "${file}.txt" > "${file}.tmp"
mv "${file}.tmp" "${file}.txt"
nvim "${file}.txt"
}
pmr() {
sudo pacman -Rns "$1"
nvim /path/to/qeq.txt
}