Salta al contenuto principale



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




I've knitted an #EmotionalSupportChicken just for a laugh. I've slightly weighted her which I think feels really nice.

I've seen various stories for how these came about and got their name, from toys for kids after bush fires to pillows for use by patients after chest surgery. She's definitely a huggable shape and size, so I can understand why it feels comforting.

There are many free versions of the pattern online and YouTube tutorials as well. You can buy the original pattern from Ravelry.

#knitting #toy #chicken

in reply to Karen Strickholm

@KarenStrickholm I tried to get glass bead stuffing initially, but it's not easy to get here. In the end I went to my local $2 shop and bought a palm sized bag of "decorative pebbles" - I would estimate about 400g in weight. I sewed a flat pouch out of felt fabric and tightly packed the stones into it, so they don't make a clinking sound. I put the pouch about ¼ of the way up from the bottom, with poly fill underneath and around it.

I hope that helps! Wonderful that you're onto number 4 🐔 Are they a personal project or do you have people in mind for them?

in reply to Clianthus 🏴‍☠️

Back in the day people used dried beans or lentils. Thanks for the info on weights, placement etc., very helpful! 🙏😊🙏
Questa voce è stata modificata (2 settimane fa)
in reply to Clianthus 🏴‍☠️

I don't think I answered about the ESCs. The first 2 I made for others. #3 is with me but only for foster care, awaiting it's chicken forever home. #4 is also a gift. #5 will I think be for me! I've also made mini versions, very fun!
in reply to Clianthus 🏴‍☠️

SO cute! Fun and easy to knock out, too. I make them with yarn scraps. A great way to try out new skills like embroidery. And, the childlike delight on people's faces when they receive one is priceless. Here's the pattern... 🥰

ravelry.com/patterns/library/e…

in reply to Clianthus 🏴‍☠️

It was actually 1st one I made, it was very plain and stitch size too big, so stuffing was peeking through. Settled on US3 needles, three strands of fingering held together, for main body parts, on later chickies. Anything is fine for the embroidery, which I just did.

You can check out my #Ravelry Project pages for these if you want to see my notes. @KarenSantaFe




Friendships used to feel like a yes/no question to me. Now they seem more like a scale. Wrote a small piece on this.

#blog #blogging #blogpost #substack

open.substack.com/pub/ordinary…




Journalist speaks out after attempt to silence him with a restraining order freedom.press/issues/journalis…




“Behind the Shadows” // © Mauro Cirigliano

instagram.com/maurocirigliano/

via pangeen

@photography
#photography
#MilkyWay
#Dolomites
#Italy