Joined August 2012
·

Gabriel Dumitrescu

Software Engineer at Pivotal
·
Toronto, Canada
·
·

I use the compass mixin and generates that css:

*
  +box-sizing(border-box)

Very handy.

I've used a similar approach for starting some of my projects: https://github.com/gdumitrescu/guard-ui

I use it to handle special cases. Very handy.

Posted to FizzBuzz question over 1 year ago

When I answered this question I wrote the answer using the zero? method instead.

(1..100).each do |i|
  if (i%3).zero? && (i%5).zero?
    puts "FizzBuzz"
  elsif (i%3).zero?
    puts "Fizz"
  elsif (i%5).zero?
    puts "Buzz"
  else
    puts i
  end
end
Achievements
87 Karma
0 Total ProTip Views