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/)MS
Posts
3
Comments
290
Joined
2 yr. ago

  • IC is a common term for integrated circuits and a hundred other things.

    Maybe it's used for workers in your specific region/field but that's not definitely universal and it's not even a useful or descriptive term. Managers are also individuals who ostensibly contribute something to the company. The distinction between managers and workers is that the workers are the people doing the actual work, not that they're individuals.

  • Permanently Deleted

    Jump
  • It's called nazism. People who defend nazis are almost certainly nazis themselves. People who claim the nazi salute was used by Romans are wrong or lying, and also probably nazis; the earliest known record of the salute in a Roman context was created a millennium after the end of the Roman empire.

    Edit: It's probably worth noting that Hitler was likely a fan of the Roman empire. Nazi Germany was known as the "third reich" where the first was the the Holy Roman Empire and the second was the German Empire. It's likely they appropriated the gesture thinking it was a legitimate Roman salute.

  • 0 to 1 is monochromacy, a single visual channel, eg only rods and no cones. I thought that was fairly clear. Full colour vision would be closer to 0,0,0 to 1,1,1 (plus low-light rods). Null would be no visual channels at all, ie completely blind. I didn't miss the point of your example, it's just a very bad analogy.

    Here's a quick article I found which demonstrates how individual channels are monochromatic and you only get full colour by combining channels, digital image formats were designed for human eyes so this is much more analogous to human vision. With no channels you get nothing at all.

  • Yes, because the person you replied to is either wrong or lying (some terfs claim terf is a slur). Terfs do self-identify as terfs. A recent prominent example would be Sall Grover, "During this incident, Grover self-identified as a trans-exclusionary radical feminist".

  • Terfs by definition exclude women and are therefore not feminist. Hate groups often try to legitimise themselves by adopting more reasonable names even when it goes directly against their views, eg "All lives matter" formed specifically to counter the claim that black lives matter.

  • Drawing a distinction between privacy and security is kind of nonsense in this context. While they are technically different, they're only different in the way that an apple and a fruit are different. Privacy is an aspect of security.

    If your privacy was violated in any other context you would not feel secure.

  • That's a very different question. A smartphone can to some degree emulate the other devices listed so when people are asked to pick only one device most are naturally going to choose that even if it's not currently their primary device, and since they could only choose one it's not useful in determining how many people use other devices. It also appears to be a follow-up question asking about second most important devices so it's definitely not useful out of context.

    From that survey question alone you cannot reasonably claim which device is used most often.

  • I can't think of a scenario where you ask someone to defend why they don't drink but they are the one that is insecure and judgemental. There's plenty of situations where people drink when they shouldn't (eg driving) but it's not quite so common to be in a situation where you must drink but don't.

  • That's slightly misleading, I think. There are no arrays in Lua, every Lua data structure is a table (sometimes pretending to be something else) and you can have anything as a key as long as it's not nil. There's also no integers, Lua only has a single number type which is floating point. This is perfectly valid:

     Lua
        
    local tbl = {}
    local f = function() error(":(") end
    
    tbl[tbl] = tbl
    tbl[f] = tbl
    tbl["tbl"] = tbl
    
    print(tbl)
    -- table: 0x557a907f0f40
    print(tbl[tbl], tbl[f], tbl["tbl"])
    -- table: 0x557a907f0f40	table: 0x557a907f0f40	table: 0x557a907f0f40
    
    for key,value in pairs(tbl) do
      print(key, "=", value)
    end
    -- tbl	=	table: 0x557a907f0f40
    -- function: 0x557a907edff0	=	table: 0x557a907f0f40
    -- table: 0x557a907f0f40	=	table: 0x557a907f0f40
    
    print(type(1), type(-0.5), type(math.pi), type(math.maxinteger))
    -- number	number	number	number
    
      
  • I also take idioms literally, I read the entire book right there before deciding whether to buy it. Obviously you can't trust how they chose to present the book so you need to read it to know if it's worth reading.