Skip to content

Instantly share code, notes, and snippets.

View ericavonb's full-sized avatar
:shipit:
openshift 4.0 beta2

Erica von Buelow ericavonb

:shipit:
openshift 4.0 beta2
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ericavonb on github.
  • I am ericavonb (https://keybase.io/ericavonb) on keybase.
  • I have a public key whose fingerprint is 532B 71ED D763 4058 34C1 AEB8 FF2E C351 0D26 02AA

To claim this, I am signing this object:

@ericavonb
ericavonb / git-commit-style-guide.md
Last active July 28, 2024 19:13
Git Commit Style Guide

Git Commit Style Guide

Inspiration: Deis Commit Style Guide

I often quote Deis in sections below.

Motivation

It makes going back and reading commits easier. It also allows you to spend less time thinking about what your commit message should be.

@ericavonb
ericavonb / dashboard_test_list.md
Last active August 29, 2015 14:19
Dashboard Tests Checklist
@ericavonb
ericavonb / async.coffee
Created December 3, 2015 19:07
Why setImmediate?
test1 = (cb) ->
count = 0
for i in [0..4]
setTimeout(->
console.log(i)
count++
if count >= 4
cb()

Keybase proof

I hereby claim:

  • I am ericavonb on github.
  • I am evb (https://keybase.io/evb) on keybase.
  • I have a public key ASBV0K75rxEUMoGjyOUx4a-fI_4zhpsTR8Ai-GTBnHH9vQo

To claim this, I am signing this object:

@ericavonb
ericavonb / git-style.md
Last active January 23, 2017 18:44
Git Commit Style Guide

Git Commit Style Guide

Inspiration: Dies Commit Style Guide*

I often quote Dies in sections below.

NOTE - Dies took their style guide from CoreOS who took it from Angular. Will be updating with proper attribution soon.

Motivation

@ericavonb
ericavonb / .emacs
Created February 7, 2017 04:07
Emacs Config
;; ========================================================================== ;;
;; Emacs Initialization File ;;
;; ========================================================================== ;;
;; -------------------------------------------------------------------------- ;;
;; Package Management and Marmalade ;;
;; -------------------------------------------------------------------------- ;;
@ericavonb
ericavonb / gist:a8ebc21687d2b01f78abb6c96f040a25
Last active October 10, 2018 08:15 — forked from ryanj/Hands-On-Intro-to-Kubernetes.html
Kubenetes Zone "Hands-On Intro to Kubernetes" Workshop, TX http://bit.ly/wwg-k8s
<section>
<section id="kubernetes-hands-on">
<h1>Intro to Kubernetes</h1>
<h2>Workshop</h2>
<br/>
<p>TECH(K)NOW DAY - London, UK - Tue 9 Oct 2018</p>
<p><a href="http://bit.ly/wwg-k8s">bit.ly/wwg-k8s</a></p>
</section>
<section data-state='blackout' data-background-color="#000000" id='presented-by'>
<p>Hi! I'm Erica von Buelow.</p>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.20000000298023224</real>
<key>Green Component</key>
<real>0.20000000298023224</real>
@ericavonb
ericavonb / makeapp.sh
Created May 23, 2018 17:23 — forked from demonbane/makeapp.sh
Create a Fluid-style app launcher for single-window Chrome instances on OSX
#!/bin/sh
echo "What should the Application be called (no spaces allowed e.g. GCal)?"
read inputline
name="$inputline"
echo "What is the url (e.g. https://www.google.com/calendar/render)?"
read inputline
url="$inputline"