Skip to content

Instantly share code, notes, and snippets.

@mattpatterson94
mattpatterson94 / dockerflow.md
Created December 1, 2015 05:00
Dockerflow
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
# Example aliases
@mattpatterson94
mattpatterson94 / Preferences.sublime-settings
Created July 11, 2015 06:02
Sublime Text 3 User Preferences
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"copy_with_empty_selection": false,
"font_size": 12.0,
"ignored_packages":
[
"Vintage"
],
@mattpatterson94
mattpatterson94 / content_formatter_spec.rb
Last active August 29, 2015 14:23
Content Formatter spec
require 'content_formatter'
describe ContentFormatter do
describe "awesome"
it "returns awesome when AW is given" do
text = "AW"
expect(ContentFormatter.awesome(text)).to eq("Awesome")
end