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 | |
| # setup-android-wsl.sh | |
| # Ein reproduzierbares Script zur Einrichtung des headless Android SDKs in WSL2 | |
| echo "🚀 Starte Android SDK Setup für WSL..." | |
| # 1. Systemvoraussetzungen installieren | |
| sudo apt update | |
| sudo apt install -y openjdk-17-jdk-headless wget unzip |
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
| DB_PASSWORD=veryverysecure | |
| DB_DATABASE=testdb | |
| DB_USERNAME=kimmie | |
| DB_PORT=3306 |
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
| <?php | |
| namespace App\Common; | |
| class Graham | |
| { |
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
| <?php | |
| namespace app\lib; | |
| use yii\helpers\VarDumper; | |
| use yii\log\DbTarget; | |
| use yii\log\LogRuntimeException; |
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
| <?php | |
| /** | |
| * Created by PhpStorm. | |
| * User: Kai Bartholome | |
| * Date: 20.12.2016 | |
| * Time: 15:20 | |
| */ | |
| namespace app\components; |