Simple Unix commands (bash shell)
Login:
1. Open terminal
2. $ su <<login name>>
3. $ <<password>>
Check login:
$ id
Go to root directory:
$ cd /
Find directory:
$ find / -type d -name <<folder name>>
Change permissions for the user:
$ chmod -R 777 /<dir1>/<dir2>
What are side effects in React? In React, side effects are operations that interact with external systems or cause changes outside the component's rendering process. These can include: Data fetching: Retrieving data from APIs or other sources. Subscriptions: Setting up listeners for events or data changes. Timers: Creating timers for delayed actions or animations. DOM manipulation: Directly modifying the DOM (rarely used in modern React with declarative approach). Why use useEffect ? In class-based components, you would typically use lifecycle methods like componentDidMount , componentDidUpdate , and componentWillUnmount to handle side effects. Functional components don't have these methods directly. The useEffect Hook provides a way to manage side effects in functional components. It allows you to run a function after a component renders (or re-renders) and optionally clean up any resources created by that function before the component unmounts. How does useEffect wor...
Comments
Post a Comment