Justin Lee - Technical Evangelist
@triplez82
Cloud Technical Evangelist
Co-Founder of HackerspaceSG
Co-Organiser of GeekcampSG
Co-Organiser of FOSSASIA
http://justinlee.sg
Ex Machina
define ("COGNITIVE",
"of, relating to, or involving
conscious mental activities
such as thinking, understanding,
learning, and remembering");
merriam-webster.com
https://youtu.be/P18EdAKuC1U
Microsoft Bot Framework
Facebook Bots for Messenger
<?php
require_once 'alchemyapi.php';
$alchemyapi = new AlchemyAPI();
$demo_url = 'http://taylorswift.tumblr.com/post/122071902085/to-apple-love-taylor';
$flavour = 'url';
$response = $alchemyapi->entities($flavour, $demo_url, null);
foreach ($response['entities'] as $entity) {
echo 'entity: ', $entity['text'], '<br />';
echo 'type: ', $entity['type'], PHP_EOL;
echo '<br /><br />';
}
?>