1
2
3
4
#This is the error command
egrep "smtp" -i ./production.log

...

Bash How to quiclky change this ...

by carlpelletier.myopenid.com, July 27, 2009 17:45, 2 refactorings, tagged with bash

I looking for a quick easy ...

321d08dbad2770da0994b5f53bc8757a Talk
1
2
3
def toll_free_dealer_phone(phone)
  phone.gsub(/(^.*)(866|877|888)/, '1-\1\2')
...

Ruby On Add 1- in front of a number

by carlpelletier.myopenid.com, July 23, 2009 16:49

Thanks all, andyjeffries yo...

321d08dbad2770da0994b5f53bc8757a Talk
1
2
3
4
def toll_free_dealer_phone(phone)
    formated_phone = phone
    area_code_supported = %w( 866 877 888)
...

Ruby Add 1- in front of a number

by carlpelletier.myopenid.com, July 20, 2009 19:11, -45 refactorings, tagged with rails, toll free number, helper method

I need to build a helper me...

321d08dbad2770da0994b5f53bc8757a Talk