Skip to content

Instantly share code, notes, and snippets.

package kubernetes.admission
import data.kubernetes.namespaces
import input.request.object.metadata.annotations as annotations
deny[msg] {
input.request.kind.kind = "Service"
input.request.operation = "CREATE"
input.request.object.spec.type = "LoadBalancer"
import React, {Component} from 'react';
import {
BrowserRouter as Router,
Route,
} from 'react-router-dom'
import './App.css';
import RequestNetwork, {Types} from '@requestnetwork/request-network.js';
import Web3 from 'web3';
class SignRequest extends Component {

Keybase proof

I hereby claim:

  • I am mikery on github.
  • I am mikery (https://keybase.io/mikery) on keybase.
  • I have a public key ASCFy6W-HoqJt_fLHGnI0yBdleTcDLauHmy9pDjCNja-EAo

To claim this, I am signing this object:

@mikery
mikery / gist:1461839
Created December 11, 2011 18:04 — forked from jamescasbon/template.py
Pure python templates using with statement
"""
A really stupid python template language inspired by coffeekup, markaby.
Do not use this code, it will ruin your day. A byproduct of insomnia.
TL;DR
-----
This module defines a template language that allows us to do:
d = Doc()