~/.config/chromium-flags.conf:
--oauth2-client-id=77185425430.apps.googleusercontent.com
--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT
--use-gl=egl
--force-dark-mode
--enable-features=WebUIDarkMode,VaapiVideoDecoder,VaapiVideoEncoder
| #!/bin/sh | |
| # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Set up to start the X server ASAP, then let the startup run in the | |
| # background while we set up other stuff. | |
| XAUTH_FILE="/var/run/chromelogin.auth" | |
| MCOOKIE=$(head -c 8 /dev/urandom | openssl md5) # speed this up? |
| FEATURES.update({ | |
| "RG_GAMIFICATION": { | |
| "ENABLED": True, | |
| "RG_GAMIFICATION_ENDPOINT": "https://gamma.domain.in/", | |
| "KEY": "key", | |
| "SECRET": "secret", | |
| "IGNORED_EVENT_TYPES": [] | |
| } | |
| }) |
| gcpBucket = flag.String("gcpBucket", "mineral-minutia-820-cab1", "GCS Bucket to access") | |
| gcpObjectName = flag.String("gcpObjectName", "foo.txt", "GCS object to access") | |
| gcpResource = flag.String("gcpResource", "//iam.googleapis.com/projects/1071284184436/locations/global/workloadIdentityPools/aws-pool-1/providers/aws-provider-1", "the GCP resource to map") | |
| gcpTargetServiceAccount = flag.String("gcpTargetServiceAccount", "aws-federated@mineral-minutia-820.iam.gserviceaccount.com", "the ServiceAccount to impersonate") | |
| awsRegion = flag.String("awsRegion", "us-east-1", "AWS Region") | |
| awsRoleArn = flag.String("awsRoleArn", "arn:aws:iam::291738886548:role/gcpsts", "ARN of the role to use") | |
| awsSessionName = flag.String("awsSessionName", "mysession", "Name of the session to use") | |
| awsAccessKeyID = flag.String("awsAccessKeyID", "AKIAUH3H6EGKE-redacted", "AWS access Key ID") | |
| awsSecretAccessKey = flag.String("awsSecretAccessKey", "YRJ86SK5qTOZQzZTI1u/c |
| Informations on the different networks here: https://docs.tomochain.com/general/networks/ | |
| The values are what we recommend to use when running a fullnode or masternode. | |
| required (basic fullnode): | |
| # The id of your network (see networks documentation for the networks ID) | |
| --networkid $ID | |
| # The address of the local account to unlock | |
| --unlock $ACCOUNT | |
| # password file to unlock the account | |
| --password ./password |
| data includes all maps EXCEPT 0:0, 0:1, 0:2, 0:3 (main cities) | |
| to be rechecked: Slateport shipbuilders/Museum/Harbor, | |
| anything in Littleroot, | |
| contest halls mainly 13:4 | |
| Rival fights | |
| Sootopolis overworld | |
| "(?)" symbols means I'm not sure of the English name, please contribute | |
| "bank:map" numbers are base 10 | |
| Lowercase-starting descriptions are partial or the ones I'm doubtful of |
| --provider oidc | |
| --oidc-issuer-url $K8S_ISSUER_URL | |
| --client-id $PROJECTED_TOKEN_AUDIENCE | |
| --client-secret $DUMMY_DATA | |
| --cookie-secret $DUMMY_DATA | |
| --skip-jwt-bearer-tokens true | |
| --email-domains * |
| // server | |
| module.exports = function (flagsApi) { | |
| return { | |
| index: function (req, res, next) { | |
| const channelId = getChannelId(req) | |
| if (!channelId) return res.error(400, {channel_id: 'missing mandatory parameter'}) | |
| flagsApi.list(channelId, function (err, flags) { | |
| if (err) return res.error(err) | |
| res.success({flags}) |
| // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF | |
| // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO | |
| // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A | |
| // PARTICULAR PURPOSE. | |
| // | |
| // Copyright (c) Microsoft Corporation. All rights reserved. | |
| // | |
| // | |
| // File: SecretAgreementWithPersistedKeys.cpp |
| package main | |
| import( | |
| "fmt" | |
| "strconv" | |
| ) |