• 1 Post
  • 53 Comments
Joined 1 year ago
cake
Cake day: June 7th, 2023

help-circle
  • I do believe that is the point of the post; however, it also implies that the kind of person it describes does not understand that they are actually engaging in bullying behaviours.

    Ableism is so entrenched in society that “teasing” (thought of as playful, but is actually harmful) people for being a little different is not seen as anything to bat an eye at. Media upholds the normalization of this kind of ableism through shaming these traits in the form of “jokes” — meaning that when people in turn do it to others, they often believe themselves to be engaging in funny banter. When it is actually creating an environment that others autistic and neurodivergent people. Ie, upholding systemic ableism. All without their knowledge.

    The point of a post such as this is partially for autistic people to commiserate, but also hopefully for a few people to stop and think about their own behaviour. If they are the kind of person who wishes to be inclusive to autistic people, seeing this might make them realize how they do unconsciously bully autistic people when they denigrate people with these traits. And hopefully they will stop, though it takes time to deconstruct and unlearn this kind of behaviour.


  • Upholding the hegemony of neurotypicality as the “acceptable” way to be, and the encouraging of neurodiverse people to mask their (fine, unharmful) behaviours. Masking which actively harms them.

    All this does is promote ongoing ableism. I beg that you read something about the experiences of autistic people and come to understand how marginalized and harmed they are by this continual shaming of these traits. Traits that are not harmful, or even uncommon. They’re just different, and less normalized.





  • inasaba@lemmy.mltoOpen Source@lemmy.ml...
    link
    fedilink
    English
    arrow-up
    2
    ·
    10 months ago

    Unless you desperately need to free up room in your tiny SSD to make room for Baldur’s Gate 3. I recently used a tool like this to get rid of a bunch of old logs and things and managed to free up tens of gigabytes of precious space.







  • Generally oyster mushrooms grow out of a tree, usually hardwood, and I have only ever seen them with a shape like an oyster shell — meaning that they are not circular, but have a distinct “back.”

    The mushrooms in this picture also have a little circle on top where the stem meets the cap, something I have never seen on a oyster mushroom. And the gills don’t blend into the stem. I would say there is basically no chance of these being oyster mushrooms, unless they are some weird regional variant I am not familiar with.







  • Install Stylus > Write New Style > Import and then copy/paste this in. Keep in mind that I removed a lot of my specific tweaks for sites I use, because that’s PII. You will encounter many more weird issues on random sites than you do with DarkReader, but if you’re used to working with userCSS you’ll probably have no issues fixing those. The way this essentially works is by inverting your entire browser screen, then rotating the hue so the colours of website themes aren’t weird, then it inverts images back to normal. I’m sure there is a way to do this without inverting the images in the first place, but it would involve one hell of a lot more code than this. I wrote this originally in about 3 minutes.

    html, iframe {
        filter: invert(1) hue-rotate(180deg);
    }
    
    img, div[background-image], div[style*="background-image"], video  {
        filter: invert(1) hue-rotate(180deg);
    }
    
    @-moz-document domain("lemmy.ml"), domain("ultimate-guitar.com"), domain("open.spotify.com"), domain("discord.com"), domain("localhost") {
    /* Exemptions for sites that already have a dark mode */
    
    html, iframe {
        filter: none;
    }
    
    img, div[background-image], div[style*="background-image"], video  {
        filter: none;
    }
    }
    
    @-moz-document domain("youtube.com") {
    #movie_player {
        filter: invert(1) hue-rotate(180deg);
    }
    
    video {
        filter: none;
    }
    }
    
    @-moz-document url-prefix("https://www.google.com/maps") {
    div[aria-label="Street View"] canvas, div[aria-label="Photo"] canvas, button[data-photo-index] {
        filter: invert(1) hue-rotate(180deg);
    }
    
    div[role="img"] {
        filter: none;
    }
    }
    

  • inasaba@lemmy.mltoFirefox@lemmy.mlWhat is the best dark mode extension?
    link
    fedilink
    English
    arrow-up
    11
    arrow-down
    1
    ·
    edit-2
    1 year ago

    I made my own with Stylus. At its simplest it’s 2 lines of CSS which pales in comparison to what Dark Reader is going with, and then I have one section for exempted websites, and two sections for websites I use a lot that needed specific small fixes. It uses basically no resources, and doesn’t slow anything down.

    The one downside is that because it uses CSS filters, some colors become less brilliant. This is a known flaw with how CSS calculates colors for hue-rotate.

    Pasted in a comment below.