Scoop Smart

  • Home
  • Marketing
  • Technology
  • Travel
  • Health
  • Fashion
  • Food
  • About Us
  • Contact Us

Saturday, 14 January 2017

6 Ways To Remove Blackheads Naturally at Home

 Admin     09:36     Health     No comments   



What are blackheads?
Blackheads are the first symptom of acne, it occurs when the skin pores become blocked by the oil and dead skin. When the pores of the skin are open the dead skin oxidized when it comes to contact with oxygen and it becomes black so called as blackheads. Whereas, when pores of the skin are closed it becomes whiteheads.
Here are the 10 ways to remove blackheads naturally
  1. Lemon Juice:-
Lemon contains the high amount of citrus acid which helps to get rid of dead skin, and it also helps to enrich the skin health.
  • Take 1 tablespoon of lemon juice in a bowl apply it into the blackheads with the help of cotton.
  • Then wash it after 10 mins with lukewarm water
  • Repeat this process twice in a week to get the quicker results

  1. Milk & Honey:-
Honey demolish the bacteria from the skin because of its antiseptic property. Honey is the best home remedy for the treatment of blackheads.
Whereas milk has the property to soften the skin because of the lactic acid present in it.
  • Mix 1 tablespoon of raw milk and 1 tablespoon of honey in the bowl. Heat it for 5 to 10 seconds.
  • Mix it properly and they apply it over the blackheads
  • Stroke a dry strip of cloth over it.
  • After 10-20 minutes when it becomes dry peel the strip off carefully.

  1. Tomatoes:-
Tomatoes also includes the property of antiseptic. Its property aids to open up the pores of the skin.
  • Take 1 tablespoon of tomato juice.Apply it gently over the blackheads.
  • Wait  for 10 to 20 mins until it becomes dry. Then wash it off with lukewarm water
  1. Potatoes:-
Potatoes are also best home remedy to get rid of blackheads naturally
  • Grate the potatoes, then apply it over the blackheads affected area
  • Wash it with lukewarm water after 10- 20 minutes
  • You can use this treatment method daily to get the faster results

  1. Bentonite Clay:-
Bentonite clay is very rich in minerals. Its curative property toned the skin. It also helps to extract out oil and dirt from the skin.
  • Mix 1 tablespoon of bentonite clay with rose water, apply it with a clean fingertip on the blackheads.
  • Keep it like this for 10 to 20 minutes. Let it dry then wash it off
  • You can repeat this process thrice in a week to get good results.

  1. Aloe Vera:-
Aloe vera is really excellent home remedy to remove blackheads.
  • Slice the aloe vera leaf and take out its gel in one bowl
  • Apply it over the blackheads
  • Wash it off when it becomes dry
  • You can apply aloe vera daily
I hope that this article will help you to get relieve from blackheads. Share your views in the comments.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, 31 December 2016

Learn How to Create Facebook Messenger Bot in 5 Steps

 Admin     10:25     Technology     No comments   

First of all, what are Chatbots?

Chat bots are computer programs that mimic conversation with people using artificial intelligence. They can transform the way you interact with the internet from a series of self-initiated tasks to a quasi-conversation.(Source)

These chatbots can be very Beneficial for your business.
It can help you to create the personalized experience for your business without hiring additional staff.

If you have Facebook Business Page you can easily integrate bot messenger to your page, or here you can learn how to create Facebook Business Page (How to Create a Facebook Business Page in 5 Simple Steps).

You can develop facebook messenger bot in any language like PHP, Python, Android etc.

I am assuming that you have a Facebook Business Page.

Step-1 Creating Facebook App
  • To create facebook app go to this link https://developers.facebook.com/apps to create a developers account, if you already have developers account then just login to that account.



  • Click register now to create developer account.



  • Now select the platform in which you want to create the Facebook messenger. Here i am selecting Android platform.


  • After selecting platform you have to create a New App ID. Now fill the required information like Display Name, Contact Email & Category.





  • Then filling the captcha you will be redirected to your app dashboard.



Step-2 Page Access Token

  • Now in the left sidebar click on “Add Products” then click on “Messenger”. Then you will redirect to the page like this:



  • To get your Page access token “Select a Page” to generate page access token



Step-3 Set Up Webhooks

  • Now our next step is to create Webhooks
In the Webhooks section click on “setup Webhooks”


  • To setup your webhooks facebook ask you to call back URL, you can’t use localhost while developing facebook chat bot messenger or you can use any free tunneling tools.


  • Now add your callback URL, Verify Token can be any string and checked the subscription fields.

  • In your webhook URL, you have to add code for verification  to verify token.


This is the sample code for Javascript.

app.get('/webhook', function(req, res) {
 if (req.query['hub.mode'] === 'subscribe' &&
     req.query['hub.verify_token'] === <VERIFY_TOKEN>) {
   console.log("Validating webhook");
   res.status(200).send(req.query['hub.challenge']);
 } else {
   console.error("Failed validation. Make sure the validation tokens match.");
   res.sendStatus(403);          
 }  
});
  • After adding code in your webhook URL click “Verify and Save”. Then you will see like this.



Step-4 Receiving Message

Now we have to receive the messages we need to make POST calls to Facebook webhooks and all callback will be made to this webhook.

app.post('/webhook', function (req, res) {
 var data = req.body;
 // Make sure this is a page subscription
 if (data.object === 'page') {
   // Iterate over each entry - there may be multiple if batched
   data.entry.forEach(function(entry) {
     var pageID = entry.id;
     var timeOfEvent = entry.time;
     // Iterate over each messaging event
     entry.messaging.forEach(function(event) {
       if (event.message) {
         receivedMessage(event);
       } else {
         console.log("Webhook received unknown event: ", event);
       }
     });
   });
   // Assume all went well.
   //
   // You must send back a 200, within 20 seconds, to let us know
   // you've successfully received the callback. Otherwise, the request
   // will time out and we will keep trying to resend.
   res.sendStatus(200);
 }
});
 function receivedMessage(event) {
 // Putting a stub for now, we'll expand it in the following steps
 console.log("Message data: ", event.message);
}

Step-5 Sending Message

Now we have to send the message back to the user,
function receivedMessage(event) {
 var senderID = event.sender.id;
 var recipientID = event.recipient.id;
 var timeOfMessage = event.timestamp;
 var message = event.message;
 console.log("Received message for user %d and page %d at %d with message:",
   senderID, recipientID, timeOfMessage);
 console.log(JSON.stringify(message));
 var messageId = message.mid;
 var messageText = message.text;
 var messageAttachments = message.attachments;
 if (messageText) {
   // If we receive a text message, check to see if it matches a keyword
   // and send back the example. Otherwise, just echo the text we received.
   switch (messageText) {
     case 'generic':
       sendGenericMessage(senderID);
       break;
     default:
       sendTextMessage(senderID, messageText);
   }
 } else if (messageAttachments) {
   sendTextMessage(senderID, "Message with attachment received");
 }}
Hurray! Now your Facebook Messenger Bot is ready.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Older Posts Home

Popular Posts

  • Local Listing Sites for UAE 2017
    Backlink building plays very crucial role in SEO. High-quality backlinks can attract visitors to your site.By having good quality ...
  • Learn How to Create Facebook Messenger Bot in 5 Steps
    First of all, what are Chatbots ? Chat bots are computer programs that mimic conversation with people using artificial intelligence....
  • 5 Fruits for Healthy Skin in Winter
    Proper skin care is necessary for the winter season as it can leave your skin dry as well as it can reduce your skin complexion a...

Categories

  • Health (2)
  • Marketing (2)
  • Technology (1)
Powered by Blogger.

Copyright © Scoop Smart |Privacy Policy