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
gs -dNOPAUSE -dBATCH -sDEVICE=nullpage valid.pdf | |
GPL Ghostscript 9.16 (2015-03-30) | |
Copyright (C) 2015 Artifex Software, Inc. All rights reserved. | |
This software comes with NO WARRANTY: see the file PUBLIC for details. | |
Processing pages 1 through 1. | |
Page 1 | |
(return code 0) | |
: gs -dNOPAUSE -dBATCH -sDEVICE=nullpage invalid.pdf |
Here are all of the resources mentioned by Deconstruct 2017 speakers, along with who recommended what. Please post a comment if I missed something or have an error!
- Seeing Like a State by James Scott
- Public Opinion by Walter Lippmann (Evan Czaplicki)
- A Pattern Language by Christopher Alexander (Brian Marick)
- Domain Driven Design by Eric Evans (Brian Marick)
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" | |
"k8s.io/client-go/kubernetes" | |
"k8s.io/client-go/rest" | |
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | |
) |
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/v1beta1 | |
kind: CronJob | |
metadata: | |
name: ingress-lister | |
namespace: monitoring | |
labels: | |
app: ingress-lister | |
spec: | |
schedule: "0 17 * * *" # daily | |
jobTemplate: |
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: ServiceAccount | |
metadata: | |
name: ingress-lister | |
namespace: monitoring | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: ingress-lister |
OlderNewer