I hereby claim:
- I am hedlund on github.
- I am hedlund (https://keybase.io/hedlund) on keybase.
- I have a public key whose fingerprint is 1CBE ADE5 7298 AB1A F687 1D83 E23F AC68 93B0 E5FD
To claim this, I am signing this object:
| 2020/10/01 10:17:23 [DEBUG] EvalApply: ProviderMeta config value set | |
| 2020/10/01 10:17:23 [DEBUG] google_compute_url_map.urls: applying the planned Update change | |
| 2020-10-01T10:17:23.759+0200 [DEBUG] plugin.terraform-provider-google_v3.41.0_x5: 2020/10/01 10:17:23 [DEBUG] setting computed for "default_route_action.0.timeout" from ComputedKeys | |
| 2020-10-01T10:17:23.759+0200 [DEBUG] plugin.terraform-provider-google_v3.41.0_x5: 2020/10/01 10:17:23 [DEBUG] setting computed for "default_route_action.0.timeout" from ComputedKeys | |
| 2020-10-01T10:17:23.759+0200 [DEBUG] plugin.terraform-provider-google_v3.41.0_x5: 2020/10/01 10:17:23 [DEBUG] Updating UrlMap "projects/a-project/global/urlMaps/urls": map[string]interface {}{"defaultRouteAction":map[string]interface {}{"corsPolicy":map[string]interface {}{"allowCredentials":true}}, "defaultService":"https://www.googleapis.com/compute/v1/projects/a-project/global/backendBuckets/backend", "fingerprint":"IOS-XCPPHdc=", "hostRules":[]interface {}{}, "name":"backend"} | |
| 2020-10-01T10 |
| #!/bin/bash | |
| ############################################################################### | |
| # Visual Studio Code # | |
| ############################################################################### | |
| if [ -z "$(which code)" ]; then | |
| echo "Visual Studio Code not available. Skipping!" | |
| else |
| #!/bin/bash | |
| set -e | |
| ARCH="$(uname -m)"; | |
| if [ $ARCH != "aarch64" ] && [ $ARCH != "armv7l" ]; then | |
| echo "Only ARM architecture supported at the moment..." | |
| exit 1 | |
| fi |
| #!/bin/bash | |
| # Add vscode repository | |
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
| sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg | |
| sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
| # Update package cache | |
| sudo apt-get update |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # Install by running: | |
| # /usr/bin/env bash <(curl -fsSL https://gist.githubusercontent.com/hedlund/42ded191f15f6c80a95456d70022d2f9/raw) | |
| if [[ "$(uname -s)" != "Darwin" ]]; then | |
| echo "Not running on Mac OS X. Aborting!" | |
| exit 1 | |
| fi |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBFh9NhABEADMxW1Mg1AvLiJTiaiFNdHC57QPTkTvqV+P6nfXNMmkqDKrH/UF | |
| ECtHZ7BC9wS1620Op7lxbFryigmNVaFbAiwbX1IddX7jkHEikQbfgQbeGRsuQdIZ | |
| EOWce+V5HHPTSrPKG1+S+4hAhGUv/A3/8gFC9hOdtlpraxk0EYUlodtgaPyYhiB6 | |
| Tbkr5IyXhrIop37qwHbydXb9BQhaKGwpKq8zYUWtgMQst3yBckDwL4tXY+Z0Gm9t | |
| EC8maHdrvBN3W7ZTZE0Dg+Nmx5jrxuuB3rTkHJMtL4qXMQpiqyj8jBYvFP7HNXIW | |
| 7A5CrP0dTVEgxdB0hYS2VynwdzGRWP1KikdyqRuqZui3FQN3pxYaUfAYHt//9IPu | |
| ddVhFGYD8GeljBHdlu627Jdj8eUsycH+ZfAbuQ8aR7TC7lTG1I5hHhveFbbiro/V | |
| TYPU78cPjuvUErYQYtuohHpsj0UAuyjqxY4t00nMrc5fx3/gylSlUb+8Fm0s5IO8 |
| #Requires -RunAsAdministrator | |
| # Install by running: | |
| # iex (new-object net.webclient).downloadstring('https://gist.githubusercontent.com/hedlund/eb0460760d78faa95fd385bd31e47dd2/raw/2d5ecf501a62b60d023f7232f2731bdbdaacf5f1/setup-win.ps1') | |
| ############################################################################### | |
| # Configuration | |
| $TOOLS_DIR = "C:\tools" | |
| $WEASEL_PAGEANT_VERSION = "1.1" |