Skip to content

Instantly share code, notes, and snippets.

@StartAutomating
Last active December 13, 2024 18:25
Show Gist options
  • Save StartAutomating/b4877182d79c4e22514fed8f98a8ebbe to your computer and use it in GitHub Desktop.
Save StartAutomating/b4877182d79c4e22514fed8f98a8ebbe to your computer and use it in GitHub Desktop.
Gist gotta calculate Friday the 13th
function f13($n=13) {
$day, $f13 = (Get-Date).Date, @()
do {
if ($day.DayOfWeek * $day.Day -eq 65) {
$f13 += $day
}
$day = $day.AddDays(1)
} while ($f13.Count -lt $n)
$f13
}
f13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment