I hereby claim:
- I am joekr on github.
- I am joekratzat (https://keybase.io/joekratzat) on keybase.
- I have a public key whose fingerprint is 5A15 7CE4 86C8 9D90 9B64 452D F31D 8021 A7ED 1C26
To claim this, I am signing this object:
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:0.5+' | |
| } | |
| } | |
| apply plugin: 'android-library' |
| package main | |
| import "fmt" | |
| import "net/http" | |
| import "time" | |
| import "os" | |
| func main() { | |
| if len(os.Args) < 2 { | |
| fmt.Println("Need a url", len(os.Args)) |
| class Message < ActiveRecord::Base | |
| belongs_to :recipient, :polymorphic => true | |
| belongs_to :sender, :polymorphic => true | |
| end |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = '2' | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = 'hashicorp/precise64' | |
| # Configurate the virtual machine to use 2GB of RAM |
I hereby claim:
To claim this, I am signing this object:
| # Set nginx base image | |
| FROM nginx | |
| # Copy custom configuration file from the current directory | |
| COPY nginx.conf /etc/nginx/nginx.conf |
| apiVersion: cluster.x-k8s.io/v1beta1 | |
| kind: Cluster | |
| metadata: | |
| labels: | |
| cluster.x-k8s.io/cluster-name: "${CLUSTER_NAME}" | |
| name: "${CLUSTER_NAME}" | |
| namespace: "${NAMESPACE}" | |
| spec: | |
| clusterNetwork: | |
| pods: |