Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)GS
Posts
0
Comments
89
Joined
2 yr. ago

  • Yes it is a theory about a conspiracy. However, it's not a "conspiracy theory".

    A "conspiracy theory" is, by definition, lunatic - e.g. chemtrails, fake moon landing, vaccine microchips

    A plausible theory about a conspiracy is not a "conspiracy theory" - e.g. Epstein didn't kill himself, environmentalists protesting a cycling event are a false flag op. These may be wrong; they may be ardently believed without sufficient evidence; but they are reasonable explanations for the given facts.

  • I do believe it is you, hiya! I'm being perverse as a matter of policy.

    I try not to get too invested in identities anyway. I look at the user if I need the context to evaluate their frame - but usually, you know when you're reading insightful commentary.

    "on the internet, no one knows I'm a dog"

  • Agreed, although I prefer pihole on a separate device. DNS blocking is best blocking.

    Adware can detect that crap isn't loaded, but it is indistinguishable from the crap server being down. Normal page blocking is a lot more detectable, so assume pages then instruct you to disable your blocker.

    Also, DNS blocking saves you bandwidth.

  • Ugh, a Magic String (I call it that whatever the type)

     
            FACILITY_MAX_PRESSURES = {
            "Durham": 1000,
            "Ipswich": 500,
            "Calne": 750,
        }
    
        max_pressure = list(sorted(
            FACILITY_MAX_PRESSURES.values()
        ))[-1]
    
        if water_pressure > max_pressure:
            blah
    
    
      

    Obviously it should really pull from facility management, but that's a bunch of moving parts where a constant is how you'd prefer the code to work

    Tbh it starts to look better to just define a constant and comment it.