Promise https://medium.com/javascript-scene/master-the-javascript-interview-what-is-a-promise-27fc71e77261 https://youtu.be/DHvZLI7Db8E - web dev simplified - JavaScript Promises In 10 Minutes A promise is an object which can be returned synchronously from an asynchronous function. It will be in one of 3 possible states: Fulfilled: onFulfilled() will be called (e.g., resolve() was called) Rejected: onRejected() will be called (e.g., reject() was called)
Apr 4, 2021FreeCodeCamp tuto (scrimba): https://scrimba.com/learn/learnreact ReactDOM and JSX react virtual dom: https://youtu.be/BYbgopx44vo https://youtu.be/RquK3TImY9U Virtual dom makes react work faster. It tracks where the change took place and updates only that part.
Apr 3, 2021What is the advantage of using sudo apt-get autoremove over a cleaner app? https://askubuntu.com/questions/527410/what-is-the-advantage-of-using-sudo-apt-get-autoremove-over-a-cleaner-app Whenever you install an application (using apt-get) the system will also install the software that this application depends on. It is common in Ubuntu/Linux that applications share the same libraries. When you remove the application the dependency will stay on your system. So apt-get autoremove will remove those dependencies that were installed with applications and are no longer used by anything else on the system. apt and apt-get https://askubuntu.com/questions/445384/what-is-the-difference-between-apt-and-apt-get
Mar 14, 2021What Is A REST API - Redhat https://www.redhat.com/en/topics/api/what-is-a-rest-api - IBM Cloud https://www.youtube.com/watch?v=lsMQRaeKNDk - NordicAPI https://nordicapis.com/all-you-need-to-know-about-rest-api-design/ API An API is a set of definitions and protocols for building and integrating application software. It’s sometimes referred to as a contract between an information provider and an information user—establishing the content required from the consumer (the call) and the content required by the producer (the response).
Feb 15, 2021or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up