Rails label helper for forms
When creating forms I get tired of creating labels for each field so I like to shorten my typing by using this application helper.
then later on in your view you type
def l(id,label) "<label for='#{id}'>#{label}</label>" end
then later on in your view you type
<%= l('my_field_id','My Label') %>