Skip to content

Instantly share code, notes, and snippets.

@SQLDBAWithABeard
Last active March 24, 2020 19:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SQLDBAWithABeard/c23e6cbe013c4743442f6653872aa843 to your computer and use it in GitHub Desktop.
Save SQLDBAWithABeard/c23e6cbe013c4743442f6653872aa843 to your computer and use it in GitHub Desktop.
Calm - 478 breathing - Using the technique described https://www.smallfootprintfamily.com/4-7-8-breathing-stress-relief-techniques
function Calm {
for ($i = 0; $i -le 4; $i++) {
$x = 1
while ($x -le 4) {
"In through the nose - $x"
Start-Sleep -Seconds 1
$x ++
}
$x = 1
while ($x -le 7) {
"Hold it - $x"
Start-Sleep -Seconds 1
$x ++
}
$x = 1
while ($x -le 8) {
"Out through the mouth - $x"
Start-Sleep -Seconds 1
$x ++
}
}
}
Calm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment