This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
| # Script to login to ToF on PlayCover | |
| # Select the ToF version | |
| echo "Please select the region of ToF you want to login to:" | |
| echo "[1] Global" | |
| echo "[2] China" | |
| read -p "Enter your choice: " choice | |
| if [ $choice -eq 1 ]; then |
This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: selenium-chrome-service | |
| annotations: | |
| service.beta.kubernetes.io/azure-load-balancer-internal: "true" | |
| spec: | |
| type: LoadBalancer | |
| loadBalancerIP: 180.44.235.83 | |
| selector: |
| #!/usr/bin/env bash | |
| # License: MIT - https://opensource.org/licenses/MIT | |
| # | |
| # Usage: | |
| # | |
| # Encrypt a file: | |
| # kms-vault encrypt My-Key-Alias some-file-i-want-encrypted.txt > topsecret.asc | |
| # |
| <?php | |
| // Import arbitrary config from a variable. | |
| // Assumes $data has the data you want to import for this config. | |
| $config = \Drupal::service('config.factory')->getEditable('filter.format.basic_html'); | |
| $config->setData($data)->save(); | |
| // Or, re-import the default config for a module or profile, etc. | |
| \Drupal::service('config.installer')->installDefaultConfig('module', 'my_custom_module'); |