Skip to main content

Benefits of haldi for flawless skin

Turmeric or haldi is one of India’s most widely used spices. Not only is it used to add colour and taste to our food but is also a natural remedy for various skin ailments. It is also a part of Hindu rituals. One of the most important ceremonies of Hindu weddings is the haldiceremony where a paste made of turmeric is applied to the bride and the groom’s body and face to make their skin glowing for the wedding. Here are some benefits of turmeric that you can use to help with common beauty problems and get flawless looking skin.  
Ageing
Turmeric is an excellent exfoliating agent and can help you defeat the signs of ageing. Take besan (gram flour) and turmeric powder in equal proportions and prepare a paste by adding water. You may alternatively prepare this paste in raw milk or even yoghurt. Apply it evenly on your body and leave it till it dries off. Wash it off with lukewarm water and scrub your face gently in circular motion. 
Wrinkles
You can use turmeric in combination with other ingredients to manage your wrinkle woes. Add raw milk and tomato juice to rice powder and turmeric powder. Apply the paste and let it stay until it dries. The lactic acid present in milk will help peel off the dead skin cells.
Acne
Not only does turmeric take care of scars and inflammation but also reduces oil secretion by sebaceous glands.
  • To prepare a turmeric scrub, add a few drops of water and lemon juice to turmeric powder. Apply the paste on the acne and leave it for about 15 minutes. Gently scrub it off your face with plain water.
  • You can also use turmeric and sandalwood mixture as an acne face pack and wash it off in approximately 10 minutes.
  • For acne scars, dab a mixture of turmeric and plain water and leave it on the marks for 15 minutes.
  • To control oil secretion, prepare a paste of sandalwood powder and ground turmeric with orange juice. Leave the paste on your face for 10 minutes and then wash it with lukewarm water. 
Stretch marks
A mixture of besan (gram flour) and turmeric in yoghurt/raw milk/water can help lighten stretch marks. 
Burns
In case you accidently burn your skin, you can turn to turmeric for quick relief owing to its antiseptic properties. Prepare a mixture of turmeric and aloe vera gel. Apply it on the burn and notice how it heals the wound in no time. 
Cracked heels
Apply a mixture of coconut oil/castor oil and turmeric powder on cracked heels preferably 15 minutes before you head to take a bath. It will help heal cracks.
These were some of the many skin benefits of turmeric that can give you flawless skin, the natural way.

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