This file contains 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": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"autoscaling:*", | |
"cloudwatch:*", | |
"ec2:*", | |
"ecr:*", | |
"eks:*", |
This file contains 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
package main | |
import ( | |
"fmt" | |
"github.com/hashicorp/terraform-config-inspect/tfconfig" | |
"log" | |
"os" | |
"strings" | |
) |
This file contains 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
package builder | |
import ( | |
"bytes" | |
"context" | |
"fmt" | |
"os/exec" | |
"path" | |
"github.com/hashicorp/waypoint-plugin-sdk/terminal" |
This file contains 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
package autogrant | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"strings" | |
chime "github.com/nicolai86/aws-chime-sdk" | |
) |
This file contains 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
kepler1229b@qmk_firmware [master*] # diff -bur keyboards/clueboard/60/ keyboards/crkbdstm/rev1/ | |
Only in keyboards/clueboard/60/: .DS_Store | |
Only in keyboards/clueboard/60/: 60.c | |
Only in keyboards/clueboard/60/: 60.h | |
diff -bur keyboards/clueboard/60/config.h keyboards/crkbdstm/rev1/config.h | |
--- keyboards/clueboard/60/config.h 2019-01-26 16:22:39.000000000 -0800 | |
+++ keyboards/crkbdstm/rev1/config.h 2019-02-28 13:52:46.000000000 -0800 | |
@@ -1,126 +1,19 @@ | |
-/* | |
- * Copyright 2017 skully <[email protected]> |
This file contains 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
package main | |
import ( | |
"C" | |
"log" | |
"time" | |
) | |
//export CanSleep | |
func CanSleep() C.int { |
This file contains 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
provider "scaleway" {} | |
variable "commercial_type" { | |
default = "C1" | |
} | |
variable "architectures" { | |
default = { | |
C1 = "arm" | |
VC1S = "x86_64" |
This file contains 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
the problem: | |
a golang binary inside a container inside a vm on osx can't resolve a hostname: | |
``` | |
dial tcp: lookup "…": no such host | |
``` | |
switching to the cgo resolver via GODEBUG=netdns=cgo results in the same problem. | |
the hostname can be found on the VM, confirmed via `dig` |
This file contains 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
--- | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
metadata: | |
name: traefik-ingress-controller | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- pods |
This file contains 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
#!/usr/bin/env bash | |
if [ -z "$(which curl)" ]; then | |
echo please install curl | |
exit 1 | |
fi | |
if [ -z "$(which jq)" ]; then | |
echo please install jq | |
exit 1 |
NewerOlder