This file contains hidden or 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
puts 24*365 |
This file contains hidden or 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
puts 60*24*365*10 |
This file contains hidden or 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
puts 29*365*24*60*60 |
This file contains hidden or 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
santa_list = ["Andrea", "Gloria", "Jessica", "Angela", "Mike N.", "Mike B.", "Chris", "Mom", "Dad"] | |
while !santa_list.empty? do | |
santa = santa_list.shift | |
giftee_list = santa_list.shuffle | |
giftee = giftee_list.shift | |
assignment = {:santa => santa, :giftee => giftee} | |
puts assignment |
This file contains hidden or 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
<div class="dogear-right primary revenue-calculator"> | |
stuff goes inside here | |
</div> | |
=========== | |
CSS | |
=========== | |
.dogear { | |
position: absolute; |
This file contains hidden or 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
var compare = function(choice1, choice2) { | |
if (choice1 = "rock") { | |
if (choice1 === choice2) { | |
return "The result is a tie!"; | |
} else if (choice2 = "scissors") { | |
return "rock wins"; | |
} else { | |
return "paper wins"; | |
} | |
} |
This file contains hidden or 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
givers = %w[austen chris elise jess lynn matt sam] | |
getters = givers.dup | |
assignments = {} | |
givers.each do |giver| | |
getter = (getters - [giver]).shuffle.first | |
getters.delete(getter) | |
assignments[giver] = getter | |
end | |
require 'pp' |
This file contains hidden or 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
!!! | |
%html{:lang => "en", :xhmns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en"} | |
%head | |
%title= full_title(yield(:title)) | |
%meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"} | |
= stylesheet_link_tag "application", "http://fonts.googleapis.com/css?family=Questrial|Damion" | |
= javascript_include_tag "https://js.stripe.com/v1/", "application" | |
= csrf_meta_tags | |
= tag :meta, :name => "stripe-key", :content => STRIPE_PUBLIC_KEY | |
%body |
OlderNewer