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
Day job: I am a Merman at Heroku. | |
Your Rails contributions (if any): I used it, I swear. | |
What's your Ruby/Rail experience?: I know that the green car in a Nozomi is a really pimping way to travel when going by rail. | |
How do you use GitHub?: I drink it. The cider edition is plenty well 'ard. |
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
- if @items | |
- @items.reject { |item| item[/views\/controls\/(hide-.*|index).haml/] }.each do |name| | |
%p do some stuff |
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
def f(ra,n) | |
r=0 | |
ra.each {|x| r+=1 if x.include? n} | |
r | |
end |