Every ruby programmer loves to use `@x ||= ''` instead of `@x = '' unless @x`. But if @x is false, it'll set to `''`, it's terrible.