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
    
  
  
    
  | {"lastUpload":"2021-01-21T16:57:45.009Z","extensionVersion":"v3.4.3"} | 
  
    
      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
    
  
  
    
  | code --install-extension 2gua.rainbow-brackets | |
| code --install-extension be5invis.vscode-custom-css | |
| code --install-extension Dart-Code.dart-code | |
| code --install-extension Dart-Code.flutter | |
| code --install-extension dbaeumer.vscode-eslint | |
| code --install-extension dunstontc.dark-plus-syntax | |
| code --install-extension equinusocio.vsc-material-theme-icons | |
| code --install-extension gjhuerte.black-looks-good-theme | |
| code --install-extension hoovercj.vscode-settings-cycler | |
| code --install-extension ipedrazas.kubernetes-snippets | 
  
    
      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 pip | |
| from subprocess import call | |
| packages = [dist.project_name for dist in pip.get_installed_distributions()] | |
| call("pip install --upgrade " + ' '.join(packages), shell=True) | 
  
    
      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
    
  
  
    
  | [CmdletBinding()] Param( | |
| $pythonVersion = "3.6.2" | |
| $pythonUrl = "https://www.python.org/ftp/python/$pythonVersion/python-$pythonVersion.exe" | |
| $pythonDownloadPath = 'C:\Tools\python-$pythonVersion.exe' | |
| $pythonInstallDir = "C:\Tools\Python$pythonVersion" | |
| ) | |
| (New-Object Net.WebClient).DownloadFile($pythonUrl, $pythonDownloadPath) | |
| & $pythonDownloadPath /quiet InstallAllUsers=1 PrependPath=1 Include_test=0 TargetDir=$pythonInstallDir | |
| if ($LASTEXITCODE -ne 0) { | 
  
    
      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
    
  
  
    
  | cd ~/Downloads | |
| wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
| bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda | |
| rm Anaconda3-5.0.1-Linux-x86_64.sh | |
| echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc | |
| source ~/.bashrc | |
| conda update conda | |
| apm install hydrogen | 
NewerOlder