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
<section> | |
<h3><%= t('one_master_set.title') %></h3> | |
<p><%= t('one_master_set.content') %></p> | |
</section> |
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
var logCar = function(car) { | |
console.log("I am a " + car.color + ' ' + car.make); | |
} | |
logCar({ color: 'blue', make: 'BMW' }); | |
var Car = function(make, color) { | |
this.color = color; | |
this.make = make; | |
this.log = function() { |
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
var countdown = (function() { | |
var log = function(index) { | |
console.log(index); | |
}, | |
iterate = function(index) { | |
log(index); | |
if(index>1) setTimeout(function() { iterate(index); }, 1000); | |
index--; | |
}; | |
return function() { iterate(10) }; |
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
for(var currentCard in CreditCard.CARDS) | |
var card = currentCard; | |
CreditCard['is'+currentCard] = function(number){ | |
return card.test(CreditCard.strip(number)); | |
}; | |
})(CreditCard.CARDS[currentCard]); |
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
for(currentCard in CreditCard.CARDS) | |
var localCard = currentCard; | |
CreditCard['is'+currentCard] = function(number){ | |
return localCard.test(CreditCard.strip(number)); | |
}; | |
})(CreditCard.CARDS[currentCard]); |
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
foldR: function(str, acc, fun) { | |
var i, | |
len = str.length, | |
for(i = 0; i < len; i++) { | |
acc = fun(acc, str.substring(len-i-1,len-i)); | |
} | |
} | |
isCreditCard( CC ) { | |
if (CC.length > 19) |
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 'data_mapper' | |
class Post | |
include DataMapper::Resource | |
property :id, Serial | |
before :save, :categorize | |
before :update, :categorize | |
before :create, :categorize |
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
{sys, [ | |
{lib_dirs, ["../deps","../../"]}, | |
{rel, "risk_scope", "1", | |
[ | |
kernel, stdlib, sasl, syntax_tools, compiler, xmerl,ssl,inets,crypto, | |
jsx, | |
rabbit_common, | |
amqp_client, | |
conn_domain, | |
champ_domain_server, |
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
api_event(start_comet, _, [ComentID]) -> | |
wf:comet(fun() -> up_loop() end, CometID); | |
api_event(send_msg, _, [CometID, Msg]) -> | |
wf:send(CometID, {msg, Msg}). | |
up_loop() -> | |
receive | |
{msg, Msg} -> error_logger:info_msg("OHAI JAVASCRIPT MSG ~p",[Msg]) | |
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
require 'sinatra/base' | |
require 'eventmachine' | |
require 'thin' | |
EventMachine.run do | |
class Dude < Sinatra::Base | |
get '/' do | |
'oh hai' | |
end |
NewerOlder