Last active
March 24, 2020 19:48
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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