State of the Resistance: The Counterinsurgency Against Each Faction orinocotribune.com/state-of-th…

LIVE BLOG: School Massacre in Daraj | Rockets from Gaza | ‘Turning Point’ – Day 597 #Palestine palestinechronicle.com/live-bl…

Top Cardiologist Warns ‘Tsunami of Vaccine Deaths Is Not Over’

slaynews.com/news/top-cardiolo…

A world-renowned cardiologist is raising the alarm to warn the public that the “tsunami of vaccine deaths is not over” for those who received Covid injections.

The warning was issued by American cardiologist and epidemiologist Dr. Peter McCullough.

McCullough alerted the public shortly after he testified before the United States Senate as an expert witness on “vaccine” safety last week.

HunDriverWidow reshared this.

in reply to HunDriverWidow

According to McCullough, one of America’s leading experts, subclinical myopericarditis may cause sudden cardiac arrests months to years after Covid “vaccination.”

Subclinical myopericarditis refers to inflammation of both the heart muscle (myocardium) and the sac surrounding the heart (pericardium).

It may be present without noticeable symptoms.

The condition restricts the heart’s ability to pump blood, leading to blood clots, strokes, cardiac arrests, and sudden death.

@Bleukitty @Luther @CDuBois @Andre

The Last Goodbye, a WWII Tribute - Lifein3D

youtube.com/watch?v=ZhlIimQ7il…

This is the reason they are known as the greatest generation. Thank you to all of you who sent in pictures of your loved ones.

Venezuela: Admiral Villamizar Becomes the First Governor of the Guayana Esequiba State telesurenglish.net/venezuela-a…

Israeli Enemy Admits to International Concerns Over Haifa, Damage to Industry from Yemeni Threats english.masirahtv.net/post/479…

Justice, Kindness; Quran’s Vision for a Truly Peaceful World: Minister of Science iranpress.com/content/305620

Self-hosted #Vaultwarden provisioned and installed. It certainly would be cheaper for me to just pay #Bitwarden the $10/ year considering this VPS is costing me €5,00 a month and I may eventually. And while I love #KeePassXC the fact that it's not working well with #Flathub versions of my browsers is a royal pain. And I frankly don't want to run two versions of the same software just to get integration.

i think i cracked my sternum now and it hurts to breathe or lift anything and im already crippled on my legs so i need crutches and it hurts like hell in my chest from using them i am literally dying or something but doctors just send me home with painkillers without doing any imaging to figure out why my body is falling apart all of a sudden and i would feel like a crazy hypochondriac asking if there's more we can do
in reply to woodland creature

i rly dont have the money rn to get a bunch of supplements. i looked into collagen before and it was crazy expensive. i just try to get all that stuff through diet now. i do take a multivitamin and a calcium + d3

the crazy thing is i have improved my diet and gained a lot of weight in the past few months and this stuff only started happening after that. pretty demoralizing but i'll heal up and be fine in a month hopefully

in reply to 恵真

if you buy a large container of collagen it lasts a long time. idk what it costs there, but you can get a big container of it here for like $20 that lasts for months. individual single serving packets are expensive. even a few grams per day should be beneficial. same with vitamin C powder, if you a 1kg bag instead of capsules. try to reduce expenses elsewhere, if you can. nothing should be higher priority than preventing declining health before it gets worse

that's good that you gained weight though. keep going and improve your diet more. what you don't put in your body can be as important as what you do put into it.

friendica (DFRN) - Link to source

Tom Petty - Here Comes My Girl


This and last DJ are my favorite Tom Petty songs, this one for the music, Last DJ for the lyrical content and commentary on what became of broadcast after Clinton FUCKED it with the Telecommunications Act of 1996 which took away the restrictions of any one owner not owning more than 12 broadcast stations, no more than three in one market and of those three not more than one AM, one FM, and one Television, allowing ALL of the nations broadcasters to be consolidated into less than half a dozen corporate shit entities. So much for Freedom of Speech.

Gaza Humanitarian Foundation Director Resigns #Palestine qudsnen.co/gaza-humanitarian-f…

Another good example of @pluralistic 's #enshittification

youtu.be/JODuTy632B8

Google is bad at being google: circular youtube support references edition. No humans, only AI, people who make a living off this are part of the precariat.

New Afghan government to send delegates to Russian security forum for the first time tass.com/politics/1963351

My #geekings accomplishment earlier today,
in my #emacs config (well, in a emacs -q's scratch buffer to test first) separated my face selector keybinds into two sets of keybinds separating font and size. 😀 [[[ this is a short demo vid of it, backed by a #soffmimuhod track, "have your change back", track 4 on uwkivj mkiriac.]]]


muh code, in all its first just-works glory with incompetent trial-and-error jank still to be cleaned up:

;; Define a list of fonts and sizes
(setq font-list '("nztt" "bggf" "merg"))
(setq size-list '(6 12 24))

;; Variables to keep track of the current font and size indices
(setq current-font-index 0)
(setq current-size-index 0)

;; Function to set the font based on the current indices
(defun set-current-font-and-size ()
  (let ((current-font (nth current-font-index font-list))
        (current-size (nth current-size-index size-list)))
    (set-face-attribute 'default nil :font (format "-*-%s-*-*-*-*-%d-*-*-*-*-*-*-*" current-font current-size))))

;; Function to cycle to the next font in the list
(defun cycle-font-forward ()
  (interactive)
  (setq current-font-index (mod (1+ current-font-index) (length font-list)))
  (set-current-font-and-size))

;; Function to cycle to the previous font in the list
(defun cycle-font-backward ()
  (interactive)
  (setq current-font-index (mod (1- current-font-index) (length font-list)))
  (set-current-font-and-size))

;; Function to cycle to the next size in the list
(defun cycle-size-up ()
  (interactive)
  (setq current-size-index (mod (1+ current-size-index) (length size-list)))
  (set-current-font-and-size))

;; Function to cycle to the previous size in the list
(defun cycle-size-down ()
  (interactive)
  (setq current-size-index (mod (1- current-size-index) (length size-list)))
  (set-current-font-and-size))

;; Bind keys for font cycling
;;(global-set-key (kbd "C-S-=") 'cycle-font-forward)
;; yeah^ but that's also just:
(global-set-key (kbd "C-+") 'cycle-font-forward)
;; requires unsetting a lesser known undo bind first
;;(keymap-global-unset "C-S--")
;;(global-set-key (kbd "C-S--") 'cycle-font-backward)

;; Unset the keybinding if it was previously set
(global-unset-key (kbd "C-S--"))
(keymap-global-unset "C-S--")
(global-unset-key (kbd "C-_"))
(keymap-global-unset "C-_")
;; Set the new keybinding
(global-set-key (kbd "C-S--") 'cycle-font-backward)
;; and so isnt that also just...  (better go back and unset it too^)
(global-set-key (kbd "C-_") 'cycle-font-backward)

;; example other way(keymap-global-set "C-x C-\\" 'next-line)
(keymap-global-set "C-_" 'cycle-font-backward)


;; Bind keys for size cycling
(global-set-key (kbd "C-=") 'cycle-size-up)
(global-set-key (kbd "C--") 'cycle-size-down)

muh ramble blurb on the vid:

Scratched a tiny itch where my prior method of changing default face's font and size were combined (a feature in many ways)... After a couple leg-ups from an LLM, some documentation reading, and a lot of re-wrangling the code, and this basic just-works (still janky noise in the code), 2 sets of keybinds, one for the size, the other for the font, is a fun little accomplishment for my low programming aptitude. See, anyone can try a little emacs-fu. May adjust the binds so I keep my old method too. Best of both worlds.

Backed by cc audio track: soffmi muhod - uwkivj mkiriac - 04 have your change back, as is from bandcamp.

I suppose I could even paste in the whole scratch buffer's code snippet in the description here too.

US President Trump's trip to the Middle East was in service of the "deep state," not Americans thealtworld.substack.com/p/us-…

NO KINGS San Francisco is less than 3 weeks away! Are you ready to mobilize for democracy? Today's assignment is to tell someone, in person, to come and march with us. mobilize.us/nokings/event/7856… #SFPol #USPol #NoKings

Hamas calls for immediate int’l action to end Israel’s genocide in Gaza #Palestine english.palinfo.com/news/2025/…