There’s only one way to know for sure that one completely enjoys what they’re doing.
Monthly Archives: December 2015
Divs Squashed of Their Original Height
Remove box-sizing: border-box;
and they’ll straighten up again.
Rails Model: has_many And belongs_to
Goal: structuring multiple Birds within each Nest, so that we could find all birds within a specific nest with routes such as /nests/:nest_id/birds
.
Why Should I Go On A Path To Mastery?
Because skills are the vocabulary for expressing oneself.
Not a Class Error Only In Production Environment
In my case it was the config.eager_load = true
within production.rb
that set it off. Changing it to false
fixed it.