Skip to main content

Vocab - 73

1.       Numb (adj): If a part of your body is numb, you are unable to feel it, usually for a short time.

E.g: I had been lying awkwardly and my leg had gone numb.

2.       Indispensable (adj): It is a strong adjective for something that you couldn’t do without. If you have asthma and you’re packing for summer vacation, your inhaler is indispensable, unless you enjoy gasping on the beach.

Something or someone that is indispensable is so good or important that you could not manage without them.

E.g: This book is an indispensable resource for researchers.

3.       Prattle (v): To talk in a silly way or like a child for a long time about things that are not important or without saying anything important.

E.g: If you won’t stop prattling I will call mom and tell everything.

4.       Squalid (adj): (of places) extremely dirty and disgusting, often because of lack of money. Squalid things appear neglected, or morally repulsive in nature, like a frat house after a semester of hard partying and zero cleanup. Squalid behavior is dirty, too, like cheating and lying about it.

E.g: Many prisons, even today, are overcrowded and squalid places.

5.       Grammy (n): In the US, one of a set of prizes given each year to people involved in different areas of the music industry.
E.g: She’s won five grammys.

6.       Imbecile (n): If your best friend calls you an imbecile, he’s implying that you’re stupid, and he’s probably angry with you. An imbecile is an extremely stupid.

The noun imbecile is used informally as an insult to mean “fool”. Its origins are in the Latin word imbecile, “weak or feeble”, and it was an official medical term for people with a specific (and low) I.Q in the 19th century and early 20th centuries. Patients who were classified as imbeciles were said to have no more intelligence than a seven year-old-child.

7.       Corpulent (adj): It is a formal word that describes a fat person. If you are trying to be respectful when describing a fat man, you might refer to him as a corpulent gentleman.

There are certainly many other ways to describe a fat person: obese, overweight, and stout are only a few.

8.       Deflate (v): If something which has air or gas inside it deflates, or is deflated, it becomes smaller because it loses the air or gas.

E.g: Few boys made a plan to deflate my right side tyre of car.

9.       Crease (n): A line on cloth or paper where it has been folded or crushed.

E.g: He ironed a crease down the front of each trouser leg.

10.   Leisure (n): It is time off, spare time, sweet sweet freedom from the demands of work. It’s like playtime for grown-ups.

Leisure is a time away from commitments like work or school. In short, the time when you are not working or doing other duties.

E.g: Most people only have a limited amount of leisure time.

11.   Strain (v): To separate liquid food from solid food, especially by pouring it through a utensil with small holes in it.

E.g: I usually strain the juice off the pineapple and use it in another recipe.

12.   Mingle (v): To mix or combine, or be mixed or combined.

E.g: The excitement of starting a new job is always mingled with a certain apprehension.

13.   Pierce (v): If something pokes your hand, you will probably look at your hand to see if it pierced the skin. To pierce means to go right through, especially with something sharp.

Pierce has several meanings, but they all involve something sharp penetrating something else, like scissors through a plastic bag or a pen through a pocket. You can also pierce confusion by saying something that makes everything clear.

14.   Prick (v): To make a very small hole or holes in the surface of something, sometimes in a way which causes pain.

E.g: She pricked the balloon with a pin and it burst with a loud bang.

15.   Weary (adj): Very tired, especially after working hard for a long time.

E.g: I think he is a little weary after his long journey.



Compiled By: Chaudhary Amit V.

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...