Skip to main content

洗脚的时候放点醋可以治疗失眠

  大家都知道吃醋有很多好处,消除疲劳、帮助消化、抗衰老、有效预防心血管疾病、还有抗癌作用等等。醋还有一个好处就是治疗失眠,专家指出在泡脚时加入几滴醋,能起到消除疲劳促进睡眠的作用

提起米醋,大家都知道它是生活中常用的调味品,用它能做出各种味美可口的饭菜,但对于它的保健功效却知之甚少。专家指出,用醋泡脚是醒脑提神的“良药”,如果在温热水中加些醋,每天睡前用其浸泡双脚,就能起到强身健体、治疗睡眠障碍、消除疲劳的保健作用,对身体是大有好处的。

用醋泡脚之所以具有提神的重要作用,其原因在于,足是人之根,足部有许多具有重要治疗价值的反射区,通过温水泡脚,醋能够渗透足部表层皮肤,加速人体的血液循环,提高血红蛋白携带氧的能力,改善身体各部位因疲劳而导致的缺氧状态,增强各系统的新陈代谢,有利于身体中二氧化碳和废气的排出,从而使人体得到放松,消除疲劳。

建议每晚睡前将2500毫升60℃左右的热水倒入盆中,加食醋150毫升浸泡双脚。

上面专家讲解了用醋泡脚的原理和使用用方法,如果你也有失眠的现象,不妨采纳专家的建议,在泡脚时加入一些醋,相信定能起到缓解失眠的效果。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...