Monday, November 25, 2013

What are face whitening tips to apply at home?

White and fair glowing skin is a natural aspiration of everyone. For skin whitening, you don`t need to spend a lot of money on fancy and expensive products because you can have fair, attractive and stain free skin simply by following natural skin whitening tips:

1. Coconut oil is really very effective for relieving marks and scars on the face and other body parts. You just need to apply coconut oil daily on spots and scars.
 2. Besan is brilliant flour for great skin. Make its mask by taking two tablespoons of fine gram flour(besan), 2 tablespoon milk cream, 1/2 tablespoon lemon juice and adding a pinch of turmeric powder. Mix all these ingredients to form a fine paste and apply this over the skin evenly. Let it stay on the skin for 10 – 15 minutes to pull out the dirt and sweat off your skin pores. Then rinse off with lukewarm water.
3. Mix 1 tablespoon of milk powder, 1 tablespoon of honey, 1 tablespoon of lemon juice, and half tablespoon of almond oil. Apply on your face and neck and let it stay for 15-20 minutes then wash with lukewarm water.
4. Lime juice is a top natural bleach to lighten your skin tone. Mix 2 tsp of gram flour, 1 pinch of turmeric powder and 1 tsp of lemon juice or yogurt. Now, spread over this mask for 20-25 minutes and let it dry. Scrub off this mask when dried and rinse it.
5. Mix 1 tablespoon oatmeal with 1 tablespoon curd and 1 tablespoon tomato juice and apply on your face and neck. After 15-20 minutes, wash it off with cold water. It helps to remove the brownness and lightens the dark skin.
6. The great skin whitening treatment is to make a paste of barley flour with lemon juice and rose water. Apply it to your wet face and leave it to dry slightly. Wash it off with cold water.
7. Take 1 tablespoon of gram flour, 2 tablespoons of raw milk and half tablespoon of lime juice. Mix them well and apply on your face and neck and let it stays for 15-20 minutes then rinse off with fresh water. This is one of the finest home remedy for lightening dark skin.
8. Almond mask is one of the best and well-loved facial masks. Soak 4-5 almonds overnight and peel them off in the morning. Grind them to make a fine paste and add some honey to make paste think. Now, spread over the paste on your face and neck and let it be there for 10-15 minutes. Then rinse off with lukewarm water.
9. For soft and fair glowing skin take half mashed banana, 1 tablespoon of honey and 2 tablespoons of sour cream. Mix them properly then apply this mixture to your face and neck and allow it to sit for at least 10-15 minutes then clean it with soft and moist cloth and finally wash your face and neck with fresh water.


I hope this will help you.
Thank you!

Saturday, November 16, 2013

What are the improvements in Play Station 4 ?

Sony’s Playstation 4 has been recently released. There are several improvements made in this console than its previous version Playstation 3. The difference is between the graphics mainly and has improved a lot. The hardware used in PS 4 is AMD Jaguar system-on-chip that provides ease to independent developers but it is not backward compatible. The PS3 had a custom cell processor that was not backward compatible with PS2 but could play the games of PS1. But the PS3 cell processor posed greater difficulties for developers in the beginning. The storage space for both PS3 and PS4 is 500 GB that is extendable. The game developers will continue developing games for PS3 along with PS4 that means that for users there would be lots of variety of games with PS3 the only plus point that PS4 will have is the improved graphics. 

The controller of PS4 is the modified Dual Shock controller of PS3. The joystick of the controller has been changed from convex to concave convex for better grip. A touchpad has been added to the top and there are other slight modifications.
The online services for both PS3 and PS4 will remain same. The additional service for PS4 users will be that they will have access to Flixster and the players has to pay for plus subscription who want to play online. The plus subscription fee will allow the users to have access to bunch of free games. The price of PS4 is around 399 Dollars while PS3 is about 299 Dollars.

Friday, November 8, 2013

How to get rid of brittle and peeling nails?

Healthy, natural nails should not peel and they can be an indicator of something wrong internally, if dry brittle or peel a lot. This complaint is mostly found in women with long nails. Several common causes of nail issues include nail fungus, nails chirping, frequent breaking of nails, loose nails, chemical exposure like detergents, soaps, bathroom cleansing liquids, low-quality nail care products, extreme weather conditions , over washing or overexposure to water, unbalanced diet that is low in vital vitamins and minerals, environmental factors, medication or allergy etc. Taking proper care of your nails is essential if you wish for stunning nails. Peeling and discolored nails are not very good-looking and can be a problematic for most of us.

If you want to stop further harms to your nails and get back their healthy, shiny phase you need to provide them with a sufficient treatment to repair their condition and make them look better than ever.  Here are some favorable tips to get peel free nails:

1- Make sure you buy the right nail filer. Most filers are too rough on nails. Start by cutting your nails and then filing them by the uneven side of the file until you get the favorite form. Using the second roughest side, file the slope gently as well as the nail itself. Don’t file too much to avoid making your nails thin. Take the second plane side and file the tip and the nail until you get a smooth surface. When you are done use the softest side to enhance shine to the nail. File your nails once a week to get rid of peeling nails.
2- Moreover, if you wish to make your nails robust, apply nail care products that contain vitamin B.
3- Dark nail polish can cause yellowish nails and stain the nails through pigment transfer. To protect your nails from staining, nail specialists recommended putting on a base coat of olive oil or thin coat of your favorite light color nail polish.
4- Soak your nails into lemon juice for about 8-10 minutes that will immediately bright your nails and remove yellowness.
5- The best way to avoid peeling nails due to chemical contact is to stop using harsh chemical products. Also wash your hand politely, every time you come in contact with chemicals. Consuming a good nail purifier developed by jojoba oil and vitamin E based moisturizer is also beneficial.
6- Don’t expose your hands to water extremely. You can wear rubber gloves while working with water.
7- Have proper and healthy diet by including plenty of fresh fruits and vegetables. Make sure to have low-carb, high-calcium and high-protein foods. Take fish oil capsule regularly.
8- Consult with your doctor if you consider that your peel nails are due to any medication or an allergy.
9- Attempt to retain your nails clean and manicure them at least once in a month.
10-A great home remedy for treating brittle nails is applying a paste made out of fresh lemon juice and honey to your nails. Gently massage the mixture well into your nails and wash it off after 10 minutes.

I hope all these advices will give you valuable results.

Thanks!

Tuesday, November 5, 2013

I need to program stack using doubly linked list in proper separated files, i.e header and cpp file. can anyone here to help me please? i need running code

Here is your full code.

//this is dllist.h file

#ifndef DLLIST_H
#define DLLIST_H
template <class T>
class dLinkedList
{
private:

struct Node
{
double value;
Node *next;
Node *prev;
};

Node *head;
public:

dLinkedList() //constructor
{
head = NULL;
}
//~DoublyLinkedList(); //destructor (deletes links)
void insertFirst(T); //insert at front of list
void insertLast(T); //insert at end of list
void removeFirst(); //remove first link
void removeLast(); //remove last link
void displayList(); // display List items
};
template <class T>
void dLinkedList<T>::insertFirst(T d)
{
Node *newNode;

newNode = new Node;
newNode->value = d;
newNode->next = NULL;
newNode->prev = NULL;

if(head == NULL)
{
head = newNode;
}
else
{
newNode->next = head;
head->prev = newNode;
head = newNode;
}
}
template <class T>
void dLinkedList<T>::displayList()
{
Node *nodePtr;

if(head == NULL)
cout<<"List is Empty \n";
else
{
nodePtr = head;
cout<<"\nList is : ";
while(nodePtr)
{
cout<<nodePtr->value<<" ";
nodePtr = nodePtr->next;
}
}
}
template <class T>
void dLinkedList<T>::insertLast(T d)
{
Node *newNode, *nodePtr;

newNode = new Node;
newNode->value = d;
newNode->next = NULL;
newNode->prev = NULL;

if(head == NULL)
{
head = newNode;
}
else
{
nodePtr = head;
while (nodePtr -> next)
{
nodePtr = nodePtr -> next;
}
nodePtr -> next = newNode;
newNode -> prev = nodePtr -> next;
newNode -> next = NULL;
cout << endl;
}
}
template <class T>
void dLinkedList<T> :: removeFirst ()
{
Node *node, *nodePtr;
if (!head)
{
cout << "List is Empty" << endl;
return;
}
else
{
node = head;
nodePtr = node -> next;
delete node;
head = nodePtr;
nodePtr ->prev = NULL;
}
}
template <class T>
void dLinkedList<T>:: removeLast()
{
Node *node, *nodePtr;
if (!head)
{
cout <<"List Is Empty" << endl;
return;
}
else
{
node = head;
nodePtr = head;
while (node -> next != NULL)
{
nodePtr = node;
node = node -> next;
}
delete node;
nodePtr -> next = NULL;
}
}
#endif

//here is stack.h file

#ifndef STACK_H
#define STACK_H
#include"dllist.h"
const int SIZE=4;
template <class T>
class stack
{
private:

struct Node
{
double data;
Node *next;
};

Node *Top;
int length;

public:
dLinkedList<int> dll;

stack()
{
Top = NULL;
length = 0;
}

void push(T);
void display();
void pop();
bool isEmpty()
{
if(Top == NULL && length == 0)
return 1;
else
return 0;
}
bool isFull()
{
if(length == SIZE)
return 1;
else
return 0;
}

};
template <class T>
void stack<T>::push(T d)
{
if(isFull())
{
cout<<"Stack is Full";
}
else
{
dll.insertLast(d);
length++;

}
}
template <class T>
void stack<T>::display()
{
cout<<endl;
if(isEmpty())
cout<<"Stack is empty";
else
{
dll.displayList();

    }

}
template <class T>
void stack<T>::pop()
{
dll.removeFirst();
length--;
}

#endif

//this is main program demonstrating its functionality

#include<iostream.h>
#include"stack.h"
#include"dllist.h"
void main()
{
stack<int> st;
int choice;
while(choice!=4)
{
cout<<"\n1 Push\n2 Pop\n3 Display\n4 Exit\n Enter your choice : ";
cin>>choice;

switch(choice)
{
case 1:
{
if(st.isFull())
{
cout<<"\nStack Is Full\n";
break;
}
else
{
int value;
cout<<"Enter the new value to be pushed on the stack : ";
cin>>value;
st.push(value);
}
}
break;
case 2:
{
if(st.isEmpty())
{
cout<<"\nStack Is Empty !!\n";
break;
}
else
st.pop();
}
break;
case 3:
{
st.display();
}
break;
case 4:
break;
default:
cout<<"\nWrong Entery Enter Again !!\n";
}
}

}
this is running code. i hope you like it

Friday, October 25, 2013

Is a hydrogen fuel cell car better in terms of emissions better or an electric car

The common thing in operation of electric car and hydrogen fuel cell car is the absence of a internal combustion engine that is used to drive a conventional vehicle. A hydrogen fuel cell car is also a kind of electric car. It runs also on an electric motor, but instead of a battery, a hydrogen fuel cell car has contains a hydrogen fuel cell that takes hydrogen and generates electricity from it while the car is running.
The electric and hydrogen fuel cell cars doesn't pollute the atmosphere as no fossil fuels are burnt in its operation. These are therefore referred as very green form of transportation.The actual fact is that these vehicles don't produce pollution at the tailpipe. But as we all know that electricity and hydrogen is produced
by some process in the power generation industry that also uses fossil fuels. The majority of the power is generated using fossil fuel sources. This will cause the same amount of pollution that is to be avoided by using
an electric car to avoid fossil fuels. The hydrogen for the fuel cell vehicle will most likely be produced in the future by electrolysis, which involves passing electricity through water. And that electricity will come from the same potentially polluting sources as the electricity used to charge the electric car's batteries.

To make electric cars and hydrogen fuel cell cars non-polluting forms of transportation requires to move away from methods of producing electricity that burn fossil fuels. Instead of burning coal to generate electricity, we'll need to concentrate on environmentally clean methods like hydropower, solar power, wind power and nuclear power, which produce little or no polluting emissions. When the day comes that most of our electricity comes from these sources, the electric car and the hydrogen fuel cell car will both be nearly perfect forms of green, non-polluting transportation.

Wednesday, October 23, 2013

Why is Toyota Recalling millions of car manufactured after 2012 ?

The reason for recalling millions of cars by Toyota is the malfunctioning of the airbags system accidentally due to spider webs due to short circuiting that can cause the drivers to lose control and face a severe accident.
The basic problem is identified in the air conditioning condenser unit housing, which can get warm and is damp. Such an environment is ideal for spider habitat. The sticky webs developed by spiders could cause a blockage,the blockage causes water to drip down into the airbag control module, which short circuits and can lead to a worrying warning light to display on the dashboard, or more seriously, cause the airbag to inflate suddenly as well as cut the power steering of the car.Toyota has also warned that there is even a risk of complete loss of power steering.
Toyota is also sort out a solution of the problem that can be done by the owners of the vehicles and also the dealers. They simply need to apply sealant and install a cover to the air conditioning condenser unit housing seam located above the airbag control module.Toyota has recalled Camrys, Venzas and Avalons that were manufactured after 2012.




Monday, October 21, 2013

I need to produce output like this. in first line there should be 1 esoteric (*), in 2nd line 3 esoteric (***), in 3rd line 5 esoteric (*****), in 4th line 7 esoteric (*******), and then decreasing to 5, 3 and 1 esoteric in c++.

i think you need output like this.
*
***
*****
*******
*****
***

*
here is its c++ code.

#include <iostream>
using namespace std;

void main()
{
int row,star,star2;
for(row=1;row<=7;row++)
{
    if(row<=4)
                {             
                for(star=1;star<=2*row-1;star++)
                   {
                      cout<<"*";
                   }
                }
   if(row>=5)
                {
           for(star2=1;star2<=15-2*row;star2++)
                 {
                   cout<<"*";
                  }
               }

 cout<<endl;

}
}

it is just easy to understand , i hope you will learn it.