Salta al contenuto principale



¡Análisis político! 🗣️ En su columna, Javier Macías García explora la figura de Adán Augusto y afirma que "lo sabe todo; bueno, casi todo". Conoce el punto de vista del autor sobre uno de los personajes clave de la 4T. #AdánAugusto #Opinión #Política #4T

Más aquí: zurl.co/RZei0





IRL anarchist culture beats social media anarchist culture any day.

reshared this



i should just go through all of my like 40 drafts once day and post them all at once


rejection sensitive dysphoria, except it's about your rejected change requests at work. is this anything



Wine 10.14 Released with vkd3d 1.17, Mono 10.2 lxer.com/module/newswire/ext_l…


no joke one of my favorite paleontology youtubers is about to drop a feature-length nerdout about the Triassic at 9am tomorrow and I'm so pumped

youtu.be/b9Hh9_aIU9I



By consulting the proper documents, one may speak a secure and secret tongue. #TLS #LetsEncrypt #OpenSource cromwell-intl.com/open-source/…


well I've seen and heard the antifa maybe 150 ... all I saw of the cookers/nazis was a couple of farm utes and an aussie flag


Serena Williams Opens Up on Using GLP-1 Meds to Lose 31 lbs — A Health-Focused, Transparent Journey youtube.com/watch?v=moV3a8U_eo… #SerenaWilliams #GLP1Meds #WeightLossJourney #HealthTips #FitnessGoals


Someone reminded me of this version of Steve Reich’s Clapping Music made by editing Angie Dickinson slapping Lee Marvin from the movie Point Break

youtu.be/BY4bL_bO8sA?si=kvpBRp…

#ModernClassical #ExperimentalMusic



I know more about Clive Wearing than he knows about himself.

It breaks my heart



Spouse and I are watching Jeopardy!

Is there a term that explains why I feel slightly less ignorant when I guess wrong, but one of the contestants also makes the same incorrect guess?



I switched from a "smart" watch back to a regular-old watch and the immediate increase in quality of life just from not having yet another device to keep charged is enormous



Prefeito do PSD com vice do PT são cassados em SC por compra de votos.

Enfim, a política brasileira.

#politica



Today I experienced a bit of BSD appreciation...by helping someone upgrade a Linux laptop.

I don't usually walk away from upgrades thinking the success was pure luck, and yet I have only a vague sense of how we completed the task successfully.



Reclaimed the lab today 😱🧹🕷️🕸️🕷️🕸️

The cool weather inspired a windows-open vacuum, clean and semi-organize. There was still some stuff setup from #marchintosh, only 6 months later 😅

Storing keyboards in bins freed up a lot of space and stacking the CRTs on top of those towers also saved space and my back! A treat to see the floor again 😁



"Neither in her plan nor in her responses to the NSW inquiry does Segal cite a single study, piece of evidence or expert assessment, from either the national or international context, ... It’s possible that there are none."
michaelwest.com.au/secret-anti…
#AusPol
#Zionism
#ForeignInterference
#ForeignInfluence
#Censorship



’Israeli” occupation platforms began hinting at the success of the kidnapping operation in Gaza. english.alahednews.news/fastne…




"A caminhada é solitária demais.
Mesmo sendo essa a probabilidade, que bom haver outros dispostos a caminhar juntos e acelerar a evolução. São a improbabilidade e o coletivo que surpreendem sempre."
Amjãh

📷 @paulosezio
#paulosezio #photography

Questa voce è stata modificata (1 mese fa)


#TikTok #Ινδονησία Ινδονησία: Το TikTok αναστέλλει τη λειτουργία ζωντανής μετάδοσης εν μέσω βίαιων διαδηλώσεων στη χώρα zougla.gr/kosmos/indonisia-to-…



#Paulofigueiredo #direita #politica #noticias #politics Eduardo Bolsonaro pede à Câmara para atuar dos EUA e alega perseguição política paulofigueiredoshow.com/eduard…




Happy Birthday to Mary Shelley, born August 30, 1797, the author of Frankenstein; or, The Modern Prometheus, one of the first science fiction novels with a creature that speaks to the outsider in all of us.

Knit friendly versions of Frankenstein's creation with patterns like these (though they are perhaps more inspired by the movie)
intheloopknitting.com/frankens…

#knitting #MaryShelley #frankenstein

in reply to Karen Strickholm

@KarenStrickholm Thank you for the context information. I had never heard that before about her medical problems. That explains so much about Frankenstein.
in reply to Terry Matz

Right?! The surgeries gone wildly wrong, the disfigurement, the isolation the monster feels, the lack of control. I think she had something like 5 miscarriages. While still quite young, too. Thank goodness for that Comparative Literature major, it has truly been the gift that keeps on giving throughout my life!


#Mastodon #MastodonTools #GlitchSoc #виброкодинг #ChatGPT #NeuralNetwork

ВАРНИНГ! Всё ниже написанное актуально только для серверов с glitch-soc, тем, кто сидит на ванильке, можно не читать.


А остальные — признайтесь, кого не бесит лишний клик при добавлении картинки? Ведь никто не пользуется этой дудль-рисовалкой, реально.

Поэтому, покумекав, родили такой скрипт для #Tampermonkey

// ==UserScript==<br>// @name         Button triggers LI click & hide menu<br>// @description  Button triggers LI click & hide menu<br>// @version      0.1<br>// @match        https://cr8r.gg/*<br>// @match        https://tilde.zone/*<br>// @match        https://infosec.exchange/*<br>// @match        https://expressional.social/*<br>// @match        https://toot.cat/*<br>// @run-at       document-idle<br>// ==/UserScript==<br><br>(function() {<br>    'use strict';<br><br>    // Интервал для поиска кнопки<br>    const buttonInterval = setInterval(() => {<br>        const button = document.querySelector('.compose-form__upload-button button');<br>        if (button) {<br>            clearInterval(buttonInterval);<br>            // console.log('Button found!');<br><br>            // Навешиваем обработчик на кнопку<br>            button.addEventListener('click', () => {<br>                // console.log('Button clicked, waiting for LI...');<br><br>                // Создаём MutationObserver на body<br>                const observer = new MutationObserver(mutations => {<br>                    for (const mutation of mutations) {<br>                        for (const node of mutation.addedNodes) {<br>                            if (node.nodeType === 1) { // только элементы<br>                                const li = node.querySelector('li[data-index="upload"]');<br>                                if (li) {<br>                                    // Скрываем родительский div<br>                                    const container = li.closest('div');<br>                                    if (container) container.style.display = 'none';<br>                                    // console.log('Upload menu hidden immediately!');<br><br>                                    // Вызываем клик на li<br>                                    li.click();<br>                                    // console.log('LI clicked automatically!');<br><br>                                    // Отключаем observer<br>                                    observer.disconnect();<br>                                    return;<br>                                }<br>                            }<br>                        }<br>                    }<br>                });<br><br>                // Наблюдаем только за вставкой новых узлов<br>                observer.observe(document.body, { childList: true, subtree: true });<br>            });<br>        }<br>    }, 250); // ищем кнопку каждые 250 мс<br><br>})();<br>

Он что делает: обрабатывает клик по кнопке добавления медии, скрывает менюшку с выбором и сам «кликает» на добавление картинки. Мелочь (да какая, к черту, мелочь — дико бесит же, ну!), а приятно.


I don't know what it is about the Cardinal babies but I am just enchanted by them every year. I love the adventurous mottled feathers, their attitude and how adorable they are. They are one of the big reasons reason I have cameras positioned on the ground because they tend to find feeders only when they are older. A good ID marker is the color of the beak - only the adults have a red one. #birds


in reply to Dendrobatus Azureus

The image depicts a suburban scene under a clear blue sky with scattered white clouds. In the foreground, there is a dirt path with a small puddle of water, bordered by a paved area with hexagonal tiles. The path leads to a grassy area with several palm trees, adding a tropical feel to the scene. In the background, residential buildings with red and white roofs are visible, along with parked cars and utility poles with wires. The overall atmosphere is bright and sunny, with a mix of natural and man-made elements.

Provided by @altbot, generated privately and locally using Ovis2-8B

🌱 Energy used: 0.153 Wh



Today, Liu and the Apollon Musagète Quartett play #Mozart #Schumann and #Suk in #Warsaw worldconcerthall.com/en/schedu… #wch



This is the kind of #caturday where it's past 8pm, I've been home all day, and I still haven't seen my cat.
in reply to matt.rocks

Same, he's been zonked out in the other room all day long.


“Break Out” (1984) by The Pointer Sisters – 12” 33 RPM LP.

This is the definitive edition—the one loaded with the mega-hit “I’m So Excited”. Wild fact: that song was originally meant for Michael Jackson. Hard to picture it now, because it’s impossible to imagine the 80s without the Pointer Sisters owning it.

But this album isn’t just riding one hit. It’s stacked, front to back, with cuts that hit hard. No filler. No duds. Just peak Pointer Sisters.

What often goes unsaid: Break Out is one of the most forward-looking electro-dance records of the decade. The very thing that makes it futuristic—the layers of synths and electronic production—is also what makes it sound warm, rich, and full of life.

This is 80s pop at its sharpest edge, and it hasn’t lost an ounce of heat.

@recordpics