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 'dart:convert'; | |
| import 'package:http/http.dart' as http; | |
| import 'package:sigv4/sigv4.dart'; | |
| class BotService { | |
| String? result; | |
| String botName = "TestLex"; | |
| String kAccessKeyId = 'AKIAWHPGDPDTHWH6ZH4T'; | |
| String kSecretAccessKey = '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'; |
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 pandas as pd | |
| df_teams_statistics = pd.read_csv('Participated Teams General Statistics.csv') |
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 pandas as pd | |
| df_teams_statistics = pd.read_csv('Participated Teams General Statistics.csv') |
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
| version: "3.9" | |
| services: | |
| postgres: | |
| image: postgres:13.2 | |
| restart: unless-stopped | |
| environment: | |
| POSTGRES_DB: ${POSTGRESQL_DB} | |
| POSTGRES_USER: ${POSTGRESQL_USER} | |
| POSTGRES_PASSWORD: ${POSTGRESQL_PASS} |
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
| KEYCLOAK_VERSION=16.1.1 | |
| PORT_KEYCLOAK=8080 | |
| POSTGRESQL_USER=keycloak | |
| POSTGRESQL_PASS=keycloak | |
| POSTGRESQL_DB=keycloak | |
| VIRTUAL_HOST=example.com | |
| LETSENCRYPT_HOST=example.com | |
| [email protected] |
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
| POSTGRES_PASSWORD=yourdbstrongpassword | |
| POSTGRES_DB=nextcloud | |
| POSTGRES_USER=nextcloud |
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
| OWNCLOUD_VERSION=latest | |
| OWNCLOUD_DOMAIN=cloud.example.com | |
| ADMIN_USERNAME=admin | |
| ADMIN_PASSWORD=admin | |
| HTTP_PORT=8080 | |
| [email protected] | |
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
| version: '3' | |
| services: | |
| web: | |
| image: 'gitlab/gitlab-ce:latest' | |
| restart: always | |
| hostname: 'gitlab.example.com' | |
| environment: | |
| GITLAB_OMNIBUS_CONFIG: | | |
| external_url 'https://gitlab.example.com' | |
| nginx['listen_port'] = 80 |
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 | |
| use Illuminate\Database\Migrations\Migration; | |
| use Illuminate\Database\Schema\Blueprint; | |
| use Illuminate\Support\Facades\Schema; | |
| return new class extends Migration | |
| { | |
| /** | |
| * Run the migrations. |
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\Models; | |
| use Illuminate\Database\Eloquent\Factories\HasFactory; | |
| use Illuminate\Database\Eloquent\Model; | |
| class Contact extends Model | |
| { | |
| use HasFactory; |
OlderNewer