Skip to content

Instantly share code, notes, and snippets.

@oliverbooth
Created October 16, 2012 11:09
Show Gist options
  • Select an option

  • Save oliverbooth/3898690 to your computer and use it in GitHub Desktop.

Select an option

Save oliverbooth/3898690 to your computer and use it in GitHub Desktop.
Day of Week from Year/Month/Day
dow(y, m d) {
t = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
y -= m < 3;
return (y + y / 4 - y / 100 + y / 400 + t[m - 1] + d) % 7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment