Skip to main content

6 natural remedies for itchy skin

An itch is something that most people find hard to resist; there’s nothing that gives as much relief as scratching an itchy spot. Unfortunately, the relief does not last for long and soon, you find your skin begin to smart and if you’ve been quite rough, the skin may break, too. An itch is actually one of the body’s defense mechanisms against unpleasant irritants but if you make a habit of scratching, it can cause a lot of discomfort. Here are a few natural remedies you can try using materials available in your kitchen to relieve itching.
Coconut oilCoconut oil
Yes, your mother was indeed right when she said that coconut oil is good for itchy skin. Whether due to dry skin or an insect bite, whatever the cause of the itch, coconut oil can work wonders. The best way to use it is to rub a little coconut oil directly onto the affected area. If you suffer from a widespread itch all over the body especially during the winter, soak in a bathtub of lukewarm water; then just pat yourself dry and apply the oil all over. Coconut is also very effective in beating common ailments like mouth ulcers. Find out how. 
Petrolium jellyPetroleum Jelly
If your skin is of the sensitive type, the best remedy is petroleum jelly. It does not contain any harmful chemicals and by its very nature, has a smoothening action on the skin. Therefore, it not just relieves your itch, but it also ensures the skin irritation becomes less. Best of all, it is safe as well as inexpensive and so you don’t have to worry about how often you apply it. Petrolium jelly can also give you very soft and supply hands, instantly. Here is how.
LemonLemon
With a rich content of vitamin C and bleaching properties, lemons are one of the best remedies for itchy skin. The volatile oil in lemon has the ability to numb sensations and is also good against inflammation. Simply cut a lemon in two and squeeze out a little juice over the itchy area; allow to air dry and you’ll soon find some relief. Have a skin problem? Lemons can help with that too. Here is how. 
baking sodaBaking Soda
An itch restricted to a small area can be managed with baking soda. All you need to do is add 1 part of water to three parts of baking soda to make a paste; then apply this paste to the itchy area. However, don’t use this remedy if the skin is broken. If the itch is spread all over the body, add a cup of baking soda into a tubful of lukewarm water and soak in it for half an hour; then dry in air.
TulsiTulsi
Tulsi leaves are rich in thymol, eugenol and camphor and these have the ability to reduce irritation of the skin. Just wash a few leaves and rub them over the affected area. Or prepare a tea by boiling a few leaves in water in a covered utensil; then dip a cotton ball or cloth into the tea and apply to the itchy skin. Tulsi or  Holy Basil has a number of other benefits for your body. Find out more about them.
Apple cider vinegar Apple Cider Vinegar
Many people use vinegar on the scalp for dandruff; by the same logic, it works well for itchy skin, too. It has a good antiseptic and antifungal action and this makes it a good anti-itching agent. Dip a cotton ball or cloth in a little apple cider vinegar and dab on the itchy area. Or if you feel a general itchy sensation all over the body, add a cupful into your bath water. Apart from beating itchy skin, apple cider vinegar is also a gret remedy for dandruff. Here is how it helps. 
aloe veraAloe Vera
With all its moisturizing action, aloe vera is one of the most effective skin smoothening agents. When you rub the gel over an itchy spot, it helps reduce the skin irritation in that area and provides quick relief from itching. Just break a leaf from the plant, cut it lengthwise using a knife and using a spoon, scoop out the jelly-like substance inside. Apply a little of this gel to the itchy area and leave it on for a few minutes. Aloe vera is also a great remedy for all skin ailments. Here is how it helps.
When you suffer from itchy skin, try these home remedies instead of scratching yourself and you will find the itch soon subsides on its own. However, if you find that the use of these substances is not giving you relief, you may need to find out what is causing the itch. Allergy to certain clothing made of synthetic material or a food allergy may sometimes set off symptoms of itching. But if there is a change in colour of the itchy area or if you find the skin developing scars or a shiny surface or if the itching is so severe it intrudes on your sleep, please ensure you see a doctor to get a professional opinion and the right treatment.

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