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
    
  
  
    
  | #!/bin/bash | |
| combinedReportPath="$(pwd)/gitleaks-combined-report.json" | |
| # Initialize the combined report | |
| echo "[]" >"$combinedReportPath" | |
| # Iterate through each sub-directory | |
| for dir in */; do | |
| echo "========================================" | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| yay | awk '/is newer than/ {print $2}' > packages_to_downgrade.txt | |
| while IFS= read -r pkg | |
| do | |
| # Trim the trailing colon and any surrounding whitespace | |
| pkg_clean=$(echo "$pkg" | sed 's/:$//' | xargs) | |
| echo "Reinstalling $pkg_clean from the stable repositories..." | |
| sudo pacman -S --needed "$pkg_clean" --noconfirm | 
  
    
      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
    
  
  
    
  | // The interface for the person objects | |
| interface Person { | |
| firstName: string; | |
| lastName: string; | |
| } | |
| // we use this variable to count calls | |
| let count = 0; | |
| // Gets the full name of a given person | 
  
    
      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
    
  
  
    
  | var inputs = readline().split(' '); | |
| const H = parseInt(inputs[0]); | |
| const W = parseInt(inputs[1]); | |
| let aa = [] | |
| let bb = [] | |
| for (let i = 0; i < H; i++) { | |
| const ROW = readline() | |
| for(let j = 0 ; j < ROW.length; j++) { | 
  
    
      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
    
  
  
    
  | find . -name node_modules -prune -o -name package.json -execdir npm install \; | 
  
    
      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
    
  
  
    
  | // Firebase Config | |
| const firebaseConfig = { | |
| apiKey: "API_KEY_HERE", | |
| authDomain: "AUTH_DOMAIN_HERE", | |
| databaseURL: "DATABASE_URL_HERE", | |
| projectId: "PROJECT_ID_HERE", | |
| storageBucket: "STORAGE_BUCKET_HERE", | |
| messagingSenderId: "MESSAGING_ID_HERE" | |
| } | |
| // Exports |