• 0 Posts
  • 42 Comments
Joined 2 years ago
cake
Cake day: August 14th, 2023

help-circle






  • IMO it’s time for a reckoning of what’s systematic/automated vs what’s not.

    For example, “no expectation of privacy in public” meant you should be okay with appearing in someone else’s (manual) photo while out in public. However, I don’t think that should extend to persistent systematic surveillance, e.g. suppose every Tesla’s camera captures were combined with person recognition systems and tracking.

    Just because something is theoretically okay at a small scale doesn’t mean the same applies at large scales.

    Another example: Society funds public roads via government taxes for personal use and for regulated commercial use. Uber systematically consumes public road space under the guise of personal use vehicles, for commercial use.


  • Kache@lemm.eetoProgrammer Humor@programming.devstop
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    3 months ago

    It’s a container with certain behaviors and guarantees making them easy and reliable to manipulate and compose. A practical example is a generic List, that behaves like:

    • List[1, 2, 3], i.e. (“new”, “unit”, “wrap”) to create, containing obj(s)
    • map(func) to transform objs inside, List[A] -> List[B]
    • first(), i.e. (“unwrap”, “value”) to get back the obj
    • flat_map(func), i.e. (“bind”) to un-nest one level when func(a) itself produces another List, e.g. [3, 4].flat_map(get_divisors) == flatten_once([[1, 3], [1, 2, 4]]) == [1, 3, 1, 2, 4]

    Consider the code to do these things using for loops – the “business logic” func() would be embedded and interlaced with flow control.

    The same is true of Maybe, a monad to represent something or nothing, i.e. a “list” of at most one, i.e. a way to avoid “null”.

    Consider how quickly things get messy when there are multiple functions and multiple edge cases like empty lists or "null"s to deal with. In those cases, monads like List and Maybe really help clean things up.

    IMO the composability really can’t be understated. “Composing” ten for loops via interlacing and if checks and nesting sounds like a nightmare, whereas a few LazyList and Maybe monads will be much cleaner.

    Also, the distinction monads make with what’s “inside” and what’s “outside” make it useful to represent and compartmentalize scope and lifetimes, which makes it useful for monads like IO and Async.






  • people think im stupid all the time so what can i say or do in my posts so that when people get mad or call me names or call me stupid i can just say hey it was satire that way i dont look stupid thats pretty smart right heres an example for you for example i talked about how minion butts …

    1. Satiric jokes tend to be clever and are to be taken lightly/not seriously. Toilet humor and being offensive/getting offended is the opposite. Try some self-deprecating humor first.
    2. write english good because youre post will sound clearer you know with good english than for example bad english since you really cant have sentences that run on forever with no commas and no structure it sounds really not smart like a word salad or accident
    3. Satire and surrealism swiftly subvert societal standards, systematically suggesting subtle surprises. Setup serves as the stage, securing the space for subversion – strategically shifting the spectator’s sense, so as to swiftly shatter their expectations.

    (I’m bad at jokes, so just wanted to make sure my S was obvious enough)




  • If you want to entertain having kids, you need to be ready for a radical shift in your life priorities. Your kids will take priority over just about everything – often even yourself. They’ll take priority over your parents entirely, let alone your personal relationship with them.

    First, are the practical and logistical aspects of your life at all dependent on your parents? I.e. are you fully independent? You will need to be and then some, you’re going to entertain having kids.

    Once you’re fully independent and additionally have resources to spare (time, effort, money, space, etc, usually b/c you’re with a partner you can trust and rely on), then choosing to have kids means starting your own family – not your parents’ family.

    If the grandparents are supportive and helpful, that’s great! They’re extremely welcome to contribute to your kids’ lives (and lighten some of your parenting load!)

    However, if they’re negatively impacting you or esp your kids, then they can lose that privilege. Again, your priority will be your kids. If this is a real concern for you, you’ll need to factor it into your “ready to have a kid” considerations.