In a mammoth programming session I implemented proper smileys
[[':-)', 'smile'], [':-(', 'sad'], ['8-)', 'cool'], [';-)', 'wink']].each do |strCode, strFile| strText.gsub!( strCode, "<img alt=\"#{strFile}\" src=\"/images/smileys/#{strFile}.png\" />") end
My fingers were bleeding from all the typing
Worked first time though
There is even alt text for blind people

