hello world!
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
module TidyHelper | |
def self.tidy_xml xml_string | |
IO.popen("tidy -q --input-xml y --output-xml y --indent 'auto' --indent-attributes y --indent-spaces '4' --wrap '90'", "w+") do |pipe| | |
buffer = String.new |
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
require "spec_helper" | |
describe "An RSpec example using nested before(:all) blocks" do | |
before(:all) do | |
puts "This is called at the beginning of the example" | |
end | |
it "Tests something" do | |
false.should eq(false) | |
end |
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
set autoindent | |
set autoread | |
set backspace=eol,start,indent | |
set expandtab | |
set history=700 | |
set nobackup | |
set nowb | |
set noswapfile | |
set ruler | |
set smartindent |
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
class TotalPriceGreaterThan | |
def display | |
"Customer spent more than #{threshold}" | |
end | |
def evaluate | |
receipt().total_price() > threshold() | |
end | |
def purchase |
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
class GreaterThan | |
def display | |
"more than" | |
end | |
def evaluate one, two | |
one > two | |
end | |
end |
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
{ | |
client_id: $client_id, | |
cohort_type: $cohort_type, // Sign up date, first purchase date | |
cohort_bin_width: $cohort_bin_width, // Week, month, quarter, year | |
cohort_value: $cohort_value, // 20120407, 201204, 2012.1, 2012 | |
// Further segmentation? | |
// engagement | |
// location |
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
[] |
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
{} |
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
.my_highlight { | |
text-decoration:underline; | |
background-color:orange; | |
} |
OlderNewer