67 Matching Annotations
  1. Mar 2020
    1. Attending a Networking Event from University of Washington Preparing to Network in English from University of Washington Communication Strategies for a Virtual Age from University of Toronto Communicating Effectively: How to Inspire and Convince from Delft University of Technology Effective Business Communication from Indian Institute of Management Bangalore Crafting Realities: Work, Happiness, and Meaning from Indian Institute of Management Bangalore

      good

    2. Data Analysis in Social Science—Assessing Your Knowledge from Massachusetts Institute of Technology Capstone Exam in Statistics and Data Science from Massachusetts Institute of Technology

      good

    3. Fundamentals of Pharmacology from Ohio State University Drugs, drug use, drug policy and health from University of Geneva Biohacking Your Brain’s Health from Emory University

      good

    4. Risk Management in Banking and Financial Markets Professional Certificate Exam from Indian Institute of Management Bangalore Money & Debt Markets: Concepts, Instruments, Risks and Derivatives from Indian Institute of Management Bangalore Equity Stock Markets: Concepts, Instruments, Risks and Derivatives from Indian Institute of Management Bangalore

      good

    5. FinTech Security and Regulation (RegTech) from The Hong Kong University of Science and Technology FinTech Risk Management from The Hong Kong University of Science and Technology Market Segmentation Analysis from

      good

    6. Introduction to Probability from Harvard University Differential Equations: Fourier Series and Partial Differential Equations from Massachusetts Institute of Technology Probability – The Science of Uncertainty and Data from Massachusetts Institute of Technology

      good

    7. Web Design: Wireframes to Prototypes from California Institute of the Arts UX Design Fundamentals from California Institute of the Arts Visual Elements of User Interface Design fr

      good

    8. Fundamentals of Machine Learning from Santa Fe Institute Introduction to FinTech from The University of Hong Kong FinTech Ethics and Risks from The University of Hong Kong Blockchain and FinTech: Basics, Applications, and Limitations from The University of Hong Kong DDoS Attacks and Defenses from University of Colorado System Cloud Computing Security from University of Colorado System

      good

    9. Machine Learning with Python: from Linear Models to Deep Learning from Massachusetts Institute of Technology Blockchain Technology from University of California, Berkeley Bitcoin and Cryptocurrencies from University of California, Berkeley Introduction to Machine Learning from Duke University Introduction to Computer Programming from University of London International Programmes How Computers Work from University of London International Programmes IT Infrastructure and Emerging Trends from University of Minnesota

      good

    10. Concurrency in Go from University of California, Irvine Getting Started with Go from University of California, Irvine Computing in Python I: Fundamentals and Procedural Programming from Georgia Institute of Technology Computing in Python IV: Objects & Algorithms from Georgia Institute of Technology Computing in Python III: Data Structures from Georgia Institute of Technology Computing in Python II: Control Structures f

      good

  2. Jan 2019
  3. Oct 2018
    1.   render () {    return (      <ProviderA>        <ProviderB>          <div className='stuff'>some other content</div>          <div className='nested element'>            <MyComponent c="3" />          </div>        </ProviderB>      </ProviderA>    )
      1. There is child context which contains data to be defined in the context

      2. Now there is context object in React, which is created using combination of React.createContext and the childContextData as follows

      const contextA = React.createContext(childContext)

      1. Now third step is to create provider for the context created above, it is called contextProvider and it is created as follows

      it is actually a wrapper component, it just wraps the code or component inside the Context.Provider Component and passes the childContext as value prop to the ContextProvider Component

      so ContextProvider is actually a component created by wrapping the props.children inside ({children}) => ( <ContextA.Provider value={childContexA}> {children} </ContextA.Provider> )

      My Compononent is the component where we want to access the properties defined in context

      we can access those properties defined in context inside the MYComponent as props if we wrap MyComponent inside withContextAsProvider(ContextA, ContextB, MyComponent)

      &&& &&&& &&&& wrap the usage of MyComponent inside the ContextProvider created above

      as shown in example

  4. Mar 2018
  5. Jan 2018
  6. Sep 2017
    1. It adds metadata to the class that makes the directive's highlightColor property available for binding.

      so basically @Input decorator makes the property available for binding, in this case, for property highlightColor

  7. Jul 2017
  8. developer.mozilla.org developer.mozilla.org
  9. Jun 2017
  10. May 2017
    1. some abstract point from this article

      1. mobile application also access servers on network and some of them do not properly check certificates and thus man in middle attack can succeed
      2. when man in middle relays certificate on https, then the browsers like chrome and firefox gives us warning that connection is untrusted
    1. It is designed to be fully async; as a consequence, APIs such as synchronous XHR and localStorage can't be used inside a service worker.

      It is designed to be fully async; as a consequence, APIs such as synchronous XHR and localStorage can't be used inside a service worker.<br> can someone put light on above sentence, what is that special thing in async that localstorage cannot be used

    1. as our Offline page shows

      I wasted time trying to understand this offline page, please do not waste time to understand its architecture just focus on current service worker page