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/)FU
Posts
17
Comments
2,222
Joined
2 yr. ago

  • Galadriel Hopkins comes to mind. Her mother is a Tolkien fan.

    A very different example would be the character Alfred Bester from Babylon 5. B5's Bester is the main "Psi Cop" in the show — a strong telepath who enforces the strict laws on other telepaths. He is named for the science-fiction author Alfred Bester, whose novel The Demolished Man established several of the telepathy tropes that are used in B5, including the existence of a formal organization that manages telepaths and telepath/mundane relations: in the novel it's called the Esper Guild, in B5, it's the Psi Corps.

  • Language arises out of social behavior, beginning with imitation and reinforcement in early childhood. Children who don't learn language (by interacting with adults and older children) in the critical period of early childhood, suffer serious developmental problems. So language is fundamentally anti-solipsistic, even anti-individualistic: you only acquire it by being brought into a community of language-users.

    And written language begins as an encoding for spoken (or signed) language: everyone learns to speak (or sign) before they learn to read, and learning to read starts with learning associations between written structures and spoken ones. (For English-speakers, that means phonics: the relationship between letters or groups of letters, and sounds.)

    Meaning isn't "assigned" solipsistically; rather it's "acquired" from a community of use. A single user can't decide for themselves that "dog" means squirrel. I suspect that if you look at the word "dog" and try to convince yourself that it refers to a bushy-tailed tree-climbing nut-munching rodent, you will be aware that you are doing something very silly, something deliberately contrary to your knowledge.

  • Permanently Deleted

    Jump
  • Trade is ancient. Consider: People have been ordering products from abroad, relying on promises and reputations, since the days of Ea-nāṣir. It's always depended on trust, which is why we still know the name Ea-nāṣir.

  • Regex is good for a few very specific things, and sysadmins used to use it for goddamn everything. If all your server logs are in lightly-structured text files on a small number of servers, being able to improvise regex is damn useful for tracking down server problems. Just write a shell loop that spawns an ssh logging into each server and running grep over the log files, to look for that weird error.

    These days, if you need to crunch production server logs you probably need to improvise in SQL and jq and protobufs or systemd assmonkery or something.

    But if you actually need a parser, for goodness sake use a parser combinator toolkit, don't roll your own, especially not with regex. Describing your input language in plain Haskell is much nicer than kludging it.

    (This is the "totally serious software engineering advice" forum, right?)

  • Yep. This is why online recipe sites put a whole goddamn personal essay before the actual recipe: if someone scrapes the page and copies it, they'll scrape the (copyrightable) essay as well as the (non-copyrightable) recipe.