Skip to content

Instantly share code, notes, and snippets.

terraform {
required_version = ">= 0.12"
}
variable "kubeconfig" {}
provider "kubernetes" {
version = "~> 1.8.1"
config_path = var.kubeconfig
@pedrogimenez
pedrogimenez / diff_url
Last active August 29, 2015 14:19 — forked from thetristan/diff_url
#!/bin/bash
# Diff the headers and response body of two different urls with curl
NAME=`basename $0`
COMMAND="diff <(curl -is '$1') <(curl -is '$2')"
if [ $# -ne 2 ]
then
echo "Usage: $NAME <http://foobar.com> <http://bazqux.com>" 1>&2
exit 1

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

Maximizing S3 Peformance

  • 137% increase in AWS usage in the last year

  • Factors to keep in mind when picking a region

    • Performance: Proximity to users and to other resources in AWS
    • Compliance
    • Cost
  • Naming scheme is the most important thing

@pedrogimenez
pedrogimenez / Gemfile
Created December 27, 2013 17:44 — forked from sr/Gemfile
source "http://rubygems.org"
gem "janky", "~>0.9"
gem "pg"
gem "thin"
@pedrogimenez
pedrogimenez / Gemfile
Last active December 31, 2015 18:59 — forked from sr/Gemfile
source "http://rubygems.org"
gem "janky", "~> 0.10.0"
gem "pg"
gem "thin"