14 Matching Annotations
  1. Mar 2022
  2. Dec 2021
    1. In the second pass, read the paper with greater care, butignore details such as proofs.

      The objective is to get an overall grasp of the content, sufficient to allow you to summarize effectively with supporting evidence.

      You should gain enough familiarity to determine where additional effort to understand the details is warranted.

      You are also looking for evidence of quality (or lack thereof) that might color your impressions of the overall value.

  3. May 2021
  4. Nov 2020
    1. Using as * adds a module to the root namespace, so no prefix is required, but those members are still locally scoped to the current document.

      distinction:

      • root namespace (so no prefix is required), but
      • locally scoped (to the current document)
  5. Oct 2020
    1. Using a user-defined network provides a scoped network in which only containers attached to that network are able to communicate.
    1. Right, because those are the only 3 instances where new "scopes" are created, which means you're seeing data for (probably) the first time.

      good point: means you're seeing data for (probably) the first time.

  6. Sep 2020
    1. So that you can insert variables in your code without worrying if they clash with existing variable names.
    1. The @const indicates that the value is read-only (i.e. it cannot be assigned to or mutated in an expression such as an event handler), and communicates, through its similarity to const in JavaScript, that it only applies to the current scope (i.e. the current block or element).
  7. May 2020
    1. Some GitLab features can behave differently for each environment. For example, you can create a secret variable to be injected only into a production environment.