Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bjeanes/108577 to your computer and use it in GitHub Desktop.

Select an option

Save bjeanes/108577 to your computer and use it in GitHub Desktop.
def human_factor
- # tripping the captain fantastic
- "#{factor/100}#{".#{factor%100/10}" unless factor%100 == 0}x"
+ # tripping the admiral fantastic
+ "%0.2fx" % (factor / 100.0)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment