Saturday, September 02, 2023

How to cure dry eyes

Dry Eyes is a problem due to which the eyes do not get proper tears for lubrication which is a mixture of water + fatty acids + salt + mucus. Its a complex gel which keeps the eyes hydrated and lubricated for proper functioning.

Not having proper tears is common nowadays due to more screen time as the person does not blink the eyes.

Not blinking the eyes leads to the jamming of the tear ducts in our eye lids which blocks the flow of tear gel into our eyes.

I'm a patient of dry eyes for the past 15 years and it went on deteriorating over time. Nothing helped me in curing the dry eyes. Doctors only suggested for artificial tears(Carboxymethyl cellulose sodium) which relieved the eye pain for sometime but it did not help in curing the dry eyes in anyway.

The only way I could cure my dry eyes was with homeopathic medicines. It took around 4 months time to cure and during that time I did not do any screen time (1 minute max at a time).

Take these medicines for atleast 3-4 months time before which there would be NO results.
Homeopathic medicines are always safe without any side effects.
If you want you can consult any homeopathic doctor for suggestions.

The medicines that are to be taken orally -

nux moschata     200C - 2 drops directly on tongue - 2times daily

Belladonna 30C - 4 drops in 1/4 cup of water - 4 times daily

alumina 30C  - 4 drops in 1/4 cup of water - 4 times daily(atleast after 3 hours gap)

calcarea fluorica 6x - 4 tablets (not to be chewed but to be kept in mouth to dissolve with saliva) - 4 times daily

natrum mur 6x - 4 tablets (not to be chewed but to be kept in mouth to dissolve with saliva) - 4 times daily

argentum nitricum 200C - 2 drops in 1/4 cup of water - 2 times daily

sanicula europaea 200C - 2 drops in 1/4 cup of water - 2 times daily.

sulphur 30C - 4 drops in 1/4 cup of water - 4 times daily

euphrasia offcinallis  30C - 4 drops in 1/4 cup of water - 4 times daily

ferrum phos 6x -  4 tablets (not to be chewed but to be kept in mouth to dissolve with saliva) - 4 times daily

Arsenic Album 30C - 4 drops in 1/4 cup of water - 1 time daily in or around mornings

Senega Q(mother tincture) - 15 drops in 1/4 cup of water - 3 times daily

you can also take the below medicines for faster revival but as such not much required

bryonia 200 - 2 drops directly in mouth or 1/4 cup of water - 2 times daily

opium 200C - 2 drops directly in mouth or 1/4 cup of water - 2 times daily


Also a rich source for Vitamin A is required which you can get in multivitamin tablets from any pharmacy (see for amount of vitmain A in the box)

Rich source of Omega 3 fatty acids are required which you can also get from any pharmacy with Omega 3 tablets or you can get from mustard oil. The pure mustard oil have a pungent smell.

Rich source for Sulphur is required which you can get from lemons.

Also use Cineria Maritima (without alcohol) eye drops but not at the time of pain in the eyes. Use it when you do not have pain in the eyes. During pain in the eyes use the artificial tears which you normally use

Euphrasia offcinallis is to be taken orally which helps reducing pain in the eyes. Use it more often(every 1 hour) if you have pain in the eyes.

Belladonna can also be frequented every 2 hours during pain in the eyes or Belladonna 200C can be used.

Hope this helps and please comment below... 

Wednesday, October 26, 2022

Wednesday, October 19, 2022

search with mongodb regex with boolean operations

 Search text with mongodb regex with boolean operations

https://www.mycompiler.io/view/DK9xGoUmf0d


db.students.insertMany([

  { id: 1, name: 'Ryan', gender: 'M' },

 { id: 2, name: 'Joanna', gender: 'F' },

 { id: 1, name: 'Test Ryan', gender: 'M' },

{ id: 1, name: 'this C++ test', gender: 'M' }

]);


{ out : "\nStart with word test" };


db.students.find({ name: {

    "$regex": /^jo/i

  } });

 

db.students.find({ name: {

    "$regex": /^Ryan$/

  } });

 

db.students.find({ name: {

    "$regex": /^Rya$/

  } });

 

{ out : "\nc++ test" };


db.students.find({ name: {

    "$regex": /c\+\+/i

  } });


{ out : "\nand operator test" };

db.students.find({ name: {

    "$regex": "(?=.*this)(?=.*test)"

  } });

 


{ out : "\nand operator test ignore case" };

db.students.find({ name: {

    "$regex": /((?=.*This)(?=.*Test))/i

  } });


{ out : "\nor test" };

db.students.find({ name: {

    "$regex": /(this | tost)/i

  } });

 


db.students.find({ name: {

    "$regex": /(^test | tost)/i

  } });

 

{ out : "\nand with c++ test" };


db.students.find({ name: {

    "$regex": /(c\+\+) (?=.*Test)/i

  } });


Monday, August 09, 2021

Thursday, December 13, 2018

Friday, June 24, 2016

natural and easy way to cure duodenitis

How to get rid of duodenitis?

I was suffering from duodenitis for 9 years. My body had turned into a living corpse and after taking meals I had long sessions of gastric problems specifically burping.

There are no allopathic medicines for duodenitis. I used homeopathic medicine and they cured my duodenitis upto 95%. The homeopathic medicines are -

antimonium crudum 30C
natrum phos 6x or 30C
lycopodium 30C
Kali Bichrome 30C
Graphites 200C
Carbo Veg 30C
uranium nitricum 30C
sulphur 20C
Phosphorus 30C
Baptisia Tinctoria -Mother Tincture
Hydrastis Canadensis -Mother Tincture

Also simply workout more. It is 10 minutes of cardio and more of weight training for 30-60 mins in a day.

I started doing cardio and weight training at the Gym.  It was very difficult for my so very weak body to do weight training but i could manage it slowly within 1-2 weeks of normal exercises. This solved my gastric problems upto 95% and now I am following doing workouts every day in and out.

Thanks for reading and do try it out regularly for atleast 1 month. I suggest please join any Gym or workout and weight training instructor.

Please share your ideas and experiences in the comments.


nvoids.com

Monday, July 06, 2015

RigidBody not available in Unity5

RigidBody is replaced in Unity5 with GetComponent ()

A sample code below -

   private Vector3 input;
   void Update() {
       input = new Vector3 (Input.GetAxis("Horizontal"),0,                  Input.GetAxis("Vertical")  );

       GetComponent ().AddForce (input * moveSpeed);
    }


nvoids.in

blog.nvoids.in