Here’s a little bit of post-Christmas fun, based on the Twelve Days of Christmas.
bugs = %{
Tell them it's a feature
Say it's not supported
Change the documentation
Blame it on the hardware
Find a way around it
Say they need an upgrade
Reinstall the software
Ask for a dump
Run with the debugger
Try to reproduce it
Ask them how they did it and
See if they can do it again.
}.strip.split("\n").map { |bug| bug.strip }.reverse
days = %w[first second third fourth fifth sixth seventh eighth ninth tenth eleventh twelfth]
0.upto(11) do |day_num|
puts "For the #{days[day_num]} bug of Christmas, my manager said to me"
day_num.downto(0) do |bug_num|
puts bugs[bug_num]
end
puts
end


0 Responses to “The Twelve Bugs of Christmas, via Ruby”