34 Matching Annotations
  1. Nov 2024
    1. GCM-dominated approach allows censorship of alternative perspectives,when the models have a common, or at least widespread, problem: lack of realistic sensitivityto injection of freshwater into the upper layers of the ocean.

      for - climate crisis - Global Climate Models (GCM) limitation - do not allow alternative perspectives - unrealistic sensitivity to injection of fresh water into upper layers of the ocean - Jim Hansen

  2. May 2023
  3. Apr 2023
  4. Jul 2022
  5. Oct 2021
  6. Aug 2021
  7. Jun 2021
    1. That means if an attacker can inject some JavaScript code that runs on the web app’s domain, they can steal all the data in localStorage. The same is true for any third-party JavaScript libraries used by the web app. Indeed, any sensitive data stored in localStorage can be compromised by JavaScript. In particular, if an attacker is able to snag an API token, then they can access the API masquerading as an authenticated user.
  8. May 2021
    1. Taddio, A., McMurtry, C. M., Shah, V., Riddell, R. P., Chambers, C. T., Noel, M., MacDonald, N. E., Rogers, J., Bucci, L. M., Mousmanis, P., Lang, E., Halperin, S. A., Bowles, S., Halpert, C., Ipp, M., Asmundson, G. J. G., Rieder, M. J., Robson, K., Uleryk, E., … Bleeker, E. V. (2015). Reducing pain during vaccine injections: Clinical practice guideline. CMAJ : Canadian Medical Association Journal, 187(13), 975–982. https://doi.org/10.1503/cmaj.150391

  9. Apr 2021
  10. Feb 2021
  11. Jun 2020
  12. May 2020
  13. Nov 2019
  14. Feb 2017
    1. In general, add providers to the root module so that the same instance of a service is available everywhere.

      So, from this I take it that once a Service is added to the root module, it can be used by any component of that module.

      What about the components imported, from sub-modules of the root one? Can their dependency needs be met, in similar fashion? For example, could a Component in another module (imported into the root one) just request a Service provided in the root module and have it properly injected from there, without anything else on the developer's part?

  15. Apr 2016
    1. How is all this different from mainstream constructors?Because an instance is created by sending a message to an object, and not by some special construct like a constructor invocation, we can replace the receiver of that message with any object that responds to that message. It can be another class (say, an implementation based on polar coordinates), or it can be a factory object that isn’t a class at all.

      Question: Is this different in any way from say Python where objects are constructed using a function call?