Source range lb:
apiVersion: v1
kind: Service
metadata:
annotations:
service.beta.kubernetes.io/load-balancer-source-ranges: "10.0.0.0/8"
name: netexec
labels:
app: netexec| kingfisher.core=> (def hndlr (reify sun.misc.SignalHandler (handle [this signal](println "handling some sig!")))) | |
| #'kingfisher.core/hndlr | |
| kingfisher.core=> (sun.misc.Signal/handle (sun.misc.Signal. "USR2") hndlr) | |
| #object[kingfisher.core$reify__32853 0x6bc27f36 "kingfisher.core$reify__32853@6bc27f36"] | |
| kingfisher.core=> (clojure.java.shell/sh "kill" "-s" "SIGUSR2" "72011") | |
| handling some sig! | |
| {:exit 0, :out "", :err ""} |
| .ONESHELL: | |
| .PHONEY: help set-env init update plan plan-destroy show graph apply output taint | |
| help: | |
| @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | |
| set-env: | |
| @if [ -z $(ENVIRONMENT) ]; then\ | |
| echo "ENVIRONMENT was not set"; exit 10;\ | |
| fi |
Source range lb:
apiVersion: v1
kind: Service
metadata:
annotations:
service.beta.kubernetes.io/load-balancer-source-ranges: "10.0.0.0/8"
name: netexec
labels:
app: netexecCloudFlare is an awesome reverse cache proxy and CDN that provides DNS, free HTTPS (TLS) support, best-in-class performance settings (gzip, SDCH, HTTP/2, sane Cache-Control and E-Tag headers, etc.), minification, etc.
| (ns om.next.spec | |
| (:require [cljs.spec :as s])) | |
| (s/def ::ident (s/and vector? (s/cat :ident keyword? :value #(not (coll? %))))) | |
| (s/def ::join-key (s/or :prop keyword? :ident ::ident)) | |
| (s/def ::join (s/and (s/map-of ::join-key ::query) #(= (count %) 1))) | |
| (s/def ::union (s/and (s/map-of keyword? ::query) #(> (count %) 1))) | |
| (s/def ::param-expr | |
| (s/cat :query-expr ::query-expr |
| (ns user | |
| (:require [clojure.tools.namespace.repl :refer [refresh]] | |
| [com.stuartsierra.component :as component] | |
| | |
| [onyx api | |
| [test-helper :refer [load-config validate-enough-peers!]]] | |
| ;; Implicit requires for env | |
| [onyx.plugin.seq] | |
| )) | |
| |
| { fontWeight: '100' }, // Thin | |
| { fontWeight: '200' }, // Ultra Light | |
| { fontWeight: '300' }, // Light | |
| { fontWeight: '400' }, // Regular | |
| { fontWeight: '500' }, // Medium | |
| { fontWeight: '600' }, // Semibold | |
| { fontWeight: '700' }, // Bold | |
| { fontWeight: '800' }, // Heavy | |
| { fontWeight: '900' }, // Black |
| import MatrixMath from 'react-native/Libraries/Utilities/MatrixMath'; | |
| class TransformUtil { | |
| constructor(matrix) { | |
| this.matrix = matrix || MatrixMath.createIdentityMatrix(); | |
| } | |
| perpective(x) { | |
| MatrixMath.reusePerspectiveCommand(this.matrix, x) |
| class Nil | |
| class Cons[X, Xs] | |
| class First[List] { type X } | |
| object First { | |
| type Aux[List, X0] = First[List] { type X = X0 } | |
| implicit val nilFirst: Aux[Nil, Nil] = ??? | |
| implicit def consFirst[X0, Xs]: Aux[Cons[X0, Xs], X0] = ??? | |
| } |
| update_spec_alpha () { | |
| git grep -l clojure.spec | xargs sed -i '' 's/clojure.spec /clojure.spec.alpha /g' | |
| git grep -l clojure.spec | xargs sed -i '' 's/clojure.spec.test /clojure.spec.test.alpha /g' | |
| git grep -l clojure.spec | xargs sed -i '' 's/clojure.spec.gen /clojure.spec.gen.alpha /g' | |
| } |