- Mar 2020
-
www.classcentral.com www.classcentral.com
-
Emotional Intelligence at Work from Coventry University
good
-
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
-
Conducting an Informational Interview
good
-
Developing Your Educational Leadership and Management Vision from University of Newcastle
good
-
Understanding and Teaching Evolution fr
good
-
Financial Accounting from Modern States Information Systems f
good
-
Assessment for Learning
good
-
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
-
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
-
Fighting HIV with Antiretroviral Therapy: Implementing the Treat-All Approach from Columbia University
good
-
Principles of Service Management
good
-
The Importance of Project Management in the Global Construction Industry
good
-
Agile Solutions for Greater Innovation from University System of Maryland Agile Leadership Principles f
good
-
Data Analysis for Decision Making from University System of Maryland Applied Scrum for Project Management
good
-
SMEs and Digital Engagement fr
good
-
SMEs and New Markets: Trade, the Chinese Powerhouse and Online Opportunities from Deakin University
good
-
Finance for Startups from Korea Advanced Institute of Science and Technology
good
-
ulture of Services: Paradox of Customer Relations from Kyoto University
good
-
Intelligence Tools for the Digital Age from IE Business School Social and Digital Media Analytics from
good
-
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
-
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
-
Building a Toolkit for Your Sales Process from Northwestern University Sales Pitch and Closing from
good
-
Auditing I: Conceptual Foundations of Auditing from University of Illinois at Urbana-Champaign
good
-
FinTech Law and Policy from Duke University
good
-
Improving Your Business Through a Culture of Health from Harvard University Introduction to Systematic Reviews f
rece
-
Sta(r)tistics: Statistics for everyone – Applied statis
good
-
Introduction to Information Theory from Santa Fe Institute Functions and Iterations from Santa Fe Institute Introduction to Renormalization
good
-
Automated Reasoning: satisfiability from EIT Digital Random Walks
good
-
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
-
The Power of Podcasting for Storytelling from University of Wollongong
good
-
Creative Thinking: Techniques and Tools for Success from Imperial College London
good
-
Innovation Through Design: Think, Make, Break, Repeat from The University of Sydney
good
-
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
-
Lean Research Skills for Conducting Interviews from Massachusetts Institute of Technology
good
-
Basics of Network Security from Coventry University An Introduction to Cryptography from Coventry University
good
-
Advanced Algorithmics and Graph Theory with Python from Institut Mines-Télécom
good
-
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
-
Linux Basics: The Command Line Interface from Dartmouth
good
-
IoT (Internet of Things) Wireless & Cloud Computing Emerging Technologies from Yonsei University
good
-
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
-
The Art of Structural Engineering: Vaults from Princeton University
good
-
Kotlin for Java Developers from JetBrains
good
-
Web Accessibility for Developers from Ryerson University
good
-
Competitive Programmer’s Core Skills from Saint Petersburg State University
good
-
Multiplatform Mobile App Development with React Native
good
-
Front-End Web Development with React fro
good
-
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
-
CS50’s Web Programming with Python and JavaScript from Harvard University Functions, Methods, and Interfaces in Go from University of California, Irvine
good
-
CS50’s Mobile App Development with React Native
good
-
Agile for Project Control fro
good
-
- Jan 2019
-
exploringjs.com exploringjs.com
-
module specifiers.
what is module specifier?
-
- Oct 2018
-
www.npmjs.com www.npmjs.com
-
render () { return ( <ProviderA> <ProviderB> <div className='stuff'>some other content</div> <div className='nested element'> <MyComponent c="3" /> </div> </ProviderB> </ProviderA> )
There is child context which contains data to be defined in the context
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)
- 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
-
- Mar 2018
-
-
\b\w+(?<!s)\b.
this regex does not work with \b, remove \b from regex in order to make it work with Python 3.6
-
- Jan 2018
-
github.com github.com
-
+
what is the need of + here
-
- Sep 2017
-
angular.io angular.io
-
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
-
- Jul 2017
-
developer.mozilla.org developer.mozilla.org<link>1
-
This page http://bfo.com/products/report/docs/tags/tags/link.html says that we can link font files in html using link attribute,
I want to ask this to mdn community if it is possible, for the case when @font-face is not supported
-
- Jun 2017
-
trailhead.salesforce.com trailhead.salesforce.com
-
1:1 customer journeys
what do we mean by 1:1 customer journey?
-
-
shyamsankar.com shyamsankar.com
-
can someone write the abstract of this post. For me its not clear what actually does the author want to say
-
- May 2017
-
nakedsecurity.sophos.com nakedsecurity.sophos.com
-
some abstract point from this article
- mobile application also access servers on network and some of them do not properly check certificates and thus man in middle attack can succeed
- when man in middle relays certificate on https, then the browsers like chrome and firefox gives us warning that connection is untrusted
-
-
www.jetbrains.com www.jetbrains.com
-
Enter the address in the Server URL field
how to get this address to be entered
-
-
developer.mozilla.org developer.mozilla.org
-
sent by the WebSocket object
whom does the web socket, send message to?
-
interactive communication
Wow, websocket makes it possible for browser to chat with server
-
-
developer.mozilla.org developer.mozilla.org
-
Service workers only run over HTTPS, for security reasons.
what is that security reason, can someone say so that a layman can understand
-
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
-
in a worker context: it therefore has no DOM
if it would run in window context, it would have access to DOM
-
worker
By worker, you simply understand a feature in browser, that keeps look on events
-
-
developer.mozilla.org developer.mozilla.org
-
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
-