Sidebar Ads

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, March 20, 2020

Hair fall solution

Hey guys,

In today's life, there are many people who have hair fall problems, I also had the same problem and I was literally tedious and in so tense.

what you should do,
      1) Do not wash your hair so frequently, you can wash twice in a week after doing massage of oil only because the hairs get defected by water if u washes often.
   
      2)Try to eat raw fruits and vegetables more than cooked because it has more vitamins compared to cooking.

      3)If your hair falls without any physical force then this happens due to weak and lessness of iron in your body, so to increase iron you need to eat curds, milk, and more beaten rice.

      4)For strong hair, you need to often eat dry foods(mostly almonds, sweet potato, gooseberry(Amla), eggs, Non-veg(take as much as you can), etc.








      5)And if possible then please try to avoid chemical-based shampoos and oils it's so bad for your hairs, try to keep herb shampoos and oil. do oil massage twice in the week which is the best period for hair growth and reduction of hair fall.

     6)The biggest troubleshoot for hair fall which I could guarantee is, if possible then make your hair totally bald for once. Trust me there is no better solution I could find so far, I know this is so critical decision but believe me, it's so impacting as well, I also did it after getting so troubled due to it.
     

Tuesday, March 17, 2020

Coronavirus novel covid-19 (Protection)

How to stay protective from corona covid-19 virus disease, Follow the steps given below,

Steps:

  1) Always stay away from the person who is the victim of cough, sneezing.

  2) If you found a breathing problem in a person kindly take him to the hospital nearby.

  3) Always cover your mouth and nose with masks.

  4) If you feeling bothers of your neck, if you feel coughing in your neck kindly start to gargle of salty hot water, this will directly will kill the virus in your neck and you will get safe from a victim of corona disease.

5) Avoid staying in public areas, and don't make handshakes with people.

6) Avoid touching nose, mouth, and eyes.

 Coronaviruses (CoV) are a large family of viruses that cause illness ranging from the common cold to more severe diseases such as Middle East Respiratory Syndrome (MERS-CoV) and Severe Acute Respiratory Syndrome (SARS-CoV).

Coronavirus disease (COVID-19) is a new strain that was discovered in 2019 and has not been previously identified in humans.



Thanks for visiting.

Gvim editor for window and linux

For Linux in centos, Redhat,
  
 Open your Terminal and go to root host, You can shift to root by simply typing sudo, But in some cases that can be su , so go accordingly.

Then you have to type below command,
 
                        yum install gvim 

Make sure your system should be connected to the internet.

Now for window you have to go through below link and download it,

                           https://gvim.en.softonic.com/

Thank you for visiting.

Monday, March 16, 2020

Calculator using perl script

Hello everyone, Today I will show you how to make a simple program to make a calculator using perl script,

#!/usr/bin/perl
use strict;
use warnings;
use v5.14;         #/ To use say function instead of print.
use feature "switch"; #/ To use switch function as we used in c language.
while(1)  #/To make this calculator function often working, In this way a user could use it as much as they want and when they want they could exit by pressing @, because @ is the sign which used to exit while loop as shown in below code.
{
say"(1)Press (@) to exit!!\n(2)Press (+) to add numbers!!\n(3)Press (-) to substract numbers!!\n(4)Press (/) to divide numbers!!\n(5)Press (*) to multiply numbers!!\n(6)Press (%) to find percentage of number!!\n(7)Press (^) to find power of numbers!!";
my $func=<>;       
chomp($func); #/Whenever we take user input we need to use chomp/chop function to remove new line character.
given($func)
{
when("@"){exit;} #/Here we use when as we used case in c language.
when("+"){say"Enter two numbers that you want to add!!";
          my $x=<>;
          chomp($x);
          my $y=<>;
          chomp($y);
          my $z=$x+$y;
          say"The sum is $z\n";}
when("-"){say"Enter two numbers that you want to substract!!";
          my $x=<>;
          chomp($x);
          my $y=<>;
          chomp($y);
          my $z=$x-$y;
          say"The substraction is $z\n";}
when("/"){say"Enter two numbers that you want to divide!!";
          my $x=<>;
          chomp($x);
          my $y=<>;
          chomp($y);
          if($x>$y){my $z=$x/$y;
                    say"The div is $z\n";}
           else{say"Error\n";}}
when("*"){say"Enter two numbers that you want to multiply!!";
          my $x=<>;
          chomp($x);
          my $y=<>;
          chomp($y);
          my $z=$x*$y;
          say"Mul is $z\n";}
when("%"){say"Enter number you got from total number!!";
          my $x=<>;
          chomp($x);
          say"Enter total number!!";
          my $y=<>;
          chomp($y);
          if($y>$x){my $z=$x*100.0/$y;
          say"The percent is $z%\n";}
          else{say"Error\n";}}
when("^"){say"Enter a number!!";
          my $x=<>;
          chomp($x);
          say"Enter a power of number!!";
          my $y=<>;
          chomp($y);
          my $z=$x**$y;
          say"$x^$y is equal to $z\n";
}
}
}





Thank you for visiting

Vim editor(color scheme)

Hello everyone, Today I will explain to you how to set numbers and your desire color scheme background permanently on Vim editor for Linux.

First of all, you have to open your terminal and you have to type the command " locate vimrc  " 



Now, you have to turn your host into root host, In some Linux systems you have to type sudo , but in my case the system supports su.


  Then, after shifting in root host you have to do the following tasks shown below.

 1) First, find the file location of vimrc (In my case it is /etc/vimrc)
 and then type the highlighted command "vim /etc/vimrc" as shown in below image.



So, It will open below the screen, and then you have to type
-> set numbers
-> colorscheme desert

I have selected desert background because I prefer that colorscheme, so you have to type above commands into vim screen of  /etc/vimrc, and that should be in sequence of  "set".
It shown in below the image,

     And then you have to save and exit through  (:wq)     
    It's done....
 
    Now , you can enjoy your desire colorscheme and set numbers permanently in vim editor.

                                        Thank you for visiting