Tuesday, November 13, 2018

Use this Free Sounds Effects without worrying about Licence issues!


Using sounds found over internet can be illegal to use in your projects. Here is one of the best source where you can use the clips free to use without worrying about copyright or licence issues. All the sounds are crystal clear which doesn't really need any sort of editing to them. Here is the link: https://www.freesoundeffects.com/free-sounds/scary-and-horror-10085.

Audio files are available in both MP3 and WAV formats. You could download instantly without any sort of signup or register. There is a play button left to if where you can listen to the preview. Categories have been mention on the left side of the website, click on your choice and scroll through the page, even you could navigate between various result pages.

The best sounds I've felt on this site is, the Scary/Horror, Vehicles, Knocking the door, Ocean waves, Fire crackers, Fire engine, Foot steps, Car door, Old telephone ringing, etc. All are not for free, some sounds are paid on this site, there is a section by name "Pro Sound Effects", which are paid. If you really feel they would help you then go and buy otherwise keep trying for free content over the internet.  

Friday, October 12, 2018

How Google Pay is better than other Wallets!

Google Pay is a digital wallet and online payment system developed by Google. It is primarily used to transfer money between users via UPI. Users need to download, install, register themselves on Google Pay. For UPI transactions, you need to link this Google Pay account with one of your saving bank account, the mobile number linked to bank account and Google Pay registered number should be one in the same. You could set password to open the app and a separate password for all the UPI transactions.

After registration, users can transfer money, send messages to their contacts. You could also earn 51/- on successful referral and it will be 151/- in your wallet if your referral does UPI transaction, they appear in the bottom with name "INVITE A FRIEND". Apart from this you would scratch cards, upon swiping them you get cash back which will be directly credited in to your bank account. Find this in the Rewards of the Promotions section, this section also shows you with the current offers.

Google Pay app shows list of people with whom you've already had successful transactions. You can even link your mobile for making recharges with this app. You can check your bank account balance anytime by clicking on the CHECK BALANCE option. If you wan to check the list of transactions any point of time then click on the "TEZ MODE TRANSACTION", which lists you with all the credits and debits from the begging of time.

On the other hand it is quite dangerous because it can he hacked by anyone in and around as. The app password(4 digit) and the UPI PIN(6 digit) both are numeric and are easy for someone to trace. One must be very careful because all the money from bank account can be stolen in a less than a minute. 

Thursday, August 30, 2018

How to use "in on at" while framing sentences

Let's learn how to use prepositions in, on, and at.

At: At shows us the location of a person or thing.
  1. Am at home
  2. Am at work
  3. Am at theater
In: In shows us something inside.
  1. There are two pens in the draw.
  2. I read an interesting article in the newspaper.
  3. I like action scenes in movies.
On: A thing is top on something.
  1. There is dust on the floor.
  2. Mick-Mouse is my best cartoons on TV.
  3. I like listening to talk shows on radio. 

Wednesday, August 29, 2018

PhonePe support answer on ekyc enable/disable

I've contacted PhonePe care and I got this reply from them.

Thank you for contacting PhonePe!

We understand your concern.

With Regarding your recent query, Ticket No:********, we would like to inform you that on checking your PhonePe account details we see that you have completed your Basic KYC through  PAN_CARD and wallet balance withdrawal are not allowed in Basic KYC.

However, please note that E-KYC (Aadhar card) is disabled temporarily and you will not be able to complete the E-KYC as well, but you can utilize the wallet balance for making P2M transactions (Recharge, BillPay, online/offline Shopping across PhonePe).

We are looking for a permanent solution and the same will be updated soon.

We appreciate your understanding on this.

Please feel free to contact us if you need any clarification.

Tuesday, August 14, 2018

Puma Turkish Sea Casual Backpack Review

This I purchased for 439/- INR and for shipping the site has charged another 100/-INR, so total amount costed me was 539/-INR. I've received the product on next day I ordered and packing was excellent. As soon as I opened and held the backpack in my hand I was little disappointed as the size was a bit smaller than I expected. But the packing, the logo, color, look and feel, the product finishing, and the fresh smell made me happy.
This Puma backpack is ideal for carrying laptop or can be used while travelling. This is the first backpack I've ordered online, earlier I used Lenovo backpack which I got it along with my Lenovo laptop. A couple of days ago near Secunderabad railway station I purchased a backpack which is a duplicate version of the PUMA, anyways the cost of it was only 130/-INR. There is a wide difference between genuine one and the duplicate. For using rough and tough the duplicate one can be used without any second opinion.

This is what you need to know about a Personal Loan!

Personal loans are Unsecured loans which does not require collateral. CIBIL score or Credit score will play key role to get a Personal loan or even a Credit card. TransUnion CIBIL Limited maintains credit files of Individuals and companies.

There are two important terminologies that hits our head when we think of a personal loan. They are
1) Interest rate
2) CIBIL score

Borrowers look out for financial institutions who offer least interest rates whereas lenders disburse loans based on CIBIL score. Low CIBIL score can result in rejections, multiple rejections will further drag down credit score.

Application -> Rejection -> Score down -> Application: This is a dangerous cycle where lenders assume higher risk with this kind of profiles. For a healthy CIBIL score ensure repayment on or before due date which also helps you to avoid late charges. 

Is your company 5 years old?
In case if you're working in a start up/recently established company then the chances of getting a loan is very low. Financial institutions have set some standards before they offer you Personal loans. They are
  • Company you're working in should be 5 years old.
  • Are you at least 1 year old in current company.
  • Type of residence(Owned, Owned by Parents/Siblings, Rented).
  • Your CIBIL score.
  • Your re-payment plays vital role. 
Financial Institutions can be two types:
1) Banks: HDFC, ICICI, IDBI, AXIS, Kotat, SBI etc.
2) Non-banking financial company(NBFC): Muthoot Finance, Bajaj Finserv, Mannapuram Finance etc.

Usually the interest rate vary from 10.99% to 24% per annum. 

Thursday, August 9, 2018

Improvements in out paramenters in C#7.0

There is a slight improvement in calling a method using out parameter in C# 7.0. Instead of declaring variables separately outside we can declare them while calling method itself.

In the two examples below which is colored, you could find the way of using out parameters. 
  class Sample
    {
        public void Cals(int val1, int val2, out int val3, out int val4)
        {
            val3 = val1 + val2;
            val4 = val1 * val2;
        }
        static void Main()
        {
            int m = 100, n = 50;
            Sample S = new Sample();
            int x, y;
            S.Cals(m, n, out x, out y);
            Console.WriteLine("x = "+x + "and y = " + y);
            Console.Read();
        }
    }
  Output:
  x = 150 and y = 5000

    class Sample
    {
        public void Cals(int val1, int val2, out int val3, out int val4)
        {
            val3 = val1 + val2;
            val4 = val1 * val2;
        }
        static void Main()
        {
            int m = 100, n = 50;
            Sample S = new Sample();
            S.Cals(m, n, out int x, out int y);
            Console.WriteLine(x + " " + y);
            Console.Read();
        }
    }
  Output:
  x = 150 and y = 5000

C# 7.0 Tuple example program

A program can return more than one value from a method from C#7.0.

Example 1: 
class Program
    {
        public (int Sum, int Product) Calc(int val1, int val2)
        {
            int val3 = val1 + val2;
            int val4 = val1 * val2;
            return (val3, val4);
        }
        static void Main()
        {
            Program P = new Program();
            var (Sum_Result, Product_Result) = P.Calc(100, 50);
            Console.WriteLine("Sum: " + Sum_Result);
            Console.WriteLine("Product: " + Product_Result);
            Console.Read();
        }
    }

Output:
Sum: 150
Product: 5000

If you notice val3 and val4 of type integer has been returned from Calc method

In the Main method we've captured val3 and val4 values into Sum_Result and Product_Result and printed them as well. .

Example 2:
class Program
{
        public (int Sum, int Product) Calc(int val1, int val2)
        {
            int val3 = val1 + val2;
            int val4 = val1 * val2;
            return (val3, val4);
        }
        static void Main()
        {
            Program P = new Program();
            var var_obj = P.Calc(100, 50);
            Console.WriteLine("Sum: " + var_obj.Sum);
            Console.WriteLine("Product: " + var_obj.Product);
            Console.Read();
        }
 }
Output:
Sum: 150
Product: 5000

In the above example we have created a var obj by name var_obj which calls Calc method using object(P) of the class Program and passed two integer values as well.

Then printed two values using var_obj. 

Friday, August 3, 2018

Optimists Vs Pessimists

Optimists tend to think on a good side of life and have lots of hoping in future. Pessimists have negative opinion towards all the activities they do.

Example with a glass with water filled to the half:

                  Optimists                                        Pessimists

Positive thinking                                                  Negative thinking
Expects positive out of any activity                     Rolls in negativity all the time
An Optimist feels happy to have half filled.        A Pessimist sees a half-empty.

Difference between For, While, and Do-While Loops in Programming

For: When you know how many times a loop should be executed then use "For loop".

While: When you feel condition is important to start a loop then use "While loop".

Do-While: When you want to execute a set of statements before condition is checked for iteration then use Do-While.

Syntax:

for(intialization;Condition;Itteration )
{
 //statements or code
}

while(Condition)
{
 //statements or code
}

do
{
 //statements or code
}while(Condition);

How to write a basic program in Java?

Let's learn basic java program in this article:

public class BasicJavaProgram {

   /* Basic java program.
    * Output will be 'Hello World'
    */

   public static void main(String []args) {
      System.out.println("Hello World");    }
}

Steps to Compile and Run a Java program:

C:\> javac BasicJavaProgram.java
C:\> java BasicJavaProgram
Hello World

We use double forward slash for single line comment and we use /* .. */ for multi-line comment. 

Main Method in Java

In Java, program execution starts from "main method" which is the entry point for the program.

public static void main(String[] args) {
    // code
}

static public void main(String[] args) {
    // code
}

static public void main(String args[]) {
    // code
}

public static void main(String[] Person_Name) {
    // code
}

public static void main(String... London) {
    // code
}

In the main method we can write public or static first but it is mandatory to mention both.

Thursday, August 2, 2018

Virat Kohli 149 in 1st Test(August 2018) against England

Indian skipper and dashing batsman Virat Kohli made century in the first test to make team India a respectable total. Virat ended up scoring 149 runs in this match while all other batsman failed to make big score. He took 225 balls to hit 22 fours and 1 six in this innings.

India made 274 runs in the first innings while England made 287. Ravichandran Ashwin took 4 wickets and Shami took 3 wickets. Right from the beginning this Test match seemed to be interesting and would definitely looked like to have a result.

In the Second innings England bowled out for 180 runs, Ishant Sharma took 5 wickets in style. In reply India managed to put 162 on score board where Kohli scored 51 runs but did not get any support from other batsmen except Hardik Pandya who made 31 runs. Sadly India lost this match to England by 31 runs.

Eng: 287 & 180.
Ind:  274 & 162

Wednesday, August 1, 2018

iSpring Free Cam 8 is a best FREE Screen Recording And Video Editing Software

iSpring Free Cam 8 is the best FREE screen  recording and video editing software available these days. It is very easy to download and install.

Search for iSpring Free Cam 8 in your browser and your search engine lists you with results.

Hopefully 1st or 2nd one willl be iSpring official website, click on it and enter to iSpring website.

On the iSpring website, you will be seen with "Free Tool For Creating Screencasts" on the left and "Get More With iSpring Cam Pro" on the right.

You need to download "Free Tool For Creating Screencasts" which is a free one, for this you need to enter your email adress beside download button, after entering your email id click on "Download Now".

It will display a pop message asking you to check your mail for download URL. Go to your email inbox and click on the URL, it will start downloading your free software.

It will never, ever ask for any serial code or activation code. It is a genuinely free software.

First look  will be like this:


Click on New recording and start your project/tutorial.


You could customize the part of screen for recording by using adjust option on four sides of the box shown in the above image.

Finally click on the red button which is available on the left-down side, it will give you 3..2...1.. numbers/seconds then your recording begins.

To stop recording press ESC key on the keyboard.

To remove noice, click on edit. Select the portion of video that you want to remove noise and click on the remove noise button. You can even adjust volume with the option there in the menu. Once it is done click on Save and Close.

Then click on Save video as, to save video on your Computer. 

Tuesday, July 31, 2018

Mahanati, Bio-pic of Iconic actress Savitri!

Mahanati is a biopic made on life of great Telugu actress Savitri. The movie released on 9th May'18 and achieved great success in both Telugu and Tamil. Keerthy Suresh played Savitri role while Dulquer Salmaan played Gemini Ganesan role in the movie. This is the second film for director Nag Ashwin which he made it a big block buster.

Samantha and Vijay Devarakonda too seen in the movie as Journalist roles gathering information related to Savitri for publishing articles in the news paper. Rajendra Prasad seen as father of Savitri and Prakash Raj appeared in Aluri Chakrapani role. Ashwini Dutt, Swapna Dutt, and Priyanka Dutt produced the film under Vyjayanthi Movies.

Akkineni Naga Chaitanya appeared as Akkineni Nageswara Rao while Mohan Babu appeared as SV Ranga Rao. Director Krish seen involved in K.V. Reddy role while Srinivas Avasarala fit in L.V. Prasad character.

Tuesday, July 24, 2018

K. T. Rama Rao, the dynamic politician of Telangana

K. T. Rama Rao was born on 24th July 1976 holds Master's degree from City University of New York, US. He completed Bachelor's from Nizam College, Hyderabad. KTR married to Shailima and couple have one son and one daughter named Himanshu and Alekhya respectively.
He contested thrice from Siricilla assembly constituency in 2009, 2010(By polls), and 2014 and won all the three times. He has an excellent command over English and speaks fluently in US accent. KTR is currently serving as cabinet minister of Telangana state and holding porfolios such as
  1. Information Technology,
  2. Textiles,
  3. Municipal administration and Urban development, and 
  4. NRI affairs.
KTR played key role in winning 99 seats in 2016 GHMC elections. It is considered to be a historical win for TRS as it was not in a position to contest at all in 2009 GHMC elections. He has very good relationship with telugu actor Mahesh Babu and was seen on TV many times with Super Star. Actress Samantha also one of the good friend of Kalvatuntla Rama Rao. 

Telugu movie Geetha Govindam releasing on 15th August 2018

Geetha Govindam is a romantic-comedy film starred by Vijay Devarakonda, Rashmika Mandanna. This is second film for gorgeous Rashmika after Chalo. This film is directed by Parasuram and produced by Bunny Vas. This film to be released in Telugu and Kannada at the same time.

Releasing in Telugu and Kannada:
Film makers are concentrating to release their movies in other states apart from Andhra Pradesh and Telangana for box office opening collections. Heroine Rashmika is pretty familiar to Kannada audience, hence they've picked her, so that releasing it in that state should give good openings for the film.
Govind Age 25 Virgin in Love: In the trailer, you can definitely notice hero as a romantic guy who is interested in following girls, aunties, and figures. Heroine Rashmika warns him not to do this kind of activity and gives a warning of pouring acid on his face in case he does it. 

Madam, Madam: Hero Vijay Devarakonda is seen following heroine Rashmika by pleasing her Madam several times in the trailer with comedy sound track in the back ground. At the end heroine questions "Would you ever change??" and Vijay replies by saying he's already changed. It is clear that Govind is going to be Vijay name in the movie and Rashmika going to play Geetha role. 

Monday, July 23, 2018

What is inside a Power bank?

Power bank inside: You might have a question that what is inside a power bank. So, this is how it looks inside a power bank. This is a 32000 mAh power bank of a reputed brand sold at rupees 199/- or 3$.                                                 

I observed clay at the bottom to hold chip and battery(not sure what is it called). They were joined by a thin red colored wire.This power bank can charge all mobile brands existing these days, it roughly weighs around 350-400 grams.

Tuesday, July 10, 2018

How to overcome Laziness?

It is a state where you cannot think and do as per your capability. Laziness causes mental and physical disorder if you won't react to it initially. Though it is not a serious disease which can be treated but it requires motivation to overcome.

Focus on important things that you must accomplish. Organise your time properly in a day wise or weekly. Understand what you're thinking inside and change the way you think. Try to set smaller goals initially and work to achieve it.

Consider this is the right time to break the silence inside you and think you can be a successful. Action is required for all your motivations in you. Obviously every step taken is really a beneficial for you.
  • Its directly not a problem or disease.
  • Requires motivation. 
  • Focus on important things.
  • Organize your day properly.
  • Analyse your self-talk.
  • Break the silence, start thinking that you can do.
  • Every step taken is beneficial for you.

Friday, July 6, 2018

Betting in Cricket/IPL to be Legalized in India?

Government is unable to stop betting in sports, especially in Cricket. Though it is gentlemen game, one can bet in various developed and developing countries but not in India. Betting and gambling have huge turnovers, this is the point which attracted government to think of legalizing and imposing taxes on it.




These are the vital points you should know:
  1. It would be only cashless transactions.
  2. Each participant has to update their KYC in order to participate in betting and gambling.
  3. Linking PAN and AADHAR is mandatory.

Here is "en route" meaning!

en route: During the course of a journey or on the way.


This word is used rarely, who are good at English would understand meaning of it, others may feel it a typing error.

Example: Your tasty food is en route. This message you often see on your food apps.

Thursday, July 5, 2018

How to quit smoking and drinking habits!

Seriously smoke and drink are harmful for your body.
  • Initially, drop down the number of times that you're drinking with your friends/colleagues and make it to zero by 2 or 3 months.
  • Start doing this alone.
  • Set a limit then reduce it gradually.
You know how serious smoke can cause. This plan works out very well if you wish to quit smoking.
Should reduce drinking habit as well.

People around you are not fools, they keep observing you and would make comments on your decisions. Greatness of being wise is ignore fools.

Your good friends would encourage doing good and follow you. 

Thursday, June 28, 2018

Redmi 5A specifications

5999/-
Redmi 5A is one of the budget best smart phone available in the market. Physically it is little delicate but no hangings and heating issues at all. 
  1. Memory: 2 GB RAM, 16 GB ROM 
  2. Display: 5 inch HD Display.
  3. Camera: 13 MP and 5 MP respectively.
  4. Battery: 3000 mAh Li-polymer battery(Lasts for 1 day easily).
  5. Processor: Qualcomm Snapdragon 425 Processor. 

6999/-
This is the second variant.
  1. Memory: 3 GB RAM, 32 GB ROM 
  2. Display: 5 inch HD Display.
  3. Camera:13 MP and 5 MP respectively. 
  4. Battery: 3000 mAh Li-polymer battery(Lasts for 1 day easily).
  5. Processor: Qualcomm Snapdragon 425 Processor
Except the memory both the models are almost one in the same. This model is quite close to its prior existing model redmi 5A which is also a successful product. Earlier redmi 5A was sold for 4999/- and priced has been revised and it is equal to redmi 4A. 

It is quite delicate and definitely needs a back case or a pouch. Go for a Tampered glass or Gorilla glass as soon as you buy the device. In few months of usage my phone fell at least 5 to 6 times and but have notice no damages(Tampered glass & Back cover protected it).

Monday, June 25, 2018

Jr.NTR movies list

As a Child artist:
  • Brahmmashri Vishwamatri(1991).
  • Ramayanam(1996).
As a hero:
  • 2001: Ninnu Chudalani
  • 2001: Student number 1
  • 2001: Subbu
  • 2002: Adi
  • 2002: Alari Ramudu
  • 2003: Naaga
  • 2003: Simhadri
  • 2004: Andhrawala
  • 2004: Sambha
  • 2005: Naa Alludu
  • 2005: Narasimhudu
  • 2006: Ashok
  • 2006: Rakhi
  • 2007: Yamadonga(New&Slim appearance)
  • 2008: Kantri
  • 2008: Chintakayala Ravi
  • 2010: Adurs
  • 2010: Brindavanam
  • 2011: Shakti
  • 2011: Oosaravalli
  • 2012: Dammu
  • 2013: Badshah
  • 2013: Ramayya Vastavayya
  • 2014: Rabasa
  • 2015: Temper
  • 2016: Nanna ku prema tho
  • 2016: Janata Garrage
  • 2017: Jai Lava Kusa
  • 2018: Aravinda Sametha Vera Ragava
  • 2019: RRR

Thursday, June 21, 2018

Power Star Pawan Kalyan 25 films list.

  1. 1996: Akkada Ammayi Ikkada Abbai
  2. 1997: Gokulam lo Seeta
  3. 1998: Suswagatham
  4. 1998: Tholi Prema
  5. 1999: Thammudu
  6. 2000: Badri
  7. 2001: Kushi
  8. 2003: Johny
  9. 2004: Gudumba Shankar
  10. 2004: Shankar Dada MBBS
  11. 2005: Balu
  12. 2006: Bangaram
  13. 2006: Annavaram
  14. 2007: Shankar Dada Zindabad
  15. 2008: Jalsah
  16. 2010: Puli
  17. 2011: Teen Mar
  18. 2011: Panja
  19. 2012: Gabar Singh
  20. 2012: Cameraman Ganga tho Rambabu
  21. 2013: Atharintikidaredii
  22. 2015: Gopala Gopala
  23. 2016: Sardar Gabbar Singh
  24. 2017: Katamaraidu
  25. 2018: Agnathavaasi

Wednesday, June 20, 2018

Miss India World 2018 Tamil Nadu - Anukreethy Vas

Event held on19th June 2018 at Sardar Vallabhbhai Patel Indoor Stadium,Mumbai. There were 30 contestants and 19 years old Anukreethy Vas from Tamilnadu has bagged this title. It was a colorful event which made Anukreethy dreams come true.

She had tough fight with:
Gayatri Bhardwaj,
Meenakshi Chaudhary,
Stefy Patel,
Anukreethy Vas,
Shreya Rao Kamavarapu.

Here is the list of judges:
Manushi Chhillar - Miss World '17,
K. L. Rahul - Cricketer,
Irfan Pathan - Cricketer,
Bobby Deol - Actor,
Kunal Kapoor - Actor,
Malaika Arora - Actress,
Gaurav Gupta - Fashion Designer,
Faye D'Souza - Journalist

Tuesday, June 19, 2018

Some facts about Ex PM P. V. Narasimha Rao

Pamulaparti Venkata Narasimha Rao:
He is the First Prime Minister from a non-Hindi speaking region. Born in Laknepalli, Warangal and his parents moved to Vangara village of Karimnagar, when he was 3 years old. PV has good command in Marathi and won Ramtek(Nagpur district, Maharashtra) Lok Sabha constituency twice(1989, 1991).

Master of Indian Languages: 
Apart from being expertise in Sanskrit and Hindi, he was fluent in speaking Oriya, Bengali, Gujarati, Kannada,Tamil and Urdu.

Global Languages:
Other than Indian languages PV can speak English, French, Arabic, Spanish, German and Persian.

Can he get Bharat Ratna:
Many politicians and people want PV to be honoured with Bharat Ratna. First Chief Minister of Telangana Mr. K Chandrashekar Rao and BJP leader Subramanian Swamy are the famous politicians who supported for this purpose.

Decisions as PM:
PV has taken various taken several crucial steps which gave excellent results for the growth of the country in the long run. Foreign Direct Investment in India was introduced in his period itself which made lots of job opportunities for the educated youth. 

Monday, June 18, 2018

Sanju! Bio pic of Bollywood star hero Mr.Sanjay Dutt

Sanju, bio pic of bollywood star hero Sanjany Dutt. It will be in theaters from 28th June'18. Ranbir Kapoor played lead role in the movie. Other lead roles include Paresh Rawal, Manisha Koirala, Dia Mirza, Vicky Kaushal, Sonam Kapoor, Jim Sarbh, and Anushka Sharma. This movie is directed by RajKumar Hirani.


Sanju trailers on Youtube:

Two trailers released so far have crossed 42M and 54M views on youtube. A.R. Rahman and other music directors have given life to this movie. Kar har maidan fateh is the one of the best song of the movie and best song of the year for bollywood.

Drugs:
Sanjay releasing from jail image creating more enthusiasm among fans. Ranbir hair style, the way he waives at media, fans exactly depicts Sanjay. This movie shows how Munna Bhai got addicted to drugs and how it effected his personal and professional life. Definitely it is going to be a block buster for Bollywood and would certainly cross all the existing records.