Skip to content

Instantly share code, notes, and snippets.

@rockotseng
Created August 2, 2018 06:26
Show Gist options
  • Save rockotseng/797f788d9570677be79f5648cc819639 to your computer and use it in GitHub Desktop.
Save rockotseng/797f788d9570677be79f5648cc819639 to your computer and use it in GitHub Desktop.
def every_10th_min
600 - (Time.now.to_i % 600)
end
@rockotseng
Copy link
Author

java

int every10thMin() {
    return 600 - (int) (System.currentTimeMillis() % 600);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment