Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created November 24, 2016 15:04
Show Gist options
  • Save yuanmai/51d50ddff9d2d3c0ac2450280ef2b08d to your computer and use it in GitHub Desktop.
Save yuanmai/51d50ddff9d2d3c0ac2450280ef2b08d to your computer and use it in GitHub Desktop.
HOW TO FALL ASLEEP and RELAX IN 60 SECONDS - THE 4-7-8 BREATHING TECHNIQUE EXPLAINED
#!/usr/bin/python
import time
# for more info https://www.youtube.com/watch?v=oiV6sbuQUNc
def round():
for i in "Inhale 2 3 4 Hold 2 3 4 5 6 7 Exhale 2 3 4 5 6 7 8".split(" "):
print i
time.sleep(1)
for i in range(4):
round()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment