home.social

#aaaaaa — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #aaaaaa, aggregated by home.social.

fetched live
  1. @golemwire

    Experimenting with GWBASIC here, and it seems that you can't set the background to color 15/0xf (bright white), at least not in GWBASIC itself.

    So I guess I'm supposed to use color 7 (#AAAAAA), but that's kinda dingy, I dunno. :P

    I want my contrast, man!!!! 😆

  2. I set my Ghostty split view divider color to

    split-divider-color = "#AAAAAA"

    and although it may be considered ugly, I actually like the contrast and simplicity somewhat

  3. 'Hvězda jasná' si ohřála nějakou šmakuládu ze smradlavého sýru, vajec, cibule a česneku. Zasmradila celou výrobnu i kancelář. Proč já? Proč já?! 🥴
    #aaaaaa

  4. CW: Arachnids, body horror

    TIL about Adactylidium.

    Females gestate a clutch of eight females and one son. Inside the womb, the one male mates with all his sisters, and then they're all pregnant, they eat their way out of their, who obviously dies. The males have no survival instinct and, if they are still alive, just sit around until they die. The females are born pregnant and face the same fate as their mother.

    podcasts.apple.com/us/podcast/

    #Science #Adactylidium #Mites #Arachnology #BodyHorror #AAAAAA

  5. I think this is a crime against humanity. I wonder if I can get a refund for the apartment?

    #ocd #misalignment #aaaaaa

  6. Just found out I have to read an entire textbook by next week. Fucking online clsases
    #CompSci #uni #college #struggling #help #please #aaaaaa

  7. This page lists talks, workshops, videos, and podcasts.

    Table of Contents

    Toggle

    Lectures

    You can find all my major talks and keynotes on the Open Science Framework.

    Videos

    You can find videos — both keynotes about my work as well as educational materials — on my YouTube channel. Small selection:

    • 2023 › Keynote “Using network models and theories to understand, predict, and treat mental health problems”, Small is Beautiful conference (45 minutes, Youtube).
    • 2022 › Talk “WARN-D: developing a personalized early warning system for depression”, Stanford Center for Precision Mental Health and Wellness (45 minutes, Youtube).
    • 2021 › Keynote “Mental health: studying systems instead of syndromes”, Transdiagnostic Approaches to Mental Health conference (45 minutes, YouTube).
    • 2021 › Talk “Mental health: studying systems instead of syndromes”, Trinity College Dublin (45 minutes, YouTube).
    • 2020 › Talk “Measurement matters: challenges to assessing mental health problems pose a substantial barrier to clinical progress”, Future of Mental Health symposium (25 minutes, YouTube).
    • 2020 › Talk “Lack of theory building and testing impedes progress in the factor and network literature” (45 minutes, YouTube).
    • 2019 › Talk “Depression is a problematic phenotype: Studying symptoms over syndromes”, NIHR Maudsley Biomedical Research Centre / King’s College London (35 minutes, YouTube)

    Workshops

    I had the privilege to teach quite a few workshops in the last years. For an overview, see my CV. All materials are online on my OSF page, including workshops on Network Analysis, Questionable Measurement Practices (with Jessica Flake), and Improving Psychological Science by Formalizing Psychological Theories (with Don Robinaugh).

    Podcast

    https://eiko-fried.com/talks-videos/

    #AAAAAA

  8. Figured out how to color text black or white depending on background lightness without breaking the components down to HSL in #css

    Edit: this is now a blog post! miunau.com/posts/dynamic-text-

    Quick and dirty filter stacking

    Assuming --bgColor contains your background color:

        span {
    color: var(--bgColor);
    filter: invert(1) grayscale(1) brightness(1.3) contrast(9000);
    mix-blend-mode: luminosity;
    opacity: 0.95;
    }

    This will turn to black around #AAAAAA. adjust brightness lower if you want it to turn to black earlier. play around with contrast as well, using low and high values.

    After playing around with this (thanks @mia), we noticed there's some fringes happening at certain color values right when it is about to switch from black to white, so this might work best with colors that you get to control to some degree.

    Less fringing with SVG filters

    But! Here is a version that has no fringing:

    Add this somewhere in your markup- it can be anywhere as long as the id bwFilter can be referenced.


    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="0">
    <defs>
    <filter id="bwFilter" color-interpolation-filters="sRGB">
    <!-- Convert to grayscale based on luminance -->
    <feColorMatrix type="matrix"
    values="0.2126 0.7152 0.0722 0 0
    0.2126 0.7152 0.0722 0 0
    0.2126 0.7152 0.0722 0 0
    0 0 0 1 0"/>
    <!-- Expand edges slightly to clean up any fringing -->
    <feMorphology operator="dilate" radius="2"/>
    <!-- Apply the threshold to determine if the color should be black or white -->
    <feComponentTransfer>
    <feFuncR type="linear" slope="-255" intercept="128"/>
    <feFuncG type="linear" slope="-255" intercept="128"/>
    <feFuncB type="linear" slope="-255" intercept="128"/>
    </feComponentTransfer>
    <!-- Composite step to clean up the result -->
    <feComposite operator="in" in2="SourceGraphic"/>
    </filter>
    </defs>
    </svg>

    Then just reference it in your css:

    span {
    color: var(--bgColor);
    filter: url(#bwFilter);
    }

    tada! no fringing!

    svg version here: codepen.io/miunau/pen/oNVaJoN?