Skip to content

Instantly share code, notes, and snippets.

@rodolfopeixoto
Last active June 2, 2020 18:18
Show Gist options
  • Save rodolfopeixoto/ff8f0f168d9bd1b4c3d01c2088f46f75 to your computer and use it in GitHub Desktop.
Save rodolfopeixoto/ff8f0f168d9bd1b4c3d01c2088f46f75 to your computer and use it in GitHub Desktop.
clean-code
# bad
d = yyyymmdstr = Time.now.strftime('%Y/%m/%d')
# good
current_date = Time.now.strftime('%Y/%m/%d')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment