12 tablespoons (1 1/2 sticks) unsalted butter, room temperature
1 cup packed golden brown sugar
1 tablespoon honey
6 large plums, halved, pitted, each half cut into 6 wedges
1 1/2 cups all purpose flour
I hereby claim:
- I am danieldreier on github.
- I am danieldreier (https://keybase.io/danieldreier) on keybase.
- I have a public key whose fingerprint is 2FDD 7B21 814F 302B EBEA E372 2914 5EFC BA43 79FD
To claim this, I am signing this object:
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
facter --json | curl -H "Content-Type: application/json" -d @- http://facts.whilefork.com |
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
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "CoreOS on EC2: http://coreos.com/docs/running-coreos/cloud-providers/ec2/", | |
"Mappings" : { | |
"RegionMap" : { | |
"ap-northeast-1" : { | |
"AMI" : "ami-57032456" | |
}, |
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
" Borrowed from http://skwp.github.io/dotfiles/ | |
" also recommend the following plugins via pathogen: | |
" puppet | |
" supertab | |
" syntastic | |
" syntastic.old | |
" tabular | |
" vim-colors-solarized | |
" vim-easy-align | |
" vim-gocode |
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
#!/usr/bin/env ruby | |
require 'certificate_authority' | |
# Generate root_cert CA using example code at https://github.com/cchandler/certificate_authority | |
root_cert = CertificateAuthority::Certificate.new | |
root_cert.subject.common_name= "Dummy CA Root Certificate" | |
root_cert.serial_number.number=1 | |
root_cert.key_material.generate_key | |
root_cert.signing_entity = true | |
signing_profile = {"extensions" => {"keyUsage" => {"usage" => ["critical", "keyCertSign"] }} } |
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
#!/bin/bash | |
# This script installs puppet on most linux distros. | |
# To run, simply execute as root. | |
# $ install_puppet.sh [ puppet_version ] | |
# e.g. $ install_puppet.sh 3.4.1 | |
# Successfully run on Debian 6/7, Ubuntu 12.04 LTS and 14.04 LTS, Fedora 20, and arch. | |
# Not tested on OS X, Solaris, AIX, etc, simply because I lack test environments. | |
set -e |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# This configuration requires Vagrant 1.1 or newer and two plugins: | |
# | |
# vagrant plugin install vagrant-hosts ~> 2.0.0 | |
# vagrant plugin install vagrant-auto_network ~> 0.2.1 | |
# | |
# If using Vagrant boxes provided by PuppetLabs, verions 4.2.10 of VirtualBox | |
# is reccomended. |
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
forge "http://forge.puppetlabs.com" | |
mod "puppetlabs/razor" | |
mod "puppetlabs/ntp", "0.0.3" | |
mod "apt", | |
:git => "git://github.com/puppetlabs/puppetlabs-apt.git" | |
mod "stdlib", | |
:git => "git://github.com/puppetlabs/puppetlabs-stdlib.git" |
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
node default { | |
package { 'rubygems': ensure => 'installed' } | |
package { 'librarian-puppet': | |
ensure => 'installed', | |
provider => 'gem', | |
require => Package['rubygems'], | |
} | |
# Run librarian-puppet if Puppetfile changed | |
file { '/etc/puppet/Puppetfile': |