Welcome to the Taboola TelAviv 2015 challenge.
The challenge is to create a real time data visualisation worthy of the big screen at Taboola's enterance across all offices worldwide.
The winning team members will be offered a summer internship at Taboola.
- we prepared a server that reports clicks done in the taboola network in the last minute. the click data is returned in json format fron this the following url http://52.11.153.209:8080/stats/clicks
- new data is generated every minute, so calling the url again will return the same data.
- data format
{
generated: 1436868484956, //last updated [epoch time](https://en.wikipedia.org/wiki/Unix_time), this will change once a minute.
data : [
{
sourcePublisher: "tehrantimes", //publisher from which the click originated from
eventTime: 1436867819000, //event [epoch time](https://en.wikipedia.org/wiki/Unix_time)
targetItemId: -992066647354435200, //id of the clicked item.
targetPublisher: "mossad-il", //publisher which is the target of the click (the advertizer)
title: "The Mossad wants you!", //the title of the clicked url.
thumbnailUrl: "http://cdn.timesofisrael.com/uploads/2012/11/Mossad_seal.png",//the url of the target page thumbnail
url: "http://www.timesofisrael.com/the-mossad-wants-you/", //a url to the clicked page
countryName: "Iran, Islamic Republic of",
countryCode: "IR",
region: "17",
city: "Tehran",
latitude: 35.72928,
longitude: 50.98589
},
{
sourcePublisher: "usatoday",
//...
- the server supports an optional
after
parameter, which when called with an epoch time, will only return results generated after that time, so if you add the value from thegenerated
field to the url, you will only get new data after it was generated (otherwise you get an ampty list of clicks instead[]
) example: http://52.11.153.209:8080/stats/clicks?after=1436871060323 vs http://52.11.153.209:8080/stats/clicks?after=1536871060323
go ahead an clone this repo, then open index.html
in your browser.
- You have 24 hours
- Teams of up to 4 need to sign up by 12:00 with Lichen
- Each team will present ther work tomorrow at 10:00AM sharp!
- Projects will be judged based on: Correctness, Coherence, User Experience, and Cool Factor.
- Technical stuff: Please wear a name badge when in the office, No smoking in the balcony (you can go on the roof), Please keep the noise level reasonable.