Skip to content

Instantly share code, notes, and snippets.

@denisdefreyne
Created May 18, 2022 09:39
Show Gist options
  • Save denisdefreyne/b34946dcd85a4b89b6a692405ee7e36b to your computer and use it in GitHub Desktop.
Save denisdefreyne/b34946dcd85a4b89b6a692405ee7e36b to your computer and use it in GitHub Desktop.
class Point
# …
def hash
# Do not do this!
self.class.hash ^ (@x.hash * 3) ^ (@y.hash * 5)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment