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
    
  
  
    
  | # You should run this script on Windows to create a .exe file | |
| # If not installed: pip install pyinstaller | |
| pyinstaller -F python_file.py --distpath exe/ --workpath exe/build/ --specpath exe/spec/ && rmdir /s __pycache__ | 
  
    
      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
    
  
  
    
  | #-- Append this code to ~/.bashrc -- | |
| welcome1='Welcome back '$USER'!' | |
| welcome2='How can I help you now?' | |
| for n in 1 2; do | |
| var="welcome${n}" | |
| text=${!var} | |
| for (( i=0; i<${#text}; i++ )); do | |
| echo -n "${text:$i:1}" |