8 Matching Annotations
  1. Dec 2022
    1. We will also run into some issues when we consider adding new channels to Service Desk like an API. We should have a streamlined process of rendering notes (messages) etc. Having a base64 image (or even attachment) in mail but not in the API might be inconsistent and also adds a lot of code that needs to be maintained.
  2. Mar 2021
  3. Oct 2020
  4. Jul 2020
    1. one other thing I wanted to ask was about whether we should allow multiple arrays to be passed as arguments. Array#difference and Array#union both allow this, so it might make sense to have Array#intersection also take multiple arguments.
  5. Sep 2019
    1. the React model doesn’t always lead to the most concise code, but it is internally consistent and ensures lifting state up is safe
    2. Right now the objects provided by React (state, props, refs) are internally consistent with each other. This means that if you only use those objects, they are guaranteed to refer to a fully reconciled tree (even if it’s an older version of that tree).