Joined August 2012
·
Posted to
Fast mock up web frontends with HAML/Coffee/Sass/Less bundle
over 1 year
ago
Very handy.
I've used a similar approach for starting some of my projects: https://github.com/gdumitrescu/guard-ui
Posted to
Parent css selector with Sass / Less preprocessor
over 1 year
ago
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
24PullRequests Participant
Sent at least one pull request during the first 24 days of December 2014
Altruist
Increase developer well-being by sharing at least 20 open source projects
Raven
Have at least one original repo where some form of shell script is the dominant language
Charity
Fork and commit to someone's open source project in need
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Forked
Have a project valued enough to be forked by someone else
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Mongoose
Have at least one original repo where Ruby is the dominant language
I use the compass mixin and generates that css: