Advertisement · 728 × 90

Posts by geminated clock

It’s profoundly ignorant to suggest that the Pope should be fighting crime on behalf of the Catholic Church. Anyone who was remotely familiar with Roman Catholicism would know that that’s what Daredevil is for

8 hours ago 8729 2131 94 50

YOU - By the way, I'm a fascist.

THE DESERTER - You're not. You're part of the meat shield surrounding the *real* fascists, while they rape children. That's what *you* are.

6 hours ago 238 48 0 5

Magyar is himself a rabidly racist right-winger who was, until six years ago, a member of Orban's party. I don't know enough about Hungarian politics to prognosticate but I need libs who know even less than me to not lionize this dude.

15 hours ago 53 8 1 0

once again: if you spin up an LLM agent and let it post on social media I think you should be boiled alive and fed to your own spouse

9 hours ago 35 3 1 0

Le meilleur dans la défaite d'Orbán c'est le seum qu'elle va générer chez les fachos du monde entier.

6 hours ago 61 8 1 0

So many but:

- sex, saw and Saxon are cognates (via PIE *sek- "cut")
- Welsh, Cornwall, Walloon, Wallachia all descend from *walhaz, probably the proto-germanic exonym of the Volcae Gaulish tribe (possibly meaning "hawk"). Seriously look this one up it's so funny

11 hours ago 3 0 0 0

i have favorite categories of word origins, ones that show how people came into contact long ago. For example Finnish (and its relatives) have a number of words of Proto-Iranian origin which means they probably were borrowed ~3000-2000 years ago.

12 hours ago 12 3 1 0

"Europe! Europe!" - chants the crowd.

This is great to see.

14 hours ago 712 59 1 2
Advertisement

i have no idea what will happen but the schadenfreude is an absolute delight

12 hours ago 4 0 0 0

Importantly the reality is: LM uses things like Orion to both make money and do PR; any tech specifically developed to enable Orion will find a military home for the right $$; and Artemis is in part about how to shoot some kind of worker when the selected person wants to

13 hours ago 40 7 1 0

There is a powerful pressure among academic philosophers nowadays to take seriously claims of artificial general intelligence or AI sentience. Serious engagement with such propositions requires many layers of intellectual dishonesty combined with a willingness to watch the world burn.

12 hours ago 70 22 4 1

EXTREMELY CORRECT and why I'm celebrating

15 hours ago 2490 436 33 1

eventually we'll win and they'll all lose

15 hours ago 1 0 0 0

"Living well" is actually only the seventh-best revenge, behind financial ruin, psychosexual adultery games, induced cannibalism, looking them in the eye as you hold them over a precipice then letting go, boiling them alive, and the one known as the "seven graves special".

1 day ago 168 46 5 2

if they win they gotta put him and as much as his inner circle in jail as they can. they've been stealing left and right this whole time right?

16 hours ago 32 3 2 0

I don't think anyone on the ground actually gave a fuck, but on the other hand it's extreme funny to think of his aura of detestability

16 hours ago 1 0 1 0
a map of countries whose leaders endorsed orban in orange: the us, russia, israel, argentina, chile, italy, czechia, slovakia, serbia, and north macedonia. poland endorsed his opponent

a map of countries whose leaders endorsed orban in orange: the us, russia, israel, argentina, chile, italy, czechia, slovakia, serbia, and north macedonia. poland endorsed his opponent

HUMILIATING DEFEAT FOR THE CHUD INTERNATIONALE

16 hours ago 86 18 4 0

never thought i'd die fighting with a capitalist pig etc

16 hours ago 1 0 0 0
Advertisement

i mean of course epp sucks too but lfg

16 hours ago 1 0 1 0

omg omg omg

16 hours ago 3 0 1 0

unsurprisingly this got no answer lmao

16 hours ago 3 0 0 0

this industry man

16 hours ago 0 0 0 0

"local models are totally a thing i can run one on my 24GB RAM + Specialized chip computer and it only sorta sucks!"

16 hours ago 0 0 1 0

please fix your terminology

19 hours ago 5 0 0 0

it's honestly fucked up that grad school and grade school are teo different things

19 hours ago 6 0 1 0

oh yeah of course

19 hours ago 1 0 0 0

The three types of Meme

Framing Device

Idiographic Reference

Inner Message

The inner message of this meme is the framing device!!

19 hours ago 8 3 1 0
Advertisement
// ==UserScript==
// @name         Bluesky ALT filter toggle
// @namespace    http://tampermonkey.net/
// @version      1.1
// @match        https://bsky.app/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function () {
  const STYLE_ID = 'alt-filter-style';
  const STORAGE_KEY = 'bsky-alt-filter';
  const css = `button[aria-label=""]:has(img[alt=""]) { display: none !important; }`;

  function isEnabled() {
    return localStorage.getItem(STORAGE_KEY) !== 'off';
  }

  function applyState(enabled) {
    let el = document.getElementById(STYLE_ID);
    if (enabled) {
      if (!el) {
        el = document.createElement('style');
        el.id = STYLE_ID;
        document.head.appendChild(el);
      }
      el.textContent = css;
    } else {
      if (el) el.textContent = '';
    }
    btn.textContent = enabled ? '🚫 ALT only: ON' : '🫣 ALT only: OFF';
    btn.style.background = enabled ? '#1a8a1a' : '#8a1a1a';
  }

  const btn = document.createElement('button');
  btn.style.cssText = `
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: system-ui, sans-serif;
  `;

  btn.addEventListener('click', () => {
    const next = !isEnabled();
    localStorage.setItem(STORAGE_KEY, next ? 'on' : 'off');
    applyState(next);
  });

  function init() {
    if (document.body) {
      document.body.appendChild(btn);
      applyState(isEnabled());
    } else {
      setTimeout(init, 300);
    }
  }

  init();
})();

// ==UserScript== // @name Bluesky ALT filter toggle // @namespace http://tampermonkey.net/ // @version 1.1 // @match https://bsky.app/* // @grant none // @run-at document-idle // ==/UserScript== (function () { const STYLE_ID = 'alt-filter-style'; const STORAGE_KEY = 'bsky-alt-filter'; const css = `button[aria-label=""]:has(img[alt=""]) { display: none !important; }`; function isEnabled() { return localStorage.getItem(STORAGE_KEY) !== 'off'; } function applyState(enabled) { let el = document.getElementById(STYLE_ID); if (enabled) { if (!el) { el = document.createElement('style'); el.id = STYLE_ID; document.head.appendChild(el); } el.textContent = css; } else { if (el) el.textContent = ''; } btn.textContent = enabled ? '🚫 ALT only: ON' : '🫣 ALT only: OFF'; btn.style.background = enabled ? '#1a8a1a' : '#8a1a1a'; } const btn = document.createElement('button'); btn.style.cssText = ` position: fixed; bottom: 20px; right: 20px; z-index: 99999; padding: 8px 12px; border-radius: 20px; border: none; color: white; font-size: 13px; font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.3); font-family: system-ui, sans-serif; `; btn.addEventListener('click', () => { const next = !isEnabled(); localStorage.setItem(STORAGE_KEY, next ? 'on' : 'off'); applyState(next); }); function init() { if (document.body) { document.body.appendChild(btn); applyState(isEnabled()); } else { setTimeout(init, 300); } } init(); })();

Violent Monkey Script (firefox addon) to toggle alttextless images on/off in bsky browser app- script in alttext, base image is a green button with ALT only: ON

19 hours ago 4 2 3 0

J'étais âgé de aujourd'hui années quand j'ai appris que la laitue était une astéracée.

(Je la voyais comme une brassicacée.)

23 hours ago 4 1 1 0

although tbf if I'm happy I'm safer from killing myself or letting myself wane (which also puts me in danger)

23 hours ago 1 0 1 0