I hereby claim:
- I am sebastiangeiger on github.
- I am sebastiangeiger (https://keybase.io/sebastiangeiger) on keybase.
- I have a public key whose fingerprint is 656E 41FF 0A87 2781 9F29 9568 13CA 5B73 1430 F07B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| require 'draper' | |
| class Richard | |
| def name | |
| "Richard Whitman" | |
| end | |
| end | |
| class Don < Draper::Decorator | |
| delegate_all |
| require 'draper' | |
| class Richard | |
| def name | |
| "Richard Whitman" | |
| end | |
| end | |
| class Don < Draper::Decorator | |
| delegate_all |
| inoremap jj <Esc> | |
| inoremap jk <Esc> | |
| inoremap Jk <Esc> | |
| inoremap JK <Esc> | |
| inoremap <Esc> <nop> | |
| inoremap <Up> <nop> | |
| inoremap <Down> <nop> | |
| inoremap <Left> <nop> | |
| inoremap <Right> <nop> |
| require 'json' | |
| require 'lazy_doc' | |
| json = '{"first_name": "George", "last_name": "Washington", "worker_number": "0000001", "email": "[email protected]", "user_name": "georgie", "profile_roles" : [ { "project_name": "Work!", "role" : "PROJECT_ADMINISTRATOR" } ]}' | |
| class User | |
| include LazyDoc::DSL | |
| def initialize(json) | |
| lazily_embed(json) |
| commit ec5b2a7ca39e3b547b0fb086aeb80145d182c767 | |
| Author: Sebastian Geiger <[email protected]> | |
| Date: Tue Nov 18 13:36:49 2014 -0500 | |
| Adding guard-livereload | |
| Because I don't want to do frontend work without it | |
| diff --git a/Gemfile b/Gemfile | |
| index 86d01d0..d6113df 100644 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>coderetreat Test Suite</title> | |
| <script src="http://code.jquery.com/jquery-latest.js"></script> | |
| <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.14.0/qunit.css" type="text/css" media="screen"/> | |
| <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.14.0/qunit.js"></script> | |
| <!-- Your project file goes here --> | |
| <script type="text/javascript" src="coderetreat.js"></script> | |
| <!-- Your tests file goes here --> |
| #!/usr/bin/env ruby | |
| require 'pivotal-tracker' | |
| def main | |
| raise "Please set your PIVOTAL_TOKEN" unless ENV["PIVOTAL_TOKEN"] | |
| PivotalTracker::Client.token = ENV["PIVOTAL_TOKEN"] | |
| projects = PivotalTracker::Project.all | |
| matches = projects.select do |project| |
| require 'faraday' | |
| require 'json' | |
| require 'pry' | |
| require 'pp' | |
| require 'rspec' | |
| module Fulcrum | |
| module Model; end | |
| module API; end | |
| end |
| <!DOCTYPE html> | |
| <!-- | |
| Created using JS Bin | |
| http://jsbin.com | |
| Copyright (c) 2014 by sebastiangeiger (http://jsbin.com/cutiv/7/edit) | |
| Released under the MIT license: http://jsbin.mit-license.org | |
| --> | |
| <html> |