With Audio and Screen Sharing Enabled
Add the i386 architecture to the list of dpkg architectures :
sudo dpkg --add-architecture i386
| pip install gdown | |
| FILE_ID=1OrIMj2VdLM1wBonrV2jKVqVQTPSQMjnf | |
| gdown "https://drive.google.com/uc?id=$FILE_ID" |
| # Dep | |
| sudo apt install fonts-powerline zsh | |
| # OhMyZsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| # Change default shell | |
| sudo usermod --shell /bin/zsh $USER | |
| or | |
| chsh -s /bin/zsh $USER |
| sonarqube: | |
| image: sonarqube | |
| ports: | |
| - "9000:9000" | |
| - "3306:3306" | |
| environment: | |
| - SONARQUBE_JDBC_USERNAME=sonar | |
| - SONARQUBE_JDBC_PASSWORD=sonar | |
| - SONARQUBE_JDBC_URL=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true |
| # Create folder | |
| mkdir repository-folder && cd repository-folder | |
| # Initialize the git repository and add master and pull from bundle | |
| git init | |
| git pull file.bundle master |
| #44100 Sample rate | |
| #2 Channels | |
| ffmpeg -i $input.mp3 -ar 44100 -ac 2 $output.mp3 |
| wine $game.exe -force-d3d9 |
| -- fix for oracle 12c | |
| alter session set "_ORACLE_SCRIPT"=true; | |
| -- USER SQL | |
| CREATE USER crudtest IDENTIFIED BY "crudtest" ; | |
| -- QUOTAS | |
| -- ROLES | |
| GRANT "DBA" TO crudtest ; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream