Skip to main content

Feeling stressed? Try these natural remedies

Our physical health depends on several important factors such as the constitution we have inherited from our parents, the type of food we eat and the amount of exercise we give our body. Along with these, it is increasingly becoming obvious that the state of mind plays a major role in deciding how well the body functions.Stress can drastically reduce the ability of the immune system to defend the body against illness and therefore, it is vital to take steps to deal with stress. Here are a few natural remedies that can help you combat stress or deal with it in a healthy way.
Eat the right food
According to Ayurveda, food possesses three qualities or gunas – sattva, rajas and tamas.Sattvik food is light, fresh and nutritious, rajasik food is spicy and hot and fans emotions, andtamasik foods are stale and promote the sense of inertia. Obviously, the consumption of a diet rich in rajasik and tamasik foods is bound to keep you in a state of mind that is most conducive to stress whereas a sattvik diet helps with keeping the mind calm. So make sure you include foods such as pulses, fresh vegetables and fruits, milk and grains such as rice and tapioca. Avoid an excess of hot chutneys and pickles, sour cream, chicken, fish, meat, cheese, onion, garlic and urad dal and you will find a noticeable change for the better, in your ability to cope with stressful situations. 
Use relaxing herbs
Certain herbs such as cardamom (elaichi), lettuce, celery, peppermint, chamomile and fennel (saunf) contain phytoconstituents that have wonderful relaxing properties. Make these a part of your diet in the form of herbal tea or by working them into the dishes you cook for some stress relief.
Ayurveda recommends the use of adaptogenic herbs (that help the body and mind adapt better to stressful conditions) over time can also help you cultivate a calm mind that does not easily get swayed by extreme emotions. Herbs such as aswagandha, jatamansi, guduchi, brahmi, tulsi and shankhpushpi  help to restore the imbalance in the elements that make up the body and mind. However, it is important you avoid self-medication with these herbs – take them only under the prescription of a registered Ayurvedic practitioner who is well-versed with their use. 
Have an oil massage
Remember the annoying oil massage and hot water bath your grandmother or mother insisted you have at least once a week? It may have been a cause of stress during childhood because you resented it, but according to Ayurveda, abhyanga – the application of oil to the entire body – at regular intervals is an easy way of relaxing not just the body, but also the mind. Use any oil – castor, sesame or coconut – heat it to make it warm and rub it into the scalp, hair and all over the body; allow the oil to remain for an hour or two and then bathe with hot water. You will actually feel the stress and strain wash out of your system. For even better relaxation, mix in a little powder of shankhpushpi or brahmi into the oil you use for the massage. 
Cut down on unhealthy beverages
Most of us are addicted to some form of liquid stimulant that we believe makes us more alert and able to deal with the myriad things life brings our way. Caffeine and alcohol tends to increase feelings of anxiety and stress. Cut down on your intake of such beverages and you are sure to observe your stress levels becoming much more manageable. 
Breathe right
In our constant rush to meet deadlines and do things on time? Your breathing might be the one to take the hit. A lack of proper deep breaths greatly reduces the amount of oxygen which is a major reason for increasing stress levels. To combat this, make it a point to breathe in slowly and deeply a few times every morning and night – feel your stomach and chest expand as you inhale, and fall as you exhale. Breathe in as you slowly count from 1 to 5, hold for five counts and then exhale while counting from 1 to 5. If possible, learn the techniques ofpranayama from a qualified instructor and practice every day. Whenever you feel yourself getting tense, practice this deep breathing a few times and you will find the feeling of crisis tide over almost effortlessly. Over time, you will find it easier to cope better with unpleasant situations without getting stressed.
Stress is a natural response to situations we have to face, but the fact remains that a similar situation may leave one individual a mess but another, untouched. What this implies is that how stressed you feel largely depends on the way you choose to respond to a stressful situation. With the right diet, breathing techniques and the use of adaptogenic herbs, it is possible to alter this response and cultivate a positive attitude that will help us face life’s challenges with courage and strength, without losing our cool. 

Comments

Popular posts from this blog

Export Doc,Access,Image,CSV,Excel,Pdf,XML,HTML,Text,Print of Gridview in Asp.net

First import itextsharp.dll in the solution and use three namespces (basically for pdf) using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html.simpleparser;          Then Use the following code :- on each button  click  protected void Page_Load(object sender, EventArgs e)         {             if (!Page.IsPostBack)             {                 BindGridDetails(GridView1);             }         }                 protected DataTable BindGridDetails(GridView GridView1)         {             DataTable dt = new DataTable();             dt.Columns.Add("Student_ID", typeof(Int32));             dt.Columns.Add("Student_Name", typeof(string));             dt.Columns.Add("Education", typeof(string));             dt.Columns.Add("City", typeof(string));             DataRow dtrow = dt.NewRow();             dtrow["Student_ID"] = 1;             dtrow["Student_Name"] = "Musakkhir";   

Ip Sec Internet Security Basic Structure

The IPsec suite is an  open standard . IPsec uses the following  protocols  to perform various functions: Authentication Headers (AH)  provide connectionless  integrity  and data origin  authentication  for IP  datagrams  and provides protection against  replay attacks . Encapsulating Security Payloads (ESP)  provide  confidentiality , data-origin  authentication , connectionless  integrity , an anti-replay service (a form of partial sequence integrity), and limited traffic-flow confidentiality. Security Associations (SA)  provide the bundle of algorithms and data that provide the parameters necessary to AH and/or ESP operations. The  Internet Security Association and Key Management Protocol  (ISAKMP) provides a framework for authentication and key exchange, with actual authenticated keying material provided either by manual configuration with pre-shared keys,  Internet Key Exchange  (IKE and IKEv2),  Kerberized Internet Negotiation of Keys  (KINK), or IPSECKEY  DNS records .

Advent of code 2022 day 22 part 1

  function main(input, input1) {     let grid = input.split( '\n' );     grid.shift();     // only in big input     for ( let i = 0 ; i < 100 ; i++) {         grid[i] = '                                                  ' + grid[i];     }     //console.log(grid[100])     grid = grid.map(x => x.split( '' ))     // find first left top allowed     let temppos = - 1 ;     grid[ 0 ].forEach((element, i) => {         if (temppos == - 1 && element == '.' ) {             temppos = i;         }     });     let initpos = new pos(temppos, 0 )     // console.log(initpos)     // make grid equal shape     let maxlength = 0 ;     grid.forEach(el => {         if (el.length > maxlength) {             maxlength = el.length         }     })     console.log(maxlength)     grid.forEach(el => {         if (el.length < maxlength) {             let diff = maxlength - el.length;             while (diff > 0 ) {                 di