• 4 Posts
  • 52 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle
  • Lots of em-dash usage

    Service goes down after emitting an event but before persisting internal state—causing partial failures that are hard to roll back.
    Subscribe to an existing event and start processing—no changes to publishers.
    Helps track a request across multiple services—even through async events.
    We once had a refund service consume OrderCancelled events—but due to a config typo, it ignored 15% of messages.
    Takeaway: fire-and-forget works—until someone forgets to monitor.
    Use it when the domain fits—fan-out use cases, audit logs, or workflows where latency isn’t critical.

    combined with other chatgpt-isms like the heavy reliance on lists, yeah safe to say it’s mostly AI generated







  • Are these families somehow more meritorious than the rest of the population?

    lacking multi-generational connections is still a pretty rosy picture of disadvantage. Statistically “unmeritorious” parents are far more likely to have their child suffer from malnutrition due to lack of money and neglect due to the parents working 2 jobs or having substance abuse issues. If the country has private schools, they won’t have access to them and due to living in a low-wealth area their public schools will have a disproportionately high amount of other neglected and abused kids which makes everything harder.











  • many words should run into the same issue, since LLMs generally use less tokens per word than there are letters in the word. So they don’t have direct access to the letters composing the word, and have to go off indirect associations between “strawberry” and the letter “R”

    duckassist seems to get most right but it claimed “ouroboros” contains 3 o’s and “phrasebook” contains one c.




  • is-number is a one-line function. (though it’s debatable if a function that complex should be compressed to one line)

    You may have heard of a similar if more extreme “microdependency” called is-even. When you use an NPM package, you also need all the dependencies of that package, and the dependencies of those dependencies recursively. Each package has some overhead, eventually leading to this moment in time.