View list.txt
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
NAME TITLE | |
abusiveexperiencereport.googleapis.com Abusive Experience Report API | |
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API | |
accessapproval.googleapis.com Access Approval API | |
accesscontextmanager.googleapis.com Access Context Manager API | |
actions.googleapis.com Actions API | |
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API | |
adexchangebuyer.googleapis.com Ad Exchange Buyer API II | |
adexchangeseller.googleapis.com Ad Exchange Seller API | |
adexperiencereport.googleapis.com Ad Experience Report API |
View k8s.Makefile
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
################################################## | |
## A makefile for doing common things with kubectl | |
################################################## | |
ifndef K8S_PROJECT_NAME | |
$(error K8S_PROJECT_NAME is not set. Please set this to your k8s project namein YOUR Makefile) | |
endif | |
UNAME_S := $(shell uname -s) | |
STAGING_NAMESPACE = staging-${K8S_PROJECT_NAME} |
View block.tf
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
variable "gpu" { | |
description = "Enable and configure node GPUs" | |
type = object({ | |
type = string | |
count = number | |
}) | |
default = null | |
# or... |
View .pre-commit-hooks.yaml
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
- id: deny-todos | |
name: Denies TODOs or FIXME | |
description: 'Denies TODOs or FIXME in commits' | |
entry: run.sh | |
language: script |
View heroku_name_generator.ex
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
defmodule Name do | |
@adjectives ~w( | |
autumn hidden bitter misty silent empty dry dark summer | |
icy delicate quiet white cool spring winter patient | |
twilight dawn crimson wispy weathered blue billowing | |
broken cold damp falling frosty green long late lingering | |
bold little morning muddy old red rough still small | |
sparkling throbbing shy wandering withered wild black | |
young holy solitary fragrant aged snowy proud floral | |
restless divine polished ancient purple lively nameless |
View scanner.sh
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
# use ImageMagick convert | |
# the order is important. the density argument applies to input.pdf and resize and rotate to output.pdf | |
convert -density 90 input.pdf -rotate 0.5 -attenuate 0.2 +noise Multiplicative -colorspace Gray output.pdf |
View tf-aws-multiaz-vpc-w-az-cache.tf
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 "aws" { | |
region = "us-west-2" | |
profile = "md-sandbox" | |
} | |
resource "aws_s3_bucket" "dont_create_me_in_same_script_obvi" { | |
bucket = "terraform-provisioning-cache" | |
acl = "private" | |
} |
View kratos.ex
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
defmodule Kratos do | |
defmodule Behaviour do | |
@moduledoc """ | |
Defines function signature for secrets adapters | |
""" | |
@callback who_am_i(String.t()) :: {:ok, map()} | {:error, :unauthenticated} | |
end | |
@behaviour Kratos.Behaviour |
View hello-world-pod-2.yaml
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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: hello-world-pod-2 | |
labels: # You'll use labels A LOT w/ kube | |
app: hello-world # They are useful for organizing and identifying attributes of an object | |
spec: | |
containers: # This spec has multiple containers, how fancy! | |
- name: hello-world-sh | |
image: busybox |
View job.yaml
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
apiVersion: batch/v1 | |
kind: Job | |
metadata: | |
name: pi | |
spec: | |
template: | |
metadata: | |
name: pi | |
spec: | |
containers: |
NewerOlder