This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 1. `es` -> user account -> save | |
| 2. Account Settings -> `es` | |
| 3. Member Info -> profile -> Language. | |
| 4. Library supporting locale -> dayjs | |
| 5. | |
| Static: | |
| 1. zustandStore -> | |
| 2. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from pydub import AudioSegment | |
| # Load the WebM file | |
| audio = AudioSegment.from_file("recording.webm", format="webm") | |
| # Convert to WAV | |
| audio.export("recording.wav", format="wav") | |
| # Or convert to MP3 | |
| audio.export("recording.mp3", format="mp3") | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ADP User Id - SP@AssemblyMP | |
| New password - SaraPALS@1910 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <div className="flex"> | |
| <Button | |
| size="small" | |
| variation="secondaryEmphasized" | |
| className="mr-2 w-32 opacity-0 group-hover:opacity-100" | |
| onClick={async () => { | |
| navigate( | |
| `/${workspaceId}/flows/${card.entity.flowId}` | |
| ); | |
| await handleDismissActivityClick(card.cardId); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const express = require('express'); | |
| const passport = require('passport'); | |
| const GoogleStrategy = require('passport-google-oauth20').Strategy; | |
| const app = express(); | |
| passport.use(new GoogleStrategy({ | |
| clientID: GOOGLE_CLIENT_ID, | |
| clientSecret: GOOGLE_CLIENT_SECRET, | |
| callbackURL: "http://localhost:3001/auth/google/callback" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | https://github.com/bhubr/react-simple-oauth2-login | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 0Z4A0421.jpg | |
| 0Z4A0422.jpg | |
| 0Z4A0429.jpg | |
| 0Z4A0430.jpg | |
| 0Z4A0432.jpg | |
| 0Z4A0433.jpg | |
| 0Z4A0434.jpg | |
| 0Z4A0436.jpg | |
| 0Z4A0438.jpg | |
| 0Z4A0439.jpg | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import React, { useEffect } from 'react'; | |
| import { useSelector } from 'react-redux'; | |
| import { ReactQueryDevtools } from 'react-query/devtools'; | |
| import { | |
| Redirect, | |
| Route, | |
| Switch, | |
| useLocation, | |
| useHistory, | |
| } from 'react-router-dom'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | export const useGetFlowFeedsQuery = (flowId: string) => { | |
| return useInfiniteQuery<PaginationResponse<FlowFeedResponse>>( | |
| [GET_FLOW_FEED, flowId], | |
| ({ pageParam = '' }) => | |
| makeAPICallWithDataReturn( | |
| GET_FLOW_FEED, | |
| undefined, | |
| { | |
| cursor: pageParam, | |
| }, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | if (!string.IsNullOrWhiteSpace(query)) | |
| { | |
| valueMatchingExpression = product.Name.ToLower().Contains(query.ToLower()) || product.Reference.ToLower().Contains(query.ToLower()) || product.GenericCode.ToLower().Contains(query.ToLower()); | |
| } | |
| var products = this._productRepository.GetByConditionAsQueryable(valueMatchingExpression); | 
NewerOlder