French Movies to Help You Learn French

Amélie (2001) Les Choristes (2004) Le Petit Prince (2015) Astérix: Le domaine des dieux (2014) Astérix : Le Secret de la potion magique (2018) https://lingualeo.com/en/jungle/video https://lingualeo.com/en/jungle/music

Perplexity

perplexity.ai - 60M https://labs.perplexity.ai/ Powered by a combination of Claude 3, GPT-4, and LLaMa 3. AI powered search engine. Google+ChatGPT Perplexity referral code for 50% off ($10 off) https://docs.perplexity.ai/reference/post_chat_completions https://docs.perplexity.ai/docs/rate-limits https://docs.perplexity.ai/docs/model-cards Perplexity.ai blog

React useEffect

useEffect is a React Hook that lets you synchronize a component with an external system. useEffect and fetch() example: useEffect and axios example: useEffect(): for optimizing performance. useEffect(): TimerComponent with cleanup calback. Timer component done incorrectly and will create infinite loop (using simple setCount syntax and no cleanup function)

React Redux state management

React Redux and Redux Toolkit for state management: App.tsx: /state/store.ts: /state/counter/counterSlice.ts: /pages/CounterPage/index.tsx: React Redux for state management: Redux actions: Redux reducer: Redux store: Counter component: Main App component: Regular React reducer for state management:

FED Component Types

3 fundamental FED component types: Stateless, Stateful, and Structural. Stateless Components: Keeping It Simple Stateless components don't manage internal state. They use props to render data, ideal for lightweight scenarios. Stateful Components: Managing Complexity Stateful components handle and maintain internal state, crucial for dynamic content and complex interactions. Structural Components: Building the Foundation Structural components ... Read more