Skip to content

Instantly share code, notes, and snippets.

@xujenna
Created March 18, 2018 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xujenna/9e391d656fc95eb1dea4bc330cd34cc7 to your computer and use it in GitHub Desktop.
Save xujenna/9e391d656fc95eb1dea4bc330cd34cc7 to your computer and use it in GitHub Desktop.
Mindwandering Viz
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
/*css to go here*/
body {
font-family: monospace;
font-size: 11px;
background-size: cover;
background-color:#fff;
}
svg {
z-index: 100;
display:block;
margin:auto;
margin-top:100px;
}
.heading {
position:fixed;
left:50%;
transform: translate(-50%, 0);
}
.title {
font-size:24px;
font-family:monospace;
color:#000;
text-align: center;
}
.kicker {
font-family:roboto;
font-size:11px;
letter-spacing: 2px;
text-align:center;
border-bottom: 1px solid white;
padding-bottom:4px;
display:table;
margin:auto;
width:inherit;
margin-top:40px;
margin-bottom:15px;
text-decoration: underline;
}
.Axis line,
.Axis path {
filL:none;
stroke:#000;
stroke-width:1;
}
.axis-labels {
text-anchor:middle;
font-family:roboto;
font-weight:bold;
letter-spacing: 2px;
font-color:#000;
}
.Axis text {
fill: black;
}
.y-axis-label {
margin-left:0px;
}
.chart {
z-index: 101;
}
.time-title {
display:inline;
}
.wrapper {
height: 100%;
display:inline;
margin:20px;
}
</style>
<body>
<div class="heading">
<div class="kicker">MIND-WANDERING STUDY</div> <div class="title">Chrome History and Productivity Levels for March
<!-- <div class="time-title">[select a data point]</div> --></div>
</div>
<div class ="g-chart">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js" charset="utf-8"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script src="jquery-3.3.1.js"></script>
<script>
d3.csv("my-chrome-output.csv", function (err, chrome_history) {
d3.json("productivity.json", function (err, productivitydata) {
if (err) console.warn(err, "error loading data");
productivity = productivitydata.rows;
chrome_history.forEach(function(d){
var dateTime = new Date(String(d.time.slice(0,15)));
d.time = dateTime;
})
var chromeRollup = d3.nest()
.key(function(d) {return d.time;})
// .values(function(d) {return d.url;})
// .rollup(function(v) {return {
// count: v.length
// url: d.url
// };
// })
.entries(chrome_history);
chromeRollup.forEach(function(d){
var dateTime = new Date(d.key);
d.key = dateTime;
})
productivity.forEach(function(d){
var dateTime = new Date(String(d[0]));
d[0] = dateTime;
})
console.log("chrome_history", chrome_history);
console.log("chromeRollup", chromeRollup);
var margin = {top: 50, right: 50, bottom: 100, left: 75};
var chart = d3.select(".g-chart");
var width = (chromeRollup.length * 15) - margin.left - margin.right;
var height = 750 - margin.top - margin.bottom;
var svg = d3.select("body").append("div")
.attr("class", "wrapper")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.attr("class", "chart")
.style("display", "block");
var xMin = d3.min(chromeRollup,function(d){return d.key;});
var xMax = d3.max(chromeRollup,function(d){return d.key;});
var xScale = d3.time.scale()
.range([0,width])
.domain([xMin, xMax]);
var yScale = d3.scale.linear()
.range([height, 0])
.domain([0, 100]);
var productivityline = d3.svg.line()
.x(function(d) {return xScale(d[0]);})
.y(function(d){return yScale(d[4]);});
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.tickPadding(10)
.tickFormat(d3.time.format("%c"));
var yAxis = d3.svg.axis()
.scale(yScale)
.tickPadding(10)
.orient("left");
svg.append("line")
.style("stroke", "#e0e0e0")
.style("stroke-dasharray", ("5,5"))
.attr("x1", 0)
.attr("y1", yScale(100))
.attr("x2", width)
.attr("y2", yScale(100))
svg.append("line")
.style("stroke", "#e0e0e0")
.style("stroke-dasharray", ("5,5"))
.attr("x1", 0)
.attr("y1", yScale(50))
.attr("x2", width)
.attr("y2", yScale(50))
svg.append("g")
.attr("class", "Axis")
.attr("transform","translate(0, "+(height)+")")
.call(xAxis);
svg.append("text")
.attr("class", "axis-labels")
.attr("transform","rotate(-90)")
.attr("y", 25)
.attr("x", (0 - width/10))
.attr("dy", "-7em")
.text("PRODUCTIVITY SCORE")
.attr("fill", "silver");
svg.append("text")
.attr("class", "axis-labels")
.attr("y", height-10)
.attr("x", (width/2))
.attr("dy", "7em")
.style("text-transform", "uppercase");
svg.append("g")
.attr("class","Axis")
.call(yAxis);
var productivitycontainer = svg.append("path")
.attr("d", productivityline(productivity))
.attr("stroke", "#ff00ff")
.attr("stroke-width", 1)
.attr("fill", "none")
.attr("class", "line");
//
// chromeRollup.forEach(function(d,i){
// console.log(d);
// iconGroup = svg.append('g')
// for(j=0; j < d.values.length; j++) {
// console.log(d.values[j].url);
// iconGroup.append("svg:image")
// .attr("xlink:href", "http://www.google.com/s2/favicons?domain_url=" + d.values[j].url)
// .attr("transform", "translate(" + xScale(d.key) + "," + yScale(j*3) + ")");
// }
// if(url.includes("xujenna.com/focus") == true) {
// focusX1 = xScale(d.time);
// }
// return "http://www.google.com/s2/favicons?domain_url=" + d.url + ".jpg";
// })
// .attr("transform", function(d){
// return "translate(" + xScale(d.time) + "," + yScale(10) + ")";
// })
var focusX1;
var firstT;
var secondT;
var eLines = [];
var blinksSel1 = svg.selectAll(".chromeIcons")
.data(chromeRollup)
.enter()
.append("g")
.selectAll(".icons")
.data(function(d) {return d.values;})
.enter()
.append("svg:image")
// .attr("class", "logo")
// .attr("cx", function(d){return xScale(d.time)})
// .attr("cy", height)
.attr("xlink:href", function(d){
// return "<div style='background-image: -webkit-image-set(url('http://www.google.com/s2/favicons?domain_url=http%3A%2F%2F'" + d.url + ") 1x, url('http://www.google.com/s2/favicons?domain_url=http%3A%2F%2F'" + d.url + ") 2x);'></div>";
// for(i = 0; i < d.values.length; i++){
var url = d.url;
if(url.includes("xujenna.com/focus") == true) {
// console.log(d.time);
eLines.push(d.time);
// console.log(eLines);
}
return "http://www.google.com/s2/favicons?domain_url=" + d.url;
// };
})
.attr("transform", function(d,j){
return "translate(" + xScale(d.time) + "," + yScale((j+2)*2) + ")";
})
// .selectAll(".entrainmentline")
// .data()
// .enter()
console.log(eLines);
var entrainmentLines = svg.selectAll(".entrainmentLines")
.data(eLines)
.enter()
// .append("g")
// .selectAll(".elines")
// .data(function(d) {return d.values;})
// .enter()
.append("line")
.style("stroke", "#6dffd5")
.attr("x1", function(d){ return xScale(d);})
.attr("x2", function(d) {return xScale(d);})
// focusX1 = d.time;
// var firstT = focusX1.getTime();
// var secondT = focusX1.getTime() + 360000;
.attr("y1", 0)
// .attr("x2", xScale(d.time))
.attr("y2", height)
// .style("stroke-width", (xScale(secondT) - xScale(firstT)))
//
// svg.append("line")
// .style("stroke", "#6dffd5")
// .style("stroke-width", (xScale(secondT) - xScale(firstT)))
// .attr("x1", xScale(focusX1))
// .attr("y1", 0)
// .attr("x2", xScale(focusX1))
// .attr("y2", height);
});
});
// });
</script>
</body>
We can't make this file beautiful and searchable because it's too large.
time,url
2018-03-18 11:04:56,https://m.facebook.com/?_rdr
2018-03-18 11:03:59,https://www.facebook.com/
2018-03-18 01:55:33,https://console.bluemix.net/developer/watson/learning-resources
2018-03-18 01:55:29,https://console.bluemix.net/developer/watson/documentation
2018-03-18 01:55:27,http://www.ibm.com/watson/developercloud/doc/index.html
2018-03-18 01:55:27,https://www.ibm.com/watson/developercloud/doc/index.html
2018-03-18 01:37:29,https://tone-analyzer-demo.ng.bluemix.net/
2018-03-18 01:37:29,https://tone-analyzer-demo.mybluemix.net/
2018-03-18 01:37:26,https://www.ibm.com/watson/services/tone-analyzer/
2018-03-18 01:20:33,https://mail.google.com/mail/u/1/#inbox
2018-03-18 01:20:31,https://mail.google.com/mail/u/1/#inbox/16236e962ab39f49
2018-03-18 01:17:29,https://www.facebook.com/photo.php?fbid=10211007611523016&set=a.10205137610256653.1073741845.1136447212&type=3&theater
2018-03-18 01:16:41,https://mail.google.com/mail/u/1/#inbox/p2
2018-03-18 01:16:09,https://mail.google.com/mail/u/1/#inbox/161f68b41dba238f
2018-03-18 01:15:55,https://mail.google.com/mail/u/1/#inbox/162186f1a1054a53
2018-03-18 01:15:33,https://calendar.google.com/calendar/r/week/2018/3/25
2018-03-18 01:15:32,https://calendar.google.com/calendar/r/week/2018/4/1
2018-03-18 01:15:31,https://calendar.google.com/calendar/r/week/2018/4/8
2018-03-18 01:15:22,https://mail.google.com/mail/u/1/#inbox/1622c7b7d3a31bcf
2018-03-18 01:14:56,http://mappathon.com/WORKSHOP-1
2018-03-18 01:13:49,https://mail.google.com/mail/u/1/#inbox/1622a3fda0e30d85
2018-03-18 01:13:34,https://calendar.google.com/calendar/r/week/2018/4/15
2018-03-18 01:12:09,http://bit.ly/prototyping-workshop
2018-03-18 01:12:09,https://www.eventbrite.com/e/rapid-prototyping-tickets-43756563058
2018-03-18 01:12:00,http://bit.ly/ux-prototyping-tools
2018-03-18 01:12:00,https://www.eventbrite.com/e/ux-prototyping-tools-tickets-43758222020
2018-03-18 01:11:45,https://mail.google.com/mail/u/1/#inbox/1622c85a24035c6e
2018-03-18 01:11:16,https://www.nyu.edu/life/information-technology/locations-and-facilities/laguardia-studio.html
2018-03-18 01:11:15,https://www.google.com/url?hl=en&q=https://www.nyu.edu/life/information-technology/locations-and-facilities/laguardia-studio.html&source=gmail&ust=1521399091323000&usg=AFQjCNGgNBcwL6j1KlQR8FY69djVQ32Tkw
2018-03-18 01:10:47,https://mail.google.com/mail/u/1/#inbox/1622b3d4683497ad
2018-03-18 01:10:34,https://mail.google.com/mail/u/0/#inbox
2018-03-18 01:10:22,https://mail.google.com/mail/u/0/#inbox/161e6502f88e7f70
2018-03-18 01:09:10,https://www.wnyc.org/profile
2018-03-18 01:09:04,https://www.wnyc.org/
2018-03-18 01:08:57,https://www.wnyc.org/validate/?username=JennaXu&confirmation=344304
2018-03-18 01:08:56,https://www.google.com/url?hl=en&q=http://www.wnyc.org/validate/?username%3DJennaXu%26confirmation%3D344304&source=gmail&ust=1521436134353000&usg=AFQjCNG6ZX9TEc4upjCkoF9fjwxrlEoUug
2018-03-18 01:08:56,http://www.wnyc.org/validate/?username=JennaXu&confirmation=344304
2018-03-18 01:08:55,https://mail.google.com/mail/u/0/#inbox/1623782788769005
2018-03-18 01:08:20,https://www.wnyc.org/signup/?first=Jenna&last=Xu&email=xujenna@gmail.com&mc_cid=5df6882899&mc_eid=be9dc02028
2018-03-18 01:08:19,https://www.google.com/url?hl=en&q=https://nypublicradio.us5.list-manage.com/track/click?u%3D4109fdd323aaac7078eadaa8f%26id%3Ddb4fb2e38a%26e%3Dbe9dc02028&source=gmail&ust=1521436094767000&usg=AFQjCNE-rNtfGhcCpV8NpRRCTJccVbJRAw
2018-03-18 01:08:19,https://nypublicradio.us5.list-manage.com/track/click?u=4109fdd323aaac7078eadaa8f&id=db4fb2e38a&e=be9dc02028
2018-03-18 01:08:14,https://mail.google.com/mail/u/0/#search/wnyc/1614373f8d0b3dfe
2018-03-18 01:07:34,https://www.wnyc.org/login
2018-03-18 01:07:17,https://mint.intuit.com/overview.event
2018-03-18 01:07:17,https://mint.intuit.com/transaction.event
2018-03-18 01:06:57,https://accounts.intuit.com/index.html?offering_id=Intuit.ifs.mint&namespace_id=50000026&redirect_url=https://mint.intuit.com/overview.event
2018-03-18 01:06:55,https://www.mint.com/
2018-03-18 01:06:42,https://www.wnyc.org/signup
2018-03-18 01:06:39,http://wnyc.org/
2018-03-18 01:06:32,https://wnyc.us5.list-manage.com/profile?u=4109fdd323aaac7078eadaa8f&id=0473b3d0b8&e=be9dc02028
2018-03-18 01:06:24,https://mail.google.com/mail/u/0/#inbox/161fda995a22d9b5
2018-03-18 01:05:35,https://mail.google.com/mail/u/0/#inbox/162032484214e924
2018-03-18 01:04:54,https://cuesa.org/eat-seasonally/charts/fruit
2018-03-18 01:01:10,https://www.google.com/url?hl=en&q=http://p.nytimes.com/email/re?location%3DpMJKdIFVI6pghfX2HXfSzxRpdoyDWYNW%2BHHFHjCvYbZJlUR6MfCzqwYp0iHfWw1TVVifGib5Nybi4fsTMkQI3wTMOdpcTVNHQmzVpexgRCZBET6U8LaPgMS5oBNJLUMdYeyKvnoK8cRIX7atZihhA3elck7UOqwko/jOVLAmhIciCIHSs1VnGg%3D%3D%26campaign_id%3D23%26instance_id%3D113284%26segment_id%3D122310%26user_id%3Da02a7dd498bfcfab64a06bb0309f0c13%26regi_id%3D73651936&source=gmail&ust=1521398979376000&usg=AFQjCNFcuTeASpjHY_7VZI1-J5qjOOQTyw
2018-03-18 01:01:10,http://p.nytimes.com/email/re?location=pMJKdIFVI6pghfX2HXfSzxRpdoyDWYNW+HHFHjCvYbZJlUR6MfCzqwYp0iHfWw1TVVifGib5Nybi4fsTMkQI3wTMOdpcTVNHQmzVpexgRCZBET6U8LaPgMS5oBNJLUMdYeyKvnoK8cRIX7atZihhA3elck7UOqwko/jOVLAmhIciCIHSs1VnGg==&campaign_id=23&instance_id=113284&segment_id=122310&user_id=a02a7dd498bfcfab64a06bb0309f0c13&regi_id=73651936
2018-03-18 01:01:10,https://www.nytimes.com/guides/smarterliving/how-to-stop-eating-sugar?em_pos=large&emc=edit_hh_20180314&nl=well&nlid=73651936&ref=headline&te=1
2018-03-18 01:01:05,https://mail.google.com/mail/u/0/#inbox/16226f9920e6493b
2018-03-18 01:00:37,https://mail.google.com/mail/u/0/#inbox/1620693cbeab6508
2018-03-18 00:55:21,https://www.youtube.com/watch?v=RIE5FQDCL1A&feature=youtu.be&utm_medium=email&utm_source=other&utm_campaign=opencourse.GdeNrll1EeSROyIACtiVvg.announcements%7Eopencourse.GdeNrll1EeSROyIACtiVvg.gsTAMh33EeihKRJhcnB0Zg
2018-03-18 00:55:18,https://eventing.coursera.org/redirectSigned/eyJrZXkiOiJlbWFpbC5saW5rLm9wZW4iLCJ2YWx1ZSI6eyJ1cmwiOiJodHRwczovL3d3dy55b3V0dWJlLmNvbS93YXRjaD92PVJJRTVGUURDTDFBJmZlYXR1cmU9eW91dHUuYmUmdXRtX21lZGl1bT1lbWFpbCZ1dG1fc291cmNlPW90aGVyJnV0bV9jYW1wYWlnbj1vcGVuY291cnNlLkdkZU5ybGwxRWVTUk95SUFDdGlWdmcuYW5ub3VuY2VtZW50c35vcGVuY291cnNlLkdkZU5ybGwxRWVTUk95SUFDdGlWdmcuZ3NUQU1oMzNFZWloS1JKaGNuQjBaZyIsInRyYWNraW5nIjp7InVzZXJJZCI6MTE1MzU0OTYsInVzZXJFbWFpbCI6Inh1amVubmFAZ21haWwuY29tIiwibm90aWZpY2F0aW9uVHlwZSI6Im9wZW5jb3Vyc2UuYW5ub3VuY2VtZW50cyIsImNhbXBhaWduSWQiOiJvcGVuY291cnNlLkdkZU5ybGwxRWVTUk95SUFDdGlWdmcuZ3NUQU1oMzNFZWloS1JKaGNuQjBaZyIsImNhbXBhaWduR3JvdXAiOiJvcGVuY291cnNlLkdkZU5ybGwxRWVTUk95SUFDdGlWdmcuYW5ub3VuY2VtZW50cyIsImxpbmtzIjpbXX19LCJ1c2VySWQiOjExNTM1NDk2fQ.KsiLBps1gUeTAD6wAvkNNBaCKGp0GGJ1z3LTLv59v6g
2018-03-18 00:55:18,https://www.youtube.com/watch?v=RIE5FQDCL1A&feature=youtu.be&utm_medium=email&utm_source=other&utm_campaign=opencourse.GdeNrll1EeSROyIACtiVvg.announcements~opencourse.GdeNrll1EeSROyIACtiVvg.gsTAMh33EeihKRJhcnB0Zg
2018-03-18 00:54:08,https://mail.google.com/mail/u/0/#inbox/1620a237440b505d
2018-03-18 00:51:54,https://mail.google.com/mail/u/0/#inbox/1622512e29baa89f
2018-03-18 00:51:09,https://mail.google.com/mail/u/0/#inbox/1622ec8f2deea352
2018-03-18 00:50:19,https://mail.google.com/mail/u/0/#inbox/1622fb68df60eaf8
2018-03-18 00:49:29,https://www.toasttab.com/rewards/submit
2018-03-18 00:49:26,https://www.toasttab.com/rewards/confirm
2018-03-18 00:49:11,https://www.google.com/url?hl=en&q=http://www.toasttab.com/rewards/birthday?id%3D276440751%26key%3DkFJH2ULTPZCpAizt&source=gmail&ust=1521398979317000&usg=AFQjCNFJ_f4Zxxon6bZFj5bTLXxb6w7Icg
2018-03-18 00:49:11,http://www.toasttab.com/rewards/birthday?id=276440751&key=kFJH2ULTPZCpAizt
2018-03-18 00:49:11,https://www.toasttab.com/rewards/birthday?id=276440751&key=kFJH2ULTPZCpAizt
2018-03-18 00:49:07,https://mail.google.com/mail/u/0/#inbox/1622f9f82d9cb4e4
2018-03-18 00:48:42,https://calendar.google.com/calendar/r
2018-03-18 00:48:28,https://calendar.google.com/calendar/
2018-03-18 00:48:28,http://calendar.google.com/
2018-03-18 00:48:28,https://calendar.google.com/calendar/render
2018-03-18 00:48:28,https://calendar.google.com/
2018-03-18 00:48:02,https://shcportal.nyu.edu/appointments_home.aspx
2018-03-18 00:47:37,https://shcportal.nyu.edu/confirm.aspx
2018-03-18 00:47:37,https://shcportal.nyu.edu/home.aspx
2018-03-18 00:47:35,https://shcportal.nyu.edu/login_directory.aspx
2018-03-18 00:47:31,https://shcportal.nyu.edu/
2018-03-18 00:47:16,https://padlet.com/xujenna/nnbhz59pn52l
2018-03-18 00:46:59,https://www.nyu.edu/students/health-and-wellness/student-health-center/make-appointment.html
2018-03-18 00:46:20,https://calendar.google.com/calendar/r/week
2018-03-18 00:46:19,https://calendar.google.com/calendar/r/week/2018/3/4
2018-03-18 00:46:18,https://calendar.google.com/calendar/r/week/2018/3/11
2018-03-18 00:46:03,https://calendar.google.com/calendar/r/week/2018/4/7
2018-03-18 00:45:55,https://calendar.google.com/calendar/r/week/2018/4/14
2018-03-18 00:45:39,https://calendar.google.com/calendar/r/week/2018/3/31
2018-03-18 00:44:53,https://exist.io/account/
2018-03-18 00:44:32,https://exist.io/data/averages/
2018-03-18 00:44:26,https://exist.io/data/optimise/
2018-03-18 00:44:26,https://exist.io/data/optimise/steps/up/
2018-03-18 00:43:55,https://exist.io/data/correlations/steps?period=all
2018-03-18 00:43:16,https://exist.io/data/
2018-03-18 00:43:16,https://exist.io/data/correlations/steps
2018-03-18 00:41:55,https://exist.io/dashboard/trends/
2018-03-18 00:41:32,https://mail.google.com/mail/u/0/#inbox/16206ecf09bc6d71
2018-03-18 00:41:06,http://click.hulumail.com/?qs=cd61b07c207bb0d3f04a5fe5383a24538ea1d5c56060bc86edffb2468ef7dd153146bd1ecb9253f71852229e84f350f7eb61284bd624dd642e5ae62ef7c5bb07
2018-03-18 00:41:06,http://www.hulu.com/unsubscribe_email?nonce=KZ7jbhmRqkHtAZb--525hih55es&email=xujenna@gmail.com&type=news&user_id=100678292&utm_medium=Email&utm_source=ExactTarget&utm_campaign=CM_EML_Licensed_Core_na_Q1_2018_201803_ER_SpringBreak_Promo_SpotifyInactives_ExploreLibCTA&plus_app=SVOD&cmc=Content&cmp=9493&jobid=3650272&user_id=100678292
2018-03-18 00:41:06,https://www.hulu.com/unsubscribe_email?nonce=KZ7jbhmRqkHtAZb--525hih55es&email=xujenna@gmail.com&type=news&user_id=100678292&utm_medium=Email&utm_source=ExactTarget&utm_campaign=CM_EML_Licensed_Core_na_Q1_2018_201803_ER_SpringBreak_Promo_SpotifyInactives_ExploreLibCTA&plus_app=SVOD&cmc=Content&cmp=9493&jobid=3650272&user_id=100678292
2018-03-18 00:41:03,https://mail.google.com/mail/u/0/#inbox/1622c044f9c0dc2f
2018-03-18 00:40:56,http://email.careerengine.org/c/eJxNkMtuwyAQRb_G3kSxeNteeJE0yaLr7iMeY0xkcGRA7ecXFFWNhDTcwzzuYCZgvW7dRBAeEMUCI0Y57i7iRNhQ1LlhyPvY2eeaowfjZKc33y5TTwxnwiBMlDQCY90DHQRirBcIZtm367Sk9IwNPTXkVo6WO8AOwboAnQ6FBPiOK6QEexE5xKyi3p2CosBLt5b4kx8QgmwIZ8hWVqcXLnNaapBIUwaaq0GoceSckllpYsgIM-PClJRVBlsbhobecvJ3Lf1TOlvk5bGp1xhRH-py2RcMbzBuedfwn3uv_3RE9IhFu09_7t68tWm6Bru6uJTbx_Xw-aqr2GQtk9vCodg5fIHUiwv2F2Ooex8
2018-03-18 00:40:56,https://careerengine.cn/newsletter/unsubscribe/email/xujenna%40gmail.com/auth/aa0c34ec5b86b995532fbc2d29ef456d/lang/en?utm_campaign=jobmail&utm_medium=email&utm_source=jobmail_2018-03-16
2018-03-18 00:40:52,https://mail.google.com/mail/u/0/#inbox/1622e7a7482f2145
2018-03-18 00:40:31,"https://www.google.com/url?hl=en&q=http://t.ac.pandora.com/r/?id%3Dh7e30ac7e,1c33d6ba,1c6d2763%26p1%3D8k9chmf5jas3uy&source=gmail&ust=1521399027703000&usg=AFQjCNFa8vQuLiBqXRmuq9UDgAsNvZ63eg"
2018-03-18 00:40:31,"http://t.ac.pandora.com/r/?id=h7e30ac7e,1c33d6ba,1c6d2763&p1=8k9chmf5jas3uy"
2018-03-18 00:40:31,https://www.pandora.com/u/8k9chmf5jas3uy&source=personalized
2018-03-18 00:40:31,https://www.pandora.com/u/
2018-03-18 00:40:26,https://mail.google.com/mail/u/0/#inbox/16230da502df416d
2018-03-18 00:39:54,https://www.tripadvisor.com/Settings-cs
2018-03-18 00:39:49,https://www.google.com/url?hl=en&q=https://www.tripadvisor.com/MptUrl?s%3D%252FSingleClickOptOut%253Foptout%253DAJatw333padPLYIcGEDZYR8JecfBofeBEkbnVvMZ3s53bk0yVEsqlSNTMYUTQYZlmqfoQp1tA9B9PmWOCWNZLy4SUHJYM3jV5YptUPI0vZjL5jXcjiK3RY3yoRomADplNw__%2526nl%253DMU%2526eatoken%253DAO0QPEVVB7vPlAK%257EYDJRMT566ZLt8mwmvQNYsnmcYbzajjSiop5mATzgItcBZ35pPifranzaG9ShHeT6apBiIcvhtKpwYlfG9j7y69S4r84A%26st%3DSVRFUkFURS5aU2RKaEJhWEdDWDNlX251UGZySHhjZEVHOGZoejYwaGJZRmE3MmNxSm8w%26sl%3Den_US%26sa%3DFooter_Unsubscribe&source=gmail&ust=1521399027351000&usg=AFQjCNEwA4kyt5HM6LOBrf-OgCx2HP7zsQ
2018-03-18 00:39:49,https://www.tripadvisor.com/MptUrl?s=%2FSingleClickOptOut%3Foptout%3DAJatw333padPLYIcGEDZYR8JecfBofeBEkbnVvMZ3s53bk0yVEsqlSNTMYUTQYZlmqfoQp1tA9B9PmWOCWNZLy4SUHJYM3jV5YptUPI0vZjL5jXcjiK3RY3yoRomADplNw__%26nl%3DMU%26eatoken%3DAO0QPEVVB7vPlAK%7EYDJRMT566ZLt8mwmvQNYsnmcYbzajjSiop5mATzgItcBZ35pPifranzaG9ShHeT6apBiIcvhtKpwYlfG9j7y69S4r84A&st=SVRFUkFURS5aU2RKaEJhWEdDWDNlX251UGZySHhjZEVHOGZoejYwaGJZRmE3MmNxSm8w&sl=en_US&sa=Footer_Unsubscribe
2018-03-18 00:39:49,https://www.tripadvisor.com/SingleClickOptOut?optout=AJatw333padPLYIcGEDZYR8JecfBofeBEkbnVvMZ3s53bk0yVEsqlSNTMYUTQYZlmqfoQp1tA9B9PmWOCWNZLy4SUHJYM3jV5YptUPI0vZjL5jXcjiK3RY3yoRomADplNw__&nl=MU&eatoken=AO0QPEVVB7vPlAK%7EYDJRMT566ZLt8mwmvQNYsnmcYbzajjSiop5mATzgItcBZ35pPifranzaG9ShHeT6apBiIcvhtKpwYlfG9j7y69S4r84A&nuid=C43E6B6E9F336897EF8BD6A488AB9180&nl=MU&nid=MU.c503a6de7e424307b3b0d38cf78475f4.E&eatoken=AO0QPEVVB7vPlAK%7EYDJRMT566ZLt8mwmvQNYsnmcYbzajjSiop5mATzgItcBZ35pPifranzaG9ShHeT6apBiIcvhtKpwYlfG9j7y69S4r84A
2018-03-18 00:39:49,https://www.tripadvisor.com/SingleClickOptOut-a_nid.MU__2E__c503a6de7e424307b3b0d38cf78475f4__2E__E-a_nl.MU-a_nuid.C43E6B6E9F336897EF8BD6A488AB9180-a_optout.AJatw333padPLYIcGEDZYR8JecfBofeBEkbnVvMZ3s53bk0yVEsqlSNTMYUTQYZlmqfoQp1tA9B9PmWOCWNZLy4SUHJYM3jV5YptUPI0vZjL5jXcjiK3RY3yoRomADplNw__5F____5F__-m
2018-03-18 00:39:49,https://www.tripadvisor.com/SingleClickOptOut-a_nl.MU-a_optout.AJatw333padPLYIcGEDZYR8JecfBofeBEkbnVvMZ3s53bk0yVEsqlSNTMYUTQYZlmqfoQp1tA9B9PmWOCWNZLy4SUHJYM3jV5YptUPI0vZjL5jXcjiK3RY3yoRomADplNw__5F____5F__-m
2018-03-18 00:39:46,https://mail.google.com/mail/u/0/#inbox/16231384083212fa
2018-03-18 00:39:29,https://createsend.help/maintenance/
2018-03-18 00:39:22,http://academyofamericanpoets.cmail19.com/t/y-u-kyludkt-trllilbth-i/
2018-03-18 00:39:16,https://mail.google.com/mail/u/0/?ui=2&ik=e597935f1e&view=lg&msg=1623372640a3165d
2018-03-18 00:39:06,https://mail.google.com/mail/u/0/#inbox/1623372640a3165d
2018-03-18 00:38:52,https://streeteasy.com/nyc/user/email_unsubscribe?email_token=BAhJIh9ha3ppZGVuemdyb3Rlc2s5QGdtYWlsLmNvbQY6BkVU--42a7516de570f179c868c2152aab0a1ed375f02e&unsubscribe_all=true
2018-03-18 00:38:46,https://streeteasy.com/nyc/user/email_unsubscribe?email_token=BAhJIh9ha3ppZGVuemdyb3Rlc2s5QGdtYWlsLmNvbQY6BkVU--42a7516de570f179c868c2152aab0a1ed375f02e&email_type=tips&utm_source=triggered&utm_campaign=se_weekend_shopper_sales&utm_medium=email
2018-03-18 00:38:46,https://streeteasy.com/distil_identify_cookie.html?httpReferrer=%2Fnyc%2Fuser%2Femail_unsubscribe%3Femail_token%3DBAhJIh9ha3ppZGVuemdyb3Rlc2s5QGdtYWlsLmNvbQY6BkVU--42a7516de570f179c868c2152aab0a1ed375f02e%26email_type%3Dtips%26utm_source%3Dtriggered%26utm_campaign%3Dse_weekend_shopper_sales%26utm_medium%3Demail&uid=D80A5AB6-9692-3D48-959F-FCFBF85F523F
2018-03-18 00:38:45,https://www.google.com/url?hl=en&q=http://send.streeteasy.com/wf/click?upn%3DLEp1dejeoQbAMXpNkERrcQCGK-2BxC-2BcNW08AQFgAmP-2BZwWoakbURbWwpqxc50lbf4f-2FWo5h4pksgdH1mAWoaRx7PQX9zG72t081JTTF73YCPEAi2PCl8rP7rdXQ1lxWdmg6Bd6DzLquWPPXuldJphbz2iGtXTgeD7c00i-2F6GDD72Geh0zWPn6FBPj-2FTDL8I-2FaJsMOTqL2WDUo6Wb3Adi28n-2FDzip72RK1vBNy4SJ5eONoNLTkau12KBIKEriSUi-2Fri-2FLTBtNA-2FZ6kOk28BkwHVYRkvXqZPSAGg5ASWm6Sst9OIGbrl80ZtRTkNyrvsA0gmi5tWFn5E38wkOyyWJlLeg-3D-3D_2sDTDKapUKDZFe1IMmVqTE8-2BPtVyB6OsIlexBURd7V8JfEJgz8FKAwQzH6AR0lOYnd8sz0JrVGog43YlRnWkuDpdKVCrvWb-2FWtYZXDzwcKhztisVGOPxZkSgA4yF2L0CeU-2FWI3kxN8tjlih-2BsVFYWGwi-2FiKpXb-2FnyyUVujNBnMQxG9B9PihLCbwoGPcdMOVaqqtDi7JtBzDpNCX938D9lS-2Bvx5uWmAaJasqT1rzTQKN8kYT3AQxGcuhAfNuIBa0sUXOODJ7diAOG6N48ART7yMn5ArHi-2Fru1BxQ9pkkgwUgVybcYrZ0v9OTUXyuHMITk7dFCJY-2BfhqQJZO7X3pZR0hfR6-2FL913YiLxqUaRljLjXMlzy2FRgCTpQXipR-2FSUjH6plvdcUA4Gwn-2BmlI6MF-2BJHp-2BJA3P7skCu-2BL0SKFPcT-2B4SR9DsRJKxMeM-2FEgP0nf5q-2BNioh1S-2B3zBajQvnQKlRygzNvebZXc56QSt0-2BAzgYz48RSgPXbXTG5lA8oCELjyv3STy5svsTFmENulRsZawg-3D-3D&source=gmail&ust=1521399026734000&usg=AFQjCNHxz3NLhZ2ak325-nyCrZFqFSNsLw
2018-03-18 00:38:45,http://send.streeteasy.com/wf/click?upn=LEp1dejeoQbAMXpNkERrcQCGK-2BxC-2BcNW08AQFgAmP-2BZwWoakbURbWwpqxc50lbf4f-2FWo5h4pksgdH1mAWoaRx7PQX9zG72t081JTTF73YCPEAi2PCl8rP7rdXQ1lxWdmg6Bd6DzLquWPPXuldJphbz2iGtXTgeD7c00i-2F6GDD72Geh0zWPn6FBPj-2FTDL8I-2FaJsMOTqL2WDUo6Wb3Adi28n-2FDzip72RK1vBNy4SJ5eONoNLTkau12KBIKEriSUi-2Fri-2FLTBtNA-2FZ6kOk28BkwHVYRkvXqZPSAGg5ASWm6Sst9OIGbrl80ZtRTkNyrvsA0gmi5tWFn5E38wkOyyWJlLeg-3D-3D_2sDTDKapUKDZFe1IMmVqTE8-2BPtVyB6OsIlexBURd7V8JfEJgz8FKAwQzH6AR0lOYnd8sz0JrVGog43YlRnWkuDpdKVCrvWb-2FWtYZXDzwcKhztisVGOPxZkSgA4yF2L0CeU-2FWI3kxN8tjlih-2BsVFYWGwi-2FiKpXb-2FnyyUVujNBnMQxG9B9PihLCbwoGPcdMOVaqqtDi7JtBzDpNCX938D9lS-2Bvx5uWmAaJasqT1rzTQKN8kYT3AQxGcuhAfNuIBa0sUXOODJ7diAOG6N48ART7yMn5ArHi-2Fru1BxQ9pkkgwUgVybcYrZ0v9OTUXyuHMITk7dFCJY-2BfhqQJZO7X3pZR0hfR6-2FL913YiLxqUaRljLjXMlzy2FRgCTpQXipR-2FSUjH6plvdcUA4Gwn-2BmlI6MF-2BJHp-2BJA3P7skCu-2BL0SKFPcT-2B4SR9DsRJKxMeM-2FEgP0nf5q-2BNioh1S-2B3zBajQvnQKlRygzNvebZXc56QSt0-2BAzgYz48RSgPXbXTG5lA8oCELjyv3STy5svsTFmENulRsZawg-3D-3D
2018-03-18 00:38:42,https://mail.google.com/mail/u/0/#inbox/1623462ed6e45512
2018-03-18 00:38:35,https://www.gilt.com/web-account/email
2018-03-18 00:38:35,https://www.gilt.com/account/email
2018-03-18 00:38:35,https://www.gilt.com/register?return_url=%2Faccount%2Femail
2018-03-18 00:38:32,https://www.gilt.com/email/interstitial/daily_sales_reminder/9954406athylnbefqmlxsfysxgstxlplxdexxlhi/unsub_email
2018-03-18 00:38:26,https://www.google.com/url?hl=en&q=https://track.p.gilt.com/f/a/qPuFlTamzQwuYQg9_3bEHQ~~/AAAAAQA~/RgRcj_0FP4QYAmh0dHA6Ly9saW5rcy5pdGVyYWJsZS5jb20vZS9laD9fdD0wZjA2NTE1MWZiYjc0YjA0YTk3ZmM1NzE1NTQzZmM3YiZfbT00MmVlZjE2ZTI5N2Q0ZWE1ODBiOTdiMjhkNWIxMWY2NiZfZT1DMFVxa3ZwbEtRQnhoOF94eThPMVU1eldBMElVTnF0VEtScHhBSG1iLUFiWGFPM1l4QUdoQ1QyZ2tIdTIzU0FwM2txNUpXVjBvZUpzUnFfcnFESzJONzVaTWhoSHR3WVJqb3RNUE42aF93Tkxwc1MtRUNmOXpubmlJZWJSYlZwSWE0akhVeG1yVnZTcUdYaWxULVBjTzJFdncydGxBU0ZGRnhsdjg0aG0zOUlZVWR1SGk4SlpfMFlKMXlSU0VDREVsRlpyVkZhLW5WeHAtc1NzU09zRXBjN1RKT1pvYlFvRE5lTjdNNFVoZUJlWVdwUmdQX0N1aTBOeTk0cHAxaEg2WnFyQzdjNWpJNVIySjlIWG1TaXdXd2dvR0N6aGNKMS1mdUlybmgyUUplaGhueXRlMGZWcmEyNTlxdlk2SmcybEx0VGYza3U5RDZrclU0RWw5MW9vLXZjX1Q3M00tdUZtbjZRcEFHVE05QmJtZUt5QzFRNE5aRXhRNzBReHhtZGdFMTJ6SnloMnB5TzdFVG4tUnl6MWFfWWFtc3lQcGFwc25ZU3lUTDNXdVdBJTNEVwRnaWx0WAQAAAAAQgoABQV4rVoFCQJkUhF4dWplbm5hQGdtYWlsLmNvbQ~~&source=gmail&ust=1521434189578000&usg=AFQjCNExOCuJD9phxs4JQN4rl3ahbnHdYA
2018-03-18 00:38:26,https://track.p.gilt.com/f/a/qPuFlTamzQwuYQg9_3bEHQ~~/AAAAAQA~/RgRcj_0FP4QYAmh0dHA6Ly9saW5rcy5pdGVyYWJsZS5jb20vZS9laD9fdD0wZjA2NTE1MWZiYjc0YjA0YTk3ZmM1NzE1NTQzZmM3YiZfbT00MmVlZjE2ZTI5N2Q0ZWE1ODBiOTdiMjhkNWIxMWY2NiZfZT1DMFVxa3ZwbEtRQnhoOF94eThPMVU1eldBMElVTnF0VEtScHhBSG1iLUFiWGFPM1l4QUdoQ1QyZ2tIdTIzU0FwM2txNUpXVjBvZUpzUnFfcnFESzJONzVaTWhoSHR3WVJqb3RNUE42aF93Tkxwc1MtRUNmOXpubmlJZWJSYlZwSWE0akhVeG1yVnZTcUdYaWxULVBjTzJFdncydGxBU0ZGRnhsdjg0aG0zOUlZVWR1SGk4SlpfMFlKMXlSU0VDREVsRlpyVkZhLW5WeHAtc1NzU09zRXBjN1RKT1pvYlFvRE5lTjdNNFVoZUJlWVdwUmdQX0N1aTBOeTk0cHAxaEg2WnFyQzdjNWpJNVIySjlIWG1TaXdXd2dvR0N6aGNKMS1mdUlybmgyUUplaGhueXRlMGZWcmEyNTlxdlk2SmcybEx0VGYza3U5RDZrclU0RWw5MW9vLXZjX1Q3M00tdUZtbjZRcEFHVE05QmJtZUt5QzFRNE5aRXhRNzBReHhtZGdFMTJ6SnloMnB5TzdFVG4tUnl6MWFfWWFtc3lQcGFwc25ZU3lUTDNXdVdBJTNEVwRnaWx0WAQAAAAAQgoABQV4rVoFCQJkUhF4dWplbm5hQGdtYWlsLmNvbQ~~
2018-03-18 00:38:26,http://links.iterable.com/e/eh?_t=0f065151fbb74b04a97fc5715543fc7b&_m=42eef16e297d4ea580b97b28d5b11f66&_e=C0UqkvplKQBxh8_xy8O1U5zWA0IUNqtTKRpxAHmb-AbXaO3YxAGhCT2gkHu23SAp3kq5JWV0oeJsRq_rqDK2N75ZMhhHtwYRjotMPN6h_wNLpsS-ECf9znniIebRbVpIa4jHUxmrVvSqGXilT-PcO2Evw2tlASFFFxlv84hm39IYUduHi8JZ_0YJ1yRSECDElFZrVFa-nVxp-sSsSOsEpc7TJOZobQoDNeN7M4UheBeYWpRgP_Cui0Ny94pp1hH6ZqrC7c5jI5R2J9HXmSiwWwgoGCzhcJ1-fuIrnh2QJehhnyte0fVra259qvY6Jg2lLtTf3ku9D6krU4El91oo-vc_T73M-uFmn6QpAGTM9BbmeKyC1Q4NZExQ70QxxmdgE12zJyh2pyO7ETn-Ryz1a_YamsyPpapsnYSyTL3WuWA%3D
2018-03-18 00:38:26,https://www.gilt.com/account/update_dsr_preferences?id=9954406athylnbefqmlxsfysxgstxlplxdexxlhi&utm_source=gilt&utm_medium=email&utm_campaign=031718_48HrFlsh2_20pc_MW_4PM_adhoc
2018-03-18 00:38:26,https://www.gilt.com/email/interstitial/daily_sales_reminder/9954406athylnbefqmlxsfysxgstxlplxdexxlhi?id=9954406athylnbefqmlxsfysxgstxlplxdexxlhi&utm_source=gilt&utm_medium=email&utm_campaign=031718_48HrFlsh2_20pc_MW_4PM_adhoc
2018-03-18 00:38:22,https://mail.google.com/mail/u/0/#inbox/162359cd7a912a22
2018-03-18 00:37:31,https://www.linkedin.com/psettings/email-controls
2018-03-18 00:37:28,https://www.linkedin.com/uas/login?session_redirect=https%3A%2F%2Fwww%2Elinkedin%2Ecom%2Fpsettings%2Femail-controls&fromSignIn=true&trk=uno-reg-join-sign-in
2018-03-18 00:37:25,https://www.linkedin.com/uas/login?session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fpsettings%2Femail-controls
2018-03-18 00:37:25,https://www.linkedin.com/start/join?session_redirect=https%3A%2F%2Fwww.linkedin.com%2Fpsettings%2Femail-controls&trk=login_reg_redirect
2018-03-18 00:37:22,https://www.linkedin.com/psettings/email-unsubscribe?eid=1uwytl-jetiv3dz-cy&loid=AQECZEMnGc1zswAAAWItiWmHWUb1YiS7fNsGT1p9JKkn6YfKccA4HUX-uxwSYp1kkdvQoeTtf8lngWNMXXW6Pd_E8rK_FpFOI8Y6yuSo&trk=eml-email_notification_single_search_appearance_01-unsub-7-unsub&midToken=AQGW1eTVceQSRg&fromEmail=fromEmail&ut=1DUZXod2YkVE81
2018-03-18 00:37:05,https://www.linkedin.com/e/v2?e=1uwytl-jetiv3dz-cy&t=lun&midToken=AQGW1eTVceQSRg&ek=email_notification_single_search_appearance_01&li=7&m=unsub&ts=unsub&loid=AQECZEMnGc1zswAAAWItiWmHWUb1YiS7fNsGT1p9JKkn6YfKccA4HUX-uxwSYp1kkdvQoeTtf8lngWNMXXW6Pd_E8rK_FpFOI8Y6yuSo&eid=1uwytl-jetiv3dz-cy
2018-03-18 00:37:00,https://mail.google.com/mail/u/0/#inbox/1622d896de19900c
2018-03-18 00:36:41,https://mail.google.com/mail/u/0/#inbox/16230c158f5d09eb
2018-03-17 22:33:38,https://calendar.google.com/calendar/r/week/2018/3/24
2018-03-17 21:29:08,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&ids=156%2C154
2018-03-17 21:29:08,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?s=&comment_status=all&pagegen_timestamp=2018-03-18+01%3A28%3A53&_total=20&_per_page=20&_page=1&_ajax_fetch_list_nonce=85e275fc6a&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fspammed%3D1%26ids%3D157&_wpnonce=4eaa7332f5&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fspammed%3D1%26ids%3D157&action=spam&comment_type=&paged=1&delete_comments%5B%5D=156&delete_comments%5B%5D=154
2018-03-17 21:29:08,"http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&spammed=2&ids=156,154"
2018-03-17 21:28:59,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?ids=157
2018-03-17 21:28:59,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Mark+as+Spam&_wpnonce=ecc1146f25&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D157&action=spamcomment&c=157&noredir=1
2018-03-17 21:28:59,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?spammed=1&ids=157
2018-03-17 21:28:52,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=157#wpbody-content
2018-03-17 21:28:49,https://mail.google.com/mail/u/1/#inbox/16235338310b991d
2018-03-17 21:28:48,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=756&action=edit
2018-03-17 21:28:47,http://www.xujenna.com/itp_blog/wp-admin/post.php
2018-03-17 21:28:47,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=756&action=edit&message=1
2018-03-17 21:28:09,http://www.xujenna.com/itp_blog/wp-admin/edit.php
2018-03-17 21:28:08,http://www.xujenna.com/itp_blog/wp-login.php
2018-03-17 21:27:36,http://www.xujenna.com/itp_blog/wp-login.php?redirect_to=http%3A%2F%2Fwww.xujenna.com%2Fitp_blog%2Fwp-admin%2Fpost.php&reauth=1
2018-03-17 21:27:26,https://www.google.com/search?q=wordpress&oq=wordpress&aqs=chrome..69i57j69i61l3j69i65j0.3999j0j4&sourceid=chrome&ie=UTF-8
2018-03-17 21:27:18,http://xujenna.com/itp_blog
2018-03-17 21:27:18,http://xujenna.com/itp_blog/
2018-03-17 21:27:18,http://www.xujenna.com/itp_blog/
2018-03-17 21:27:03,https://padlet.com/?ref=logo
2018-03-17 21:27:03,https://padlet.com/dashboard
2018-03-17 21:19:13,http://hackingthebrowser.com/
2018-03-17 21:19:13,https://docs.google.com/document/d/1sSzJeYnE7a_RvBkXQ8EUfBkq7-BQKDTLpT_52OU9APk/edit
2018-03-17 21:19:07,https://mail.google.com/mail/u/1/#inbox/16220391a696c808
2018-03-17 21:18:56,https://mail.google.com/mail/u/1/#inbox/162309e829652264
2018-03-17 16:36:24,http://cargocollective.com/baileyfranklin/Portraits-and-Fashion
2018-03-17 16:35:47,http://cargocollective.com/baileyfranklin/Selected-Work
2018-03-17 16:35:17,https://en.wikipedia.org/wiki/Art_Streiber#cite_note-2
2018-03-17 16:34:29,https://en.wikipedia.org/wiki/Art_Streiber
2018-03-17 16:34:23,https://www.google.com/search?q=Art+Streiber&oq=Art+Streiber&aqs=chrome..69i57j69i60j0l4.807j0j4&sourceid=chrome&ie=UTF-8
2018-03-17 16:34:22,https://www.facebook.com/bailey.franklin.7/about?lst=1148850025%3A100003519783364%3A1521318790
2018-03-17 16:34:17,http://cargocollective.com/baileyfranklin
2018-03-17 16:33:15,https://www.facebook.com/bailey.franklin.7?hc_ref=ARSJ5RF0iVWr_ajUWUK8vtvI2wg1GASkeSrBfhzA8hUIvaq3fetPNyJ5K3iU7gzF9BM&fref=nf
2018-03-17 16:30:34,https://www.instagram.com/developer/
2018-03-17 16:30:15,https://www.instagram.com/developer/support/
2018-03-17 16:30:04,https://www.instagram.com/developer/clients/fe2d6ec34ba343509f4300c533a9223c/edit/
2018-03-17 16:29:11,https://www.crummy.com/software/BeautifulSoup/
2018-03-17 16:29:03,https://www.google.com/search?q=beautiful+soup&oq=beautiful+soup&aqs=chrome..69i57j0j69i65j69i61j69i60l2.1398j0j7&sourceid=chrome&ie=UTF-8
2018-03-17 16:28:55,https://calendar.google.com/calendar/r/agenda
2018-03-17 16:28:55,https://calendar.google.com/calendar/r/agenda/2018/3/24
2018-03-17 16:26:34,https://www.instagram.com/developer/sandbox/
2018-03-17 16:25:17,https://www.instagram.com/developer/limits/
2018-03-17 16:23:40,https://www.instagram.com/developer/clients/manage/
2018-03-17 16:12:03,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_06.md#assignment
2018-03-17 16:12:01,https://github.com/joeyklee/quant-humanists-2018/issues
2018-03-17 16:11:58,https://github.com/joeyklee/quant-humanists-2018/issues/16
2018-03-17 16:10:27,https://thehackernews.com/2015/10/hack-fitbit.html
2018-03-17 16:10:02,https://github.com/openiotstudio
2018-03-17 16:09:25,https://ahprojects.com/projects/stealth-wear/
2018-03-17 16:06:55,http://www.instructables.com/
2018-03-17 16:06:07,http://www.instructables.com/id/Upcycle-a-Hard-Drive-Into-a-Clock/
2018-03-17 16:02:07,http://www.instructables.com/id/DNA-Spoofing-DIY-Counter-Surveillance/
2018-03-17 15:58:44,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.1478834281599224&tn=4ldxyzstzp7d&rld=1
2018-03-17 15:58:44,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.38793405243535717&tn=35dsetrgkqqh&rld=1
2018-03-17 15:51:00,https://mail.google.com/mail/u/1/#inbox/161f98401e631316
2018-03-17 15:44:43,http://registration.jpl.nasa.gov/internship_application/cfm/index.cfm?program=JPL%20Summer%20Internship%20Program
2018-03-17 15:44:43,https://registration.jpl.nasa.gov/internship_application/cfm/index.cfm?program=JPL%20Summer%20Internship%20Program
2018-03-17 15:44:07,https://mail.google.com/mail/u/1/#inbox/1623561b56feecee
2018-03-17 15:43:55,https://repl.it/
2018-03-17 15:43:54,https://www.google.com/url?hl=en&q=https://repl.it/&source=gmail&ust=1521402219700000&usg=AFQjCNEHaxKoGY1BlGa45kG2lUj_7WKQCA
2018-03-17 15:43:51,https://mail.google.com/mail/u/1/#inbox/16235560470290e6
2018-03-17 15:43:23,https://us.suitsupply.com/en_US/trousers
2018-03-17 15:42:58,https://us.suitsupply.com/en_US/suits?prefn1=materialID&prefv1=linen
2018-03-17 15:42:06,https://us.suitsupply.com/en_US/suits/havana-light-brown-plain/P5402I.html?cgid=Suits&prefn1=materialID&prefv1=linen
2018-03-17 15:41:23,https://us.suitsupply.com/en_US/suits
2018-03-17 15:41:02,https://us.suitsupply.com/en_US/home
2018-03-17 15:40:56,https://www.google.com/search?ei=J2-tWuHiC4e-ggeZ2qigCQ&q=suit+supply&oq=suit&gs_l=psy-ab.1.2.35i39k1j0i67k1j0i20i263k1j0i67k1l4j0i10i67k1j0l2.21426.24183.0.26274.6.4.2.0.0.0.82.309.4.4.0..2..0...1.1.64.psy-ab..0.6.312...0i131k1.0.Yfpl5vZILWI
2018-03-17 15:40:28,https://www.google.com/search?q=what+shirts+to+wear+underneath+suit&oq=what+shirts+to+wear+underneath+suit&aqs=chrome..69i57j0l5.9136j0j7&sourceid=chrome&ie=UTF-8
2018-03-17 15:12:23,http://localhost:7777/index.html
2018-03-17 15:08:45,https://developer.affectiva.com/pricing/
2018-03-17 15:07:56,file:///Users/jxu2/github/thesis_explorations/trackers/affectiva/index.html
2018-03-17 15:06:22,http://developer.affectiva.com/
2018-03-17 15:06:22,https://developer.affectiva.com/
2018-03-17 15:06:18,https://www.affectiva.com/#undefined
2018-03-17 15:06:17,https://www.affectiva.com/#uses-buzz
2018-03-17 15:06:15,https://www.affectiva.com/#what-you-can-do
2018-03-17 15:06:14,https://www.affectiva.com/#how-it-works
2018-03-17 15:05:57,https://www.affectiva.com/
2018-03-17 15:05:57,http://affectiva.com/
2018-03-17 15:05:57,http://www.affectiva.com/
2018-03-17 15:05:44,https://developer.affectiva.com/wp-login.php?wpe-login=true
2018-03-17 15:05:40,https://developer.affectiva.com/wp-login.php?redirect_to=https%3A%2F%2Fdeveloper.affectiva.com
2018-03-17 15:05:12,https://mail.google.com/mail/u/1/#search/affectiva
2018-03-17 15:03:09,https://knowledge.affectiva.com/docs/getting-started-with-the-emotion-sdk-for-the-cloud
2018-03-17 15:03:05,http://stackoverflow.com/search?q=affectiva
2018-03-17 15:03:05,https://stackoverflow.com/search?q=affectiva
2018-03-17 15:02:24,https://knowledge.affectiva.com/docs/data-collection-faq
2018-03-17 15:02:24,https://knowledge.affectiva.com/docs/getting-started-with-the-emotion-sdk-for-javascript
2018-03-17 14:59:00,https://www.google.com/search?q=webcam+take+picture+every+hour&oq=webcam+take+picture+every+hour&aqs=chrome..69i57j0.8499j0j7&sourceid=chrome&ie=UTF-8
2018-03-17 14:58:25,https://accounts.google.com/SignOutOptions?continue=https%3A%2F%2Fkeep.google.com%2Fu%2F1%2Fshare%3Ftid%3Dtrue%23NOTE%2F1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw
2018-03-17 14:58:18,https://keep.google.com/u/1/share?tid=true#NOTE/1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw
2018-03-17 14:58:18,https://keep.google.com/u/1/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true#NOTE/1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw
2018-03-17 14:58:18,https://keep.google.com/u/0/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true&authuser=1
2018-03-17 14:58:18,https://keep.google.com/u/1/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true&authuser=1
2018-03-17 14:58:18,https://keep.google.com/u/1/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true
2018-03-17 14:56:38,https://www.facebook.com/messages/t/shaon.lahiri
2018-03-17 14:56:38,https://www.facebook.com/messages/t/1547451555323335
2018-03-17 14:56:32,https://www.facebook.com/messages/t/glade.gunvor
2018-03-17 14:55:53,https://www.facebook.com/messages/t/865175077
2018-03-17 14:55:28,https://www.facebook.com/rushaliy?sk=wall
2018-03-17 14:55:23,https://www.facebook.com/rushaliy?fref=jewel
2018-03-17 14:54:42,https://www.facebook.com/rushaliy/videos/vb.100000498009442/2049762498383664/?type=3&theater
2018-03-17 14:53:17,https://feedly.com/i/category/daily
2018-03-17 14:51:02,https://mail.google.com/mail/u/1/#inbox/16226bb1c39c60ac
2018-03-17 14:50:36,https://mail.google.com/mail/u/0/#inbox/162344fe40b7e351
2018-03-17 14:50:24,https://mail.google.com/mail/u/1/#label/apply+here
2018-03-17 14:50:14,https://mail.google.com/mail/u/1/#label/apply+here/161f7eccdf23fbb6
2018-03-17 14:50:01,https://mail.google.com/mail/u/2/#inbox
2018-03-17 14:49:59,https://mail.google.com/mail/u/2/#inbox/1622a12e7c3ca7e9
2018-03-17 14:49:51,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520886012576&xpc=%7B%22cn%22%3A%22s5po5i%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWa5KoYRLCuxiElrP2Wv-M4Ym4vIAIsTRT8iXUBbhY4VJ16c1m-1ibwmtzy_I1j3J2Yd_8LZpfU56Uum1GlouAIWxeQWtg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4A7IC8_QABAHbEsIMIaQXC7M885mmAl5sg9v__9zxAAGoAcA3wN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AL%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DfoDI2YEhAaw15cSPofgLDSfd-vg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.8985069140807358&tn=llj11knqrt8z&rld=1
2018-03-17 14:49:51,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520886012576&xpc=%7B%22cn%22%3A%22s5po5i%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWa5KoYRLCuxiElrP2Wv-M4Ym4vIAIsTRT8iXUBbhY4VJ16c1m-1ibwmtzy_I1j3J2Yd_8LZpfU56Uum1GlouAIWxeQWtg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4A7IC8_QABAHbEsIMIaQXC7M885mmAl5sg9v__9zxAAGoAcA3wN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AL%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DfoDI2YEhAaw15cSPofgLDSfd-vg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.8348001831376071&hb=1&tn=6fvk1e8h7wc3&rld=1
2018-03-17 14:49:31,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1521044860035&xpc=%7B%22cn%22%3A%224f8nkd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWaCERylyac3BPajsz1u-sQXJIt5D458FPMYamusgt8QffJaftHCiWVTUG0JOiAd4ux_NcAwxGeFz6sJVP6gdn-37nk49w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4A7IC8_QABAHbUsIMIaQXC7M885mmAk5kgxv__9wBAAGoAcAXwN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AJ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9ATo8CX2NzQJTn01TEnfSIszVUBvg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.15801189957879735&tn=gfjve3ki3to6&rld=1
2018-03-17 14:49:31,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1521044860035&xpc=%7B%22cn%22%3A%224f8nkd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWaCERylyac3BPajsz1u-sQXJIt5D458FPMYamusgt8QffJaftHCiWVTUG0JOiAd4ux_NcAwxGeFz6sJVP6gdn-37nk49w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4A7IC8_QABAHbUsIMIaQXC7M885mmAk5kgxv__9wBAAGoAcAXwN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AJ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9ATo8CX2NzQJTn01TEnfSIszVUBvg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.6141153866850715&tn=8ihsef9qucr6&rld=1
2018-03-16 14:32:47,http://weareash.org/new_version_staging/dist/what-we-do/model.html
2018-03-16 14:31:37,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520886012576&xpc=%7B%22cn%22%3A%22s5po5i%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWa5KoYRLCuxiElrP2Wv-M4Ym4vIAIsTRT8iXUBbhY4VJ16c1m-1ibwmtzy_I1j3J2Yd_8LZpfU56Uum1GlouAIWxeQWtg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4A7IC8_QABAHbEsIMIaQXC7M885mmAl5sg9v__9zxAAGoAcA3wN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AL%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DfoDI2YEhAaw15cSPofgLDSfd-vg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.318660931051024&tn=89t3b7wt94o0&rld=1
2018-03-16 14:27:55,https://mail.google.com/mail/u/2/#inbox/161c9a81e13c930a
2018-03-16 14:27:55,https://mail.google.com/mail/u/2/#inbox/161c9a81e13c930a?compose=162301179fe70d64
2018-03-16 14:27:54,https://mail.google.com/mail/u/2/#inbox/161c9a81e13c930a?compose=16230116ae61b608
2018-03-16 14:27:51,https://mail.google.com/mail/u/2/#inbox/161c9a81e13c930a?compose=new
2018-03-16 14:25:44,"https://www.google.com/maps/dir/40.7349405,-74.0074125/726+Broadway,+New+York,+NY+10003/@40.7321518,-74.0046859,16z/data=!3m1!4b1!4m18!1m7!3m6!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2s726+Broadway,+New+York,+NY+10003!3b1!8m2!3d40.7293168!4d-73.9932042!4m9!1m1!4e1!1m5!1m1!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2m2!1d-73.9932046!2d40.7293173!3e2"
2018-03-16 14:25:44,"https://www.google.com/maps/dir/40.7349405,-74.0074125/726+Broadway,+New+York,+NY+10003/@40.7302638,-73.9962087,16.36z/data=!4m18!1m7!3m6!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2s726+Broadway,+New+York,+NY+10003!3b1!8m2!3d40.7293168!4d-73.9932042!4m9!1m1!4e1!1m5!1m1!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2m2!1d-73.9932046!2d40.7293173!3e2"
2018-03-16 14:25:43,"https://www.google.com/maps/dir//726+Broadway,+New+York,+NY+10003/@40.7302638,-73.9962087,16.36z/data=!4m18!1m7!3m6!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2s726+Broadway,+New+York,+NY+10003!3b1!8m2!3d40.7293168!4d-73.9932042!4m9!1m1!4e2!1m5!1m1!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!2m2!1d-73.9932046!2d40.7293173!3e2"
2018-03-16 14:25:42,"https://www.google.com/maps/place/726+Broadway,+New+York,+NY+10003/@40.7302638,-73.9962087,16.36z/data=!4m5!3m4!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!8m2!3d40.7293168!4d-73.9932042"
2018-03-16 14:25:42,"https://www.google.com/maps/place/Navigating+Healthy+Dating+Relationshi...+Mar+19+5:00pm/@40.7302638,-73.9962087,16.36z/data=!4m5!3m4!1s0x89c2599a8aaecc51:0xdd2d7baccd93f3c4!8m2!3d40.7293168!4d-73.9932042"
2018-03-16 14:25:33,https://mail.google.com/mail/u/1/#search/health+center/162276d715148a5b
2018-03-16 14:25:31,https://mail.google.com/mail/u/1/#search/health+center
2018-03-16 14:25:23,https://mail.google.com/mail/u/1/#search/confirmation
2018-03-16 14:25:07,"https://www.google.com/maps/@40.7302638,-73.9962087,16.36z"
2018-03-16 14:25:05,"https://www.google.com/maps/@40.7321198,-74.0005833,15z"
2018-03-16 14:25:02,https://www.google.com/maps
2018-03-16 14:25:00,https://maps.google.com/
2018-03-16 14:25:00,https://maps.google.com/maps
2018-03-16 14:15:18,http://weareash.org/new_version_staging/dist/index.html
2018-03-16 14:14:27,https://www.squarespace.com/templates
2018-03-16 14:13:56,https://www.squarespace.com/
2018-03-16 14:13:55,https://www.google.com/search?q=squarespace&oq=squarespace&aqs=chrome..69i57j0j69i60l2j0l2.2895j0j7&sourceid=chrome&ie=UTF-8
2018-03-16 14:11:44,https://client.schwab.com/logout/logout.aspx?explicit=y
2018-03-16 14:11:44,https://billpay.schwab.com/imm/Auth/SLO/19005?ReturnUrl=https%3a%2f%2fclient.schwab.com%2flogout%2flogout.aspx%3fexplicit%3dy
2018-03-16 14:11:44,https://client.schwab.com/Login/SignOn/CustomerCenterLogin.aspx?LoggedOff=y
2018-03-16 14:11:26,https://billpay.schwab.com/imm/PaymentCenter/Index/19005
2018-03-16 14:11:23,https://billpay.schwab.com/imm/PaymentCenter/SubmitPayments
2018-03-16 14:11:23,https://billpay.schwab.com/imm/PaymentCenter/PaymentComplete/19005
2018-03-16 14:11:21,https://billpay.schwab.com/imm/PaymentCenter/MakePayments
2018-03-16 14:11:21,https://billpay.schwab.com/imm/PaymentCenter/ReviewPayments/19005
2018-03-16 14:11:11,https://mail.google.com/mail/u/0/#inbox/162201c5659d52a5
2018-03-16 14:11:03,https://billpay.schwab.com/cw411/wps
2018-03-16 14:11:03,https://billpay.schwab.com/imm/Auth/SSO/19005?ticketid=587aca8e3a37484ba03ed65e733ab54b
2018-03-16 14:11:01,https://client.schwab.com/Accounts/TransfersAndPayments/Paybills.aspx
2018-03-16 14:11:01,https://client.schwab.com/Accounts/TransfersAndPayments/checkfree.aspx
2018-03-16 14:10:57,https://client.schwab.com/secure/cc/accounts/transfers_payments/paybills
2018-03-16 14:10:50,https://client.schwab.com/secure/cc/accounts/transfers_payments
2018-03-16 14:10:50,https://client.schwab.com/secure/cc/accounts/transfers_payments/onlinetransfers
2018-03-16 14:10:50,https://client.schwab.com/Areas/Service/Transfers/Index.aspx
2018-03-16 14:10:38,https://client.schwab.com/secure/cc/accounts/history
2018-03-16 14:10:38,https://client.schwab.com/secure/cc/accounts/history/transactions
2018-03-16 14:10:38,https://client.schwab.com/Areas/Accounts/History
2018-03-16 14:10:38,https://client.schwab.com/Areas/Accounts/History/BankHistory.aspx
2018-03-16 14:10:38,https://client.schwab.com/Accounts/History/BankHistory.aspx
2018-03-16 14:10:22,https://client.schwab.com/Accounts/Summary/Summary.aspx?ShowUN=YES
2018-03-16 14:10:22,https://client.schwab.com/clientapps/accounts/summary/#/
2018-03-16 14:10:22,https://lms.schwab.com/Redirect
2018-03-16 14:10:22,https://lms.schwab.com/Login/ResultDeviceTag?clientId=schwab-prospect&trustedDevice=false&redirectUri=https%3A%2F%2Fclient.schwab.com%2Flogin%2Fsignon%2Fauthcodehandler.ashx&signedResponse=eyJhbGciOiJTSEExIiwidHlwIjoiSldUIn0.eyJyZWRpcmVjdFVybCI6IiIsInRhcmdldE9yaWdpbiI6IiIsImFjY2Vzc1Rva2VuIjoiMGEycjk2dGtOaWdWSUlwM3duOGJLaDlGSHpjanFDb0xXWXkxNjdoUUVqcmZ1dURHVXM1ZGdOTUFpQUVxb0t0cV82LVFPYm40RUZoNjRyRmI5ckR3NDFSOFRoMmhzeUNYMjhhanQ3Iiwia2V5IjoiYmQzODUwZDctYTI1OS00ZjM4LWExY2ItNGMzMWJmMTk0ODc1IiwicGhvbmVObyI6IlhYWC1YWFgtODE4OCIsImVtYWlsIjpudWxsLCJkZWxpdmVyeU1ldGhvZCI6InRleHQiLCJjYWxsRm9yd2FyZERldGVjdGVkIjpudWxsLCJsb2NrIjpmYWxzZSwic3VjY2VzcyI6dHJ1ZSwicmVzcG9uc2VNZXNzYWdlIjoiU3VjY2VzcyIsIm1lc3NhZ2VLZXkiOm51bGwsInJldHVybkNvZGUiOjB9.LKQSnL--hr1AoSvGvw-hGJ8MnIdYgn8z0jp0aTNikJ5V_nxFn2crDfXUgSt5RU_LDhvc7V2cH-px9czOhkgI5617dNjdgAferHo5hl66FrK7W6wDP1yjhoYqRM2dAJkKaXdxJvP0NV7QAWaB4V38-32Ly7cfOopqOzbHDaFBKwdrv7K0xKAF0q5jqevfHdIrVzHljCFOaWmgxOstZFdgAHtODVbzoBVTXMmQTIgU3ShKrjsrrgrL-FtCSJtufKIS4nGtUfgP_jtDTww4Y6NeuTeKu-jl1IKP3rx6aqSUSA3pFdmkSM2reMunvi0NtgUMcdbhC81jv8PLi3pulpJpMw
2018-03-16 14:10:22,https://client.schwab.com/login/signon/authcodehandler.ashx?code=C0.b2F1dGgyLmJkYy5zY2h3YWIuY29t.6JSxtbDL3nOK86b8_lb8mk_vj49HHY29On8fdNZ0Skg@&corrId=f95a9699-6be3-4252-b727-2f287eee8769&sanc=CCBodyi&CPN=N&enableappd=false
2018-03-16 14:10:19,https://lms.schwab.com/Sua/DeviceTag/AccessCodeEntry
2018-03-16 14:10:19,https://lms.schwab.com/Sua/DeviceTag/Success?clientId=schwab-prospect&redirectUrl=%2FLogin%2FResultDeviceTag%3FclientId%3Dschwab-prospect%26trustedDevice%3Dfalse%26redirectUri%3Dhttps%253A%252F%252Fclient.schwab.com%252Flogin%252Fsignon%252Fauthcodehandler.ashx%26signedResponse%3DeyJhbGciOiJTSEExIiwidHlwIjoiSldUIn0.eyJyZWRpcmVjdFVybCI6IiIsInRhcmdldE9yaWdpbiI6IiIsImFjY2Vzc1Rva2VuIjoiMGEycjk2dGtOaWdWSUlwM3duOGJLaDlGSHpjanFDb0xXWXkxNjdoUUVqcmZ1dURHVXM1ZGdOTUFpQUVxb0t0cV82LVFPYm40RUZoNjRyRmI5ckR3NDFSOFRoMmhzeUNYMjhhanQ3Iiwia2V5IjoiYmQzODUwZDctYTI1OS00ZjM4LWExY2ItNGMzMWJmMTk0ODc1IiwicGhvbmVObyI6IlhYWC1YWFgtODE4OCIsImVtYWlsIjpudWxsLCJkZWxpdmVyeU1ldGhvZCI6InRleHQiLCJjYWxsRm9yd2FyZERldGVjdGVkIjpudWxsLCJsb2NrIjpmYWxzZSwic3VjY2VzcyI6dHJ1ZSwicmVzcG9uc2VNZXNzYWdlIjoiU3VjY2VzcyIsIm1lc3NhZ2VLZXkiOm51bGwsInJldHVybkNvZGUiOjB9.LKQSnL--hr1AoSvGvw-hGJ8MnIdYgn8z0jp0aTNikJ5V_nxFn2crDfXUgSt5RU_LDhvc7V2cH-px9czOhkgI5617dNjdgAferHo5hl66FrK7W6wDP1yjhoYqRM2dAJkKaXdxJvP0NV7QAWaB4V38-32Ly7cfOopqOzbHDaFBKwdrv7K0xKAF0q5jqevfHdIrVzHljCFOaWmgxOstZFdgAHtODVbzoBVTXMmQTIgU3ShKrjsrrgrL-FtCSJtufKIS4nGtUfgP_jtDTww4Y6NeuTeKu-jl1IKP3rx6aqSUSA3pFdmkSM2reMunvi0NtgUMcdbhC81jv8PLi3pulpJpMw&suaType=DeviceTag&trusted=False
2018-03-16 14:10:03,https://lms.schwab.com/Sua/DeviceTag/AccessCodeEntry?clientId=schwab-prospect&sessionId=bd3850d7-a259-4f38-a1cb-4c31bf194875&suaType=DeviceTag&deliveryMethod=Sms&returnMessage=The%20Access%20Code%20you%20entered%20is%20incorrect.%20Please%20check%20the%20Access%20Code%20and%20enter%20it%20again.&returnCode=9999&redirectUrl=https%3A%2F%2Fclient.schwab.com%2Flogin%2Fsignon%2Fauthcodehandler.ashx&selectedId=1
2018-03-16 14:09:41,https://lms.schwab.com/Sua/DeviceTag/OptionSelection
2018-03-16 14:09:41,https://lms.schwab.com/Sua/DeviceTag/AccessCodeEntry?clientId=schwab-prospect&sessionId=bd3850d7-a259-4f38-a1cb-4c31bf194875&suaType=DeviceTag&selectedId=1&deliveryMethod=Sms&redirectUrl=https%3A%2F%2Fclient.schwab.com%2Flogin%2Fsignon%2Fauthcodehandler.ashx
2018-03-16 14:09:36,https://lms.schwab.com/Sua/DeviceTag/OptionSelection?clientId=schwab-prospect&sessionId=bd3850d7-a259-4f38-a1cb-4c31bf194875&suaType=DeviceTag&redirectUrl=https%3A%2F%2Fclient.schwab.com%2Flogin%2Fsignon%2Fauthcodehandler.ashx
2018-03-16 14:09:31,https://lms.schwab.com/Intervene?clientId=schwab-prospect&redirectUri=https%3a%2f%2fclient.schwab.com%2flogin%2fsignon%2fauthcodehandler.ashx&type=DeviceTag&id=5aac085a57436b0c7c29b25a
2018-03-16 14:09:31,https://lms.schwab.com/Sua/DeviceTag?clientId=schwab-prospect&redirectUrl=https%3A%2F%2Fclient.schwab.com%2Flogin%2Fsignon%2Fauthcodehandler.ashx&sessionId=bd3850d7-a259-4f38-a1cb-4c31bf194875&suaType=DeviceTag
2018-03-16 14:09:19,https://www.schwab.com/
2018-03-16 14:09:19,https://www.schwab.com/public/schwab/client_home
2018-03-16 14:08:53,https://apps.coned.com/CEMyAccount/CSOL/PayOptions.aspx
2018-03-16 14:08:24,https://apps.coned.com/CEMyAccount/CSOL/MainHome.aspx?lang=eng
2018-03-16 14:08:24,https://apps.coned.com/cemyaccount/NonMemberPages/Login.aspx?params=YBuD64pgMuMh1c1w5Xtpe/e3si/EashdyJH0gMAwSmtGc5icIyJjG/FFj0XxdnlAaS9HMWlbrYR3CFlWepyBbXb7k6KbP9uHyWK1oQZTc8I=
2018-03-16 14:08:19,https://apps.coned.com/cemyaccount/NonMemberPages/Login.aspx?lang=eng
2018-03-16 14:08:19,https://www.coned.com/en/login%20
2018-03-16 14:08:14,https://doportal.documentmailbox.com/RedirectTarget.aspx?Action=EmailRedirect&BrandingID=ConEdison&IdToken=46A1EEFE-2684-11E8-80FC-1C98EC1A1C6A&CheckSum=8acdbc452fa4ce61ea955ef125c5b874&TargetUrl=http%3A%2F%2Fwww.coned.com%2Fcustomercentral%2Fmanagemybill.asp
2018-03-16 14:08:14,http://www.coned.com/customercentral/managemybill.asp
2018-03-16 14:08:14,https://www.coned.com/customercentral/managemybill.asp
2018-03-16 14:08:14,https://www.coned.com/en/accounts-billing/your-bill
2018-03-16 13:46:37,file:///Users/jxu2/Downloads/O17LOC%20(1).pdf
2018-03-16 13:46:29,https://mail.google.com/mail/u/1/#inbox/162273e2ffd593a4
2018-03-16 13:46:25,https://mail.google.com/mail/u/1/#inbox/162273e2ffd593a4?projector=1&messagePartId=0.1
2018-03-16 13:37:25,https://mail.google.com/mail/u/1/#inbox/1622f9ac8109bf09
2018-03-16 13:36:41,https://mail.google.com/mail/u/1/#inbox/1622ef4fbc1c9a35
2018-03-16 13:35:02,https://mail.google.com/mail/u/1/#inbox/1622fdb2cc046b17
2018-03-16 13:28:23,https://www.google.com/search?q=Jinyoung+Chang&oq=Jinyoung+Chang&aqs=chrome..69i57j0.294j0j7&sourceid=chrome&ie=UTF-8
2018-03-16 13:16:57,https://www.google.com/search?q=ROI&oq=ROI&aqs=chrome..69i57j69i65j0l4.287j0j7&sourceid=chrome&ie=UTF-8
2018-03-16 13:16:34,https://calendar.google.com/calendar/r/week/2018/3/23
2018-03-16 13:10:06,https://www.flickr.com/photos/133005141@N08/39034424640/in/datetaken/
2018-03-16 13:09:52,https://www.flickr.com/photos/133005141@N08/
2018-03-16 13:09:37,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?ids=152
2018-03-16 13:09:37,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Mark+as+Spam&_wpnonce=8598017e22&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D152&action=spamcomment&c=152&noredir=1
2018-03-16 13:09:37,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?spammed=1&ids=152
2018-03-16 13:09:30,https://www.flickr.com/
2018-03-16 13:09:29,http://flickr.com/
2018-03-16 13:09:29,http://www.flickr.com/
2018-03-16 13:04:14,https://www.instagram.com/we_are_ash/
2018-03-16 13:00:37,https://mail.google.com/mail/u/2/#inbox/1622a12e7c3ca7e9?projector=1
2018-03-16 12:51:09,http://actioniq.com/
2018-03-16 12:51:09,http://www.actioniq.com/
2018-03-16 12:51:09,https://www.actioniq.com/
2018-03-16 12:50:48,https://actioniq.workable.com/
2018-03-16 12:50:11,https://www.google.com/url?hl=en&q=https://www.workable.com/j/D0B21C1F46&source=gmail&ust=1521305317371000&usg=AFQjCNEJuaCvTuBgWIK2Am6QqPQVWpC0vQ
2018-03-16 12:50:11,https://www.workable.com/j/D0B21C1F46
2018-03-16 12:50:08,https://mail.google.com/mail/u/1/#inbox/1622f33957016e32
2018-03-16 12:48:43,https://mail.google.com/mail/u/1/#inbox/1622f91ca3dead68
2018-03-16 12:48:13,https://billing.questdiagnostics.com/PatientBilling/PatientBilling.action
2018-03-16 12:48:06,https://billing.questdiagnostics.com/PatientBilling/ProcessSinglePaymentUpdate.action
2018-03-16 12:48:03,https://billing.questdiagnostics.com/PatientBilling/ProcessSinglePayment.action
2018-03-16 12:47:20,https://billing.questdiagnostics.com/PatientBilling/doOpenAR.action
2018-03-16 12:47:20,https://billing.questdiagnostics.com/PatientBilling/showProcessSinglePayment.action?fromConfirmPage=
2018-03-16 12:46:50,https://billing.questdiagnostics.com/PatientBilling/doPatientBilling.action
2018-03-16 12:46:50,https://billing.questdiagnostics.com/PatientBilling/showOpenAR.action
2018-03-16 12:46:26,https://billing.questdiagnostics.com/PatientBilling/PatientBillingDef.action?fromLink=doPayment
2018-03-16 12:46:19,http://www.questdiagnostics.com/bill
2018-03-16 12:46:19,https://billing.questdiagnostics.com/PatientBilling/PatientBilling.action?utm_source=redirect&utm_medium=web&utm_campaign=133
2018-03-16 10:58:29,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.5669808836954984&tn=eq2mo3omg2fb&rld=1
2018-03-16 09:36:56,https://www.nyu.edu/students/health-and-wellness/student-health-center/services/travel-medicine.html
2018-03-16 09:36:48,http://www.who.int/ihr/ports_airports/icvp/en/index.html
2018-03-16 09:36:48,http://www.who.int/ihr/ports_airports/icvp/en/
2018-03-16 09:34:14,https://mail.google.com/mail/u/1/#inbox/1622c8cfa3195335
2018-03-16 09:34:06,https://mail.google.com/mail/u/0/#inbox/1622f015e98ce339
2018-03-16 09:33:19,https://mail.google.com/mail/u/1/#inbox/162276d715148a5b
2018-03-16 09:26:41,file:///Users/jxu2/Downloads/O17LOC.pdf
2018-03-16 09:26:01,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=152#wpbody-content
2018-03-16 09:25:50,https://mail.google.com/mail/u/1/#inbox/1622c5048ce88c70
2018-03-16 09:24:42,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center/services/travel-medicine.html
2018-03-16 09:24:38,https://www.nyu.edu/students/health-and-wellness/student-health-center/services.html
2018-03-16 09:24:37,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center/services.html
2018-03-16 09:16:34,https://www.nyu.edu/students/health-and-wellness/student-health-center.html#generalhours
2018-03-16 09:16:33,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center.html#generalhours
2018-03-15 23:30:20,http://xujenna.com/ABOUT/index.php
2018-03-15 23:29:49,https://github.com/xujenna/thesis_explorations
2018-03-15 23:29:47,https://github.com/xujenna/thesis_explorations/tree/master/past%20analyzers
2018-03-15 23:29:23,https://github.com/xujenna/thesis_explorations/branches
2018-03-15 23:29:05,https://github.com/xujenna
2018-03-15 23:26:38,https://github.com/
2018-03-15 23:26:31,http://xujenna.com/
2018-03-15 23:26:23,https://mail.google.com/mail/u/1/#inbox/1622cd2afce7289b
2018-03-15 23:26:13,https://mail.google.com/mail/u/1/#inbox/16206a21fab0b510
2018-03-15 23:19:40,https://krb-sjobs.brassring.com/TGnewUI/Search/Home/Home?partnerid=26059&siteid=5016&cm_mc_uid=12899698079915196603449&cm_mc_sid_50200000=32738961521170377422#home
2018-03-15 23:19:35,https://ibmglobal.hirevue.com/interviews/Etwt2gr-ena42h/exit/
2018-03-15 23:19:35,http://www-03.ibm.com/employment/
2018-03-15 23:19:35,http://www-03.ibm.com/employment/index.shtml
2018-03-15 23:13:54,https://ibmglobal.hirevue.com/interviews/Etwt2gr-ena42h/candidate/?sl
2018-03-15 23:02:46,https://www.google.com/search?q=polymorphism&oq=polymorphism&aqs=chrome..69i57j0l5.2496j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 22:48:24,https://calendar.google.com/calendar/r/week/2018/3/22
2018-03-15 22:47:15,https://mail.google.com/mail/u/1/#inbox/1622c781bda4a3b5
2018-03-15 22:47:06,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?ids=151
2018-03-15 22:47:06,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Mark+as+Spam&_wpnonce=97ddce881c&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D151&action=spamcomment&c=151&noredir=1
2018-03-15 22:47:06,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?spammed=1&ids=151
2018-03-15 22:47:03,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=151#wpbody-content
2018-03-15 22:35:36,https://mail.google.com/mail/u/1/#inbox/16206a2dd039929c
2018-03-15 22:34:09,https://www.nyu.edu/students/health-and-wellness/student-health-center/services/allergy-immunology.html
2018-03-15 22:34:09,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center/services/allergy-immunology.html
2018-03-15 22:33:57,https://www.nyu.edu/students/health-and-wellness/student-health-center/insurance-patient-accounts.html
2018-03-15 22:33:57,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center/insurance-patient-accounts.html
2018-03-15 22:31:30,https://shcportal.nyu.edu/logout.aspx?MsgType=PAGETEMPLATE_1&AdditionalInfo=
2018-03-15 22:31:30,https://shcportal.nyu.edu/logout.aspx?MsgType=ILLEGAL_CONFIRM&AdditionalInfo=
2018-03-15 22:27:32,https://home-c6.incontact.com/inContact/ChatClient/ChatClientPatron.aspx?poc=a7b68949-830b-4017-8391-74deff6d5284&bu=4593045
2018-03-15 22:27:32,https://home-c6.incontact.com/inContact/ChatClient/ChatClient.aspx?poc=a7b68949-830b-4017-8391-74deff6d5284&bu=4593045
2018-03-15 22:24:21,http://hirevue.force.com/E2CandidateNonFlash
2018-03-15 22:05:00,https://www.instagram.com/p/BfgmwkalfnB/?taken-by=we_are_ash
2018-03-15 22:04:58,https://www.instagram.com/p/Bfto7SqlYet/?taken-by=we_are_ash
2018-03-15 22:04:55,https://www.instagram.com/p/Bf89Cx5lPuS/?taken-by=we_are_ash
2018-03-15 22:04:20,https://mail.google.com/mail/u/1/#inbox/1622c85fe380dff0
2018-03-15 22:03:34,https://shcportal.nyu.edu/StatementsHome.aspx
2018-03-15 22:03:23,https://shcportal.nyu.edu/immunizations_home.aspx
2018-03-15 22:03:04,https://shcportal.nyu.edu/appointments_questionnaire_notify_submitted.aspx
2018-03-15 22:02:59,https://shcportal.nyu.edu/appointments_questionnaire_fill.aspx
2018-03-15 22:02:26,https://mail.google.com/mail/u/0/#search/malaria
2018-03-15 22:01:01,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8
2018-03-15 22:00:59,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.4
2018-03-15 22:00:54,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.5
2018-03-15 22:00:51,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.6
2018-03-15 22:00:47,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.1
2018-03-15 22:00:45,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.3
2018-03-15 22:00:43,https://mail.google.com/mail/u/0/#search/michelle/15da59759fe25cb8?projector=1&messagePartId=0.2
2018-03-15 21:47:01,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1521044860035&xpc=%7B%22cn%22%3A%224f8nkd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWaCERylyac3BPajsz1u-sQXJIt5D458FPMYamusgt8QffJaftHCiWVTUG0JOiAd4ux_NcAwxGeFz6sJVP6gdn-37nk49w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4A7IC8_QABAHbUsIMIaQXC7M885mmAk5kgxv__9wBAAGoAcAXwN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AJ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9ATo8CX2NzQJTn01TEnfSIszVUBvg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=gsdkbu7c5sut
2018-03-15 20:11:46,"https://www.google.com/maps/dir/40.7294121,-73.9934648/Bus+Stop+Cafe,+597+Hudson+St,+New+York,+NY+10014/@40.7330831,-74.0040863,16z/data=!3m1!4b1!4m17!1m6!3m5!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2sBus+Stop+Cafe!8m2!3d40.7370233!4d-74.0060608!4m9!1m1!4e1!1m5!1m1!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2m2!1d-74.0060608!2d40.7370233!3e2"
2018-03-15 20:11:46,"https://www.google.com/maps/dir/40.7294121,-73.9934648/Bus+Stop+Cafe,+597+Hudson+St,+New+York,+NY+10014/@40.7379128,-74.0139654,14.65z/data=!4m17!1m6!3m5!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2sBus+Stop+Cafe!8m2!3d40.7370233!4d-74.0060608!4m9!1m1!4e1!1m5!1m1!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2m2!1d-74.0060608!2d40.7370233!3e2"
2018-03-15 20:11:45,"https://www.google.com/maps/dir//Bus+Stop+Cafe,+597+Hudson+St,+New+York,+NY+10014/@40.7379128,-74.0139654,14.65z/data=!4m17!1m6!3m5!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2sBus+Stop+Cafe!8m2!3d40.7370233!4d-74.0060608!4m9!1m1!4e2!1m5!1m1!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2m2!1d-74.0060608!2d40.7370233!3e2"
2018-03-15 20:11:44,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7379128,-74.0139654,14.65z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-15 20:11:43,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7373106,-74.0100816,15.79z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-15 20:11:41,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7370273,-74.0082548,17z/data=!3m1!4b1!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-15 20:11:41,"https://www.google.com/maps/place/Bus+Stop+Cafe,+Hudson+Street,+New+York,+NY/@40.8210274,-73.9621073,14.66z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-15 20:11:35,"https://www.google.com/maps/place/Bus+Stop+Diner/@40.8210274,-73.9621073,14.66z/data=!4m5!3m4!1s0x89c2f6662067edd7:0xb7893217ebdd461a!8m2!3d40.8204466!4d-73.9553624"
2018-03-15 20:11:33,"https://www.google.com/maps/place/Bus+Stop+Diner/@40.8204506,-73.9575564,17z/data=!3m1!4b1!4m5!3m4!1s0x89c2f6662067edd7:0xb7893217ebdd461a!8m2!3d40.8204466!4d-73.9553624"
2018-03-15 20:11:33,"https://www.google.com/maps/place/Bus+Stop+Diner/@40.7312261,-73.9888796,15z/data=!4m5!3m4!1s0x89c2f6662067edd7:0xb7893217ebdd461a!8m2!3d40.8204466!4d-73.9553624"
2018-03-15 20:11:32,"https://www.google.com/maps/place/Bus+Stop+Diner,+Broadway,+New+York,+NY/@40.7312261,-73.9888796,15z/data=!4m5!3m4!1s0x89c2f6662067edd7:0xb7893217ebdd461a!8m2!3d40.8204466!4d-73.9553624"
2018-03-15 20:11:31,"https://www.google.com/maps/@40.7312261,-73.9888796,15z"
2018-03-15 20:10:25,https://www.google.com/search?q=La+Bonbonniere&oq=La+Bonbonniere&aqs=chrome..69i57j0l2j69i60j0l2.230j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 20:09:31,https://www.google.com/search?q=bus+stop+diner&oq=bus+stop+diner&aqs=chrome..69i57j69i60l2j0j69i61j0.2455j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 20:08:52,https://www.google.com/search?q=La+Bonbonniere&oq=La+Bonbonniere&aqs=chrome..69i57j0l2j69i60j0l2.211j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 20:06:14,https://docs.python.org/3/library/collections.html
2018-03-15 20:06:00,https://www.google.com/search?q=defaultdict&oq=defaultdict&aqs=chrome..69i57j0l5.1263j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 20:05:54,https://stackoverflow.com/questions/5900578/how-does-collections-defaultdict-work
2018-03-15 20:01:18,https://stackoverflow.com/q/950087
2018-03-15 20:01:18,https://stackoverflow.com/questions/950087/how-do-i-include-a-javascript-file-in-another-javascript-file
2018-03-15 20:01:10,https://www.google.com/search?ei=OgmrWouyJuqE_QathIq4Bw&q=how+to+import+javascript+library+in+js&oq=how+to+import+javascript+library+in+js&gs_l=psy-ab.3..0i22i30k1.4632.9890.0.10769.38.34.0.0.0.0.176.2746.22j11.33.0....0...1.1.64.psy-ab..5.33.2733...0j35i39k1j0i131k1j0i20i263k1.0.bs0U12plHKk
2018-03-15 20:00:57,https://www.google.com/search?q=d3+rollup&oq=d3+rollup&aqs=chrome..69i57j69i60l2j35i39j0l2.1727j0j4&sourceid=chrome&ie=UTF-8
2018-03-15 19:56:54,http://bl.ocks.org/shancarter/raw/4748131/
2018-03-15 19:48:56,http://learnjsdata.com/group_data.html
2018-03-15 19:47:09,http://leaena.com/2014/01/d3-js-rollups/
2018-03-15 19:47:09,http://www.d3noob.org/2014/02/grouping-and-summing-data-using-d3nest.html
2018-03-15 19:47:01,https://www.google.com/search?ei=6wWrWoPHOaO6ggfotJqQAQ&q=d3+rollup&oq=d3+rollup&gs_l=psy-ab.3..35i39k1l2j0l3j0i20i263k1j0i22i30k1l3.7379.8380.0.8631.9.9.0.0.0.0.77.537.9.9.0....0...1.1.64.psy-ab..0.9.532...0i131k1j0i131i67k1j0i67k1.0.6aDV7Ul91pQ
2018-03-15 19:46:50,https://www.google.com/search?ei=rgCrWsO1F-KD_QaogZCYDg&q=csv+formated+variable+javascript&oq=csv+formated+variable+jav&gs_l=psy-ab.3.0.33i22i29i30k1.1326583.1336985.0.1338542.25.23.0.0.0.0.128.1505.22j1.23.0..2..0...1.1.64.psy-ab..2.23.1497...0j35i39k1j0i67k1j0i131k1j0i131i67k1j0i20i263k1j0i10k1j0i13k1j33i160k1j33i21k1.0.IvaRELqG8HE
2018-03-15 19:45:49,https://stackoverflow.com/questions/34804507/d3-js-nesting-and-rollup-at-same-time/34812451
2018-03-15 19:45:39,https://www.google.com/search?ei=iQWrWrGJLI2o_Qbw5aTQBw&q=d3+rollup+python&oq=d3+rollup+python&gs_l=psy-ab.3...737.1231.0.1301.6.4.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..6.0.0....0.CJAHyQFkOhQ
2018-03-15 19:45:18,https://pypi.python.org/pypi/nesting/0.1.0
2018-03-15 19:45:12,https://www.google.com/search?ei=ggWrWvmnOumGggfIsK2QCg&q=d3+rollup+nest&oq=d3+rollup+&gs_l=psy-ab.1.1.35i39k1j0i20i263k1j0l2j0i20i263k1j0i22i30k1l2j0i22i10i30k1j0i22i30k1j0i67k1.4046.4046.0.5125.1.1.0.0.0.0.60.60.1.1.0....0...1.1.64.psy-ab..0.1.59....0.s790Eey3mXI
2018-03-15 19:45:05,https://www.google.com/search?ei=UwWrWtSXCIWxggeg5YHgDA&q=d3+rollup&oq=d3+rollup&gs_l=psy-ab.3..35i39k1l2j0i67k1j0l2j0i20i263k1j0i22i30k1l3.44725.45995.0.46127.9.9.0.0.0.0.103.675.8j1.9.0..2..0...1.1.64.psy-ab..0.9.670...0i131k1j0i131i67k1.0.WPK8GfbkASA
2018-03-15 19:44:18,https://www.google.com/search?ei=9tyqWsafO4G45gLso7uwBA&q=how+to+read+an+array+as+csv+javascript&oq=how+to+read+an+array+as+csv+javascript&gs_l=psy-ab.3..33i22i29i30k1.10297446.10329202.0.10329343.60.51.6.0.0.0.163.4176.40j11.51.0..2..0...1.1.64.psy-ab..4.41.3401...0j0i67k1j0i131k1j0i22i30k1.0.zeQWLJvv1h0
2018-03-15 19:43:25,https://github.com/xujenna/thesis_explorations/commit/890ccfec573821ddbe8ed652aafb17170ca2a4be#diff-3f316101d37113c7e89af51d430aa413
2018-03-15 19:43:24,https://github.com/xujenna/thesis_explorations/commits/master/trackers/_viz/mindwandering
2018-03-15 19:43:15,https://github.com/xujenna/thesis_explorations/tree/master/trackers/_viz/mindwandering
2018-03-15 19:43:14,https://github.com/xujenna/thesis_explorations/tree/master/trackers
2018-03-15 19:41:51,https://www.google.com/search?ei=xf6qWqTtJc6C5wK93YXQCQ&q=string+to+csv+javascript&oq=csv+variable+javascript&gs_l=psy-ab.1.7.0i71k1l8.0.0.0.1527950.0.0.0.0.0.0.0.0..0.0....0...1..64.psy-ab..0.0.0....0.Y_Rf4kUV6BU
2018-03-15 19:29:15,https://ibmglobal.hirevue.com/interviews/Etwt2gr-ena42h/
2018-03-15 19:24:30,https://www.google.com/search?q=comma+separated+list+of+text+python&oq=comma+separated+list+of+text+python&aqs=chrome..69i57.7293j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 19:22:39,http://learnjsdata.com/read_data.html
2018-03-15 19:20:48,https://stackoverflow.com/questions/24375168/javascript-insert-r-n-at-every-line-break-in-string
2018-03-15 19:20:42,https://www.google.com/search?q=how+to+add+a+line+to+csv+variable+javascript&oq=how+to+add+a+line+to+csv+variable+javascript&aqs=chrome..69i57j69i64.5173j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 19:17:51,https://www.google.com/search?q=d3+rollup&oq=d3+rollup&aqs=chrome..69i57j35i39j0l4.1583j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 19:16:22,https://www.google.com/search?q=csv+variable+javascript&oq=csv+variable+javascript&aqs=chrome..69i57j0l2.3150j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 19:06:54,https://stackoverflow.com/questions/186857/splitting-a-semicolon-separated-string-to-a-dictionary-in-python
2018-03-15 19:06:19,https://www.google.com/search?ei=YfyqWrukJIz45gLTtrX4Cw&q=how+to+make+a+dictionary+out+of+comma+separated+string&oq=how+to+make+a+dictionary+out+of+comma+separated+&gs_l=psy-ab.1.1.33i160k1l2.3688.5757.0.7566.17.10.0.0.0.0.357.780.0j3j0j1.4.0....0...1.1.64.psy-ab..13.4.779...33i22i29i30k1j33i21k1.0.yaaJRl3XDzc
2018-03-15 19:06:10,https://www.google.com/search?q=how+to+make+a+dictionary+out+of+strings+pythong&oq=how+to+make+a+dictionary+out+of+strings+pythong&aqs=chrome..69i57j69i64.5158j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 19:05:52,https://www.pythonlearn.com/html-008/cfbook011.html
2018-03-15 19:04:54,https://www.w3resource.com/python-exercises/dictionary/python-data-type-dictionary-exercise-24.php
2018-03-15 19:04:47,http://www.compciv.org/guides/python/fundamentals/dictionaries-overview/
2018-03-15 19:04:30,http://www.compciv.org/guides/python/fundamentals/dictionaries-overview/#iterating-through-the-keys
2018-03-15 19:04:20,https://stackoverflow.com/questions/11918909/how-do-i-create-a-dictionary-from-two-parallel-strings
2018-03-15 19:03:53,https://stackoverflow.com/questions/4627981/creating-a-dictionary-from-a-string
2018-03-15 18:49:31,https://mail.google.com/mail/u/1/#inbox/1622bd0efd584015
2018-03-15 18:47:09,https://stackoverflow.com/a/1265696
2018-03-15 18:47:09,https://stackoverflow.com/questions/1265665/how-can-i-check-if-a-string-represents-an-int-without-using-try-except/1265696#1265696
2018-03-15 18:47:08,https://www.google.com/url?q=https://stackoverflow.com/a/1265696&sa=D&source=hangouts&ust=1521238370944000&usg=AFQjCNGCQ0A8x8FpwXI7qZZFQtoEpKAZxg
2018-03-15 18:08:54,https://plus.google.com/u/0/photos/albums/p4kb5grjf8ujn8h08a8a3m3m24qv944i8?pid=6533292637308177554&oid=104413863944849018097
2018-03-15 18:08:54,https://lh3.googleusercontent.com/-ZQ00d5-VQNs/WqrrCextzJI/AAAAAAAAiy0/xdHpDImsQgQ7v-d2jfZHMJQxX0AoKVk2gCL0BGAYYCw/h2150/2018-03-15.png
2018-03-15 18:01:42,https://www.yelp.com/biz/spot-dessert-bar-new-york-2
2018-03-15 18:01:37,https://www.yelp.com/biz_photos/spot-dessert-bar-new-york-2
2018-03-15 18:01:25,https://www.google.com/search?q=spot+dessert+bar&oq=spot+desser&aqs=chrome.0.0l3j69i57j0l2.1398j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 17:59:10,https://www.google.com/url?hl=en&q=https://www.yelp.com/biz/dessert-club-chikalicious-new-york-9&source=gmail&ust=1521233539275000&usg=AFQjCNFlNVzgn_6HBJeuM10TzjWhRnNOug
2018-03-15 17:59:10,https://www.yelp.com/biz/dessert-club-chikalicious-new-york-9
2018-03-15 17:47:27,https://stackoverflow.com/questions/4843173/how-to-check-if-type-of-a-variable-is-string
2018-03-15 17:47:24,https://www.google.com/search?q=how+to+check+if+something+is+a+string+in+python&oq=how+to+check+if+somethign+is+a+string+in&aqs=chrome.1.69i57j0l5.5602j1j4&sourceid=chrome&ie=UTF-8
2018-03-15 17:46:16,https://stackoverflow.com/q/354038
2018-03-15 17:46:16,https://stackoverflow.com/questions/354038/how-do-i-check-if-a-string-is-a-number-float
2018-03-15 17:46:10,https://www.google.com/search?q=how+to+check+if+something+is+a+number+in+python&oq=how+to+check+if+something+is+a+&aqs=chrome.2.69i57j0l5.7720j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 16:52:06,https://www.google.com/search?q=ibm+hirevue+software+developer&oq=ibm+hirevue+software+developer&aqs=chrome..69i57.11796j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 16:47:41,https://krb-sjobs.brassring.com/TGnewUI/Search/Home/HomeWithPreLoad?partnerid=26059&siteid=5016&PageType=searchResults&SearchType=linkquery#jobDetails=121239_5016
2018-03-15 16:47:41,https://www.google.com/url?hl=en&q=https://krb-sjobs.brassring.com/TGnewUI/Search/Home/HomeWithPreLoad?partnerid%3D26059%26siteid%3D5016%26PageType%3DsearchResults%26SearchType%3Dlinkquery%23jobDetails%3D121239_5016&source=gmail&ust=1521233239786000&usg=AFQjCNEeEnRMFOtLDNIdiaz7B29qnO6diQ
2018-03-15 16:47:31,https://krb-sjobs.brassring.com/TGnewUI/Search/Home/HomeWithPreLoad?partnerid=26059&siteid=5016&PageType=searchResults&SearchType=linkquery#jobDetails=118905_5016
2018-03-15 16:47:31,https://www.google.com/url?hl=en&q=https://krb-sjobs.brassring.com/TGnewUI/Search/Home/HomeWithPreLoad?partnerid%3D26059%26siteid%3D5016%26PageType%3DsearchResults%26SearchType%3Dlinkquery%23jobDetails%3D118905_5016&source=gmail&ust=1521233239786000&usg=AFQjCNECZlbQwdxeAOWtUl_-_VnB1708FQ
2018-03-15 16:47:25,https://mail.google.com/mail/u/1/#search/ibm/161a95e280627b62
2018-03-15 16:47:17,https://mail.google.com/mail/u/1/#search/ibm
2018-03-15 16:33:32,https://login.library.nyu.edu/users/auth/nyu_shibboleth/callback?auth_type=nyu&institution=NYU
2018-03-15 16:33:32,https://login.library.nyu.edu/Shibboleth.sso/SAML2/POST
2018-03-15 16:33:32,https://eshelf.library.nyu.edu/users/auth/nyulibraries
2018-03-15 16:33:32,https://login.library.nyu.edu/passthru
2018-03-15 16:33:32,https://rooms.library.nyu.edu/
2018-03-15 16:33:32,https://login.library.nyu.edu/oauth/authorize?client_id=200b78586bdf1bdbc394ee39008b6c18374ed08f5380066b4ae5846b9e280a0c&redirect_uri=https%3A%2F%2Frooms.library.nyu.edu%2Fusers%2Fauth%2Fnyulibraries%2Fcallback&response_type=code&state=aa2114fad578a531f463d6ccf9a8a3cc6b528ce80e02879a
2018-03-15 16:33:32,https://login.library.nyu.edu/oauth/authorize?client_id=bbcf34b029d1b729dee3db58e6e1b13f469ae756c83d99b345dd1689fd6b36ef&redirect_uri=https%3A%2F%2Feshelf.library.nyu.edu%2Fusers%2Fauth%2Fnyulibraries%2Fcallback&response_type=code&state=9679e6bc8bd1efa4fc7c7170b426d9c950f8412dbff46598
2018-03-15 16:33:32,https://eshelf.library.nyu.edu/users/auth/nyulibraries/callback?code=110443ace309be5d77bf34926015dc5792973056a9fadb2547550fd0bb35774d&state=9679e6bc8bd1efa4fc7c7170b426d9c950f8412dbff46598
2018-03-15 16:33:32,https://rooms.library.nyu.edu/users/auth/nyulibraries/callback?code=6c2d87185ad5cb890b782796fbde510462be52748d16c974c3739ed29eb2beb1&state=aa2114fad578a531f463d6ccf9a8a3cc6b528ce80e02879a
2018-03-15 16:33:26,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?execution=e1s2
2018-03-15 16:33:13,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?execution=e1s1
2018-03-15 16:33:11,https://login.library.nyu.edu/users/auth/nyu_shibboleth?auth_type=nyu&institution=NYU
2018-03-15 16:33:11,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZLRboIwFIZfhfReiiARGyFhejETN4m4XexmKXCUJqVlPWWbbz8Uje7G6%2F7n%2B8%2F50jnyRrYs7WyttvDVAVrnt5EK2fkhJp1RTHMUyBRvAJktWZ6%2BrJnveqw12upSS%2BKkiGCs0GqhFXYNmBzMtyjhbbuOSW1ti4xSqQ9CuVIUhpujq46dC1VH81oUhZZgaxdR0xPcp9km3xFn2W8jFD9xbxS85a8IUbW032UvJFzmt1AJA6Wleb4hzmoZk08eRLNoFlRF5U3CsAy9CqaTPS%2BCclZMq8jvY4gdrBRarmxMfG8cjbxgNA53vseCgI39D%2BJkl5OfhKqEOjz2UwwhZM%2B7XTYabnoHg%2Bd7%2BgBJ5ifL7Fxs7rw%2FxvKrbJI8VntTNcJ2Tu%2B6huKWvfbw1TLTUpRHJ5VS%2FywMcAsxGROaDCP%2Ff0fyBw%3D%3D&RelayState=ss%3Amem%3Ae87b767c65c0733720565aeda137f965bc94b8cd95c8eb1b3e6ad4c428671623
2018-03-15 16:33:07,https://login.library.nyu.edu/
2018-03-15 16:33:07,https://login.library.nyu.edu/login
2018-03-15 16:33:07,https://rooms.library.nyu.edu/login?origin=https%3A%2F%2Frooms.library.nyu.edu%2F
2018-03-15 16:33:07,https://rooms.library.nyu.edu/users/auth/nyulibraries?origin=https%3A%2F%2Frooms.library.nyu.edu%2F
2018-03-15 16:33:01,http://library.nyu.edu/spaces/individual-study-rooms-bobst/
2018-03-15 16:33:01,https://library.nyu.edu/spaces/individual-study-rooms-bobst/
2018-03-15 14:48:18,https://medium.com/coderbyte/the-5-hardest-code-challenges-for-beginners-e410da4474b
2018-03-15 14:48:05,https://www.google.com/search?q=basic+python+concepts+for+coding+challenges&oq=basic+python+concepts+for+coding+challenges&aqs=chrome..69i57.7182j1j4&sourceid=chrome&ie=UTF-8
2018-03-15 14:48:00,https://www.practicepython.org/
2018-03-15 14:46:46,https://www.hackerrank.com/challenges/collections-counter/problem
2018-03-15 14:46:45,https://www.hackerrank.com/challenges/collections-counter
2018-03-15 14:46:41,https://www.hackerrank.com/domains/python?filters%5Bsubdomains%5D%5B%5D=py-collections
2018-03-15 14:46:41,https://www.hackerrank.com/domains/python/py-collections
2018-03-15 14:46:31,https://www.hackerrank.com/challenges/py-collections-namedtuple/problem
2018-03-15 14:46:31,https://www.hackerrank.com/challenges/py-collections-namedtuple
2018-03-15 14:42:51,https://www.hackerrank.com/challenges/py-collections-namedtuple/forum
2018-03-15 14:42:41,https://www.hackerrank.com/challenges/py-collections-namedtuple/leaderboard
2018-03-15 14:42:38,https://www.hackerrank.com/challenges/py-collections-namedtuple/submissions
2018-03-15 14:42:33,https://www.hackerrank.com/Divyank4
2018-03-15 14:42:33,https://www.hackerrank.com/Divyank4?hr_r=1
2018-03-15 14:36:22,https://www.hackerrank.com/challenges/py-collections-namedtuple?h_r=next-challenge&h_v=zen
2018-03-15 14:34:45,https://www.google.com/search?q=for+loop+python&oq=for+loop+python&aqs=chrome.0.0l6.1432j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 14:33:02,https://wiki.python.org/moin/ForLoop
2018-03-15 14:30:20,https://www.hackerrank.com/challenges/python-print/problem
2018-03-15 14:30:20,https://www.hackerrank.com/challenges/python-print?h_r=next-challenge&h_v=zen
2018-03-15 14:25:34,https://www.hackerrank.com/challenges/write-a-function/problem
2018-03-15 14:25:33,https://www.hackerrank.com/hackers/auth/google_oauth2/callback?state=83414e8cfdc0f2437c07db9566b09469dca6b66d6cbf064c&code=4/AAAqU7XxfrMcmLuxu0h8aA4_mg0gA1L3pW1NhGwk7U8RpQ4hBu22h0_C-qpKtTBY6Da4uDO4_KQHXnifdW77aC8#
2018-03-15 14:25:28,https://accounts.google.com/signin/oauth?client_id=539603982008.apps.googleusercontent.com&as=KsYlGaA3EI1l6MlxHb-zXQ&destination=https://www.hackerrank.com&approval_state=!ChRacFVfbFFWTGxUNDBnMUZXaHlsehIfazMyNmRwaVlnWmtkSUw1NUZBbEhfWENuMkkydUloWQ%E2%88%99ACThZt4AAAAAWqwMFmkcLdBF4e2N-W5oTnDinCnXjycq&xsrfsig=AHgIfE-8DZkAKVpQdHOO0awr0JjpfK7lGA
2018-03-15 14:25:28,https://accounts.google.com/signin/oauth/oauthchooseaccount?client_id=539603982008.apps.googleusercontent.com&as=KsYlGaA3EI1l6MlxHb-zXQ&destination=https%3A%2F%2Fwww.hackerrank.com&approval_state=!ChRacFVfbFFWTGxUNDBnMUZXaHlsehIfazMyNmRwaVlnWmtkSUw1NUZBbEhfWENuMkkydUloWQ%E2%88%99ACThZt4AAAAAWqwMFmkcLdBF4e2N-W5oTnDinCnXjycq&xsrfsig=AHgIfE-8DZkAKVpQdHOO0awr0JjpfK7lGA&flowName=GeneralOAuthFlow
2018-03-15 14:25:26,https://www.hackerrank.com/hackers/auth/google_oauth2?display=popup
2018-03-15 14:25:26,https://accounts.google.com/o/oauth2/auth?access_type=&client_id=539603982008.apps.googleusercontent.com&redirect_uri=https%3A%2F%2Fwww.hackerrank.com%2Fhackers%2Fauth%2Fgoogle_oauth2%2Fcallback&response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&state=83414e8cfdc0f2437c07db9566b09469dca6b66d6cbf064c
2018-03-15 14:17:11,https://www.jcrew.com/checkout2/review.jsp
2018-03-15 14:16:27,https://www.jcrew.com/help/returnspop.jsp
2018-03-15 14:16:21,https://www.jcrew.com/checkout2/billing.jsp
2018-03-15 14:15:25,https://www.jcrew.com/checkout2/shipping.jsp
2018-03-15 14:14:35,https://www.google.com/search?q=91+Fifth+Avenue&oq=91+Fifth+Avenue&aqs=chrome..69i57j0l5.215j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 14:14:19,https://www.jcrew.com/checkout2/signin.jsp
2018-03-15 14:14:13,https://www.jcrew.com/checkout2/shoppingbag.jsp
2018-03-15 14:13:35,https://click.linksynergy.com/deeplink?id=pfLaClXlf20&mid=2219&u1=g7891506128806697235&murl=
2018-03-15 14:13:35,https://o.joinhoney.com/store/103/offer_claim?exv=ch.10.6.3.7891506128806697235.7891506128691169811&param0=g7891506128806697235&turl=https%3A%2F%2Fwww.jcrew.com%2Fcheckout2%2Fshoppingbag.jsp&afsrc=1
2018-03-15 14:13:35,https://www.jcrew.com/?srcCode=AFFI00001&utm_source=affiliate&utm_medium=Honey+%28new%29&siteId=pfLaClXlf20-sFgM0Qdzr4iFsb67qpXl1Q
2018-03-15 14:12:05,https://www.amazon.com/gp/cart/view.html/ref=nav_cart
2018-03-15 14:12:02,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=C465b5e08-1467-49e1-bfab-c0cafac920ff%2C1
2018-03-15 14:12:00,https://www.amazon.com/gp/product/handle-buy-box/ref=dp_start-bbf_1_glance
2018-03-15 14:11:42,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B06XS4YYHG/ref=cts_sh_2_vtp?th=1&psc=1
2018-03-15 14:11:32,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B00X29YU5M/ref=cts_sh_2_vtp
2018-03-15 14:11:23,https://www.amazon.com/gp/product/B00KQECLW0/ref=ox_sc_act_title_9?smid=A2NEM58BFPMEIL&psc=1
2018-03-15 14:06:07,https://www.pinterest.com/
2018-03-15 12:32:58,http://www.nyu.edu/students/health-and-wellness/student-health-center.html
2018-03-15 12:32:58,http://www.nyu.edu/shc/
2018-03-15 12:16:33,https://pinterest.com/
2018-03-15 12:16:33,http://pinterest.com/
2018-03-15 11:52:57,https://www.hackerrank.com/challenges/write-a-function
2018-03-15 11:52:48,https://www.hackerrank.com/domains/python?filters%5Bdifficulty%5D%5B%5D=medium&filters%5Bdifficulty%5D%5B%5D=hard
2018-03-15 11:52:45,https://www.hackerrank.com/domains/python?filters%5Bdifficulty%5D%5B%5D=hard
2018-03-15 11:52:37,https://www.hackerrank.com/domains/python
2018-03-15 11:52:31,https://www.google.com/search?q=python+practice+questions&oq=python+practice+&aqs=chrome.1.0l2j69i57j0l3.5606j1j7&sourceid=chrome&ie=UTF-8
2018-03-15 11:50:55,https://www.google.com/search?q=software+developer+intern+ibm+coding+challenge+questions&ei=UpaqWviTFNDa5gKSybuIAw&start=30&sa=N&biw=1534&bih=885
2018-03-15 11:50:41,https://www.google.com/search?q=software+developer+intern+ibm+coding+challenge+questions&ei=RJaqWqO_LpC35gKi5ImABQ&start=20&sa=N&biw=1534&bih=885
2018-03-15 11:50:28,https://www.google.com/search?q=software+developer+intern+ibm+coding+challenge+questions&ei=NpaqWsabDYSV5wKT8J3gDw&start=10&sa=N&biw=1534&bih=885
2018-03-15 11:50:13,https://www.google.com/search?biw=1534&bih=885&ei=IZaqWt6gCu7L5gKdrYjIDQ&q=software+developer+intern+ibm+coding+challenge+questions&oq=software+developer+intern+ibm+coding+challenge+questions&gs_l=psy-ab.3..33i22i29i30k1.19010.19776.0.19948.10.6.0.0.0.0.234.503.0j2j1.3.0....0...1.1.64.psy-ab..7.3.503...33i160k1.0.WCDsqsuWOkk
2018-03-15 11:49:52,https://www.google.com/search?q=software+developer+intern+ibm+coding+challenge&ei=55WqWt38L4Lv5gKEm5rYDA&start=10&sa=N&biw=1534&bih=885
2018-03-15 11:49:49,https://jobs.smartrecruiters.com/IBM/743999662346122-2018-software-developer-internship
2018-03-15 11:49:27,https://www.quora.com/What-kind-of-questions-are-asked-in-the-IBM-HireVue-online-programming-challenge-for-a-Java-role
2018-03-15 11:48:55,https://www.google.com/search?ei=2ZWqWsPSEsLt5gKIzLDQCw&q=software+developer+intern+ibm+coding+challenge&oq=software+developer+intern+ibm+coding+challenge&gs_l=psy-ab.3...11715.12524.0.12735.2.2.0.0.0.0.93.165.2.2.0....0...1.1.64.psy-ab..0.0.0....0.9msbE5151Sk
2018-03-15 11:48:40,https://www.google.com/search?q=software+developer+internship+ibm+coding+challenge&oq=software+developer+internship+ibm+coding+challenge&aqs=chrome..69i57.6560j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 11:27:22,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php
2018-03-15 11:26:42,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=trash&c=149#wpbody-content
2018-03-15 11:26:27,https://mail.google.com/mail/u/1/#inbox/1621f9be863a3aef
2018-03-15 11:21:58,https://www.instagram.com/sm_frame/
2018-03-15 11:21:42,https://www.instagram.com/53964/
2018-03-15 11:21:00,https://www.instagram.com/p/BgEHt0fgudK/?taken-by=we_are_ash
2018-03-15 11:20:51,https://www.instagram.com/p/BgOsxK6geFQ/?taken-by=we_are_ash
2018-03-15 11:19:23,https://mail.google.com/mail/u/1/#inbox/16229d257b31e4f9
2018-03-15 09:14:12,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520886012576&xpc=%7B%22cn%22%3A%22s5po5i%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWa5KoYRLCuxiElrP2Wv-M4Ym4vIAIsTRT8iXUBbhY4VJ16c1m-1ibwmtzy_I1j3J2Yd_8LZpfU56Uum1GlouAIWxeQWtg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4A7IC8_QABAHbEsIMIaQXC7M885mmAl5sg9v__9zxAAGoAcA3wN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AL%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DfoDI2YEhAaw15cSPofgLDSfd-vg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.1569088966424601&tn=uh0jz6v2tamx&rld=1
2018-03-15 06:16:23,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9880219051627566&hb=1&tn=ugacgxyobepg&rld=1
2018-03-15 02:58:50,https://www.jcrew.com/womens_feature/playa/PRDOVR~H8427/H8427.jsp
2018-03-15 02:58:50,https://www.jcrew.com/p/H8427
2018-03-15 02:58:15,https://www.jcrew.com/womens_feature/playa.jsp?sidecar=true
2018-03-15 02:55:26,https://o.joinhoney.com/store/103/offer_claim?exv=ch.10.6.3.7891506128806697235.7891506128691169811&param0=g7891506128806697235&turl=https%3A%2F%2Fwww.jcrew.com%2Fcheckout2%2Fshoppingbag.jsp%3Fsidecar%3Dtrue&afsrc=1
2018-03-15 02:55:26,https://www.jcrew.com/?srcCode=AFFI00001&utm_source=affiliate&utm_medium=Honey+%28new%29&siteId=pfLaClXlf20-ggWUQV7XwV8e0llwqHJRuw
2018-03-15 02:55:20,https://www.jcrew.com/checkout2/shoppingbag.jsp?sidecar=true
2018-03-15 02:54:12,https://calendar.google.com/calendar/r/week/2018/3/29
2018-03-15 02:53:11,https://www.jcrew.com/help/returns_exchanges.jsp?sidecar=true
2018-03-15 02:53:11,https://www.jcrew.com/help/returns_exchanges.jsp
2018-03-15 02:50:05,"https://www.jcrew.com/r/size-charts-module?N=1,0"
2018-03-15 02:47:38,https://www.jcrew.com/p/womens_category/swim2/jcrew-playa-printed-newport-superscoopback-onepiece-swimsuit/J0257?color_name=stripe-multi
2018-03-15 02:47:24,https://www.jcrew.com/p/womens_category/swim2/underwire-bikini-top-in-classic-stripe/H7604?color_name=vivid-flame-ivory
2018-03-15 02:46:43,https://www.jcrew.com/c/womens_category/swim2
2018-03-15 02:45:57,https://www.jcrew.com/p/womens_category/swim2/underwire-bikini-top/H8235?color_name=belvedere-red
2018-03-15 02:44:46,https://www.jcrew.com/c/womens_category/swim2?Nloc=en&Npge=1&Nrpp=60
2018-03-15 02:44:39,https://www.jcrew.com/p/womens_category/swim2/womens-1993-underwire-top/J3556?color_name=safari
2018-03-15 02:43:45,https://www.jcrew.com/c/womens_category/swim2?N=2102&Nloc=en&Npge=1&Nrpp=60
2018-03-15 02:40:49,https://rooms.library.nyu.edu/#reservations
2018-03-15 02:38:17,https://login.library.nyu.edu/oauth/authorize?client_id=200b78586bdf1bdbc394ee39008b6c18374ed08f5380066b4ae5846b9e280a0c&redirect_uri=https%3A%2F%2Frooms.library.nyu.edu%2Fusers%2Fauth%2Fnyulibraries%2Fcallback&response_type=code&state=82fbd495abbfebcee081426c5f8b8665f0d5839c20d65af4
2018-03-15 02:38:17,https://login.library.nyu.edu/oauth/authorize?client_id=bbcf34b029d1b729dee3db58e6e1b13f469ae756c83d99b345dd1689fd6b36ef&redirect_uri=https%3A%2F%2Feshelf.library.nyu.edu%2Fusers%2Fauth%2Fnyulibraries%2Fcallback&response_type=code&state=d2d91ed0932177e6cdb82eedccc50617e90f7ed157d0b68e
2018-03-15 02:38:17,https://eshelf.library.nyu.edu/users/auth/nyulibraries/callback?code=6697fcef0933e8bef8ed8454a19c2bcbc5626266b8c18af040896df53622f0e7&state=d2d91ed0932177e6cdb82eedccc50617e90f7ed157d0b68e
2018-03-15 02:38:17,https://rooms.library.nyu.edu/users/auth/nyulibraries/callback?code=69c93073da08cdc19bb476ffb5b07ddda81ea8ca5a7eac4e51ff75d4b048da13&state=82fbd495abbfebcee081426c5f8b8665f0d5839c20d65af4
2018-03-15 02:37:29,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZLLbsIwEEV%2FJfKe2AlqAItEorAoEm0RSbvopnLigVhy7NTjtOXvG16Cblj7zrkzR56iaHTLZ52vzQa%2BOkAf%2FDbaID8%2BpKRzhluBCrkRDSD3Fc9nzyseh4y3znpbWU2CGSI4r6yZW4NdAy4H960qeNusUlJ73yKnVNudMqFWpRNuH5p9F4LsaF6rsrQafB0iWnqAx3T9mhckWPTbKCMO3CsFr%2FkLQsmW9rtslYbz%2FAakclB5muevJFguUvLJYimZlJNqEo3lhCWSbUcJGycASSSq0biPIXawNOiF8SmJWTQesOEgeihYwocjHk8%2BSLA%2Bn%2FyojFRmd99PeQohfyqK9eB00zs4PN7TB0g2PVjmx2J34%2F0%2BVlxkk%2By%2B2quqAbZTetN1Km75Sw9fLtZWq2ofzLS2P3MHwkNKIkKz08j%2F35H9AQ%3D%3D&RelayState=ss%3Amem%3A5a347781bcbf115efd8df23213fdfd93a79c19f134e2a25e8b3d446741af56ea
2018-03-15 02:37:07,https://login.library.nyu.edu/login/passive?client_id=200b78586bdf1bdbc394ee39008b6c18374ed08f5380066b4ae5846b9e280a0c&return_uri=https%3A%2F%2Frooms.library.nyu.edu%2F&login_path=%2Flogin
2018-03-15 02:37:07,https://login.library.nyu.edu/login/passive_shibboleth?origin=https%3A%2F%2Flogin.library.nyu.edu%2Flogin%2Fpassive%3Fclient_id%3D200b78586bdf1bdbc394ee39008b6c18374ed08f5380066b4ae5846b9e280a0c%26return_uri%3Dhttps%253A%252F%252Frooms.library.nyu.edu%252F%26login_path%3D%252Flogin
2018-03-15 02:37:04,https://login.library.nyu.edu/Shibboleth.sso/Login?isPassive=true&target=https%3A%2F%2Flogin.library.nyu.edu%2Flogin%2Fpassive_shibboleth%3Forigin%3Dhttps%253A%252F%252Flogin.library.nyu.edu%252Flogin%252Fpassive%253Fclient_id%253D200b78586bdf1bdbc394ee39008b6c18374ed08f5380066b4ae5846b9e280a0c%2526return_uri%253Dhttps%25253A%25252F%25252Frooms.library.nyu.edu%25252F%2526login_path%253D%25252Flogin
2018-03-15 02:37:04,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZLLboMwEEV%2FBXkfDOQBtQISTRaNlDYopF10UxmYBEvGph6TNn9f8lLSTZaW75yZOfYUeSNblna2Vmv47gCt89tIhex0EZPOKKY5CmSKN4DMlixPX5cscD3WGm11qSVxUkQwVmg10wq7BkwOZi9KeF8vY1Jb2yKjVOqdUK4UheHm4KpD50LV0bwWRaEl2NpF1PQID2i2yjfEmffTCMWP3BsFb%2FkrQlQt7WfZCgmX%2BjVUwkBpaZ6viLOYx%2BSr4uEWxkEwrPzS94pgHD5Fo0nER15Zhtuo6GOYcUSxh5j4xxN2sFBoubIxCTw%2FGnjDgT%2FeeBM2DJk3%2BiROdhHwLFQl1O6xreIcQvay2WSD84YfYPC0XR8gyfTonJ0am7tXeIzlV%2FUkeSz6Jm6A7ZTe9To3btlbD1%2FMMy1FeXBSKfXPzAC3Jx80OZf8%2FyvJHw%3D%3D&RelayState=ss%3Amem%3Aebb67f54b91c4247365155d2f71ea5e575ff5e80bfec03c930249612c05c36d0
2018-03-15 02:36:04,https://www.jcrew.com/p/womens_category/swim2/tiefront-bikini-top-in-piqu-nylon/H7617?color_name=electric-red
2018-03-15 02:35:53,https://www.google.com/search?q=bobst+reserve+a+room&oq=bobst+reserve+&aqs=chrome.1.69i57j0l3.4470j0j4&sourceid=chrome&ie=UTF-8
2018-03-15 02:28:38,https://www.jcrew.com/
2018-03-15 02:27:46,https://www.google.com/search?q=jcrew&oq=jcrew&aqs=chrome..69i57j0l5.1384j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 02:27:01,https://www.madewell.com/madewell_category/SWIM/onepieceswimsuits/PRDOVR~J0257/J0257.jsp
2018-03-15 02:26:37,https://www.madewell.com/madewell_category/SWIM.jsp
2018-03-15 02:26:31,https://www.madewell.com/
2018-03-15 02:26:25,https://www.google.com/search?q=madewell&oq=made&aqs=chrome.2.69i57j69i65j0j69i61l2j0.3878j0j4&sourceid=chrome&ie=UTF-8
2018-03-15 02:26:21,"https://www.google.com/maps/place/AEO+%26+Aerie+Store/@40.7252231,-73.996935,15.03z/data=!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:26:20,"https://www.google.com/maps/place/AEO+%26+Aerie+Store/@40.7252231,-73.996935,3a,75y,90t/data=!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:26:18,"https://www.google.com/maps/place/AEO+%26+Aerie+Store/@40.7252231,-73.996935,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipNQHDJu5NgOA0ipI5-Wk2r0RSzP1qRKyUMDg3gN!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNQHDJu5NgOA0ipI5-Wk2r0RSzP1qRKyUMDg3gN%3Dw156-h208-k-no!7i3024!8i4032!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:26:01,"https://www.google.com/maps/place/AEO+%26+Aerie+Store/@40.7287926,-73.9987436,13671a,13.1y/data=!3m8!1e2!3m6!1sAF1QipNQHDJu5NgOA0ipI5-Wk2r0RSzP1qRKyUMDg3gN!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNQHDJu5NgOA0ipI5-Wk2r0RSzP1qRKyUMDg3gN%3Dw156-h208-k-no!7i3024!8i4032!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:25:54,"https://www.google.com/maps/place/AEO+%26+Aerie+Store/@40.7287926,-73.9987436,15.03z/data=!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:25:53,"https://www.google.com/maps/place/AEO+%26+Aerie+Store+On-trend+casualwear,+shoes+%26+accessories/@40.7287926,-73.9987436,15.03z/data=!4m8!1m2!2m1!1saerie!3m4!1s0x0:0xbbb556bc57ad87f7!8m2!3d40.7253318!4d-73.9971578"
2018-03-15 02:25:53,"https://www.google.com/maps/search/aerie/@40.7287926,-73.9987436,15.03z"
2018-03-15 02:25:51,"https://www.google.com/maps/search/aerie/@40.7346344,-74.0386496,13z/data=!3m1!4b1"
2018-03-15 02:25:51,"https://www.google.com/maps/search/aerie/@40.7345587,-74.012385,15z"
2018-03-15 02:25:48,"https://www.google.com/maps/@40.7345587,-74.012385,15z"
2018-03-15 02:25:33,https://www.ae.com/aerie-swimwear/aerie/s-cat/7030095?cm=sUS-cUSD&navdetail=mega:cat8180035:c1:p1
2018-03-15 02:23:42,https://www.anitadongregrassroot.com/us/shop/clothing/dresses.html
2018-03-15 02:23:21,https://go.redirectingat.com/?xs=1&id=1025X498259&sref=https%3A%2F%2Fwww.thecut.com%2F2017%2F07%2Fl-a-denim-surfer-swimwear-and-brooklyn-flea-opens-in-soho.html&xcust=__p_cj5e1ho2300cbmryed55eanko__z_m__d_D&url=http%3A%2F%2Fwww.anitadongregrassroot.com%2Fus%2F
2018-03-15 02:23:21,http://www.anitadongregrassroot.com/us/
2018-03-15 02:23:21,https://www.anitadongregrassroot.com/us/
2018-03-15 02:22:23,https://www.thecut.com/2017/06/alberta-ferretti-weekday-rainbow-collection-swim.html
2018-03-15 02:22:11,https://www.thecut.com/search.html?q=swim
2018-03-15 02:22:05,https://www.thecut.com/style/
2018-03-15 02:22:04,https://www.thecut.com/search.html?q=swimwear
2018-03-15 02:21:21,https://www.thecut.com/2017/06/10-best-bikinis-under-usd100.html
2018-03-15 02:21:12,https://www.thecut.com/2017/07/j-crews-rugby-inspired-striped-summer-capsule.html
2018-03-15 02:21:05,https://www.thecut.com/2017/07/l-a-denim-surfer-swimwear-and-brooklyn-flea-opens-in-soho.html
2018-03-15 02:20:23,https://www.thecut.com/
2018-03-15 02:20:23,http://www.thecut.com/
2018-03-15 02:20:07,http://nymag.com/strategist/2017/02/the-best-travel-accessories-and-gear.html
2018-03-15 02:17:28,https://feedly.com/i/subscription/feed%2Fhttp%3A%2F%2Fdeals.kinja.com%2Frss
2018-03-15 02:15:10,http://nymag.com/strategist/article/how-to-dress-for-a-tech-interview.html
2018-03-15 02:14:21,https://www.ae.com/aerie/aerie/s-cms/4840006
2018-03-15 02:14:19,https://feedly.com/i/subscription/feed%2Fhttp%3A%2F%2Fnymag.com%2Fstrategist%2Ffeed.xml
2018-03-15 02:14:10,https://www.google.com/search?q=aerie&oq=aerie&aqs=chrome..69i57j69i60j0l4.2333j0j7&sourceid=chrome&ie=UTF-8
2018-03-15 02:13:17,https://calendar.google.com/calendar/r/week/2018/3/22?eid=cTJ2MDdrdGh2cjc4dmRxbTNtNnY1aWd1ZmcgeHVqZW5uYUBt&sf=true&output=xml
2018-03-15 02:13:15,https://calendar.google.com/calendar/event?eid=cTJ2MDdrdGh2cjc4dmRxbTNtNnY1aWd1ZmcgeHVqZW5uYUBt
2018-03-15 02:13:15,https://calendar.google.com/calendar/render?eid=cTJ2MDdrdGh2cjc4dmRxbTNtNnY1aWd1ZmcgeHVqZW5uYUBt&sf=true&output=xml
2018-03-15 02:13:15,https://calendar.google.com/calendar/r?eid=cTJ2MDdrdGh2cjc4dmRxbTNtNnY1aWd1ZmcgeHVqZW5uYUBt&sf=true&output=xml
2018-03-15 02:10:36,https://calendar.google.com/calendar/selfsched?sstoken=UURiM21GUFRTUjFLfGRlZmF1bHR8NTJhYjQ3M2JmODJhNDVjMTY3YTQ3MTMzMjA0MzI4N2Y
2018-03-15 02:10:08,http://help.itp.nyu.edu/in-person/office-hours
2018-03-14 23:54:13,https://www.facebook.com/messages/t/841805113
2018-03-14 23:52:58,https://mail.google.com/mail/u/0/#inbox?compose=16227ca032ad52d6
2018-03-14 23:52:53,https://mail.google.com/mail/u/0/#inbox?compose=16227c9cda7d0369
2018-03-14 23:52:39,https://mail.google.com/mail/u/0/#inbox?compose=16227c9af4fe600d
2018-03-14 23:52:32,https://mail.google.com/mail/u/0/#inbox?compose=16227c97ea05db5d
2018-03-14 23:52:19,https://mail.google.com/mail/u/0/#inbox?compose=16227c9579ddd9aa
2018-03-14 23:52:10,https://mail.google.com/mail/u/0/#inbox?compose=16227c9479e1c3eb
2018-03-14 23:52:05,https://mail.google.com/mail/u/0/#inbox?compose=16227c9070256c85
2018-03-14 23:51:48,https://mail.google.com/mail/u/0/#inbox?compose=16227c8dfa3a895f
2018-03-14 23:51:38,https://mail.google.com/mail/u/0/#inbox?compose=16227c8ab5e27235
2018-03-14 23:51:25,https://mail.google.com/mail/u/0/#inbox?compose=16227c1d80af3edb
2018-03-14 23:46:41,https://www.google.com/search?q=linen+suits&oq=linen+suits&aqs=chrome..69i57j0l5.1599j0j4&sourceid=chrome&ie=UTF-8
2018-03-14 23:46:27,https://www.gq.com/story/this-is-how-you-wear-a-linen-suit
2018-03-14 23:46:04,https://us.suitsupply.com/en_US/store?StoreID=stores-NewYork-Soho
2018-03-14 23:45:41,https://us.suitsupply.com/en_US/stores?countryCode=US
2018-03-14 23:45:09,http://us.suitsupply.com/en_US/suits/havana-light-brown-plain/P4853I.html
2018-03-14 23:45:09,https://us.suitsupply.com/en_US/suits/havana-light-brown-plain/P4853I.html
2018-03-14 23:45:09,https://us.suitsupply.com/en_US/suits?oosPid=P4853I
2018-03-14 23:44:11,http://nymag.com/strategist/2016/10/the-best-suit-for-summer-weddings.html
2018-03-14 23:43:58,https://mail.google.com/mail/u/0/#inbox?compose=16227bd516ec6bb6
2018-03-14 23:42:38,http://nymag.com/tags/this-thing's-incredible/18/
2018-03-14 23:42:26,http://nymag.com/strategist/2016/10/the-best-baby-onesie-is-a-merlin-magic-sleepsuit.html
2018-03-14 23:42:14,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=C6288e34c-d8a0-4173-b243-a2d220f8cc2a%2C1
2018-03-14 23:42:07,https://www.amazon.com/YAMAZAKI-home-Tower-Leaning-Ladder/dp/B01586FXT8?ascsubtag=%5B%5Dst%5Bp%5Dciu7fea770007f8yaftw3ee2f%5Bi%5DAp1Z1b%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:41:55,https://www.amazon.com/YAMAZAKI-home-Tower-Leaning-Ladder/dp/B01586FJAQ?ascsubtag=[]st[p]ciu7fea770007f8yaftw3ee2f[i]Ap1Z1b[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:41:49,http://nymag.com/strategist/2016/10/the-best-wall-ladder-for-keeping-your-clothes-organized.html
2018-03-14 23:41:33,http://nymag.com/tags/this-thing's-incredible/17/
2018-03-14 23:39:49,http://go.redirectingat.com/?xs=1&id=1025X1552619&sref=http%3A%2F%2Fnymag.com%2Fstrategist%2F2016%2F10%2Fthe-coolest-desk-toy-goes-to-kinetic-sand.html&xcust=__p_ciussd3ud003kznybudtxfgc3__z_m__d_D&url=https%3A%2F%2Fwww.tokyu-hands.co.jp%2Fforeign.html
2018-03-14 23:39:49,https://www.tokyu-hands.co.jp/foreign.html
2018-03-14 23:39:49,https://www.tokyu-hands.co.jp/en/index.html
2018-03-14 23:39:27,http://nymag.com/strategist/2016/10/the-coolest-desk-toy-goes-to-kinetic-sand.html
2018-03-14 23:39:22,http://nymag.com/tags/this-thing's-incredible/16/
2018-03-14 23:39:01,https://mail.google.com/mail/u/0/#inbox?compose=16227b97c75f3d36
2018-03-14 23:38:22,http://nymag.com/strategist/2016/11/the-best-baby-lounger-is-the-leacho-podster.html
2018-03-14 23:37:41,http://nymag.com/tags/this-thing's-incredible/15/
2018-03-14 23:36:59,http://nymag.com/strategist/2016/11/the-philips-wake-up-light-is-the-best-natural-alarm-clock.html
2018-03-14 23:36:31,http://nymag.com/strategist/2016/12/the-best-womens-slippers-according-to-a-homebody.html
2018-03-14 23:34:50,https://mail.google.com/mail/u/0/#inbox?compose=16227b2637970074
2018-03-14 23:34:40,http://nymag.com/tags/this-thing's-incredible/14/
2018-03-14 23:34:06,http://nymag.com/strategist/2017/01/best-natural-deodorant-for-men-oyin-review.html
2018-03-14 23:33:59,http://nymag.com/strategist/2017/01/the-best-portable-speaker-is-the-geneva-xs-sound-system.html
2018-03-14 23:33:45,http://nymag.com/strategist/2017/01/best-affordable-fancy-candle-maison-louis-marie.html
2018-03-14 23:32:52,http://nymag.com/strategist/2017/01/dr-brown-bottle-warmer-review.html
2018-03-14 23:32:29,http://nymag.com/tags/this-thing's-incredible/13/
2018-03-14 23:31:23,http://nymag.com/tags/this-thing's-incredible/12/
2018-03-14 23:28:12,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=Cbf6a4ddb-de2a-4f09-acc2-db06de9d767d%2C1
2018-03-14 23:28:06,https://www.amazon.com/TubShroom-Revolutionary-Protector-Catcher-Strainer/dp/B01BYRMGCC?ascsubtag=%5B%5Dst%5Bp%5Dcj1dygypf00c2gty66xse0nfi%5Bi%5DHYM1ic%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:27:53,https://www.amazon.com/TubShroom-Revolutionary-Protector-Catcher-Strainer/dp/B01BYMTYBS?ascsubtag=%5B%5Dst%5Bp%5Dcj1dygypf00c2gty66xse0nfi%5Bi%5DHYM1ic%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:27:47,https://www.amazon.com/TubShroom-Revolutionary-Protector-Catcher-Strainer/dp/B01BYMTYBS?ascsubtag=[]st[p]cj1dygypf00c2gty66xse0nfi[i]HYM1ic[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:27:04,https://mail.google.com/mail/u/0/#inbox?compose=16227aee0c353695
2018-03-14 23:26:59,http://nymag.com/tags/this-thing's-incredible/11/
2018-03-14 23:26:50,http://nymag.com/strategist/article/best-shower-trap-tubshroom-review.html
2018-03-14 23:25:51,http://nymag.com/tags/this-thing's-incredible/10/
2018-03-14 23:25:44,http://nymag.com/strategist/article/best-teapot-japanese-glass-hario.html
2018-03-14 23:25:37,http://nymag.com/strategist/article/best-washcloth-is-the-binchotan-charcoal-body-scrub-towel.html
2018-03-14 23:25:29,http://nymag.com/strategist/article/best-laundry-tub-review-2017.html
2018-03-14 23:25:24,http://nymag.com/strategist/article/best-knife-sharpener-is-the-king-two-sided-sharpening-stone.html
2018-03-14 23:24:37,http://nymag.com/strategist/article/best-callus-remover-tool-review.html
2018-03-14 23:23:45,http://nymag.com/tags/this-thing's-incredible/9/
2018-03-14 23:23:29,http://nymag.com/strategist/article/best-cleaning-brush-review-2017.html
2018-03-14 23:23:14,https://mail.google.com/mail/u/0/#inbox?compose=new
2018-03-14 23:23:07,http://nymag.com/tags/this-thing's-incredible/8/
2018-03-14 23:23:07,http://nymag.com/strategist/article/best-chargeable-breast-pump-spectra-s1-review.html
2018-03-14 23:23:07,http://nymag.com/tags/this-thing's-incredible/7/
2018-03-14 23:23:01,http://nymag.com/tags/this-thing's-incredible/6/
2018-03-14 23:22:35,http://nymag.com/strategist/article/best-flat-head-baby-remedy-tortle-beanie.html
2018-03-14 23:21:45,http://nymag.com/strategist/article/dansko-clogs-most-comfortable-shoes.html
2018-03-14 23:20:26,https://keep.google.com/u/0/share?tid=true#home
2018-03-14 23:20:23,https://keep.google.com/u/0/share?tid=true#NOTE/1521083514077.1983774113
2018-03-14 23:20:23,https://keep.google.com/u/0/share?tid=true#NOTE/1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw
2018-03-14 23:20:23,https://keep.google.com/u/0/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true#NOTE/1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw
2018-03-14 23:20:22,https://www.google.com/url?hl=en&q=https://keep.google.com/share?note%3D1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw%26email%3Dxujenna@gmail.com%26tid%3Dtrue&source=gmail&ust=1521170417692000&usg=AFQjCNGsM-OlhW5bjLpzq8_LOFz-s0qKCg
2018-03-14 23:20:22,https://keep.google.com/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true
2018-03-14 23:20:22,https://keep.google.com/u/0/share?note=1p0qmroNZtRI-xiimfeiEajW9hoVqBKF55C1ej2rhRnqJBPtgZF1z1Or6yIuXwiw&email=xujenna@gmail.com&tid=true
2018-03-14 23:20:18,https://mail.google.com/mail/u/0/#inbox/16227a5b27492eac
2018-03-14 23:19:49,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=C5eb1ec39-82f1-482b-b26a-45992841a2ea%2C1
2018-03-14 23:19:18,https://www.amazon.com/Fox-Run-Round-Chrome-11-75-Inch/dp/B000GBYA8Q/?ascsubtag=[]st[p]cj6gncm2400b92my6q19aunyx[i]E3CuTy[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:18:57,http://nymag.com/strategist/article/best-fruit-bowl-to-keep-produce-from-rotting-review.html
2018-03-14 23:18:39,https://www.amazon.com/SHUEHO-Self-draining-Enamelware-Primitive-Decoration/dp/B0719DP5YD/?tag=strat-perforatedfruitbowl-20&ascsubtag=[]st[p]cj6gncm2400b92my6q19aunyx[i]wqWWfm[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:18:02,https://www.amazon.com/Three-Lollies-Queasy-Assorted-Nausea/dp/B009FEO8DC?ascsubtag=[]st[p]cj70uiwsx005aapy63n6v442o[i]y9JA5s[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:17:20,https://www.amazon.com/Lavender-Meditation-Relaxation-Sleeping-Yourself/dp/B00LD6TDH6?ascsubtag=%5B%5Dst%5Bp%5Dcjavlhjt0000mxbyench2m3o3%5Bi%5DPYZo7w%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:17:14,https://www.amazon.com/Lavender-Meditation-Relaxation-Sleeping-Yourself/dp/B00LD6TE5M?ascsubtag=%5B%5Dst%5Bp%5Dcjavlhjt0000mxbyench2m3o3%5Bi%5DPYZo7w%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:17:11,https://www.amazon.com/Lavender-Meditation-Relaxation-Sleeping-Yourself/dp/B00GWOJ9UU?ascsubtag=%5B%5Dst%5Bp%5Dcjavlhjt0000mxbyench2m3o3%5Bi%5DPYZo7w%5Bz%5Dm%5Bd%5DD%5Br%5Dnymag.com%2Ftags&tag=thestrategistsite-20&th=1
2018-03-14 23:16:15,http://nymag.com/strategist/article/best-eye-mask-sleep-mask-lavender-silk-ayazen-pillow.html
2018-03-14 23:16:01,https://www.amazon.com/Lavender-Meditation-Relaxation-Sleeping-Yourself/dp/B00GWOJ9UU?ascsubtag=[]st[p]cjavlhjt0000mxbyench2m3o3[i]PYZo7w[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:15:39,https://www.amazon.com/gp/item-dispatch/ref=dp_csx_sw_cont_
2018-03-14 23:15:19,https://www.facebook.com/photo.php?fbid=10156587396535715&set=t.841805113&type=3&theater
2018-03-14 23:15:18,https://www.facebook.com/shaon.lahiri/photos?lst=1148850025%3A841805113%3A1521083716&source_ref=pb_friends_tl
2018-03-14 23:15:15,https://www.facebook.com/shaon.lahiri
2018-03-14 23:15:15,https://www.facebook.com/profile.php?id=841805113
2018-03-14 23:15:14,https://www.facebook.com/search/top/?q=shaon%20lahiri
2018-03-14 23:14:42,https://www.amazon.com/Deesses-Lusse-Hair-Finishing-Cream/dp/B0061WD72E?ascsubtag=[]st[p]cjawxswoj00j4jiy6iopk6vvi[i]bOXY54[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:14:34,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=Cf025b7c9-e1ef-4aba-8616-18cf47f843ca%2C1
2018-03-14 23:14:21,https://www.amazon.com/gp/upsell-widgets/click-logger.html?widgetName=desktop-huc-carousels_customerbehavior.SessionSimilarities&column=3&row=1&clickType=Title&url=%2Fdp%2FB003H8AJCQ%3Fpd_rd_i%3DB003H8AJCQ%26psc%3D1%26pd_rd_w%3DRweVq%26pd_rd_wg%3D9UZZD%26pd_rd_r%3D0b467342-9ad1-4fff-bd2f-cbf86c3b4a61%26ref_%3Dpd_luc_rh_sbs_01_03_t_img_lh
2018-03-14 23:14:21,https://www.amazon.com/dp/B003H8AJCQ?pd_rd_i=B003H8AJCQ&psc=1&pd_rd_w=RweVq&pd_rd_wg=9UZZD&pd_rd_r=0b467342-9ad1-4fff-bd2f-cbf86c3b4a61&ref_=pd_luc_rh_sbs_01_03_t_img_lh
2018-03-14 23:14:16,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=Ce1bdaea8-c4e1-43e9-a3c7-d71529eb5265%2C1
2018-03-14 23:13:45,http://nymag.com/strategist/article/best-incense-nippon-kodo-review.html
2018-03-14 23:12:51,https://www.amazon.com/Nippon-Kodo-Kayuragi-Japanese-Incense/dp/B000KEINJQ?ascsubtag=[]st[p]cjbzk56it00eytdyeu9k0efqg[i]etd5fA[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:12:20,https://www.amazon.com/gp/huc/view.html?ie=UTF8&newItems=Cb76c203b-a25f-4e12-9008-a22197ec2f61%2C1
2018-03-14 23:11:45,https://www.google.com/search?q=39+m+eu&oq=39+m+eu&aqs=chrome..69i57j0l4.1943j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 23:11:25,https://www.amazon.com/Birkenstock-Gizeh-Sandals-Womens-Style/dp/B00KQECLW0/ref=pd_sim_309_4?_encoding=UTF8&pd_rd_i=B00KQECLW0&pd_rd_r=XY1MKHSKGXNR1ZXM50EJ&pd_rd_w=fXrrW&pd_rd_wg=Ealel&psc=1&refRID=XY1MKHSKGXNR1ZXM50EJ
2018-03-14 23:11:02,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B01FI0URN6/ref=pd_sim_309_1?_encoding=UTF8&pd_rd_i=B06XSNHM2H&pd_rd_r=D397R3FQJFR07DDSEZ3Q&pd_rd_w=uhyld&pd_rd_wg=JCVNs&refRID=D397R3FQJFR07DDSEZ3Q&th=1
2018-03-14 23:10:53,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B06XS4YYHG/ref=pd_sim_309_1?_encoding=UTF8&pd_rd_i=B06XSNHM2H&pd_rd_r=D397R3FQJFR07DDSEZ3Q&pd_rd_w=uhyld&pd_rd_wg=JCVNs&refRID=D397R3FQJFR07DDSEZ3Q&th=1&psc=1
2018-03-14 23:10:39,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B06XS31MHY/ref=pd_sim_309_1?_encoding=UTF8&pd_rd_i=B06XSNHM2H&pd_rd_r=D397R3FQJFR07DDSEZ3Q&pd_rd_w=uhyld&pd_rd_wg=JCVNs&refRID=D397R3FQJFR07DDSEZ3Q&th=1
2018-03-14 23:10:12,https://www.amazon.com/Birkenstock-Womens-Gizeh-EVA-Sandals/dp/B06XSNHM2H/ref=pd_sim_309_1?_encoding=UTF8&pd_rd_i=B06XSNHM2H&pd_rd_r=D397R3FQJFR07DDSEZ3Q&pd_rd_w=uhyld&pd_rd_wg=JCVNs&psc=1&refRID=D397R3FQJFR07DDSEZ3Q
2018-03-14 23:09:52,https://www.amazon.com/Birkenstock-Womens-Gizeh-Thong-Sandal/dp/B00KQECMU6/ref=cts_sh_2_vtp?th=1&psc=1
2018-03-14 23:09:45,https://www.amazon.com/Birkenstock-Womens-Gizeh-Thong-Sandal/dp/B01BI9RE46/ref=cts_sh_2_vtp
2018-03-14 23:09:40,https://www.amazon.com/Birkenstock-Womens-Gizeh-Sandals-Black/dp/B00N3KRX8Q?ascsubtag=[]st[p]cj5ibheg900ntk0y6olpvin86[i]CKHQoY[z]m[d]D[r]nymag.com/tags&tag=thestrategistsite-20
2018-03-14 23:09:28,https://www.amazon.com/dp/B01N6QGSWU/?coliid=I11GJ5TCLHSRBP&colid=38RXKUK50UGBL&ref_=lv_ov_lig_dp_it&th=1&psc=1
2018-03-14 23:09:25,https://www.amazon.com/dp/B01N33DFE9/?coliid=I11GJ5TCLHSRBP&colid=38RXKUK50UGBL&ref_=lv_ov_lig_dp_it&th=1&psc=1
2018-03-14 23:09:23,https://www.amazon.com/dp/B01MS6X0SU/?coliid=I11GJ5TCLHSRBP&colid=38RXKUK50UGBL&ref_=lv_ov_lig_dp_it&th=1&psc=1
2018-03-14 23:09:17,https://www.amazon.com/dp/B01N33DFES/?coliid=I11GJ5TCLHSRBP&colid=38RXKUK50UGBL&ref_=lv_ov_lig_dp_it&th=1&psc=1
2018-03-14 23:08:55,https://www.amazon.com/dp/B01MS6YCXH/?coliid=I11GJ5TCLHSRBP&colid=38RXKUK50UGBL&psc=0&ref_=lv_ov_lig_dp_it
2018-03-14 23:08:55,https://www.amazon.com/gp/registry/wishlist/ref=nav_youraccount_wl?ie=UTF8&requiresSignIn=1
2018-03-14 23:08:43,https://www.amazon.com/gp/css/order-history/ref=nav_youraccount_orders
2018-03-14 23:08:30,https://www.amazon.com/gp/offer-listing/B00KQECMU6/ref=dp_olp_0?ie=UTF8&condition=all
2018-03-14 23:08:05,http://nymag.com/strategist/article/birkenstock-gizeh-review.html
2018-03-14 23:07:36,http://www.amazon.com/
2018-03-14 23:07:36,https://www.amazon.com/
2018-03-14 23:07:14,http://nymag.com/strategist/article/best-callus-eliminator-prolinc-foot-peel-review.html
2018-03-14 23:03:48,http://nymag.com/strategist/article/beeswax-wraps-plastic-wrap-alternative-review.html
2018-03-14 23:03:20,http://nymag.com/strategist/article/best-stapleless-stapler-kokuyo-harinacs.html
2018-03-14 23:01:39,http://nymag.com/strategist/article/best-motion-sickness-remedy-queasy-drops-review.html
2018-03-14 23:01:11,http://nymag.com/tags/this-thing's-incredible/5/
2018-03-14 22:59:24,http://nymag.com/tags/this-thing's-incredible/4/
2018-03-14 22:57:51,http://nymag.com/tags/this-thing's-incredible/3/
2018-03-14 22:57:23,http://nymag.com/strategist/article/deesses-hair-finishing-cream-review.html
2018-03-14 22:55:23,http://nymag.com/tags/this-thing's-incredible/2/
2018-03-14 22:55:20,http://nymag.com/strategist/article/lao-gan-ma-best-chili-sauce-review.html
2018-03-14 22:54:04,http://nymag.com/strategist/article/gin-gins-ginger-candy-review.html
2018-03-14 22:52:37,http://nymag.com/tags/this-thing's-incredible/
2018-03-14 22:50:59,http://nymag.com/strategist/article/strategist-online-shopping-guide-and-directory.html
2018-03-14 22:50:23,https://www.facebook.com/shaon.lahiri/photos?pnref=lhc
2018-03-14 22:50:22,https://www.facebook.com/photo.php?fbid=2567344663378&set=t.841805113&type=3&theater
2018-03-14 22:49:38,https://www.facebook.com/photo.php?fbid=10154678869478693&set=t.841805113&type=3&theater
2018-03-14 22:49:10,https://www.facebook.com/photo.php?fbid=1320677417476&set=t.841805113&type=3&theater
2018-03-14 22:48:57,https://www.facebook.com/photo.php?fbid=1468451512261&set=t.841805113&type=3&theater
2018-03-14 22:48:54,https://www.facebook.com/photo.php?fbid=1468469552712&set=t.841805113&type=3&theater
2018-03-14 22:48:49,https://www.facebook.com/photo.php?fbid=1468453952322&set=t.841805113&type=3&theater
2018-03-14 22:48:45,https://www.facebook.com/photo.php?fbid=1468453432309&set=t.841805113&type=3&theater
2018-03-14 22:47:47,https://www.facebook.com/shaon.lahiri?lst=1148850025%3A841805113%3A1521081984
2018-03-14 22:47:06,https://www.facebook.com/shaon.lahiri/about?lst=1148850025%3A841805113%3A1521081984
2018-03-14 22:45:57,http://nymag.com/strategist/
2018-03-14 22:45:56,http://nymag.com/search.html?q=wedding
2018-03-14 22:45:45,http://nymag.com/search.html?q=wedding+present
2018-03-14 22:44:41,https://www.google.com/search?q=strategiest&oq=strategiest+&aqs=chrome..69i57j0l5.10896j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:42:21,https://mail.google.com/mail/u/0/#inbox/16226f09a6a1ea5f
2018-03-14 22:41:54,https://mail.google.com/mail/u/0/#inbox/1622788a3ebd13e2
2018-03-14 22:40:21,https://calendar.google.com/calendar/r/week/2018/3/21
2018-03-14 22:39:46,https://calendar.google.com/calendar/selfsched?sstoken=UUp6YWVldzcwN0pDfGRlZmF1bHR8YTE1YzRhYmU2ZWM4NDkyMmZmYjVmZTQ5NmQ5NDNlMmU
2018-03-14 22:39:37,https://itp.nyu.edu/residents/contact-the-residents/
2018-03-14 22:39:32,http://help.itp.nyu.edu/in-person/resident-office-hours
2018-03-14 22:36:20,https://calendar.google.com/calendar/r/week/2018/3/28
2018-03-14 22:33:54,https://calendar.google.com/calendar/r/eventedit/NzFlZWU2MDkzMTN2ZHZlbmphdHYyNTZqcTAgang2MDNAbnl1LmVkdQ
2018-03-14 22:33:24,https://shcportal.nyu.edu/appointments_book_confirm.aspx
2018-03-14 22:33:14,https://shcportal.nyu.edu/appointments_book_list_available.aspx?location=17
2018-03-14 22:32:37,"https://www.google.com/maps/dir/ITP+-+NYU,+Broadway,+New+York,+NY/Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.729728,-73.9992304,16.35z/data=!4m14!4m13!1m5!1m1!1s0x89c2599a89e3697d:0x73f4d64b71f70469!2m2!1d-73.993707!2d40.7294245!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:36,"https://www.google.com/maps/dir/ITP+-+NYU,+Broadway,+New+York,+NY/Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7298957,-73.9992031,17z/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x89c2599a89e3697d:0x73f4d64b71f70469!2m2!1d-73.993707!2d40.7294245!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:35,"https://www.google.com/maps/dir/ITP+-+NYU,+Broadway,+New+York,+NY/Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7334039,-74.0060596,17z/data=!4m14!4m13!1m5!1m1!1s0x89c2599a89e3697d:0x73f4d64b71f70469!2m2!1d-73.993707!2d40.7294245!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:34,"https://www.google.com/maps/dir//Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7334039,-74.0060596,17z/data=!4m9!4m8!1m0!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:32,"https://www.google.com/maps/dir/40.7349732,-74.007374/Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7334039,-74.0060596,17z/data=!3m1!4b1!4m17!1m6!3m5!1s0x0:0x5df0d02e6c5f9180!2sSei+Tomoko!8m2!3d40.7312213!4d-74.000477!4m9!1m1!4e1!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:31,"https://www.google.com/maps/dir/40.7349732,-74.007374/Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7288943,-73.999663,16.3z/data=!4m17!1m6!3m5!1s0x0:0x5df0d02e6c5f9180!2sSei+Tomoko!8m2!3d40.7312213!4d-74.000477!4m9!1m1!4e1!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:31,"https://www.google.com/maps/dir//Sei+Tomoko,+142+West+4th+Street,+New+York,+NY+10012/@40.7288943,-73.999663,16.3z/data=!4m17!1m6!3m5!1s0x0:0x5df0d02e6c5f9180!2sSei+Tomoko!8m2!3d40.7312213!4d-74.000477!4m9!1m1!4e2!1m5!1m1!1s0x89c25991616e51bf:0x5df0d02e6c5f9180!2m2!1d-74.0004773!2d40.7312206!3e2"
2018-03-14 22:32:28,"https://www.google.com/maps/place/Sei+Tomoko/@40.7288943,-73.999663,16.3z/data=!4m5!3m4!1s0x0:0x5df0d02e6c5f9180!8m2!3d40.7312213!4d-74.000477"
2018-03-14 22:32:27,"https://www.google.com/maps/place//@40.7288943,-73.999663,16.3z/data=!4m5!3m4!1s0x0:0x5df0d02e6c5f9180!8m2!3d40.7312213!4d-74.000477"
2018-03-14 22:32:26,"https://www.google.com/maps/@40.7288943,-73.999663,16.3z"
2018-03-14 22:30:05,https://shcportal.nyu.edu/appointments_book_progress2.aspx
2018-03-14 22:30:05,https://shcportal.nyu.edu/appointments_book_list_available.aspx
2018-03-14 22:30:02,https://shcportal.nyu.edu/appointment_book_callback_number.aspx
2018-03-14 22:30:02,https://shcportal.nyu.edu/appointments_book_progress1.aspx
2018-03-14 22:29:57,https://shcportal.nyu.edu/appointments_book_reason.aspx
2018-03-14 22:29:57,https://shcportal.nyu.edu/appointment_book_contact_confirm.aspx
2018-03-14 22:27:45,https://shcportal.nyu.edu/appointments_book_instructions.aspx
2018-03-14 22:27:42,https://shcportal.nyu.edu/appointments_book_compliance.aspx
2018-03-14 22:27:42,https://shcportal.nyu.edu/branch.aspx
2018-03-14 22:27:06,https://www.nyu.edu/content/nyu/en/students/health-and-wellness/student-health-center/make-appointment.html
2018-03-14 22:26:32,https://www.nyu.edu/students/health-and-wellness/student-health-center.html
2018-03-14 22:26:25,https://www.google.com/search?q=nyu+health+center&oq=nyu+health&aqs=chrome.0.0j69i57j0l4.10116j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:25:12,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=148#wpbody-content
2018-03-14 22:25:12,http://www.xujenna.com/itp_blog/wp-login.php?redirect_to=http%3A%2F%2Fwww.xujenna.com%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D148&reauth=1#wpbody-content
2018-03-14 22:21:23,https://shcportal.nyu.edu/logout.aspx?MsgType=BAD_REQUEST_WARNING&AdditionalInfo=
2018-03-14 22:19:25,https://shcportal.nyu.edu/messages_send_compliance.aspx
2018-03-14 22:19:25,https://shcportal.nyu.edu/messages_home.aspx
2018-03-14 22:17:35,https://www.google.com/search?q=immunizations+nyu&oq=immunizations+nyu&aqs=chrome..69i57.2591j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:17:14,https://mail.google.com/mail/u/0/#search/michelle+/15da59759fe25cb8
2018-03-14 22:16:59,https://mail.google.com/mail/u/0/#search/michelle+/15da59759fe25cb8?projector=1&messagePartId=0.5
2018-03-14 22:16:48,https://www.cdc.gov/hepatitis/hav/havfaq.htm
2018-03-14 22:16:20,https://www.cdc.gov/hepatitis/hav/havfaq.htm#B4
2018-03-14 22:15:43,https://www.google.com/search?ei=MNepWtW7O4LZ5gKklqyIBg&q=hep+a+vaccine+how+long+does+it+last&oq=hep+a+vaccine&gs_l=psy-ab.1.5.0i71k1l8.0.0.0.29990.0.0.0.0.0.0.0.0..0.0....0...1..64.psy-ab..0.0.0....0.oWcxhU-VLhU
2018-03-14 22:15:12,https://www.google.com/search?q=hep+a+vaccine&oq=hep&aqs=chrome.0.69i59l2j69i57j69i60j0l2.1375j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:14:34,https://exist.io/dashboard/
2018-03-14 22:13:58,https://mail.google.com/mail/u/0/#search/michelle+/15da59759fe25cb8?projector=1&messagePartId=0.6
2018-03-14 22:13:17,https://wwwnc.cdc.gov/travel/destinations/traveler/none/india
2018-03-14 22:13:12,https://www.google.com/search?q=innoculations+for+india&oq=innoculations+for+indi&aqs=chrome.0.0j69i57j0l4.7184j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:12:59,https://mail.google.com/mail/u/0/#search/michelle+/15da59759fe25cb8?projector=1&messagePartId=0.4
2018-03-14 22:12:40,https://mail.google.com/mail/u/0/#search/michelle
2018-03-14 22:11:20,https://www.cdc.gov/vaccines/hcp/vis/vis-statements/hep-a.html
2018-03-14 22:11:15,https://www.google.com/search?ei=PdapWpSqMqmZ_Qat4o7ICQ&q=hep+a+vaccine&oq=hep+a+vaccine&gs_l=psy-ab.3..0l10.2319.4246.0.4402.8.6.0.0.0.0.200.200.2-1.1.0....0...1.1.64.psy-ab..7.1.200....0.iHlWcR_fzdg
2018-03-14 22:11:09,https://www.google.com/search?q=hep+a&oq=hep+a&aqs=chrome..69i57j0l5.952j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 22:05:21,https://www.google.co.uk/search?q=stephen+hawking
2018-03-14 22:05:09,https://www.google.co.uk/search?q=stephen+hawking&tbm=isch&source=iu&ictx=1&fir=Mk2di9dYDhZ3iM%253A%252C3f-ekZ1iH_vA9M%252C_&usg=__EslgazJdxCPIckz2Qh26Zq1O7MQ%3D&sa=X&ved=0ahUKEwjFg-HVnu3ZAhVEheAKHemKAasQ_h0ItAIwLQ#imgrc=Mk2di9dYDhZ3iM:
2018-03-14 22:04:49,https://www.google.com/url?q=https://www.google.co.uk/search%3Fq%3Dstephen%2Bhawking&source=hpp&id=19005311&ct=3&usg=AFQjCNEePLWV_RmB15Cg3sLIef4U7J9iiQ
2018-03-14 22:03:16,https://mail.google.com/mail/u/1/#inbox/162273e2ffd593a4?projector=1&messagePartId=0.1.1
2018-03-14 21:27:39,http://openseventeen.org/
2018-03-14 20:19:12,https://mint.intuit.com/transaction.event#location:%7B%22query%22%3A%22description%3ATinkersphere%22%2C%22offset%22%3A0%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 20:19:05,https://mint.intuit.com/transaction.event#location:%7B%22query%22%3A%22description%3A%20In%20Canal%20Plastics%22%2C%22offset%22%3A0%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 20:18:32,https://www.google.com/search?q=PAYPAL%20INST%20XFER%20171218
2018-03-14 20:17:01,https://mint.intuit.com/transaction.event#location:%7B%22offset%22%3A100%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 20:10:11,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_2_1?ie=UTF8&orderFilter=year-2017&search=&startIndex=0
2018-03-14 20:09:49,https://mint.intuit.com/transaction.event#location:%7B%22offset%22%3A200%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 20:07:52,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_1_2?ie=UTF8&orderFilter=year-2017&search=&startIndex=10
2018-03-14 20:05:44,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_3_2?ie=UTF8&orderFilter=year-2017&search=&startIndex=10
2018-03-14 20:05:36,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_2_3?ie=UTF8&orderFilter=year-2017&search=&startIndex=20
2018-03-14 20:03:12,https://mint.intuit.com/transaction.event#location:%7B%22offset%22%3A300%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 20:01:21,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_4_3?ie=UTF8&orderFilter=year-2017&search=&startIndex=20
2018-03-14 20:01:17,https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_pagination_1_4?ie=UTF8&orderFilter=year-2017&search=&startIndex=30
2018-03-14 20:01:09,https://www.amazon.com/gp/your-account/order-history?opt=ab&digitalOrders=1&unifiedOrders=1&returnTo=&orderFilter=year-2017
2018-03-14 20:01:04,https://www.amazon.com/gp/your-account/order-history?ref_=ya_d_c_yo
2018-03-14 20:01:01,https://www.amazon.com/gp/css/homepage.html/ref=nav_youraccount_btn
2018-03-14 20:00:27,https://docs.google.com/spreadsheets/d/1nO073FdCiyjopWCaKw4_crpwWNmXCcMSBuAGBQbUNqE/edit#gid=0
2018-03-14 20:00:24,https://docs.google.com/spreadsheets/d/1nO073FdCiyjopWCaKw4_crpwWNmXCcMSBuAGBQbUNqE/edit
2018-03-14 20:00:22,https://docs.google.com/spreadsheets/d/1nO073FdCiyjopWCaKw4_crpwWNmXCcMSBuAGBQbUNqE/edit?usp=drive_web&ouid=104413863944849018097
2018-03-14 20:00:18,https://drive.google.com/drive/u/0/search?q=taxes%202017
2018-03-14 20:00:16,https://drive.google.com/drive/u/0/my-drive
2018-03-14 20:00:14,https://drive.google.com/drive/u/0/
2018-03-14 20:00:14,https://drive.google.com/
2018-03-14 19:58:19,https://mail.google.com/mail/u/1/#inbox/p12
2018-03-14 19:58:14,https://mail.google.com/mail/u/1/#inbox/p13
2018-03-14 19:57:04,https://mint.intuit.com/transaction.event#location:%7B%22offset%22%3A400%2C%22typeFilter%22%3A%22cash%22%2C%22typeSort%22%3A8%7D
2018-03-14 19:56:59,https://mint.intuit.com/trend.event
2018-03-14 19:56:57,https://mint.intuit.com/transaction.event?inFrame=true#loading
2018-03-14 19:56:46,https://mint.intuit.com/transaction.event?inFrame=true#searchQuery=%7B%22reportType%22%3A%22ST%22%2C%22chartType%22%3A%22P%22%2C%22comparison%22%3A%22%22%2C%22matchAny%22%3Atrue%2C%22terms%22%3A%5B%5D%2C%22accounts%22%3A%7B%22groupIds%22%3A%5B%22AA%22%5D%2C%22accountIds%22%3A%5B%5D%7D%2C%22dateRange%22%3A%7B%22period%22%3A%7B%22label%22%3A%22Custom%22%2C%22value%22%3A%22CS%22%7D%2C%22start%22%3A%228%2F14%2F2017%22%2C%22end%22%3A%2212%2F15%2F2017%22%7D%2C%22drilldown%22%3A%7B%22type%22%3A%22SD%22%2C%22value%22%3A%228%2F1%2F2017%22%7D%2C%22categoryTypeFilter%22%3A%22all%22%7D
2018-03-14 19:55:54,https://mail.google.com/mail/u/1/#inbox/15dce502d98c8814
2018-03-14 19:55:38,https://mail.google.com/mail/u/1/#inbox/p11
2018-03-14 19:55:36,https://mail.google.com/mail/u/1/#inbox/p10
2018-03-14 19:55:35,https://mail.google.com/mail/u/1/#inbox/p9
2018-03-14 19:55:32,https://mail.google.com/mail/u/1/#inbox/p8
2018-03-14 19:55:30,https://mail.google.com/mail/u/1/#inbox/p7
2018-03-14 19:55:30,https://mail.google.com/mail/u/1/#inbox/p6
2018-03-14 19:55:28,https://mail.google.com/mail/u/1/#inbox/p5
2018-03-14 19:55:27,https://mail.google.com/mail/u/1/#inbox/p4
2018-03-14 19:55:27,https://mail.google.com/mail/u/1/#inbox/p3
2018-03-14 19:54:59,https://mint.intuit.com/settings.event?filter=financial
2018-03-14 19:54:13,"https://secure01b.chase.com/web/auth/dashboard#/dashboard/accounts/summary/creditCard;params=card,490754304"
2018-03-14 19:54:13,"https://secure01b.chase.com/web/auth/dashboard#/dashboard/accounts/summary/creditCard;params=card,600102274"
2018-03-14 19:54:10,https://secure01b.chase.com/web/auth/dashboard#/dashboard/index/index
2018-03-14 19:54:00,https://www.chase.com/
2018-03-14 19:53:20,https://docs.google.com/spreadsheets/d/1OEGbpSy32REqo8oVvrmmH1hMaOdeDR5h3Pbbou42PC8/edit#gid=0
2018-03-14 19:53:16,https://docs.google.com/spreadsheets/d/1OEGbpSy32REqo8oVvrmmH1hMaOdeDR5h3Pbbou42PC8/edit
2018-03-14 19:53:14,https://docs.google.com/spreadsheets/d/1OEGbpSy32REqo8oVvrmmH1hMaOdeDR5h3Pbbou42PC8/edit?usp=drive_web&ouid=104413863944849018097
2018-03-14 19:52:20,https://drive.google.com/drive/u/0/?tab=mo
2018-03-14 19:52:19,https://drive.google.com/?tab=mo&authuser=0
2018-03-14 19:51:57,https://www.flickr.com/photos/133005141@N08/sets/72157694451926495/
2018-03-14 19:46:18,https://www.flickr.com/gp/133005141@N08/m4KR83
2018-03-14 19:42:38,"https://www.google.com/search?q=sei%20tomoko&oq=sei+tomo&aqs=chrome.0.0j69i61j69i57j69i60l2j0.1384j1j7&sourceid=chrome&ie=UTF-8&npsic=0&rflfq=1&rlha=0&rllag=40728555,-73993373,697&tbm=lcl&rldimm=6769139137743131008&ved=0ahUKEwjZgNfr_uzZAhWDtlkKHXfWCmAQvS4ITTAA&rldoc=1&tbs=lrf:!2m4!1e17!4m2!17m1!1e2!2m1!1e2!2m1!1e3!3sIAE,lf:1,lf_ui:2#rlfi=hd:;si:6769139137743131008;mv:!1m3!1d5243.794491693852!2d-73.99683765!3d40.73014104999999!2m3!1f0!2f0!3f0!3m2!1i552!2i333!4f13.1;tbs:lrf:!2m1!1e2!2m1!1e3!3sIAE,lf:1,lf_ui:2"
2018-03-14 19:42:38,"https://www.google.com/search?q=sei%20tomoko&oq=sei+tomo&aqs=chrome.0.0j69i61j69i57j69i60l2j0.1384j1j7&sourceid=chrome&ie=UTF-8&npsic=0&rflfq=1&rlha=0&rllag=40728555,-73993373,697&tbm=lcl&rldimm=6769139137743131008&ved=0ahUKEwjZgNfr_uzZAhWDtlkKHXfWCmAQvS4ITTAA&rldoc=1&tbs=lrf:!2m4!1e17!4m2!17m1!1e2!2m1!1e2!2m1!1e3!3sIAE,lf:1,lf_ui:2#rlfi=hd:;si:6769139137743131008;mv:!1m3!1d5243.794491693852!2d-73.99683765!3d40.73014104999999!2m3!1f0!2f0!3f0!3m2!1i552!2i333!4f13.1;tbs:lrf:!2m1!1e2!2m1!1e3!2m4!1e17!4m2!17m1!1e2!3sIAE,lf:1,lf_ui:2"
2018-03-14 19:42:38,"https://www.google.com/search?q=sei%20tomoko&oq=sei+tomo&aqs=chrome.0.0j69i61j69i57j69i60l2j0.1384j1j7&sourceid=chrome&ie=UTF-8&npsic=0&rflfq=1&rlha=0&rllag=40728555,-73993373,697&tbm=lcl&rldimm=6769139137743131008&ved=0ahUKEwjZgNfr_uzZAhWDtlkKHXfWCmAQvS4ITTAA&rldoc=1&tbs=lrf:!2m4!1e17!4m2!17m1!1e2!2m1!1e2!2m1!1e3!3sIAE,lf:1,lf_ui:2"
2018-03-14 19:42:26,https://www.google.com/search?q=sei+tomoko&oq=sei+tomo&aqs=chrome.0.0j69i61j69i57j69i60l2j0.1384j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 19:38:46,https://www.flickr.com/photos/133005141@N08/38188809564/in/datetaken/
2018-03-14 19:38:45,https://www.flickr.com/photos/133005141@N08/38188806594/in/datetaken/
2018-03-14 19:38:43,https://www.flickr.com/photos/133005141@N08/38188809704/in/datetaken/
2018-03-14 19:38:24,https://www.flickr.com/photos/133005141@N08/page10
2018-03-14 19:38:12,https://www.flickr.com/photos/133005141@N08/page9
2018-03-14 19:38:01,https://www.flickr.com/photos/133005141@N08/page7
2018-03-14 19:37:56,https://www.flickr.com/photos/133005141@N08/page4
2018-03-14 19:37:35,https://www.flickr.com/photos/133005141@N08/with/40814104971/
2018-03-14 19:37:32,https://www.flickr.com/photos/133005141@N08/40814104971/in/datetaken/
2018-03-14 19:37:28,https://www.flickr.com/photos/133005141@N08/25942836127/in/datetaken/
2018-03-14 19:37:24,https://www.flickr.com/photos/133005141@N08/40105210244/in/datetaken/
2018-03-14 19:25:40,https://www.google.com/search?q=the+marvelous+mrs+maisel&oq=the+marve&aqs=chrome.1.69i57j0l5.4175j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 19:22:25,https://calendar.google.com/calendar/r/eventedit/NWxvNW5maDQyb2o4M2JvbnRiYjhocjB0dXAgang2MDNAbnl1LmVkdQ
2018-03-14 19:20:14,https://www.nyu.edu/students/communities-and-groups/student-diversity/spiritual-life/mindfulness/free-meditation-and-yoga.html
2018-03-14 19:20:13,https://www.google.com/url?hl=en&q=https://www.nyu.edu/students/communities-and-groups/student-diversity/spiritual-life/mindfulness/free-meditation-and-yoga.html&source=gmail&ust=1521156006790000&usg=AFQjCNHt3ShC1pnnf8HD_F3WXvm2FeT31A
2018-03-14 19:20:09,https://mail.google.com/mail/u/0/#search/icruzchong%40gmail.com/161901f9c58492a8
2018-03-14 19:20:05,https://mail.google.com/mail/u/0/#search/icruzchong%40gmail.com
2018-03-14 19:08:43,https://mail.google.com/mail/u/1/#inbox/16225e522e5d4063
2018-03-14 19:08:33,https://mail.google.com/mail/u/1/#inbox/161d27dad094c8ea
2018-03-14 13:26:12,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7290229,-74.0008965,15.62z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:26:10,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7316,-74.004353,15.62z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:26:03,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7337122,-73.994541,15.62z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:26:02,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7329729,-73.9912796,15.62z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:26:01,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7332296,-73.992934,14.98z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:26:01,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.7322051,-73.9897361,16.09z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:25:59,"https://www.google.com/maps/place/SEI+Tomoko+Salon/@40.731796,-73.9884593,17z/data=!3m1!4b1!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:25:58,"https://www.google.com/maps/place/SEI+Tomoko+Salon,+East+13th+Street,+New+York,+NY/@40.691676,-73.9888796,15z/data=!4m5!3m4!1s0x89c2599e8b97e7cf:0xf046d6d8d836fa74!8m2!3d40.731792!4d-73.9862706"
2018-03-14 13:25:56,"https://www.google.com/maps/@40.691676,-73.9888796,15z"
2018-03-14 13:19:17,https://mail.google.com/mail/u/1/#inbox/1622117b7441709d
2018-03-14 13:13:25,http://www.post-gazette.com/news/politics-nation/2017/10/03/rep-tim-Murphy-pro-life-sought-abortion-affair-shannon-edwards-susan-mosychuk-pennsylvania-chief-of-staff-congress-emails-texts/stories/201710030018?utm_term=Autofeed&utm_campaign=Echobox
2018-03-14 13:12:41,https://www.politico.com/story/2017/10/05/tim-murphy-resigns-from-congress-243510
2018-03-14 13:08:56,https://www.jpl.nasa.gov/edu/intern/apply/summer-internship-program/
2018-03-14 13:04:22,http://crystalcodepalace.com/tracerytut.html
2018-03-14 13:04:22,http://www.crystalcodepalace.com/tracerytut.html
2018-03-14 13:04:21,https://twitter.com/thinkpiecebot?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor
2018-03-14 13:03:19,https://twitter.com/NoraReed
2018-03-14 13:01:34,https://www.google.com/search?q=%40thinkpiecebot&oq=%40thinkpiecebot&aqs=chrome..69i57j0.13750j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 12:57:57,https://www.google.com/search?q=parts+of+speech&oq=parts+od&aqs=chrome.2.69i57j0l5.5509j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 12:45:42,https://padlet.com/xujenna/hc2cukjy0jcf
2018-03-14 12:44:44,https://padlet.com/
2018-03-14 12:41:45,https://calendar.google.com/calendar/r/week/2018/4/4
2018-03-14 12:40:16,https://mail.google.com/mail/u/1/#inbox/1622037338527540
2018-03-14 12:39:57,https://www.jpl.nasa.gov/edu/intern/apply/
2018-03-14 12:39:57,https://www.google.com/url?hl=en&q=https://www.jpl.nasa.gov/edu/intern/apply/&source=gmail&ust=1521131979160000&usg=AFQjCNFwUc8G2HmkEz-CKKfrxioV1rxV_A
2018-03-14 12:39:41,https://mail.google.com/mail/u/1/#inbox/162254e6f0097bfb
2018-03-14 12:36:14,https://www.google.com/search?q=goa&oq=goa&aqs=chrome..69i57j69i60l4j69i61.560j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 12:30:48,https://www.google.com/search?q=The+Gateway+Hotel+Hinjawadi+Pune&oq=The+Gateway+Hotel+Hinjawadi+Pune&aqs=chrome..69i57j0l3j69i64.206j0j4&sourceid=chrome&ie=UTF-8
2018-03-14 12:30:33,https://www.google.com/search?q=Rs+5000+to+usd&oq=Rs+5000+to+usd&aqs=chrome..69i57j0l2.1191j1j7&sourceid=chrome&ie=UTF-8
2018-03-14 12:30:11,https://www.theknot.com/us/shaon-lahiri-and-nupur-moudgill-mar-2018/details#guest-accommodations
2018-03-14 12:30:07,https://www.theknot.com/us/shaon-lahiri-and-nupur-moudgill-mar-2018?utm_campaign=wedding-websites-share&utm_content=short-link&utm_medium=referral&utm_source=theknot.com
2018-03-14 12:30:06,https://www.theknot.com/us/shnupur
2018-03-14 12:30:06,https://www.google.com/url?hl=en&q=https://www.theknot.com/us/shnupur&source=gmail&ust=1521131397297000&usg=AFQjCNE557-jXM8CWK4JfC8WBqKaolN-EQ
2018-03-14 12:30:03,https://mail.google.com/mail/u/0/#label/shaon+wedding/160d10c57a802708
2018-03-14 12:29:54,https://mail.google.com/mail/u/0/#label/shaon+wedding
2018-03-14 12:29:50,https://mail.google.com/mail/u/0/#label/Asia+2017
2018-03-14 12:25:13,https://www.google.com/search?q=time+in+india&oq=time+in+india&aqs=chrome..69i57j0l5.4992j0j7&sourceid=chrome&ie=UTF-8
2018-03-14 12:18:40,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9
2018-03-14 12:18:40,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254e64ec06dfd
2018-03-14 12:18:37,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254e2a89f6483
2018-03-14 12:18:22,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254e17fcb1f0b
2018-03-14 12:18:17,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254dfb977e9ec
2018-03-14 12:18:10,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254ca428b065d
2018-03-14 12:17:39,http://bl.ocks.org/xujenna/raw/cc79c311b7899a778d8ad7ec9329f820
2018-03-14 12:17:39,http://bl.ocks.org/xujenna/raw/cc79c311b7899a778d8ad7ec9329f820/
2018-03-14 12:17:36,https://bl.ocks.org/xujenna/cc79c311b7899a778d8ad7ec9329f820
2018-03-14 12:17:36,http://bl.ocks.org/xujenna/cc79c311b7899a778d8ad7ec9329f820
2018-03-14 12:17:35,https://bl.ocks.org/xujenna
2018-03-14 12:17:31,https://bl.ocks.org/xujenna/4799f6a342f623a097ae9ba33df1690b
2018-03-14 12:17:06,https://bl.ocks.org/xujenna/3e9d0bdd1ee38c63ffb0ed39f69c6374
2018-03-14 12:17:06,http://bl.ocks.org/xujenna/3e9d0bdd1ee38c63ffb0ed39f69c6374
2018-03-14 12:16:43,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254c55e608bf7
2018-03-14 12:16:22,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254c495f4ee5b
2018-03-14 12:16:19,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254c35edf714a
2018-03-14 12:16:15,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254bc3e0afb76
2018-03-14 12:15:45,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254bae15080a8
2018-03-14 12:15:40,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254b9b19ed041
2018-03-14 12:15:35,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254b5c063448f
2018-03-14 12:15:19,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254b1249efc97
2018-03-14 12:15:01,http://xujenna.com/jennaxu_resume.pdf
2018-03-14 12:15:00,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254afccaa0ecc
2018-03-14 12:14:54,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=1622549bb95c9384
2018-03-14 12:14:15,https://www.jpl.nasa.gov/thestudio/
2018-03-14 12:13:31,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=16225495f81354f8
2018-03-14 12:13:08,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=16225494d85a460f
2018-03-14 12:13:03,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=1622548e3dd058b0
2018-03-14 12:12:36,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254885c9d63a3
2018-03-14 12:12:12,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=162254878286f89d
2018-03-14 12:12:09,https://mail.google.com/mail/u/1/#label/apply+here/1621bcb503c3d4b9?compose=1622548631b31908
2018-03-14 12:10:55,https://registration.jpl.nasa.gov/internship_application/cfm/index.cfm?program=JPL%2520Summer%2520Internship%2520Program
2018-03-14 12:10:46,https://www.google.com/url?hl=en&q=https://www.jpl.nasa.gov/edu/intern/apply/&source=gmail&ust=1521075123763000&usg=AFQjCNF8Rsl0QPAeBl33QUnuhvVQHmskww
2018-03-14 12:10:27,"https://www.google.com/maps/place/Pasadena,+CA/@34.1694847,-118.1586494,12.62z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:25,"https://www.google.com/maps/place/Pasadena,+CA/@34.1313256,-118.1526059,12.62z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:25,"https://www.google.com/maps/place/Pasadena,+CA/@34.2270612,-118.1353705,12.62z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:24,"https://www.google.com/maps/place/Pasadena,+CA/@34.2478532,-118.140637,12.05z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:22,"https://www.google.com/maps/place/Pasadena,+CA/@34.2465247,-118.0298593,10.64z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:21,"https://www.google.com/maps/place/Pasadena,+CA/@34.4785286,-118.0986587,9.23z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:20,"https://www.google.com/maps/place/Pasadena,+CA/@34.3528249,-117.7118586,9.23z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:19,"https://www.google.com/maps/place/Pasadena,+CA/@34.7592929,-117.67471,8.14z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:17,"https://www.google.com/maps/place/Pasadena,+CA/@36.0881809,-117.5631265,6.69z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:16,"https://www.google.com/maps/place/Pasadena,+CA/@34.2678194,-117.4952213,6.69z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:15,"https://www.google.com/maps/place/Pasadena,+CA/@32.5790099,-116.3272504,6.69z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:12,"https://www.google.com/maps/place/Pasadena,+CA/@36.6785923,-119.0027186,6.69z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:10,"https://www.google.com/maps/place/Pasadena,+CA/@34.6037551,-118.1762236,7.36z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:09,"https://www.google.com/maps/place/Pasadena,+CA/@34.3843525,-118.1883238,8.29z/data=!4m5!3m4!1s0x80c2c2dc38330b51:0x52b41161ad18f4a!8m2!3d34.1477849!4d-118.1445155"
2018-03-14 12:10:05,"https://www.google.com/maps/place/Pasadena,+CA/data=!4m2!3m1!1s0x80c2c2dc38330b51:0x52b41161ad18f4a?sa=X&ved=0ahUKEwjin6PamezZAhXFmeAKHd-oAKIQ8gEI4gEwDg"
2018-03-14 12:09:58,https://www.google.com/search?q=pasadena&oq=pasadena&aqs=chrome..69i57j0l5.1078j0j4&sourceid=chrome&ie=UTF-8
2018-03-14 12:09:31,https://www.google.com/url?hl=en&q=https://www.jpl.nasa.gov/&source=gmail&ust=1521075123763000&usg=AFQjCNFPDuJFirhRjI-T9H_-LoNGuxD4qA
2018-03-14 12:09:31,https://www.jpl.nasa.gov/
2018-03-14 12:06:47,https://www.google.com/url?hl=en&q=https://www.jpl.nasa.gov/thestudio/&source=gmail&ust=1521075123763000&usg=AFQjCNFhbIsicoZiqIK33p2-mG0Ybz3AYA
2018-03-14 12:06:13,http://buildwithnyc.github.io/servicedesignapprentice.html
2018-03-14 12:06:01,http://buildwithnyc.github.io/
2018-03-14 12:06:01,https://www.google.com/url?hl=en&q=http://buildwithnyc.github.io/&source=gmail&ust=1521129917002000&usg=AFQjCNG6qZHuUzUqxr3cWaCBaWRy1o8kYA
2018-03-14 12:04:32,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/job/New-York-NY/Data-Analytics-Intern_REQ-002645-1
2018-03-14 12:04:19,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/job/New-York-NY/Marketing-and-Insights-Intern_REQ-002649-1
2018-03-14 12:04:03,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/jobs
2018-03-14 12:01:02,http://www.linkedin.com/pub/jenna-xu/31/782/149
2018-03-14 12:01:02,https://www.linkedin.com/pub/jenna-xu/31/782/149
2018-03-14 12:01:02,https://www.linkedin.com/in/xujenna
2018-03-14 12:00:40,https://www.linkedin.com/authwall?trk=gf&trkInfo=AQHX951JCen4MgAAAWIlPexwQ0qGAFRO9QC5USIveukHWrAOk6km2sdLhiHxS4Rd5_4uMjcK-uyArGCKnGN9pVB2xO2F7HtCEL4YGFMH-zI989Sp29yWYyjvGNsFzB1bTLQIHBg=&originalReferer=&sessionRedirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fxujenna
2018-03-14 12:00:01,http://www.xujenna.com/
2018-03-14 11:51:51,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/job/New-York-NY/Product-Design-Intern---Style-Guide-and-Component-Library_REQ-002663-1/apply?clientRequestID=0ea177825f074fed99dfdda4fa1708a9
2018-03-14 11:49:14,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/job/New-York-NY/Product-Design-Intern---Style-Guide-and-Component-Library_REQ-002663-1/apply
2018-03-14 11:47:04,https://www.google.com/url?hl=en&q=https://sweetgreen.us5.list-manage.com/track/click?u%3D935cde8faa405d2d908226449%26id%3D5fc5883cdf%26e%3De8338f87c7&source=gmail&ust=1521128796581000&usg=AFQjCNELWW2BNalcx35q94BLX1KTShnIug
2018-03-14 11:47:04,https://sweetgreen.us5.list-manage.com/track/click?u=935cde8faa405d2d908226449&id=5fc5883cdf&e=e8338f87c7
2018-03-14 11:47:04,https://www.youtube.com/watch?v=nzYfDeI1KEM&utm_source=sweetgreen+vip&utm_campaign=f3958600e9-Email_Who_Is_Nancy_PHL_2018_03_09&utm_medium=email&utm_term=0_e1d0c747e3-f3958600e9-23091369
2018-03-14 11:46:43,https://mail.google.com/mail/u/0/#inbox/16224fe30a241b35
2018-03-13 23:45:10,https://twitter.com/BetsyDeVosED/status/973271176167518208/photo/1?ref_src=twsrc%5Etfw&ref_url=https%3A%2F%2Ffeedly.com%2Fi%2Fcategory%2Fdaily
2018-03-13 23:41:30,https://twitter.com/TrumanChapman27/status/973183938335195136/photo/1?ref_src=twsrc%5Etfw&ref_url=https%3A%2F%2Ffeedly.com%2Fi%2Fcategory%2Fdaily
2018-03-13 23:39:14,https://github.com/anvaka/word2vec-graph
2018-03-13 23:39:11,https://mail.google.com/mail/u/1/#inbox/162072b1b22b9078
2018-03-13 23:37:50,https://mail.google.com/mail/u/1/#inbox/1622103793751a58
2018-03-13 23:37:36,https://mail.google.com/mail/u/0/#inbox/1622246eaf654cbe
2018-03-13 21:39:39,https://venmo.com/
2018-03-13 21:39:39,https://venmo.com/?feed=mine
2018-03-13 21:39:26,https://venmo.com/account/sign-in/
2018-03-13 21:38:03,https://venmo.com/account/logout
2018-03-13 21:38:03,https://venmo.com/account/login?dsp_msg=true
2018-03-13 21:38:00,https://venmo.com/account/settings/banks-cards
2018-03-13 21:37:58,https://venmo.com/account/settings/profile
2018-03-13 21:37:58,https://venmo.com/account/settings/
2018-03-13 21:37:47,https://venmo.com/Jenna-Xu
2018-03-13 21:37:41,https://venmo.com/webviews#cashout
2018-03-13 21:37:20,https://venmo.com/webviews#bankaccounts/8af05522-4b25-4afe-8412-db3bca227d25/added
2018-03-13 21:37:20,https://venmo.com/webviews#funding/bankaccounts/8af05522-4b25-4afe-8412-db3bca227d25/verify
2018-03-13 21:36:27,https://client.schwab.com/Login/SignOn/LoginProcess.aspx?ReturnUrl=%2fAccounts%2fSummary%2fSummary.aspx%3fShowUN%3dYES
2018-03-13 21:36:27,https://client.schwab.com/login/signon/authcodehandler.ashx?code=C0.b2F1dGgyLmZiZC5zY2h3YWIuY29t.MjMU8fYaqlsKxI5N66kCYk-NJ59V7RaSzaSo97yGsSk@&corrId=53ad3653-71b2-4d5d-ac4f-6030ef3f548b&sanc=CCBodyi&CPN=Y&enableappd=false
2018-03-13 21:36:12,https://venmo.com/webviews#bankaccounts/add/manual/Charles%20Schwab
2018-03-13 21:34:56,chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/vault.html
2018-03-13 21:29:13,https://venmo.com/account/mfa/remember-device
2018-03-13 21:28:38,https://venmo.com/account/mfa/verify-phone-email
2018-03-13 21:28:34,https://venmo.com/account/mfa/code-prompt
2018-03-13 21:28:12,https://venmo.com/account/sign-in/?next=%2Fcash_out
2018-03-13 21:28:11,https://www.google.com/url?hl=en&q=https://venmo.com/cash_out&source=gmail&ust=1521077268407000&usg=AFQjCNG5kLz87hDQHTKCm7EBf2NNjGA3gw
2018-03-13 21:28:11,https://venmo.com/cash_out
2018-03-13 21:28:11,https://venmo.com/account/login/?next=/cash_out
2018-03-13 21:28:04,https://mail.google.com/mail/u/0/#inbox/162220a347e17500
2018-03-13 21:24:08,https://online.americanexpress.com/myca/logon/us/action/LogLogoffHandler?request_type=LogLogoffHandler&Face=en_US&inav=iNavLogOutButton
2018-03-13 21:23:37,https://online.americanexpress.com/myca/accountprofile/us/view.do?request_type=authreg_sdo&linknav=US-Ser-axpAccountManagement-PaperlessSettings&action=stmtopt&Face=en_US&sorted_index=0#
2018-03-13 21:23:11,https://online.americanexpress.com/myca/accountprofile/us/view.do?request_type=authreg_sdo&Face=en_US&action=stmtopt&account_key=3353F3471136DFA60E7280A862F599A3&linknav=US-Ser-axpAccountManagement-PaperlessSettings
2018-03-13 21:23:11,https://online.americanexpress.com/myca/accountprofile/us/view.do?request_type=authreg_sdo&linknav=US-Ser-axpAccountManagement-PaperlessSettings&action=stmtopt&Face=en_US&sorted_index=0
2018-03-13 21:23:01,https://global.americanexpress.com/account-management
2018-03-13 21:21:46,https://global.americanexpress.com/address/edit
2018-03-13 21:21:32,https://global.americanexpress.com/account-management?inav=myca_account_services
2018-03-13 21:21:09,https://www.creditcards.com/credit-card-news/help/cancel-credit-card-6000.php
2018-03-13 21:21:03,https://www.google.com/search?q=should+i+cancel+my+credit+card&oq=should+i+cancel+my+&aqs=chrome.0.0j69i57j0l4.6166j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 21:20:14,https://global.americanexpress.com/dashboard?inav=menu_myacct_acctsum
2018-03-13 21:18:01,https://online.americanexpress.com/myca/logon/us/action/LogLogonHandler?request_type=LogLogonHandler&Face=en_US
2018-03-13 21:18:01,https://online.americanexpress.com/myca/acctmgmt/us/myaccountsummary.do?request_type=authreg_acctAccountSummary&Face=en_US&omnlogin=us_homepage_myca
2018-03-13 21:18:01,https://online.americanexpress.com/myca/accountsummary/us/accounthome?request_type=authreg_acctAccountSummary&Face=en_US&omnlogin=us_homepage_myca
2018-03-13 21:18:01,https://global.americanexpress.com/dashboard
2018-03-13 21:17:49,https://www.americanexpress.com/
2018-03-13 21:17:41,https://www.google.com/search?q=americanexpress&oq=americanex&aqs=chrome.0.0j69i60l3j69i57j0.3959j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 21:16:34,http://bankofamerica.com/activatedebitcard
2018-03-13 21:16:34,http://www.bankofamerica.com/activatedebitcard
2018-03-13 21:16:34,https://www.bankofamerica.com/activatedebitcard
2018-03-13 21:16:34,https://www.bankofamerica.com/activatedebit/
2018-03-13 21:16:34,https://secure.bankofamerica.com/administer-accounts/public/card/activate.go?type=debit&channel=desktop
2018-03-13 21:16:34,https://secure.bankofamerica.com/login/sign-in/signOnScreen.go?reason=managesettingsdebit
2018-03-13 21:16:34,https://secure.bankofamerica.com/login/sign-in/signOnV2Screen.go?reason=managesettingsdebit
2018-03-13 21:16:21,https://www.google.com/search?q=bankofamerica&oq=bankofamerica&aqs=chrome..69i57j69i60l3j0l2.1558j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 21:15:49,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520886012576&xpc=%7B%22cn%22%3A%22s5po5i%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWa5KoYRLCuxiElrP2Wv-M4Ym4vIAIsTRT8iXUBbhY4VJ16c1m-1ibwmtzy_I1j3J2Yd_8LZpfU56Uum1GlouAIWxeQWtg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.kBTDgkPpgMA.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4A7IC8_QABAHbEsIMIaQXC7M885mmAl5sg9v__9zxAAGoAcA3wN_cBdA4AAAAAAAAAAAAAAAAAAACwo_AL%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DfoDI2YEhAaw15cSPofgLDSfd-vg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=4mlqrwr75f40
2018-03-13 20:50:49,https://mail.google.com/mail/u/1/#inbox/1621d435d9ad185c
2018-03-13 20:47:10,https://mail.google.com/mail/u/2/#inbox/162070648cb01394
2018-03-13 20:45:55,https://calendar.google.com/calendar/r/week/2018/3/27
2018-03-13 20:45:49,https://calendar.google.com/calendar/r/week/2018/3/20
2018-03-13 20:37:52,https://mail.google.com/mail/u/0/#inbox/162218e561482b0c
2018-03-13 20:36:09,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&ids=113%2C111
2018-03-13 20:36:09,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?s=&comment_status=all&pagegen_timestamp=2018-03-14+00%3A35%3A46&_total=20&_per_page=20&_page=1&paged=1&_ajax_fetch_list_nonce=b64d75b0ef&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fpaged%3D1%26approved%3D2&_wpnonce=12294ab36e&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fpaged%3D1%26approved%3D2&action=spam&comment_type=&paged=1&delete_comments%5B%5D=113&delete_comments%5B%5D=111
2018-03-13 20:36:09,"http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&spammed=2&ids=113,111"
2018-03-13 20:35:48,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1
2018-03-13 20:35:48,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?s=&comment_status=all&pagegen_timestamp=2018-03-14+00%3A35%3A33&_total=20&_per_page=20&_page=1&paged=1&_ajax_fetch_list_nonce=b64d75b0ef&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fpaged%3D1%26spammed%3D14%26ids%3D134%2C133%2C132%2C131%2C129%2C127%2C126%2C125%2C122%2C121%2C120%2C119%2C115%2C114&_wpnonce=12294ab36e&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fpaged%3D1%26spammed%3D14%26ids%3D134%2C133%2C132%2C131%2C129%2C127%2C126%2C125%2C122%2C121%2C120%2C119%2C115%2C114&action=approve&comment_type=&paged=1&delete_comments%5B%5D=124&delete_comments%5B%5D=123
2018-03-13 20:35:48,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&approved=2
2018-03-13 20:35:35,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&ids=134%2C133%2C132%2C131%2C129%2C127%2C126%2C125%2C122%2C121%2C120%2C119%2C115%2C114
2018-03-13 20:35:35,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?s=&comment_status=all&pagegen_timestamp=2018-03-14+00%3A34%3A48&_total=34&_per_page=20&_page=1&_ajax_fetch_list_nonce=b64d75b0ef&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fspammed%3D1%26ids%3D130&_wpnonce=12294ab36e&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fedit-comments.php%3Fspammed%3D1%26ids%3D130&action=-1&comment_type=&paged=1&delete_comments%5B%5D=134&delete_comments%5B%5D=133&delete_comments%5B%5D=132&delete_comments%5B%5D=131&delete_comments%5B%5D=129&delete_comments%5B%5D=127&delete_comments%5B%5D=126&delete_comments%5B%5D=125&delete_comments%5B%5D=122&delete_comments%5B%5D=121&delete_comments%5B%5D=120&delete_comments%5B%5D=119&delete_comments%5B%5D=115&delete_comments%5B%5D=114&action2=spam
2018-03-13 20:35:35,"http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?paged=1&spammed=14&ids=134,133,132,131,129,127,126,125,122,121,120,119,115,114"
2018-03-13 20:34:52,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?ids=130
2018-03-13 20:34:51,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Mark+as+Spam&_wpnonce=4c7fc9cff0&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D130&action=spamcomment&c=130&noredir=1
2018-03-13 20:34:51,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?spammed=1&ids=130
2018-03-13 20:34:45,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=130#wpbody-content
2018-03-13 20:34:14,https://mail.google.com/mail/u/0/#inbox/16220f2ee1f518bf
2018-03-13 20:19:08,https://calendar.google.com/calendar/r/week/2018/3/6
2018-03-13 20:18:26,http://www.xujenna.com/focus
2018-03-13 20:18:26,http://www.xujenna.com/focus/
2018-03-13 20:03:39,https://hangouts.google.com/hangouts/_/calendar/czU5cm4xcTltc2l1bGliNGcwbHBrNW9vcHNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ._892k6gi48kq30ba68d1k6b9k6kq3cb9o69230b9k88p42c9g8os42dq460?authuser=0
2018-03-13 20:03:24,https://plus.google.com/hangouts/_/calendar/czU5cm4xcTltc2l1bGliNGcwbHBrNW9vcHNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ._892k6gi48kq30ba68d1k6b9k6kq3cb9o69230b9k88p42c9g8os42dq460?authuser=0
2018-03-13 20:02:15,"https://www.google.com/maps/place/Hilton+Garden+Inn+New+York%2FTribeca/@40.7209126,-74.0076634,17z/data=!4m13!1m7!3m6!1s0x89c25b07af45cb23:0x87f45a50fc4f2b3c!2s100+8th+Ave+%235d,+Brooklyn,+NY+11215!3b1!8m2!3d40.6727864!4d-73.9737322!3m4!1s0x89c2598ad7090283:0xff5bb7df8c35a1b1!8m2!3d40.7209126!4d-74.0054747"
2018-03-13 20:02:14,"https://www.google.com/maps/place/Hilton+Garden+Inn+New+York%2FTribeca/@40.7185033,-73.9987387,17z/data=!4m13!1m7!3m6!1s0x89c25b07af45cb23:0x87f45a50fc4f2b3c!2s100+8th+Ave+%235d,+Brooklyn,+NY+11215!3b1!8m2!3d40.6727864!4d-73.9737322!3m4!1s0x89c2598ad7090283:0xff5bb7df8c35a1b1!8m2!3d40.7209126!4d-74.0054747"
2018-03-13 20:02:02,"https://www.google.com/maps/place/Hilton+Garden+Inn+New+York%2FTribeca/@40.7185033,-73.9987387,17z/data=!4m9!1m3!3m2!1s0x89c25b07af45cb23:0x87f45a50fc4f2b3c!2s100+8th+Avenue+%235d,+Brooklyn,+NY+11215!3m4!1s0x89c2598ad7090283:0xff5bb7df8c35a1b1!8m2!3d40.7209126!4d-74.0054747"
2018-03-13 20:02:01,"https://www.google.com/maps/place/100+8th+Avenue+%235d,+Brooklyn,+NY+11215/@40.7185033,-73.9987387,17z/data=!4m2!3m1!1s0x89c25b07af45cb23:0x87f45a50fc4f2b3c"
2018-03-13 14:42:17,chrome-error://chromewebdata/
2018-03-13 14:21:33,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9869985386913707&hb=1&tn=yjjficq12lqx&rld=1
2018-03-13 14:05:57,"https://www.google.com/maps/@40.7185033,-73.9987387,17z"
2018-03-13 14:05:57,"https://www.google.com/maps/@40.7187216,-73.9978653,18.33z"
2018-03-13 14:05:56,"https://www.google.com/maps/place/New+York+Mart/@40.7187216,-73.9978653,18.33z/data=!4m12!1m6!3m5!1s0x89c259883ec8633d:0xf4f49e325710c54f!2sNew+York+Mart!8m2!3d40.7184993!4d-73.99655!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:05:44,"https://www.google.com/maps/place/New+York+Mart/@40.7187216,-73.9978653,18.33z/data=!4m5!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:05:44,"https://www.google.com/maps/place/New+York+Mart/@40.7185823,-73.9984226,17.36z/data=!4m5!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:05:37,"https://www.google.com/maps/place/New+York+Mart/@40.7185033,-73.9987387,17z/data=!3m1!4b1!4m5!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:05:36,"https://www.google.com/maps/place/New+York+Mart/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:05:36,"https://www.google.com/maps/place/New+York+Mart,+Mott+Street,+New+York,+NY/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c259883ec8633d:0xf4f49e325710c54f!8m2!3d40.7184993!4d-73.99655"
2018-03-13 14:03:44,https://pay.google.com/send/home?tab=ma&authuser=0
2018-03-13 14:03:44,https://wallet.google.com/n/home?tab=ma&authuser=0
2018-03-13 14:03:44,https://accounts.google.com/CheckCookie?hl=en&checkedDomains=youtube&checkConnection=youtube%3A310%3A1&pstMsg=1&osid=1&chtml=LoginDoneHtml&service=sierra&continue=https%3A%2F%2Fwallet.google.com%2Fn%2Fhome%3Ftab%3Dma%26authuser%3D0&gidl=EgIIAA
2018-03-13 14:03:44,https://wallet.google.com/accounts/SetOSID?authuser=0&continue=https%3A%2F%2Faccounts.youtube.com%2Faccounts%2FSetSID%3Fssdc%3D1%26sidt%3DALWU2cvt220fwxuZRyiPMjYzDuVEII5%252Bep1AmjEyTMcr5m%252BIDaHg9gYMKLHlPj2OAYb1HiJ75NlrejE5qaGtflMXfafPgPoApc9%252BHRFMq2tB9N5uO0u%252BzmLoRvT2f6gJkjXgzEgnPu67x8UQvT0m7K5TLD57glCp09SBzBKw4fFKlhJMd3MOTc1lQKQf1lVbxqXIYadw3%252Fr8Q1%252FAANJjW62pU3Jm6uFv7kn6GmatS9%252FMQZFsLoP7%252FPeqUQ1LpZ8ayPw4Iqjaz7pAi9yyiATz%252BUpyjtkmZFowfdeKaMnrZyrAoSw7%252BeU6KIQut0SGkBPBMEXMrNygPO4xgSfoOFEML%252B91Abdg0bMSZg%253D%253D%26continue%3Dhttps%253A%252F%252Fwallet.google.com%252Fn%252Fhome%253Ftab%253Dma%2526authuser%253D0%2526auth%253D4AUmYfWW1wjEOc-GCrKxyqpChDDTyiIeIu1RRHOcaHbWnktzcYW8ph9YmPTIe4w8Uvz9mg.&osidt=ALWU2cuU0Mla3rZqFUcdih3qL5Ftb1hlsd0wRPwRWtC8m2C38338ZPB_XOZrjTttccRaRagbvn8jwhsyzWplOWFc-dF7g2zERBhpS11vTa2l2DzbwN1a-L6KQ08qVjbP_r7wfaKkci7D
2018-03-13 14:03:44,https://accounts.youtube.com/accounts/SetSID?ssdc=1&sidt=ALWU2cvt220fwxuZRyiPMjYzDuVEII5%2Bep1AmjEyTMcr5m%2BIDaHg9gYMKLHlPj2OAYb1HiJ75NlrejE5qaGtflMXfafPgPoApc9%2BHRFMq2tB9N5uO0u%2BzmLoRvT2f6gJkjXgzEgnPu67x8UQvT0m7K5TLD57glCp09SBzBKw4fFKlhJMd3MOTc1lQKQf1lVbxqXIYadw3/r8Q1/AANJjW62pU3Jm6uFv7kn6GmatS9/MQZFsLoP7/PeqUQ1LpZ8ayPw4Iqjaz7pAi9yyiATz%2BUpyjtkmZFowfdeKaMnrZyrAoSw7%2BeU6KIQut0SGkBPBMEXMrNygPO4xgSfoOFEML%2B91Abdg0bMSZg%3D%3D&continue=https://wallet.google.com/n/home?tab%3Dma%26authuser%3D0%26auth%3D4AUmYfWW1wjEOc-GCrKxyqpChDDTyiIeIu1RRHOcaHbWnktzcYW8ph9YmPTIe4w8Uvz9mg.
2018-03-13 14:03:44,https://wallet.google.com/n/home?tab=ma&authuser=0&auth=4AUmYfWW1wjEOc-GCrKxyqpChDDTyiIeIu1RRHOcaHbWnktzcYW8ph9YmPTIe4w8Uvz9mg.
2018-03-13 14:03:33,https://accounts.google.com/signin/v2/sl/pwd?service=sierra&passive=1&osid=1&continue=https%3A%2F%2Fwallet.google.com%2Fn%2Fhome%3Ftab%3Dma%26authuser%3D0&followup=https%3A%2F%2Fwallet.google.com%2Fn%2Fhome%3Ftab%3Dma%26authuser%3D0&authuser=0&flowName=GlifWebSignIn&flowEntry=ServiceLogin
2018-03-13 14:03:32,https://accounts.google.com/ServiceLogin?service=sierra&passive=1&osid=1&continue=https://wallet.google.com/n/home?tab%3Dma%26authuser%3D0&followup=https://wallet.google.com/n/home?tab%3Dma%26authuser%3D0&authuser=0
2018-03-13 14:00:33,https://mail.google.com/mail/u/1/#inbox/162207fc168de3d8
2018-03-13 13:59:54,https://github.com/xujenna/thesis_explorations/tree/master/past%20analyzers/ig_analyzer
2018-03-13 13:59:50,http://xujenna.com/ig_analyzer
2018-03-13 13:59:50,http://xujenna.com/ig_analyzer/
2018-03-13 13:57:26,https://github.com/xujenna?tab=repositories
2018-03-13 13:56:00,https://www.w3schools.com/bootstrap/default.asp
2018-03-13 13:55:59,https://www.w3schools.com/tags/default.asp
2018-03-13 13:55:02,https://www.w3schools.com/tags/tag_title.asp
2018-03-13 13:54:56,https://www.google.com/search?q=title+tag+html&oq=title+tag+html&aqs=chrome.0.0l6.1638j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 13:49:08,https://www.flickr.com/photos/133005141@N08/sets/72157694451926495/with/26921410468/
2018-03-13 13:49:06,https://www.flickr.com/photos/133005141@N08/26921410468/in/album-72157694451926495/
2018-03-13 13:49:05,https://www.flickr.com/photos/133005141@N08/40749007782/in/album-72157694451926495/
2018-03-13 13:49:05,https://www.flickr.com/photos/133005141@N08/39896551415/in/album-72157694451926495/
2018-03-13 13:49:04,https://www.flickr.com/photos/133005141@N08/40749004482/in/album-72157694451926495/
2018-03-13 13:49:03,https://www.flickr.com/photos/133005141@N08/38981316800/in/album-72157694451926495/
2018-03-13 13:49:01,https://www.flickr.com/photos/133005141@N08/39896548695/in/album-72157694451926495/
2018-03-13 13:48:58,https://www.flickr.com/photos/133005141@N08/sets/72157694451926495
2018-03-13 13:48:08,https://www.flickr.com/photos/organize/?start_tab=new_set
2018-03-13 13:48:05,https://www.flickr.com/photos/133005141@N08/albums
2018-03-13 13:46:29,https://nytimes.wd5.myworkdayjobs.com/en-US/Intern-Biz/job/New-York-NY/Product-Design-Intern---Style-Guide-and-Component-Library_REQ-002663-1
2018-03-13 13:46:19,https://nytimes.wd5.myworkdayjobs.com/Intern-Biz
2018-03-13 13:46:12,https://www.nytco.com/careers/internship-opportunities/
2018-03-13 13:46:08,https://nytimes.wd5.myworkdayjobs.com/Intern-NR
2018-03-13 13:45:57,http://www.nytco.com/careers
2018-03-13 13:45:57,https://www.nytco.com/careers
2018-03-13 13:45:57,https://www.nytco.com/careers/
2018-03-13 13:45:52,https://www.nytimes.com/
2018-03-13 13:45:36,https://fivethirtyeight.com/jobs/
2018-03-13 13:45:26,http://fivethirtyeight.com/
2018-03-13 13:45:26,https://fivethirtyeight.com/
2018-03-13 13:45:09,https://mail.google.com/mail/u/1/#inbox/1622075666931699
2018-03-13 13:36:00,https://scysvr03.r.us-east-1.awstrack.me/L0/https:%2F%2Fsquareup.com%2Foutreach%2Fbirthday%2Fd%2FHXeoFZrde0PcqW3O/1/0100016212228cea-bf383459-2b7c-4813-a960-9b115ba99c6d-000000/VSgxJwXlgWQqL-aGNQExnNXeSqQ=48
2018-03-13 13:36:00,https://squareup.com/outreach/birthday/d/HXeoFZrde0PcqW3O
2018-03-13 13:35:56,https://mail.google.com/mail/u/0/#inbox/1621222931724169
2018-03-13 13:21:28,https://mail.google.com/mail/u/1/#inbox/162205ddcb755090
2018-03-13 13:21:13,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=846&action=edit
2018-03-13 13:21:07,http://www.xujenna.com/itp_blog/2018/02/26/846/
2018-03-13 13:20:41,http://www.xujenna.com/itp_blog/2018/02/22/two-more-years/
2018-03-13 13:18:40,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/02/composite.jpg
2018-03-13 13:18:23,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/02/UXblueprint.png
2018-03-13 13:12:02,https://www.dreamhoststatus.com/
2018-03-13 12:45:44,https://arxiv.org/pdf/1608.03282.pdf
2018-03-13 12:41:45,https://mail.google.com/mail/u/1/#inbox?compose=162203d13d8bb6aa
2018-03-13 12:41:36,https://mail.google.com/mail/u/1/#inbox?compose=162203d00eeb80ba
2018-03-13 12:41:31,https://mail.google.com/mail/u/1/#inbox?compose=162203cd65172be6
2018-03-13 12:41:21,https://mail.google.com/mail/u/1/#inbox?compose=162203ca299c8f8d
2018-03-13 12:41:07,https://mail.google.com/mail/u/1/#inbox?compose=162203c534a44549
2018-03-13 12:40:47,https://mail.google.com/mail/u/1/#inbox?compose=162203c2e50dbecf
2018-03-13 12:40:38,https://mail.google.com/mail/u/1/#inbox?compose=162203bb36787b86
2018-03-13 12:40:06,https://mail.google.com/mail/u/1/#inbox?compose=162203b998682da2
2018-03-13 12:39:59,https://mail.google.com/mail/u/1/#inbox?compose=162203b814226906
2018-03-13 12:39:53,https://mail.google.com/mail/u/1/#inbox?compose=162203b0460e8b3d
2018-03-13 12:39:22,https://mail.google.com/mail/u/1/#inbox?compose=162203acfea769d3
2018-03-13 12:39:08,https://mail.google.com/mail/u/1/#inbox?compose=162203a755204c1c
2018-03-13 12:38:46,https://calendar.google.com/calendar/r/week/2018/4/3
2018-03-13 12:38:45,https://mail.google.com/mail/u/1/#inbox?compose=162203a58b7a0ae1
2018-03-13 12:38:37,https://mail.google.com/mail/u/1/#inbox?compose=162203a36c7651c4
2018-03-13 12:38:29,https://mail.google.com/mail/u/1/#inbox?compose=new
2018-03-13 12:37:16,https://mail.google.com/mail/u/1/#sent/1622037338527540
2018-03-13 12:37:16,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=162203910d3f8e63
2018-03-13 12:37:13,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=1622038e4405687c
2018-03-13 12:37:02,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=1622038a3448e868
2018-03-13 12:36:45,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=16220388580b1143
2018-03-13 12:36:38,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=16220386e545c8fd
2018-03-13 12:36:32,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=16220377549532c7
2018-03-13 12:35:45,http://itp.nyu.edu/itp/people/people.php?id=2011&group=All
2018-03-13 12:35:40,https://www.google.com/search?q=itp+Forsyth&oq=itp+Forsyth&aqs=chrome..69i57j69i64.1357j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 12:35:28,https://mail.google.com/mail/u/1/#sent/1622037338527540?compose=new
2018-03-13 12:35:13,https://mail.google.com/mail/u/1/#sent
2018-03-13 12:35:11,https://mail.google.com/mail/u/1/#inbox?compose=162203717bf8e342
2018-03-13 12:35:04,https://mail.google.com/mail/u/1/#inbox?compose=1622036ffc957d00
2018-03-13 12:34:58,https://mail.google.com/mail/u/1/#inbox?compose=1622036e75f79963
2018-03-13 12:34:52,https://mail.google.com/mail/u/1/#inbox?compose=1622036c71148f0a
2018-03-13 12:34:44,https://mail.google.com/mail/u/1/#inbox?compose=162203688c1ab139
2018-03-13 12:34:28,https://mail.google.com/mail/u/1/#inbox?compose=16220366d18438d6
2018-03-13 12:34:21,https://mail.google.com/mail/u/1/#inbox?compose=16220362f8dcb77e
2018-03-13 12:34:05,https://mail.google.com/mail/u/1/#inbox?compose=162203601030f9ca
2018-03-13 12:33:53,https://mail.google.com/mail/u/1/#inbox?compose=1622035cd47c8d4a
2018-03-13 12:33:40,https://mail.google.com/mail/u/1/#inbox?compose=1622035c1a18b108
2018-03-13 12:33:37,https://mail.google.com/mail/u/1/#inbox?compose=16220359494e5a9f
2018-03-13 12:33:25,https://mail.google.com/mail/u/1/#inbox?compose=16220356a4bb0838
2018-03-13 12:33:14,https://mail.google.com/mail/u/1/#inbox?compose=162203543dfd67d3
2018-03-13 12:33:04,https://mail.google.com/mail/u/1/#inbox?compose=162203528399cd58
2018-03-13 12:32:57,https://mail.google.com/mail/u/1/#inbox?compose=1622034f04d89a87
2018-03-13 12:32:43,https://mail.google.com/mail/u/1/#inbox?compose=1622034be1ea539e
2018-03-13 12:32:30,https://mail.google.com/mail/u/1/#inbox?compose=16220341fae5ec39
2018-03-13 12:32:15,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/h/?tab=IS_SSS_TAB&jsconfig=IS_ED_SSS_GRADESLnk
2018-03-13 12:32:07,http://samslover.com/#/about
2018-03-13 12:31:49,https://mail.google.com/mail/u/1/#inbox?compose=162203387ae01908
2018-03-13 12:31:24,http://samslover.com/
2018-03-13 12:31:24,http://samslover.com/#/home
2018-03-13 12:31:17,https://www.google.com/search?q=sam+slover&oq=sam+slover&aqs=chrome..69i57j0l4.3191j0j4&sourceid=chrome&ie=UTF-8
2018-03-13 12:31:10,https://mail.google.com/mail/u/1/#inbox?compose=16220337e920a9d7
2018-03-13 12:31:08,https://mail.google.com/mail/u/1/#inbox?compose=1622032e5e5978b8
2018-03-13 12:30:29,https://mail.google.com/mail/u/1/#inbox?compose=16220322c821f9fb
2018-03-13 12:30:13,https://tisch.nyu.edu/about/directory/itp/721403706
2018-03-13 12:29:51,https://www.google.com/search?q=Chisom+Onuoha&oq=Chisom+Onuoha&aqs=chrome..69i57.238j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 12:29:05,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/h/?tab=IS_SSS_TAB&jsconfig=NYU_ED_SSS_ACADEMICSLnk
2018-03-13 12:28:46,https://mail.google.com/mail/u/1/#inbox?compose=16220314ca304b52
2018-03-13 12:27:51,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/h/?tab=IS_SSS_TAB&jsconfig=IS_ED_SSS_SUMMARYLnk
2018-03-13 12:27:50,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/?cmd=start
2018-03-13 12:27:50,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/e/?cmd=start
2018-03-13 12:27:50,https://sis.portal.nyu.edu/psc/ihprod/EMPLOYEE/EMPL/s/WEBLIB_IS_MOBR.ISCRIPT1.FieldFormula.IScript_StartPage
2018-03-13 12:27:50,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/h/?tab=IS_SSS_TAB
2018-03-13 12:27:28,http://albert.nyu.edu/
2018-03-13 12:27:28,http://albert.nyu.edu/albert_index.html
2018-03-13 12:27:26,https://sis.portal.nyu.edu/Shibboleth.sso/SAML2/POST
2018-03-13 12:27:26,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/?cmd=start&cmd=login&errorCode=105&languageCd=ENG
2018-03-13 12:27:05,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZLLbsIwEEV%2FJfKeOA8agkUipbAoEi0RSbvopjLJ0Fhy7NTjtOXvG16Cblj7zrkzR54hb2XHst42agNfPaB1flupkB0fEtIbxTRHgUzxFpDZihXZ84oFrsc6o62utCROhgjGCq3mWmHfginAfIsKXjerhDTWdsgoHSBup43l0lX73oW6p0UjtlstwTYuoqYHckDzdVESZzGsIhQ%2FQG8Q1%2FwFIeqODovshITz%2FAZqYaCytCjWxFkuEvIR%2B2E0qaMqCMdRFPPpdDqGSRR6sNuO43jnDzHEHpYKLVc2IYHnxyMvHPlh6UcsmDDv4Z04%2BfneR6FqoT7vy9meQsieyjIfnW56A4PHe4YASWcHxexYbG6k38fyi2mS3vF69TTCbkZvik6tHXsZyMtFrqWo9k4mpf6ZG%2BAWEuITmp5G%2Fv%2BL9A8%3D&RelayState=ss%3Amem%3A52b6016699d83f7a800c65882e25c684758083b4d2fd5865987b63b448909fda
2018-03-13 12:26:50,https://mail.google.com/mail/u/1/#search/impossible+maps/15ef78e886ab1830?compose=new
2018-03-13 12:26:49,https://mail.google.com/mail/u/1/#search/impossible+maps?compose=new
2018-03-13 12:26:25,https://www.google.com/search?q=after+effects&oq=after+effects&aqs=chrome..69i57j0l5.3103j1j7&sourceid=chrome&ie=UTF-8
2018-03-13 12:23:21,https://en.wikipedia.org/wiki/Nikki_Haley
2018-03-13 12:23:15,https://www.google.com/search?q=nikki+haley&oq=nikki+haley&aqs=chrome..69i57j0l5.1478j1j7&sourceid=chrome&ie=UTF-8
2018-03-13 12:22:31,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=BwF3CHtXsiC4fM:
2018-03-13 12:22:28,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=xZFSnAHVtbgiYM:
2018-03-13 12:22:28,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=C2JA8TFVgJT7UM:
2018-03-13 12:22:25,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=R4SYTfiAIloEEM:
2018-03-13 12:22:24,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=n6wkWzGVWXTSFM:
2018-03-13 12:22:20,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=zqpgAIXie6BR6M:
2018-03-13 12:22:17,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=MRNfH6MGImLuaM:
2018-03-13 12:22:10,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884#imgrc=hfgDvs9GH4dXhM:
2018-03-13 12:22:06,https://www.google.com/search?q=terrace+house&tbm=isch&tbo=u&source=univ&sa=X&ved=0ahUKEwiwzJDE2unZAhWEq1kKHeA2CX8QiR4I_wE&biw=1680&bih=884
2018-03-13 12:22:01,https://www.google.com/search?q=terrace+house&oq=terrace+house&aqs=chrome..69i57j0l5.2037j0j7&sourceid=chrome&ie=UTF-8
2018-03-13 12:21:50,https://en.wikipedia.org/wiki/Terrace_House_(franchise)
2018-03-13 12:21:34,https://www.google.com/imgres?imgurl=https://cdn.vox-cdn.com/uploads/chorus_asset/file/8972719/0_70A7KbwuyB1Oa-ot..0.jpeg&imgrefurl=https://www.theringer.com/2017/7/11/16077832/terrace-house-japan-netflix-real-world-338b1e3804bb&h=891&w=1600&tbnid=h_bMJfqJQ3rzIM:&tbnh=111&tbnw=199&usg=__b6gAFyGB2J3ezqpDbkRpwmzHYoY%3D&vet=10ahUKEwjwu9u12unZAhWRk1kKHdaFBVQQ_B0I7gEwIQ..i&docid=yE9JperMqkLAZM&itg=1&sa=X&ved=0ahUKEwjwu9u12unZAhWRk1kKHdaFBVQQ_B0I7gEwIQ
2018-03-13 12:16:11,https://www.thecut.com/2017/07/princess-charlottes-diplomatic-handshake-germany.html
2018-03-13 12:13:41,https://www.wsj.com/articles/national-enquirer-shielded-donald-trump-from-playboy-models-affair-allegation-1478309380
2018-03-13 12:04:28,http://nymag.com/strategist/2018/03/sale-tory-burch-hunter-boots-neiman-marcus-uniqlo.html
2018-03-13 12:04:18,https://mail.google.com/mail/u/0/#inbox/16220190b09028cc
2018-03-13 12:02:32,https://www.wired.com/story/paris-of-china-photo-gallery/
2018-03-13 12:02:29,https://feedly.com/i/saved
2018-03-13 12:01:58,https://twitter.com/realdonaldtrump/status/973540316656623616
2018-03-13 11:59:11,https://www.vox.com/world/2018/3/13/16029526/rex-tillerson-fired-state-department
2018-03-13 11:59:10,https://www.google.com/url?q=https://www.vox.com/world/2018/3/13/16029526/rex-tillerson-fired-state-department&sa=D&source=hangouts&ust=1521043148648000&usg=AFQjCNGQN-6b-c1ENrez57A9G_fQRqmAJg
2018-03-13 11:58:41,https://www.vox.com/
2018-03-13 11:55:06,http://www.dreamhoststatus.com/
2018-03-13 11:51:08,https://panel.dreamhost.com/index.cgi?tree=support.msg&
2018-03-13 11:50:46,https://v2.zopim.com/widget/livechat.html?api_calls=%5B%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%22DreamPress%22%2C%22Email%22%2C%22Website%22%2C%22WordPress%22%2C%22Billing%22%2C%22Account%22%2C%22Other%22%2C%22Abuse-Security%22%2C%22Cloud%22%2C%22Dedicated%22%2C%22Domain%20Registration%22%2C%22VPS%22%2C%22Control%20Panel%22%2C%22Sales%22%2C%22Remixer%22%2C%22WPPlugin%22%5D%5D%5D&hostname=panel.dreamhost.com&key=48Qbbx2RDUhgQbzIgUlRhYhlNYdCjmAn&lang=en&
2018-03-13 11:50:46,https://v2.zopim.com/widget/livechat.html?api_calls=%5B%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%22DreamPress%22%2C%22Email%22%2C%22Website%22%2C%22WordPress%22%2C%22Billing%22%2C%22Account%22%2C%22Other%22%2C%22Abuse-Security%22%2C%22Cloud%22%2C%22Dedicated%22%2C%22Domain%20Registration%22%2C%22VPS%22%2C%22Control%20Panel%22%2C%22Sales%22%2C%22Remixer%22%2C%22WPPlugin%22%5D%5D%5D&hostname=panel.dreamhost.com&key=48Qbbx2RDUhgQbzIgUlRhYhlNYdCjmAn&lang=en&mid=l1h87Sto1F8WxV
2018-03-13 11:50:18,https://help.dreamhost.com/hc/en-us/articles/217083717-What-to-check-if-your-site-is-down
2018-03-13 11:50:04,https://v2.zopim.com/widget/livechat.html?api_calls=%5B%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%22DreamPress%22%2C%22Email%22%2C%22Website%22%2C%22WordPress%22%2C%22Billing%22%2C%22Account%22%2C%22Other%22%2C%22Abuse-Security%22%2C%22Cloud%22%2C%22Dedicated%22%2C%22Domain%20Registration%22%2C%22VPS%22%2C%22Control%20Panel%22%2C%22Sales%22%2C%22Remixer%22%2C%22WPPlugin%22%5D%5D%5D&hostname=panel.dreamhost.com&key=48Qbbx2RDUhgQbzIgUlRhYhlNYdCjmAn&lang=en&
2018-03-13 11:50:04,https://v2.zopim.com/widget/livechat.html?api_calls=%5B%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%5D%5D%2C%5B%22departments.filter%22%2C%5B%22DreamPress%22%2C%22Email%22%2C%22Website%22%2C%22WordPress%22%2C%22Billing%22%2C%22Account%22%2C%22Other%22%2C%22Abuse-Security%22%2C%22Cloud%22%2C%22Dedicated%22%2C%22Domain%20Registration%22%2C%22VPS%22%2C%22Control%20Panel%22%2C%22Sales%22%2C%22Remixer%22%2C%22WPPlugin%22%5D%5D%5D&hostname=panel.dreamhost.com&key=48Qbbx2RDUhgQbzIgUlRhYhlNYdCjmAn&lang=en&mid=l1h87Sto1F8WxV
2018-03-13 11:49:42,https://panel.dreamhost.com/index.cgi
2018-03-13 11:49:40,https://panel.dreamhost.com/
2018-03-13 11:49:26,http://dreamhost.com/
2018-03-13 11:49:26,http://www.dreamhost.com/
2018-03-13 11:49:26,https://www.dreamhost.com/
2018-03-13 11:46:31,https://www.politico.com/magazine/story/2017/06/29/how-rex-tillerson-destroying-state-department-215319
2018-03-13 11:46:12,https://www.google.com/search?q=rex+tillerson+foggy+bottom&oq=rex+tillerson+foggy+bottom&aqs=chrome..69i57.3998j0j4&sourceid=chrome&ie=UTF-8
2018-03-13 11:45:25,https://en.wikipedia.org/wiki/Rex_Tillerson
2018-03-13 11:45:22,https://www.wikipedia.org/
2018-03-13 11:45:22,http://www.wikipedia.org/
2018-03-13 11:39:42,https://www.vox.com/2018/3/13/17113718/rex-tillerson-state-department-fired-pompeo-statement
2018-03-13 11:39:37,https://www.google.com/search?q=vox+tillerson&oq=vox+tillerson&aqs=chrome..69i57.1678j0j4&sourceid=chrome&ie=UTF-8
2018-03-13 11:39:26,https://myactivity.google.com/myactivity?utm_source=chrome_h&product=1
2018-03-13 11:39:20,https://myactivity.google.com/myactivity?utm_source=chrome_h
2018-03-13 11:38:28,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-13
2018-03-13 11:38:14,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-12
2018-03-13 11:38:12,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-11
2018-03-13 11:38:11,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-10
2018-03-13 11:38:08,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-09
2018-03-13 01:33:23,https://mail.google.com/mail/u/0/#inbox/16219cfd9df12488
2018-03-13 01:33:12,https://mail.google.com/mail/u/0/#inbox/1621cd4bf974f7ad
2018-03-13 01:31:10,https://brown.columbia.edu/propose/
2018-03-13 01:30:26,https://www.google.com/url?hl=en&q=https://brown.columbia.edu/announcing-the-2018-19-magic-grant-call-for-proposals/&source=gmail&ust=1520972413088000&usg=AFQjCNExElP66CwOaAHPg2ujyiVkAQ1Liw
2018-03-13 01:30:26,https://brown.columbia.edu/announcing-the-2018-19-magic-grant-call-for-proposals/
2018-03-13 01:30:11,https://mail.google.com/mail/u/1/#inbox/161fe3d6394a3e97
2018-03-13 01:30:01,https://calendar.google.com/calendar/r/eventedit/MzdubmlmaHUyMGc4NWdydms3NWhndGlsaWYgang2MDNAbnl1LmVkdQ
2018-03-13 01:25:56,https://mail.google.com/mail/u/1/#inbox/1620175be6209617
2018-03-13 01:25:35,https://mail.google.com/mail/u/1/#inbox/1620ca7559fdb388
2018-03-13 01:25:29,https://mail.google.com/mail/u/1/#inbox/1621dd1693bb16ef
2018-03-13 01:24:43,https://docs.google.com/forms/u/1/d/e/1FAIpQLSfrdxQ6WuHVMrrrzuysrdfGSJ5DnF14WoEnlSZqYGVpgC6RDw/formResponse
2018-03-13 01:24:42,https://docs.google.com/forms/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0/viewform?edit_requested=true&fbzx=-3622547600781162500
2018-03-13 01:23:15,https://docs.google.com/forms/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0/viewform?edit_requested=true
2018-03-13 01:23:15,https://docs.google.com/forms/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0
2018-03-13 01:23:15,https://docs.google.com/forms/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0/
2018-03-13 01:23:15,https://docs.google.com/forms/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0/edit
2018-03-13 01:23:15,https://docs.google.com/forms/u/1/d/1a38Mnw3J4G570hoS7dO92ObRbXcWXWnKyB9cFvcQyM0/viewform?edit_requested=true
2018-03-13 01:22:43,http://tisch.nyu.edu/photo/events/being-in-two-places-at-once.html
2018-03-13 01:21:43,https://www.facebook.com/events/158254621547568/
2018-03-13 01:21:40,https://www.google.com/url?hl=en&q=https://www.facebook.com/events/158254621547568/&source=gmail&ust=1520979965970000&usg=AFQjCNHFHYjXGNHOTnPXnwmG6aVIO7pNlQ
2018-03-13 01:21:19,https://mail.google.com/mail/u/1/#inbox/1621a93d157dd12e
2018-03-13 01:21:08,https://mail.google.com/mail/u/1/#inbox/1621bcb503c3d4b9
2018-03-13 01:20:48,https://mail.google.com/mail/u/1/#label/apply+here/161d32ee282e10fc
2018-03-13 01:20:07,https://techcongress.forms.fm/congressional-innovation-scholars
2018-03-13 01:20:07,https://www.google.com/url?hl=en&q=https://techcongress.forms.fm/congressional-innovation-scholars&source=gmail&ust=1521004786021000&usg=AFQjCNF_T65pK_2AfFrgXsSUAMTZ-QokQQ
2018-03-13 01:20:02,https://mail.google.com/mail/u/1/#label/apply+here/16128dc54ff940a8
2018-03-13 00:58:40,http://www.xujenna.com/itp_blog/2018/03/05/qh-w5-hw-quant-self-intervention/#comments
2018-03-13 00:58:02,https://mail.google.com/mail/u/1/#inbox/1621d41d22de2644
2018-03-13 00:33:38,https://www.google.com/search?source=hp&ei=nVSnWtKfDYqG5wLgkbfACA&q=python+try+catch&oq=python+try+catch&gs_l=psy-ab.3...709.2826.0.2942.20.8.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..20.0.0.0...0.ZdDvGW8EPzU
2018-03-13 00:33:33,http://google.com/
2018-03-13 00:33:33,http://www.google.com/
2018-03-13 00:33:33,https://www.google.com/
2018-03-13 00:10:28,https://mail.google.com/mail/u/0/#inbox/1621c3c077af24c9
2018-03-12 20:27:28,http://www.xujenna.com/itp_blog/category/quant-humanists/
2018-03-12 20:27:04,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=846&action=edit&message=1
2018-03-12 20:14:06,https://www.google.com/search?biw=1680&bih=889&tbm=isch&sa=1&ei=fhCnWtaiE4G25gL2652oBg&q=persona+empathy+map&oq=persona+empathy+map&gs_l=psy-ab.3..0.25544.28198.0.28322.19.9.0.2.2.0.533.909.3-1j0j1.2.0....0...1c.1.64.psy-ab..15.4.913...0i8i30k1j0i30k1.0.QvAbbJ0RR7w#imgrc=C4hNqgwW0w6YOM:
2018-03-12 20:04:59,https://www.google.com/search?biw=1680&bih=889&tbm=isch&sa=1&ei=fhCnWtaiE4G25gL2652oBg&q=persona+empathy+map&oq=persona+empathy+map&gs_l=psy-ab.3..0.25544.28198.0.28322.19.9.0.2.2.0.533.909.3-1j0j1.2.0....0...1c.1.64.psy-ab..15.4.913...0i8i30k1j0i30k1.0.QvAbbJ0RR7w#imgrc=-RQRxk5dYA_HgM:
2018-03-12 19:46:34,https://www.google.com/search?biw=1680&bih=889&tbm=isch&sa=1&ei=fhCnWtaiE4G25gL2652oBg&q=persona+empathy+map&oq=persona+empathy+map&gs_l=psy-ab.3..0.25544.28198.0.28322.19.9.0.2.2.0.533.909.3-1j0j1.2.0....0...1c.1.64.psy-ab..15.4.913...0i8i30k1j0i30k1.0.QvAbbJ0RR7w#imgrc=yVsFDM6h5L3nSM:
2018-03-12 19:46:32,https://www.google.com/search?biw=1680&bih=889&tbm=isch&sa=1&ei=fhCnWtaiE4G25gL2652oBg&q=persona+empathy+map&oq=persona+empathy+map&gs_l=psy-ab.3..0.25544.28198.0.28322.19.9.0.2.2.0.533.909.3-1j0j1.2.0....0...1c.1.64.psy-ab..15.4.913...0i8i30k1j0i30k1.0.QvAbbJ0RR7w#imgrc=_
2018-03-12 19:45:29,https://www.instagram.com/p/gJZYQ3gIYs/?taken-by=53964
2018-03-12 19:43:26,https://www.google.com/search?biw=1680&bih=889&tbm=isch&sa=1&ei=fhCnWtaiE4G25gL2652oBg&q=persona+empathy+map&oq=persona+empathy+map&gs_l=psy-ab.3..0.25544.28198.0.28322.19.9.0.2.2.0.533.909.3-1j0j1.2.0....0...1c.1.64.psy-ab..15.4.913...0i8i30k1j0i30k1.0.QvAbbJ0RR7w
2018-03-12 19:42:54,https://www.google.com/search?q=service+blueprint&source=lnms&tbm=isch&sa=X&ved=0ahUKEwja3p6a--fZAhXvwVkKHVDiAGYQ_AUICygC&biw=1680&bih=889
2018-03-12 19:42:52,https://www.google.com/search?q=service+blueprint&oq=service+blueprint&aqs=chrome.0.0j69i60l3j0l2.1822j0j4&sourceid=chrome&ie=UTF-8
2018-03-12 19:42:00,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_04.md
2018-03-12 19:41:58,https://github.com/joeyklee/quant-humanists-2018
2018-03-12 19:41:50,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md
2018-03-12 19:39:16,file:///Users/jxu2/Documents/Work/11%20ITP/Quant%20Humanists/UXblueprint.png
2018-03-12 19:32:05,https://drive.google.com/drive/folders/0BznQuHD5A_R9cEFxemhzdjhObzA
2018-03-12 18:37:46,https://www.google.com/search?q=screen+resolution&oq=screen+resolution&aqs=chrome..69i57j0l5.3368j1j7&sourceid=chrome&ie=UTF-8
2018-03-12 18:35:38,https://www.google.com/search?q=user+experience+journey&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi4mbeL7OfZAhUCyFkKHaUqBCgQ_AUICigB#imgrc=XRcD2kCCPz8gcM:
2018-03-12 18:35:28,https://www.google.com/search?q=user+experience+journey&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi4mbeL7OfZAhUCyFkKHaUqBCgQ_AUICigB#imgrc=v9Kh2drpB2HCgM:
2018-03-12 18:35:16,https://www.google.com/search?q=user+experience+journey&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi4mbeL7OfZAhUCyFkKHaUqBCgQ_AUICigB
2018-03-12 18:35:15,https://www.google.com/search?q=user+experience+journey&oq=user+experience+journey&aqs=chrome.0.0l6.10096j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 18:31:53,https://drive.google.com/drive/folders/0B78NJFjJ2aZ-eXc1UmNULVJSZ28
2018-03-12 18:31:51,https://drive.google.com/drive/folders/0BznQuHD5A_R9djM4aHF1d2FQdzQ
2018-03-12 18:31:47,https://drive.google.com/drive/folders/0BznQuHD5A_R9b3g2OTJ3T3JFTkU
2018-03-12 18:31:35,https://drive.google.com/drive/folders/0B78NJFjJ2aZ-eXc1UmNULVJSZ28?usp=gmail
2018-03-12 18:31:34,https://drive.google.com/open?id=0B78NJFjJ2aZ-eXc1UmNULVJSZ28&usp=gmail
2018-03-12 18:31:33,https://mail.google.com/mail/u/0/#search/%22service+design%22/155dff30368b9941
2018-03-12 18:31:03,https://mail.google.com/mail/u/0/#search/%22service+design%22
2018-03-12 18:30:51,https://mail.google.com/mail/u/0/#search/service+design/p8
2018-03-12 18:30:49,https://mail.google.com/mail/u/0/#search/service+design/p7
2018-03-12 18:30:45,https://mail.google.com/mail/u/0/#search/service+design/p6
2018-03-12 18:30:42,https://mail.google.com/mail/u/0/#search/service+design/p5
2018-03-12 18:30:40,https://mail.google.com/mail/u/0/#search/service+design/p4
2018-03-12 18:30:30,https://mail.google.com/mail/u/0/#search/service+design/p3
2018-03-12 18:30:25,https://mail.google.com/mail/u/0/#search/service+design/p2
2018-03-12 18:30:18,https://mail.google.com/mail/u/0/#search/service+design
2018-03-12 18:30:12,https://mail.google.com/mail/u/0/#search/syllabus
2018-03-12 18:29:36,https://drive.google.com/drive/u/0/shared-with-me
2018-03-12 18:29:08,https://drive.google.com/drive/u/0/search?q=service%20design
2018-03-12 18:28:41,https://drive.google.com/drive/u/0/folders/0BwfK2yBAjzo7Z3V0TmdBRDBBWGs
2018-03-12 18:28:40,https://drive.google.com/drive/u/0/folders/0B3jLIVUsNxiwa0M2WnlzbjRHZlk
2018-03-12 18:28:39,https://drive.google.com/drive/u/0/folders/0B3jLIVUsNxiwNjQtLVM5cGZPcjg
2018-03-12 18:28:20,https://drive.google.com/drive/u/0/folders/0B3jLIVUsNxiwcldGbllRTDVpWVk
2018-03-12 18:28:13,https://drive.google.com/drive/u/0/folders/0BwfK2yBAjzo7Z3V0TmdBRDBBWGs?usp=gmail&ts=578fea02
2018-03-12 18:28:12,https://drive.google.com/folderview?id=0BwfK2yBAjzo7Z3V0TmdBRDBBWGs&usp=gmail&ts=578fea02
2018-03-12 18:28:01,https://mail.google.com/mail/u/0/#search/CIID/15611bbc4cdffe00
2018-03-12 18:26:48,https://twitter.com/losttesla?lang=en
2018-03-12 18:26:37,https://keep.google.com/u/1/#home
2018-03-12 18:26:28,https://keep.google.com/u/1/#LIST/1511276827410.1804601553
2018-03-12 16:28:27,https://bl.ocks.org/xujenna/raw/4799f6a342f623a097ae9ba33df1690b/
2018-03-12 16:28:17,https://bl.ocks.org/xujenna/raw/4799f6a342f623a097ae9ba33df1690b
2018-03-12 16:28:03,http://bl.ocks.org/xujenna
2018-03-12 16:27:57,https://gist.github.com/xujenna/4799f6a342f623a097ae9ba33df1690b
2018-03-12 16:26:50,https://gist.github.com/xujenna/4799f6a342f623a097ae9ba33df1690b/edit
2018-03-12 16:25:02,http://bl.ocks.org/xujenna/
2018-03-12 16:25:02,https://bl.ocks.org/xujenna/
2018-03-12 16:23:25,http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js
2018-03-12 16:22:27,https://gist.github.com/
2018-03-12 16:20:06,https://mail.google.com/mail/u/1/#search/4pcb
2018-03-12 16:20:03,https://mail.google.com/mail/u/1/#search/4pcb/162022ebf0573f0e
2018-03-12 16:19:51,https://mail.google.com/mail/u/1/#search/4pcb/161b402779e82fda
2018-03-12 16:03:30,https://mail.google.com/mail/u/1/#search/4pcb/161d27dad094c8ea
2018-03-12 16:03:20,https://mail.google.com/mail/u/1/#search/4pcb/161d7d2a56220332
2018-03-12 16:03:05,https://mail.google.com/mail/u/1/#inbox/161d7d2a56220332
2018-03-12 15:51:40,https://wordcounter.net/
2018-03-12 15:51:14,https://www.google.com/search?q=word+counter&oq=word+counter&aqs=chrome..69i57j0l5.1015j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 15:35:13,http://www.newsblur.com/
2018-03-12 15:34:59,https://thenextweb.com/artificial-intelligence/2017/08/03/ai-is-a-powerful-tool-in-the-fight-against-anxiety-and-depression/
2018-03-12 15:34:10,http://www.xujenna.com/itp_blog/2018/02/26/846/#comments
2018-03-12 15:24:30,https://blog.hootsuite.com/instagram-demographics/
2018-03-12 15:24:24,https://www.google.com/search?q=how+many+of+instagram%27s+users+are+under+18&oq=how+many+of+instagram%27s+users+are+under+18&aqs=chrome..69i57j0j69i64.5250j1j7&sourceid=chrome&ie=UTF-8
2018-03-12 15:24:13,https://www.statista.com/statistics/398166/us-instagram-user-age-distribution/
2018-03-12 15:23:33,https://www.omnicoreagency.com/instagram-statistics/
2018-03-12 15:22:25,https://www.quora.com/How-many-of-Instagram-accounts-are-private
2018-03-12 15:22:19,https://www.google.com/search?q=private+vs+public+instagram+accounts+stats&oq=private+vs+public+instagram+accounts+stats&aqs=chrome..69i57.8055j1j7&sourceid=chrome&ie=UTF-8
2018-03-12 15:21:09,https://www.smartinsights.com/social-media-marketing/snapchat-instagram-stories/
2018-03-12 15:19:34,https://www.smartinsights.com/social-media-marketing/instagram-marketing/instagram-statistics/
2018-03-12 15:19:27,https://www.google.com/search?q=instagram+usage+statistics+2017&oq=instagram+usage+&aqs=chrome.2.69i57j0l5.5512j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 15:19:04,http://blog.instagram.com/post/160011713372/170426-700million
2018-03-12 15:18:40,https://techcrunch.com/2017/04/26/instagram-700-million-users/
2018-03-12 15:18:40,https://beta.techcrunch.com/2017/04/26/instagram-700-million-users/
2018-03-12 14:59:18,https://www.vox.com/the-big-idea/2018/2/25/16997572/causes-depression-pills-prozac-social-environmental-connections-hari
2018-03-12 14:46:31,https://www.google.com/search?q=timezone+nyc&oq=timezone+nyc&aqs=chrome..69i57j0l5.1567j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 14:24:02,file:///Users/jxu2/Documents/Work/11%20ITP/misc/ery-master/index.html
2018-03-12 14:04:39,https://github.com/galaxykate/ery
2018-03-12 14:01:24,file:///Users/jxu2/Documents/Work/11%20ITP/misc/bottery-master/index.html
2018-03-12 13:56:58,https://github.com/galaxykate
2018-03-12 13:56:51,https://github.com/galaxykate?tab=repositories
2018-03-12 13:54:13,https://github.com/google
2018-03-12 13:50:57,https://cheapbotsdonequick.com/
2018-03-12 13:50:57,https://twitter.com/hashfacade
2018-03-12 13:50:24,http://cheapbotsdonequick.com/
2018-03-12 13:50:04,https://github.com/google/bottery
2018-03-12 13:49:07,https://github.com/galaxykate/tracery
2018-03-12 13:47:07,http://tracery.io/
2018-03-12 13:47:05,https://twitter.com/
2018-03-12 13:46:59,https://twitter.com/signup
2018-03-12 13:46:34,http://www.brightspiral.com/
2018-03-12 13:44:38,https://www.google.com/search?q=tracery&oq=tracery&aqs=chrome..69i57j0l5.3230j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 13:33:05,https://www.google.com/search?q=bottery&oq=bottery&aqs=chrome..69i57j0l5.1136j1j7&sourceid=chrome&ie=UTF-8
2018-03-12 13:19:45,http://cheapbotsdonequick.com/source/losttesla
2018-03-12 13:19:45,https://cheapbotsdonequick.com/source/losttesla
2018-03-12 13:19:44,https://t.co/F0n76DCTzv
2018-03-12 13:16:55,https://www.google.com/search?q=lost+tesla+twitter&oq=lost+tesla+twitter&aqs=chrome.0.0j69i57.7406j1j4&sourceid=chrome&ie=UTF-8
2018-03-12 13:16:55,https://twitter.com/orbiting_a_star
2018-03-12 13:11:42,http://twitter.com/orbiting_a_star
2018-03-12 13:10:21,https://www.google.com/search?q=cheap+bots+done+quick&oq=cheap+bots+done+&aqs=chrome.0.0j69i57j0.1934j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 12:23:10,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j0j35i39j0l3.2375j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 12:08:37,http://www.xujenna.com/itp_blog/category/rest-of-you/
2018-03-12 12:04:30,https://github.com/xujenna/thesis_explorations/blob/master/past%20analyzers/ig_analyzer/index.html
2018-03-12 11:57:06,https://www.google.com/search?q=how+to+rotate+an+svg&oq=how+to+rotate+an+svg+&aqs=chrome..69i57j0l5.9519j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 11:56:01,https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Basic_Transformations
2018-03-12 11:53:18,https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform
2018-03-12 11:38:33,https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
2018-03-12 11:38:23,https://www.google.com/search?q=html+rule&oq=html+rule&aqs=chrome..69i57j0l5.1286j0j4&sourceid=chrome&ie=UTF-8
2018-03-12 11:38:12,https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_hr_test
2018-03-12 11:38:05,https://www.w3schools.com/tags/tag_hr.asp
2018-03-12 11:24:21,https://www.w3schools.com/css/css3_multiple_columns.asp
2018-03-12 11:24:16,https://www.google.com/search?q=how+to+create+columns+in+text+html&oq=how+to+create+columns+in+text+html&aqs=chrome..69i57j0l2j69i64.20600j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 11:14:07,https://clarifai.com/models/general-image-recognition-model-aaa03c23b3724a16a56b629203edc62c
2018-03-12 11:14:04,https://clarifai.com/models
2018-03-12 11:13:58,https://clarifai.com/models/color-image-recognition-model-eeed0b6733a644cea07cf4c60f87ebb7
2018-03-12 11:01:22,https://www.google.com/search?q=how+to+see+what+filter+was+used+on+instagram+beautiful+soup&oq=how+to+see+what+filter+was+used+on+instagram+beautiful+soup&aqs=chrome..69i57j69i64.20582j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 10:46:35,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.348945555723849&tn=5kxlikqxrma3&rld=1
2018-03-12 10:46:35,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.6842568723071312&tn=yf22q3hbljkf&rld=1
2018-03-12 10:35:14,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.7338311937756521&tn=oy2wpinkfihe&rld=1
2018-03-12 10:35:14,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.323740057054122&tn=rc1n3whenw0u&rld=1
2018-03-12 10:35:12,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520300065316&xpc=%7B%22cn%22%3A%224lcjow%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYbitiyLQa_pZMSsynkIXGPFvrhoUznNZya-IPB4oW0f6sdbYPD6Oh1MJyZngtwT0YZvVXJUEug94cshLPJY7WCFGPoBg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.0025936552739658225&tn=n2jx26fln38o&rld=1
2018-03-12 10:35:12,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520300065316&xpc=%7B%22cn%22%3A%224lcjow%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYbitiyLQa_pZMSsynkIXGPFvrhoUznNZya-IPB4oW0f6sdbYPD6Oh1MJyZngtwT0YZvVXJUEug94cshLPJY7WCFGPoBg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.03811365695166402&tn=j50fstmzca2q&rld=1
2018-03-12 03:14:27,https://scontent-lga3-1.cdninstagram.com/vp/2834da35079827b1455b0430a1a5c50a/5B2AB12A/t51.2885-15/e15/11296698_905908749476157_819136658_n.jpg
2018-03-12 03:13:38,https://www.instagram.com/p/aOFwzmAIS_/?taken-by=53964
2018-03-12 03:13:15,https://scontent-lga3-1.cdninstagram.com/vp/493819f3990c8667033f1d1684ed3efd/5B416156/t51.2885-15/e15/1737370_281904085295389_1913153407_n.jpg
2018-03-12 03:13:06,https://www.instagram.com/p/eMztmAgIX3/?taken-by=53964
2018-03-12 03:12:55,https://www.instagram.com/p/ghvTbogIdn/?taken-by=53964
2018-03-12 03:11:40,https://www.instagram.com/p/kdqwGDgITl/?taken-by=53964
2018-03-12 03:11:07,https://www.instagram.com/p/sYMyOoAIU4/?taken-by=53964
2018-03-12 02:26:14,http://developer.rhino3d.com/guides/rhinopython/python-xml-json/
2018-03-12 02:26:10,https://www.google.com/search?q=how+to+read+json+file+in+python&oq=how+to+read+json+&aqs=chrome.3.69i57j0l5.9223j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 01:49:25,https://www.instagram.com/p/-K-3ucgIdY/?taken-by=53964
2018-03-12 01:47:29,https://govlab.typeform.com/to/M542S1
2018-03-12 01:07:18,https://github.com/d3/d3-time-format
2018-03-12 01:07:13,https://www.google.com/search?q=d3.time.format&oq=d3.time&aqs=chrome.0.35i39j69i57j35i39j0l3.1254j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 00:44:40,https://www.google.com/search?q=rgb(254%2C+254%2C+254)+in+hex&oq=rgb(254%2C+254%2C+254)+in+hex&aqs=chrome..69i57.1412j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 00:42:00,https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators
2018-03-12 00:41:54,https://www.google.com/search?q=not+equals+javascip&oq=not+equals+javascip&aqs=chrome..69i57j0l5.3512j0j7&sourceid=chrome&ie=UTF-8
2018-03-12 00:19:42,https://p5js.org/reference/#/p5/map
2018-03-12 00:19:34,https://p5js.org/reference/
2018-03-12 00:19:34,https://p5js.org/reference
2018-03-12 00:19:28,http://p5js.org/
2018-03-12 00:19:28,https://p5js.org/
2018-03-11 23:47:03,https://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript
2018-03-11 23:46:58,https://www.google.com/search?q=flatten+list+javascript&oq=flatten+list+javascript&aqs=chrome.0.0l2.2969j1j7&sourceid=chrome&ie=UTF-8
2018-03-11 23:30:31,http://www.remkohde.com/2013/03/25/d3-binding-multi-dimensional-arrays-and-deep-nested-data/
2018-03-11 23:30:25,https://www.google.com/search?q=step+into+nested+data+d3+.data&oq=step+into+nested+data+d3+.data&aqs=chrome..69i57.15872j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 23:26:24,https://stackoverflow.com/questions/35260763/how-to-access-nested-data-values-in-d3
2018-03-11 23:26:18,https://stackoverflow.com/questions/34302958/d3-accessing-nested-data-in-grouped-bar-chart
2018-03-11 23:20:33,file:///Users/jxu2/Desktop/Screen%20Shot%202018-03-05%20at%201.11.30%20PM.png
2018-03-11 22:57:31,https://greenwichmeantime.com/what-is-gmt/
2018-03-11 22:57:17,https://greenwichmeantime.com/time-zone/gmt-5/
2018-03-11 22:57:11,https://www.google.com/search?q=GMT-0500&oq=GMT-0500&aqs=chrome..69i57j0l5.294j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 19:34:51,https://cooking.nytimes.com/recipes/5824-salmon-with-lemon-herb-marinade
2018-03-11 19:34:50,https://www.google.com/url?q=https://cooking.nytimes.com/recipes/5824-salmon-with-lemon-herb-marinade&sa=D&source=hangouts&ust=1520892413830000&usg=AFQjCNEKhyvbhtYrIj255flSnxFTbIjBuQ
2018-03-11 18:52:45,https://www.google.com/search?ei=L7OlWtnlFtLs5gKD9J7gAw&q=raw+hex&oq=raw+hex&gs_l=psy-ab.3..0i67k1j0i20i263k1j0j0i22i30k1l6j0i22i10i30k1.12500.12500.0.12758.1.1.0.0.0.0.77.77.1.1.0....0...1.1.64.psy-ab..0.1.76....0.A1IDNKd5iIg
2018-03-11 18:52:31,https://www.google.com/search?ei=JLOlWuDBC9GK5wKQoqboDg&q=raw+hex+vs+w3c+hex&oq=raw+hex+vs+w3c+hex&gs_l=psy-ab.3..33i160k1l2.3958.9219.0.9359.18.18.0.0.0.0.144.1354.13j3.16.0....0...1.1.64.psy-ab..2.12.1040...0j0i131k1j0i10k1j0i20i263k1j0i22i30k1j33i22i29i30k1.0.-5HeRaz7Phw
2018-03-11 18:52:20,https://www.google.com/search?ei=E7OlWouLMqfZ5gKNvL_YBQ&q=%23deb887&oq=%23deb887&gs_l=psy-ab.3...13944.13944.0.14327.1.1.0.0.0.0.0.0..0.0....0...1.2.64.psy-ab..1.0.0....0.S-Euw33TflY
2018-03-11 18:52:04,https://www.google.com/search?q=%23c6a26d&oq=%23c6a26d&aqs=chrome..69i57.263j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 18:23:28,https://www.google.com/search?biw=1674&bih=883&ei=-KulWqGQB-TR5gLqyZqIBA&q=how+to+filter+subset+of+json+d3&oq=how+to+filter+subset+of+json+d3&gs_l=psy-ab.3...8194.13399.0.13555.33.28.1.0.0.0.141.2652.17j11.28.0..2..0...1.1.64.psy-ab..4.28.2570...0j0i131k1j35i39k1j0i67k1j0i20i263k1j33i160k1j0i22i30k1j33i22i29i30k1.0.YSobFhge82M
2018-03-11 18:22:27,https://www.reddit.com/r/learnjavascript/comments/2gy6f0/how_to_return_a_json_file_as_a_subset_of_a_larger/
2018-03-11 18:22:03,http://www.d3noob.org/2013/01/selecting-filtering-subset-of-objects.html
2018-03-11 18:21:44,https://www.google.com/search?q=d3+filter+json+data&sa=X&ved=0ahUKEwiE7uGRpeXZAhWBylkKHdSyBAoQ1QIIswEoAA&biw=1674&bih=883
2018-03-11 18:21:37,https://www.codersclan.net/ticket/858
2018-03-11 18:14:25,http://learnjsdata.com/iterate_data.html
2018-03-11 18:14:05,http://grokbase.com/t/gg/d3-js/1637n467mw/filter-json-data-using-keys
2018-03-11 18:13:07,https://groups.google.com/d/topic/d3-js/CMhrCqUg35o
2018-03-11 18:13:07,https://groups.google.com/forum/#!topic/d3-js/CMhrCqUg35o
2018-03-11 18:12:30,https://www.google.com/search?ei=yqmlWqg-y4TnArb6s5gL&q=d3.filter+data&oq=d3.filter+data&gs_l=psy-ab.3...1501.2099.0.2182.5.4.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..5.0.0....0.ZO9QPvUb-Rc
2018-03-11 18:12:26,https://www.google.com/search?q=d3.filter&oq=d3.filter&aqs=chrome.0.35i39j0l5.1982j0j4&sourceid=chrome&ie=UTF-8
2018-03-11 18:12:12,http://d3indepth.com/selections/
2018-03-11 18:11:59,http://bl.ocks.org/d3noob/8dc93bce7e7200ab487d
2018-03-11 15:52:16,"https://www.google.com/maps/place/Modern+Anthology/@40.687642,-73.9915979,16.22z/data=!4m5!3m4!1s0x89c25a4e1037099d:0x9e1ec4b8ba495b83!8m2!3d40.6875653!4d-73.9896314"
2018-03-11 15:52:14,"https://www.google.com/maps/place/Modern+Anthology/@40.6875693,-73.9918201,17z/data=!3m1!4b1!4m5!3m4!1s0x89c25a4e1037099d:0x9e1ec4b8ba495b83!8m2!3d40.6875653!4d-73.9896314"
2018-03-11 15:52:14,"https://www.google.com/maps/place/Modern+Anthology/@40.686616,-74.0022282,14.36z/data=!4m5!3m4!1s0x89c25a4e1037099d:0x9e1ec4b8ba495b83!8m2!3d40.6875653!4d-73.9896314"
2018-03-11 15:52:13,"https://www.google.com/maps/place/Modern+Anthology,+Smith+Street,+Brooklyn,+NY/@40.686616,-74.0022282,14.36z/data=!4m5!3m4!1s0x89c25a4e1037099d:0x9e1ec4b8ba495b83!8m2!3d40.6875653!4d-73.9896314"
2018-03-11 15:52:06,"https://www.google.com/maps/search/bonobos/@40.686616,-74.0022282,14.36z"
2018-03-11 15:52:04,"https://www.google.com/maps/search/bonobos/@40.6917517,-74.0151442,13z/data=!3m1!4b1"
2018-03-11 15:52:03,"https://www.google.com/maps/search/bonobos/@40.691676,-73.9888796,15z"
2018-03-11 15:51:47,http://bl.ocks.org/phoebebright/raw/3176159/
2018-03-11 15:51:45,https://www.google.com/search?q=d3.nest&oq=d3.nest&aqs=chrome..69i57j69i58j0l3.806j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 15:13:56,https://www.w3schools.com/jsref/prop_node_textcontent.asp
2018-03-11 15:13:53,https://www.google.com/search?q=.textContent&oq=.textContent&aqs=chrome..69i57j0l5.1838j0j4&sourceid=chrome&ie=UTF-8
2018-03-11 15:10:38,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_node_textcontent
2018-03-11 15:10:27,https://www.google.com/search?q=how+to+select+string+inside+of+html+tags&oq=how+to+select+string+inside+of+html+tags&aqs=chrome..69i57j69i64.9067j1j7&sourceid=chrome&ie=UTF-8
2018-03-11 15:08:02,https://www.w3schools.com/js/tryit.asp?filename=tryjs_dom_form_elements
2018-03-11 15:07:36,https://www.w3schools.com/js/js_htmldom_elements.asp
2018-03-11 15:07:31,https://www.google.com/search?ei=Sn6lWq2sA4K45gL4-qvADA&q=this+javascript+html+element&oq=this+javascript+html+element&gs_l=psy-ab.3..0i22i30k1.4346.6984.0.7117.17.16.1.0.0.0.183.1593.10j5.15.0....0...1.1.64.psy-ab..1.16.1589...0j0i22i10i30k1j33i22i29i30k1.0.BF_38Q8-N5A
2018-03-11 15:07:23,https://www.google.com/search?q=this+javascript&oq=this+javascript&aqs=chrome.0.0l6.1591j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 15:06:56,https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this
2018-03-11 14:55:41,https://calendar.google.com/calendar/r/month/2018/4/1
2018-03-11 14:55:38,https://calendar.google.com/calendar/r/month
2018-03-11 14:55:38,https://calendar.google.com/calendar/r/month/2018/5/11
2018-03-11 13:09:18,http://bl.ocks.org/d3noob/7030f35b72de721622b8
2018-03-11 13:09:14,https://www.google.com/search?q=how+to+update+axis+data+d3&oq=how+to+update+axis+data+d3&aqs=chrome..69i57j69i64.8447j0j7&sourceid=chrome&ie=UTF-8
2018-03-11 13:08:41,https://bl.ocks.org/shimizu/914c769f05f1b2e1d09428c7eedd7f8a
2018-03-11 12:52:13,https://www.reddit.com/domain/scontent-iad3-1.cdninstagram.com/
2018-03-11 12:52:09,https://scontent-lga3-1.cdninstagram.com/vp/7dd294737b97d4fcd4ae024fbcf86a24/5AA51CFC/t51.2885-15/e15/11380977_857433017627543_1809886879_n.jpg
2018-03-11 07:44:52,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.709511688815837&tn=9bulq3paupxd&rld=1
2018-03-11 07:17:51,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520300065316&xpc=%7B%22cn%22%3A%224lcjow%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYbitiyLQa_pZMSsynkIXGPFvrhoUznNZya-IPB4oW0f6sdbYPD6Oh1MJyZngtwT0YZvVXJUEug94cshLPJY7WCFGPoBg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.7222138727715939&tn=dljbmf6mtt5u&rld=1
2018-03-11 07:17:42,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.8149538798525899&tn=9lmeov6oz9ru&rld=1
2018-03-11 01:03:57,http://bl.ocks.org/xujenna/raw/84a86dec213930ef8948448242977254/
2018-03-11 01:03:50,http://www.53964.org/
2018-03-10 23:07:19,https://web.archive.org/web/20140319163301/http://paris.leweb.co/participants/speakers/andy-puddicombe
2018-03-10 23:07:12,https://en.wikipedia.org/wiki/Andy_Puddicombe#cite_note-2
2018-03-10 23:06:16,https://en.wikipedia.org/wiki/Andy_Puddicombe
2018-03-10 23:06:11,https://www.google.com/search?q=headspace+guy&oq=headspace+guy&aqs=chrome..69i57j0l3.3273j0j7&sourceid=chrome&ie=UTF-8
2018-03-10 23:06:00,https://www.headspace.com/andy-puddicombe
2018-03-10 22:34:55,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_state_forin
2018-03-10 22:34:46,https://www.w3schools.com/jsref/jsref_forin.asp
2018-03-10 22:33:41,https://www.google.com/search?q=javascript+for+in+loops&oq=javascript+for+in+loops&aqs=chrome..69i57j0l5.4918j0j7&sourceid=chrome&ie=UTF-8
2018-03-10 22:33:27,https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...in
2018-03-10 22:33:03,https://www.w3schools.com/js/js_loop_for.asp
2018-03-10 22:19:53,https://www.instagram.com/p/BFCUFjKAIUc/?taken-by=53964
2018-03-10 22:01:21,https://stackoverflow.com/questions/2310605/how-to-remove-leading-whitespace-from-each-line-in-a-file
2018-03-10 22:01:18,https://www.google.com/search?q=remove+two+spaces+from+every+line+sed&oq=remove+two+spaces+from+every+line+sed&aqs=chrome..69i57.4815j0j4&sourceid=chrome&ie=UTF-8
2018-03-10 21:58:40,https://unix.stackexchange.com/questions/200616/add-space-5-times-at-the-beginning-of-each-line-in-a-text-file
2018-03-10 21:58:34,https://www.google.com/search?ei=UZukWqj3B-GP5wKxhJIw&q=add+space+to+all+lines&oq=add+space+to+all+lines&gs_l=psy-ab.3..0i7i30k1.6642.7112.0.7349.4.4.0.0.0.0.72.269.4.4.0....0...1.1.64.psy-ab..0.4.268....0.2KBQ5WeJEr8
2018-03-10 21:58:25,https://www.google.com/search?q=vim+add+space+to+all+lines&oq=add+a+space+to+every+line&aqs=chrome.1.69i57j0.4967j0j4&sourceid=chrome&ie=UTF-8
2018-03-10 21:51:04,http://jsonlint.com/
2018-03-10 21:51:04,https://jsonlint.com/
2018-03-10 21:50:59,https://stackoverflow.com/questions/33707259/simple-json-parse-error-not-sure-what-went-wrong
2018-03-10 21:50:49,https://www.google.com/search?q=debugging+json+parse+error&oq=debugging+json&aqs=chrome.1.69i57j0l5.2991j0j4&sourceid=chrome&ie=UTF-8
2018-03-10 21:43:17,https://bl.ocks.org/mbostock
2018-03-10 21:43:12,https://www.google.com/search?q=%22Unexpected+token+%5D+in+JSON+at+position%22&oq=%22Unexpected+token+%5D+in+JSON+at+position%22&aqs=chrome..69i57j0l5.2183j0j4&sourceid=chrome&ie=UTF-8
2018-03-10 21:43:02,https://www.google.com/search?ei=RJekWrXOH6Ke_QbO37jwAQ&q=unexpected+token+in+json+at+position+192&oq=Unexpected+token+in+JSON+at+position&gs_l=psy-ab.3.4.0i67k1l3j0l7.16148.18203.0.20704.4.4.0.0.0.0.69.254.4.4.0....0...1.1.64.psy-ab..0.4.252....0.Zl8RiKDgpiE
2018-03-10 21:42:40,https://www.kevinleary.net/syntax-error-unexpected-token-json-position-0/
2018-03-10 21:42:18,https://www.google.com/search?q=d3.json+%22Unexpected+token+%5D+in+JSON+at+position%22&oq=d3.json+%22Unexpected+token+%5D+in+JSON+at+position%22&aqs=chrome..69i57j69i60l3j69i65j69i61.1983j0j9&sourceid=chrome&ie=UTF-8
2018-03-10 21:42:15,https://stackoverflow.com/questions/43243270/d3-json-unexpected-token
2018-03-10 21:35:20,https://www.google.com/search?ei=ypWkWpH1EMqZ_Qbe47PACQ&q=syntax+error+message+JSON+position+larger+than+file&oq=syntax+error+message+JSON+position+larger+than+file&gs_l=psy-ab.3...14305.15400.0.17764.7.7.0.0.0.0.88.519.7.7.0....0...1.1.64.psy-ab..0.1.88...35i39k1.0.gsKrCqb9E-A
2018-03-10 21:35:01,https://www.google.com/search?q=error+message+JSON+position+larger+than+file&oq=error+message+JSON+position+larger+than+file&aqs=chrome..69i57.20266j0j7&sourceid=chrome&ie=UTF-8
2018-03-10 21:34:56,https://stackoverflow.com/questions/37651143/json-parsing-error-in-row-starting-at-position-0-row-size-is-larger-than-209
2018-03-10 20:59:24,https://arxiv.org/pdf/1608.03282
2018-03-10 20:59:19,http://arxiv.org/abs/1608.03282
2018-03-10 20:59:19,https://arxiv.org/abs/1608.03282
2018-03-10 20:59:13,https://www.technologyreview.com/s/602208/how-an-algorithm-learned-to-identify-depressed-individuals-by-studying-their-instagram/
2018-03-10 20:58:44,https://padlet.com/xujenna/8hwmu7eb2w61
2018-03-10 20:55:29,https://clarifai.com/developer/guide/models#models
2018-03-10 20:50:36,https://bl.ocks.org/mbostock/7280327
2018-03-10 20:48:15,https://bl.ocks.org/mbostock/8d2112a115ad95f4a6848001389182fb
2018-03-10 20:47:11,https://bl.ocks.org/mbostock/2d466ec3417722e3568cd83fc35338e3
2018-03-10 20:46:53,https://bl.ocks.org/mbostock/raw/f48ff9c1af4d637c9a518727f5fdfef5
2018-03-10 20:46:53,https://bl.ocks.org/mbostock/raw/f48ff9c1af4d637c9a518727f5fdfef5/
2018-03-10 20:46:47,https://bl.ocks.org/mbostock/f48ff9c1af4d637c9a518727f5fdfef5
2018-03-10 20:46:25,https://bl.ocks.org/mbostock/7ea1dde508cec6d2d95306f92642bc42
2018-03-10 20:45:58,https://bl.ocks.org/mbostock/87746f16b83cb9d5371394a001cbd772
2018-03-10 20:45:52,https://bl.ocks.org/mbostock/18a805e2d72da2020076665b6d4c9092
2018-03-10 20:45:44,https://bl.ocks.org/mbostock/0af7bae9fec12b1008e2a7c104bc8cd2
2018-03-10 20:45:01,http://www.nytimes.com/interactive/2012/08/11/sunday-review/drought-history.html
2018-03-10 20:44:45,https://bost.ocks.org/mike/
2018-03-10 20:43:59,http://www.nytimes.com/2012/09/19/us/historian-says-piece-of-papyrus-refers-to-jesus-wife.html
2018-03-10 20:42:53,http://www.nytimes.com/newsgraphics/2014/02/14/fashion-week-editors-picks/
2018-03-10 20:42:53,http://www.nytimes.com/newsgraphics/2014/02/14/fashion-week-editors-picks/index.html
2018-03-10 20:35:53,https://bost.ocks.org/mike/algorithms/
2018-03-10 20:35:26,https://medium.com/@mbostock/a-better-way-to-code-2b1d2876a3a0
2018-03-10 20:35:11,https://bl.ocks.org/-/about
2018-03-10 20:35:10,https://bl.ocks.org/
2018-03-10 20:34:14,https://bl.ocks.org/mbostock/raw/3057239
2018-03-10 20:34:14,https://bl.ocks.org/mbostock/raw/3057239/
2018-03-10 20:34:01,https://bl.ocks.org/mbostock/3057239
2018-03-10 20:33:57,https://bl.ocks.org/mbostock/4063318
2018-03-10 20:33:22,https://bl.ocks.org/mbostock/raw/4063318
2018-03-10 20:33:22,https://bl.ocks.org/mbostock/raw/4063318/
2018-03-10 20:32:44,https://bl.ocks.org/mbostock/c11d97ee1415d3ac4176
2018-03-10 20:32:08,https://bl.ocks.org/rpgove/0060ff3b656618e9136b
2018-03-10 20:31:44,https://bl.ocks.org/mbostock/raw/4248145
2018-03-10 20:31:44,https://bl.ocks.org/mbostock/raw/4248145/
2018-03-10 20:31:15,https://bl.ocks.org/mbostock/4248145
2018-03-10 20:29:58,https://bl.ocks.org/mbostock/5944371
2018-03-10 20:29:37,https://bl.ocks.org/mbostock/3943967
2018-03-10 20:29:37,http://bl.ocks.org/mbostock/3943967
2018-03-10 20:29:05,https://bl.ocks.org/tjdecke/5558084
2018-03-10 20:29:05,http://bl.ocks.org/tjdecke/5558084
2018-03-10 20:28:54,https://www.google.com/search?biw=1546&bih=883&ei=1IWkWoTSEu3O5gLm44iIBA&q=matplotlib+example&oq=matplotlib+example&gs_l=psy-ab.3..0i67k1j0i7i30k1l9.9851.9851.0.10029.1.1.0.0.0.0.78.78.1.1.0....0...1.1.64.psy-ab..0.1.78....0.mkYX_D6ZlS0
2018-03-10 20:28:51,https://matplotlib.org/examples/index.html
2018-03-10 20:27:11,https://matplotlib.org/gallery.html
2018-03-10 20:26:44,https://www.google.com/search?biw=1546&bih=883&ei=xYWkWuDzJO7L5gLbhrf4DQ&q=streamplot+matplotlib+example&oq=streamgraph+matplotlib+ex&gs_l=psy-ab.3.0.0i22i30k1.7035.10801.0.13379.13.11.2.0.0.0.164.1006.8j3.11.0....0...1.1.64.psy-ab..0.13.1008...0j0i10i30k1j0i30k1j0i22i10i30k1j33i160k1.0.uaqA18soPgc
2018-03-10 20:26:29,https://www.google.com/search?q=streamgraph&source=lnms&sa=X&ved=0ahUKEwjEsqbSjePZAhVCT98KHY0nC0AQ_AUICSgA&biw=1546&bih=883&dpr=2
2018-03-10 20:25:09,http://www.nytimes.com/interactive/2008/02/23/movies/20080223_REVENUE_GRAPHIC.html
2018-03-10 20:23:58,http://www.visualisingdata.com/2010/08/making-sense-of-streamgraphs/
2018-03-10 20:23:48,https://www.google.com/search?q=streamgraph&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjPuIDRjePZAhUjU98KHau-D0sQ_AUICigB&biw=1546&bih=883#imgrc=ddRNFNLjKO7DzM:
2018-03-10 20:22:35,https://www.neoformix.com/2008/TwitterStreamGraphs.html
2018-03-10 20:22:30,http://www.neoformix.com/Projects/TwitterStreamGraphs/view.php
2018-03-10 20:22:15,https://www.google.com/search?q=streamgraph&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjPuIDRjePZAhUjU98KHau-D0sQ_AUICigB&biw=1546&bih=883#imgrc=cIVCNLqv1tlfxM:
2018-03-10 20:22:07,https://www.google.com/search?q=streamgraph&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjPuIDRjePZAhUjU98KHau-D0sQ_AUICigB&biw=1546&bih=883#imgrc=Ujs5vleyFHwpSM:
2018-03-10 20:22:03,https://www.google.com/search?q=streamgraph&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjPuIDRjePZAhUjU98KHau-D0sQ_AUICigB&biw=1546&bih=883
2018-03-10 20:22:00,https://www.google.com/search?q=streamgraph&oq=streamgrap&aqs=chrome.0.0j69i57j69i61l3j0.5310j0j4&sourceid=chrome&ie=UTF-8
2018-03-10 20:21:08,https://bl.ocks.org/mbostock/raw/4060954
2018-03-10 20:21:08,https://bl.ocks.org/mbostock/raw/4060954/
2018-03-10 20:20:50,https://bl.ocks.org/mbostock/4060954
2018-03-10 20:20:03,https://bl.ocks.org/mbostock/4063570
2018-03-10 20:18:44,https://bl.ocks.org/mbostock/4062045
2018-03-10 16:07:13,http://localhost:7777/index2.html
2018-03-10 16:02:15,https://technologyreview.us11.list-manage.com/track/click?u=47c1a9cec9749a8f8cbc83e78&id=e0117e2ca3&e=33e6f81515
2018-03-10 16:02:15,https://www.technologyreview.com/newsletters/preferences/?email=xujenna%40gmail.com&utm_source=MIT+Technology+Review&utm_campaign=f6a3538f31-EMAIL_CAMPAIGN_2018_03_08&utm_medium=email&utm_term=0_997ed6f472-f6a3538f31-154840581
2018-03-10 16:02:10,https://mail.google.com/mail/u/0/#inbox/1620785fe0214406
2018-03-10 16:02:03,https://mail.google.com/mail/u/0/#inbox/1620aef6d7958090
2018-03-10 15:19:56,https://stackoverflow.com/questions/927358/how-to-undo-the-most-recent-commits-in-git
2018-03-10 15:19:51,https://www.google.com/search?q=revert+git+commit&oq=revert+git+&aqs=chrome.0.0j69i57j0l4.2207j0j7&sourceid=chrome&ie=UTF-8
2018-03-10 15:05:50,https://scontent-lga3-1.cdninstagram.com/vp/e0e890942ddf059ef20c4d633eac7bcb/5B3CA409/t51.2885-15/e15/11240751_670127009765942_909684918_n.jpg
2018-03-10 14:41:51,https://scontent-lga3-1.cdninstagram.com/vp/dfb6052f4b3f096922f091d0fe4dfb5e/5B4DF952/t51.2885-15/e15/11259962_815444781879801_1679770810_n.jpg
2018-03-10 14:27:42,https://www.google.com/search?q=mister+nester&oq=mister+nester&aqs=chrome..69i57j69i65.911j0j7&sourceid=chrome&ie=UTF-8
2018-03-10 13:58:43,https://mail.google.com/mail/u/1/#inbox/1620e68066b4f73e
2018-03-10 00:43:57,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.29415415537752376&tn=rcla24nzaht7&rld=1
2018-03-10 00:03:11,https://scontent-lga3-1.cdninstagram.com/vp/5c259527628aa79d88aed6ea37370609/5B3FDA84/t51.2885-15/e35/13118182_940759399378809_1509394751_n.jpg
2018-03-09 23:58:35,https://mail.google.com/mail/u/1/#inbox/1620d7477bb362e8
2018-03-09 23:58:27,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520300065316&xpc=%7B%22cn%22%3A%224lcjow%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYbitiyLQa_pZMSsynkIXGPFvrhoUznNZya-IPB4oW0f6sdbYPD6Oh1MJyZngtwT0YZvVXJUEug94cshLPJY7WCFGPoBg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.5178636228235414&tn=g7utrp8dmnhv&rld=1
2018-03-09 23:58:22,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9493778344725685&tn=uslntspq8xxk&rld=1
2018-03-09 19:12:08,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7223135,-74.00688,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:11:56,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j69i60j69i61j69i60l3.591j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 19:11:51,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7244275,-74.0121157,15z/data=!3m1!4b1!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:11:51,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:11:49,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3"
2018-03-09 19:11:48,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!4m11!4m10!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3!5i3"
2018-03-09 19:11:46,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!4m11!4m10!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3!5i2"
2018-03-09 19:11:43,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!4m11!4m10!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3!5i1"
2018-03-09 19:11:35,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/am=t/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3"
2018-03-09 19:11:08,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7265263,-74.0066461,15z/data=!3m1!4b1!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3"
2018-03-09 19:11:08,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7244275,-74.0121157,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e3"
2018-03-09 19:10:56,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.7244275,-74.0121157,15z/data=!3m1!4b1!4m17!1m6!3m5!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2sThe+Original+Buddha+Bodai+Kosher+Vegetarian!8m2!3d40.7138721!4d-73.9988482!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:10:56,"https://www.google.com/maps/dir/40.7349403,-74.0074097/The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.715137,-74.0012629,17z/data=!4m17!1m6!3m5!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2sThe+Original+Buddha+Bodai+Kosher+Vegetarian!8m2!3d40.7138721!4d-73.9988482!4m9!1m1!4e1!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:10:55,"https://www.google.com/maps/dir//The+Original+Buddha+Bodai+Kosher+Vegetarian,+5+Mott+St,+New+York,+NY+10013/@40.715137,-74.0012629,17z/data=!4m17!1m6!3m5!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2sThe+Original+Buddha+Bodai+Kosher+Vegetarian!8m2!3d40.7138721!4d-73.9988482!4m9!1m1!4e2!1m5!1m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!2m2!1d-73.9988482!2d40.7138721!3e2"
2018-03-09 19:10:52,"https://www.google.com/maps/place/The+Original+Buddha+Bodai+Kosher+Vegetarian/@40.715137,-74.0012629,17z/data=!4m8!1m2!2m1!1sbuddha+bodai!3m4!1s0x89c25a26942e76c3:0x279e9cecc8191e1a!8m2!3d40.7138721!4d-73.9988482"
2018-03-09 19:10:52,"https://www.google.com/maps/place/The+Original+Buddha+Bodai+Kosher+Vegetarian/@40.715137,-74.0012629,17z/data=!4m5!1m2!2m1!1sbuddha+bodai!3m1!1s0x89c25a26942e76c3:0x279e9cecc8191e1a"
2018-03-09 19:10:50,"https://www.google.com/maps/search/buddha+bodai/@40.715137,-74.0012629,17z/data=!3m1!4b1"
2018-03-09 19:10:49,"https://www.google.com/maps/search/buddha+bodai/@40.7406313,-74.0265041,16z"
2018-03-09 19:10:42,"https://www.google.com/maps/@40.7406313,-74.0265041,16z"
2018-03-09 18:55:57,http://localhost:8888/_viz/mindwandering/index.html
2018-03-09 18:50:30,https://www.rescuetime.com/browse/productivity/by/rank
2018-03-09 18:50:19,https://www.rescuetime.com/dashboard
2018-03-09 18:24:11,https://stackoverflow.com/questions/22806792/append-columns-of-a-csv-file-to-lists
2018-03-09 18:19:05,https://www.google.com/search?q=delimiter%3D%22%5Ct%22+python&oq=delimiter%3D%22%5Ct%22+python&aqs=chrome..69i57j0l3.1016j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 18:17:24,https://stackoverflow.com/q/22806792
2018-03-09 18:17:18,https://www.google.com/search?q=how+to+append+csv+column+to+list+in+python&oq=how+to+append+csv+column+to+list+in+python&aqs=chrome..69i57j69i64.27324j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 18:06:14,https://clarifai.com/developer/account/applications/edit/e7058e57d22c4126aa495d325de107f7
2018-03-09 18:06:11,https://clarifai.com/developer/account/applications
2018-03-09 18:05:59,https://clarifai.com/developer/account/applications/create
2018-03-09 18:04:48,https://clarifai.com/models/general-embedding-image-recognition-model-bbb5f41425b8468d9b7a554ff10f8581
2018-03-09 18:01:52,https://clarifai.com/models/nsfw-image-recognition-model-e9576d86d2004ed1a38ba0cf39ecb4b1
2018-03-09 18:01:33,https://clarifai.com/models/moderation-image-recognition-model-d16f390eb32cad478c7ae150069bd2c6
2018-03-09 17:59:47,https://www.rescuetime.com/browse/activity/by/rank
2018-03-09 17:59:37,https://www.rescuetime.com/browse/productivity/4/by/hour/for/the/day/of/2018-03-09
2018-03-09 17:59:33,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-9
2018-03-09 17:54:54,https://clarifai.com/developer/account/applications/edit/eaba55e8ab7b4fdb89093216d0930480
2018-03-09 17:54:50,https://clarifai.com/developer/guide/workflow#workflow
2018-03-09 17:54:44,https://clarifai.com/developer/guide/authentication#authentication
2018-03-09 17:54:32,https://mail.google.com/mail/u/1/#inbox/1620cbf8095687eb
2018-03-09 17:48:38,https://clarifai.com/developer/account/login
2018-03-09 17:48:16,https://clarifai.com/
2018-03-09 17:48:05,https://blog.clarifai.com/
2018-03-09 17:40:56,https://www.google.com/search?q=do+flickering+lights+cause+mbp+screen+to+flicker&oq=do+flickering+lights+cause+mbp+screen+to+flicker&aqs=chrome..69i57.13488j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 17:33:56,https://developer.clarifai.com/guide/workflow#workflow
2018-03-09 17:31:25,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#thats-why-humans-are-still-needed-20-robots-on-a-magnetic-track-cant-run-a-whole-restaurant-but-they-can-be-entertaining-diversions-15
2018-03-09 17:31:24,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#this-restaurant-in-harbin-china-employs-20-robots-most-robots-in-chinese-restaurants-are-limited-to-simple-mobile-interactions-and-cant-respond-to-requests-or-hold-heavy-dishes-14
2018-03-09 17:31:13,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#four-of-the-robots-act-as-waiters-one-is-part-of-the-welcome-staff-and-the-other-ten-are-on-reserve-for-entertainment-13
2018-03-09 17:31:10,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#this-robot-themed-restaurant-in-suzhou-china-has-15-robots-on-staff-12
2018-03-09 17:30:53,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#such-tracks-can-support-more-than-just-robots--this-bot-in-yinan-brings-in-dishes-on-the-back-of-a-bike-11
2018-03-09 17:30:51,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#both-run-on-magnetic-tracks-to-deliver-meals-10
2018-03-09 17:30:38,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#and-the-male-robot-is-named-little-blue-9
2018-03-09 17:30:38,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#the-female-server-is-named-little-peach-8
2018-03-09 17:30:33,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#these-robot-waiters-in-yiwu-china-are-designated-as-female-and-male-7
2018-03-09 17:30:28,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#real-chefs-oversee-the-robot-cooks-to-make-sure-they-dont-malfunction-on-the-job-6
2018-03-09 17:30:24,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#robot-sliced-noodles-are-tastier-too-one-robot-restaurant-manager-told-the-wall-street-journal-the-texture-is-softer-more-even-5
2018-03-09 17:30:23,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#robots-can-even-take-up-cooking-jobs-like-slicing-noodles-or-doing-simple-prep-tasks-4
2018-03-09 17:30:08,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#a-wall-e-themed-dining-hall-in-hefei-china-uses-30-of-these-robots-which-can-accommodate-200-customers-3
2018-03-09 17:30:07,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#they-cost-around-11310-each-when-they-were-bought-in-2014-2
2018-03-09 17:30:04,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T/#these-ten-robot-waiters-serve-customers-in-chengdu-china-carrying-dishes-around-and-giving-simple-greetings-to-customers-1
2018-03-09 17:29:42,http://uk.businessinsider.com/chinese-restaurant-robot-waiters-2016-7?r=US&IR=T
2018-03-09 17:27:18,https://www.technologyreview.com/the-download/610447/a-new-ai-system-can-explain-itself-twice/
2018-03-09 16:10:12,https://github.com/Emotiv/cortex-example/tree/master/nodejs
2018-03-09 16:09:16,https://github.com/Emotiv/cortex-example
2018-03-09 16:08:31,https://github.com/Emotiv/cortex-example/tree/master/nodejs/lib
2018-03-09 16:08:22,https://github.com/Emotiv/cortex-example/blob/master/nodejs/lib/cortex.js
2018-03-09 16:07:05,https://emotiv.github.io/cortex-docs/#introduction
2018-03-09 16:07:01,https://emotiv.github.io/cortex-docs/#getuserlogin
2018-03-09 16:06:57,https://emotiv.github.io/cortex-docs/#logout
2018-03-09 16:06:50,https://emotiv.github.io/cortex-docs/#login
2018-03-09 16:06:50,https://emotiv.github.io/cortex-docs/#methods
2018-03-09 16:06:48,https://emotiv.github.io/cortex-docs/#markers
2018-03-09 16:06:35,https://emotiv.github.io/cortex-docs/#workflow
2018-03-09 16:06:31,https://emotiv.github.io/cortex-docs/#how-to-authorize-with-an-emotiv-id
2018-03-09 16:05:55,https://emotiv.github.io/cortex-docs/#updatesession
2018-03-09 16:03:45,https://padlet.com/xujenna
2018-03-09 16:02:46,https://emotiv.github.io/cortex-docs/#createsession
2018-03-09 16:02:45,https://emotiv.github.io/cortex-docs/#controlbluetoothheadset
2018-03-09 16:02:24,https://emotiv.github.io/cortex-docs/#queryheadsets
2018-03-09 16:02:23,https://emotiv.github.io/cortex-docs/#generateNewToken
2018-03-09 16:01:46,https://emotiv.github.io/cortex-docs/#authorize
2018-03-09 16:01:11,https://emotiv.github.io/cortex-docs/#subscriptions
2018-03-09 16:01:03,https://emotiv.github.io/cortex-docs/#sessions
2018-03-09 16:01:01,https://emotiv.github.io/cortex-docs/#authorization
2018-03-09 16:00:51,https://emotiv.github.io/cortex-docs/#protocol
2018-03-09 16:00:44,https://emotiv.github.io/cortex-docs/#concepts
2018-03-09 16:00:43,https://emotiv.github.io/cortex-docs/#installing-cortex
2018-03-09 16:00:42,https://emotiv.github.io/cortex-docs/#welcome
2018-03-09 16:00:16,https://emotiv.github.io/cortex-docs/#subscribe
2018-03-09 16:00:15,https://emotiv.github.io/cortex-docs/#updatenote
2018-03-09 16:00:14,https://emotiv.github.io/cortex-docs/#querysessions
2018-03-09 15:59:54,https://www.google.com/url?hl=en&q=https://emotiv.github.io/cortex-docs/%23concepts&source=gmail&ust=1520715591813000&usg=AFQjCNEu9GH-MsGcJ61RVnViXyu5y9mbXg
2018-03-09 15:59:52,https://mail.google.com/mail/u/1/#inbox/1620c900f2adef86
2018-03-09 15:50:18,https://mail.google.com/mail/u/1/#inbox/162025cf750f56a7
2018-03-09 15:35:31,https://www.emotiv.com/my-account/downloads/
2018-03-09 15:35:26,https://www.emotiv.com/my-account/
2018-03-09 14:53:59,http://www.galaxykate.com/
2018-03-09 14:53:55,https://www.google.com/search?q=galaxykate&oq=galaxykate&aqs=chrome..69i57j0.3023j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 14:52:26,https://mobile.twitter.com/everyonesai?lang=en
2018-03-09 14:52:13,https://mobile.twitter.com/everyonesai/status/972184019017306118/photo/1
2018-03-09 14:51:48,https://mobile.twitter.com/jonnysun
2018-03-09 14:51:25,https://www.google.com/url?q=https://mobile.twitter.com/everyonesai?lang%3Den&sa=D&source=hangouts&ust=1520710717004000&usg=AFQjCNEtAI4uIvwjfkrS5QG-otDP5svC9A
2018-03-09 14:46:26,https://blog.clarifai.com/use-multiple-visual-recognition-models-at-the-same-time-with-a-single-api-call-2/
2018-03-09 14:44:08,https://padlet.com/xujenna/8ayyhenrl35c
2018-03-09 14:40:12,https://calendar.google.com/calendar/r/week/2018/5/11
2018-03-09 14:40:07,https://calendar.google.com/calendar/r/week/2018/5/4
2018-03-09 14:40:06,https://calendar.google.com/calendar/r/week/2018/4/27
2018-03-09 14:40:06,https://calendar.google.com/calendar/r/week/2018/4/20
2018-03-09 14:40:06,https://calendar.google.com/calendar/r/week/2018/4/6
2018-03-09 14:40:05,https://calendar.google.com/calendar/r/week/2018/4/13
2018-03-09 14:40:01,https://calendar.google.com/calendar/r/week/2018/3/30
2018-03-09 14:39:59,https://calendar.google.com/calendar/r/week/2018/3/16
2018-03-09 14:36:12,"https://www.google.com/maps/dir/40.7298423,-73.9934368/30+E+20th+St+%235f,+New+York,+NY+10003/@40.7343909,-73.9949603,16z/data=!3m1!4b1!4m18!1m7!3m6!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2s30+E+20th+St+%235f,+New+York,+NY+10003!3b1!8m2!3d40.7385918!4d-73.9888939!4m9!1m1!4e1!1m5!1m1!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2m2!1d-73.9889027!2d40.7385845!3e2"
2018-03-09 14:36:12,"https://www.google.com/maps/dir/40.7298423,-73.9934368/30+E+20th+St+%235f,+New+York,+NY+10003/@40.7386371,-73.9912408,17z/data=!4m18!1m7!3m6!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2s30+E+20th+St+%235f,+New+York,+NY+10003!3b1!8m2!3d40.7385918!4d-73.9888939!4m9!1m1!4e1!1m5!1m1!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2m2!1d-73.9889027!2d40.7385845!3e2"
2018-03-09 14:36:10,"https://www.google.com/maps/dir//30+E+20th+St+%235f,+New+York,+NY+10003/@40.7386371,-73.9912408,17z/data=!4m18!1m7!3m6!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2s30+E+20th+St+%235f,+New+York,+NY+10003!3b1!8m2!3d40.7385918!4d-73.9888939!4m9!1m1!4e2!1m5!1m1!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!2m2!1d-73.9889027!2d40.7385845!3e2"
2018-03-09 14:36:09,"https://www.google.com/maps/place/30+E+20th+St+%235f,+New+York,+NY+10003/@40.7386371,-73.9912408,17z/data=!4m5!3m4!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!8m2!3d40.7385918!4d-73.9888939"
2018-03-09 14:36:09,"https://www.google.com/maps/place/30+E+20th+St+%235f,+New+York,+NY+10003,+USA/@40.7386371,-73.9912408,17z/data=!4m5!3m4!1s0x89c259a22aa3b7d9:0x285f732ca98b1952!8m2!3d40.7385918!4d-73.9888939"
2018-03-09 14:36:08,"https://www.google.com/maps/@40.7386371,-73.9912408,17z"
2018-03-09 14:36:06,"https://www.google.com/maps/place/Theodore+Roosevelt+Birthplace+National+Historic+Site/@40.7386371,-73.9912408,17z/data=!3m1!4b1!4m5!3m4!1s0x89c259a22ac33cc3:0xade263cf44145e27!8m2!3d40.7386331!4d-73.9890521"
2018-03-09 14:36:05,"https://www.google.com/maps/place/Theodore+Roosevelt+Birthplace+National+Historic+Site/@40.7449954,-73.9875688,19.47z/data=!4m5!3m4!1s0x89c259a22ac33cc3:0xade263cf44145e27!8m2!3d40.7386331!4d-73.9890521"
2018-03-09 14:36:04,"https://www.google.com/maps/search/birthplace+of+theodore+roosevelt/@40.7449954,-73.9875688,19.47z"
2018-03-09 14:35:59,"https://www.google.com/maps/@40.7449954,-73.9875688,19.47z"
2018-03-09 14:35:57,"https://www.google.com/maps/@40.7451395,-73.9875065,21z"
2018-03-09 14:35:52,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7451395,-73.9875065,21z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:51,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7453285,-73.9873751,21z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:50,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7452952,-73.9873528,20.41z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:49,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7451929,-73.9872189,20.41z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:48,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7450265,-73.9869435,19.23z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:48,"https://www.google.com/maps/place/260+5th+Ave/@40.7450265,-73.9869435,19.23z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451797!4d-73.9873646"
2018-03-09 14:35:46,"https://www.google.com/maps/@40.7450265,-73.9869435,19.23z"
2018-03-09 14:35:45,"https://www.google.com/maps/@40.7446317,-73.9867412,18.15z"
2018-03-09 14:35:43,"https://www.google.com/maps/@40.7438961,-73.9863643,17.16z"
2018-03-09 14:35:42,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7438961,-73.9863643,17.16z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451802!4d-73.9873651"
2018-03-09 14:35:41,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7432489,-73.9863643,16.45z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451802!4d-73.9873651"
2018-03-09 14:35:40,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7417619,-73.9856578,16.45z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451802!4d-73.9873651"
2018-03-09 14:35:35,"https://www.google.com/maps/place/260+5th+Ave,+New+York,+NY+10001/@40.7362666,-73.9869913,15z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451802!4d-73.9873651"
2018-03-09 14:35:35,"https://www.google.com/maps/place/260+5th+Ave/@40.7362666,-73.9869913,15z/data=!4m5!3m4!1s0x89c259a622a99c7d:0xe9c6d2a390918bec!8m2!3d40.7451802!4d-73.9873651"
2018-03-09 14:35:33,"https://www.google.com/maps/place/96+5th+Ave,+New+York,+NY+10011/@40.7362666,-73.9869913,15z/data=!4m5!3m4!1s0x89c259980bb76b03:0x51eeb3fc4908cd2f!8m2!3d40.7367099!4d-73.9935181"
2018-03-09 14:35:33,"https://www.google.com/maps/place/96+5th+Avenue+Couples+therapy+Mar+13+10:00am/@40.7362666,-73.9869913,15z/data=!4m5!3m4!1s0x89c259980bb76b03:0x51eeb3fc4908cd2f!8m2!3d40.7367099!4d-73.9935181"
2018-03-09 14:34:42,https://calendar.google.com/calendar/selfsched?sstoken=UUM3NDluV0VpUndPfGRlZmF1bHR8Yzg1ODA4NDQ4ZWQ5NTVjNzQ5YTgxYmEyYzE4ZDI0OTY
2018-03-09 14:34:08,https://calendar.google.com/calendar/r/week/2018/3/13
2018-03-09 14:33:22,https://med.nyu.edu/neuroscience/6th-annual-nyu-community-brain-fair
2018-03-09 14:33:16,https://www.google.com/search?q=6th+Annual+NYU+Community+Brain+Fair&oq=6th+Annual+NYU+Community+Brain+Fair&aqs=chrome..69i57.246j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 14:33:09,https://drive.google.com/accounts
2018-03-09 14:33:09,https://drive.google.com/file/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view?usp=drive_web&authuser=1
2018-03-09 14:33:09,https://drive.google.com/file/u/1/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view?usp=drive_web&authuser=1
2018-03-09 14:33:09,https://drive.google.com/file/u/1/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view?usp=drive_web
2018-03-09 14:33:06,https://drive.google.com/accounts?continueUrl=https://drive.google.com/file/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view?usp%3Ddrive_web&ddrp=1#
2018-03-09 14:33:05,https://docs.google.com/accounts?continueUrl=https%3A//drive.google.com/file/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view%3Fusp%3Ddrive_web
2018-03-09 14:33:02,https://drive.google.com/file/d/1noWceBV16jKX31RsvKSpDmOMbzmuFM6I/view?usp=drive_web
2018-03-09 14:32:56,https://calendar.google.com/calendar/r/week/2018/3/13?eid=ZWRiNzRhbXZtOThwNWNoMGprNnBxOHRqa28geHVqZW5uYUBt&sf=true&output=xml
2018-03-09 14:32:54,https://calendar.google.com/calendar/event?eid=ZWRiNzRhbXZtOThwNWNoMGprNnBxOHRqa28geHVqZW5uYUBt
2018-03-09 14:32:54,https://calendar.google.com/calendar/render?eid=ZWRiNzRhbXZtOThwNWNoMGprNnBxOHRqa28geHVqZW5uYUBt&sf=true&output=xml
2018-03-09 14:32:54,https://calendar.google.com/calendar/r?eid=ZWRiNzRhbXZtOThwNWNoMGprNnBxOHRqa28geHVqZW5uYUBt&sf=true&output=xml
2018-03-09 14:25:13,https://www.google.com/url?hl=en&q=https://calendar.google.com/calendar/selfsched?sstoken%3DUUM3NDluV0VpUndPfGRlZmF1bHR8Yzg1ODA4NDQ4ZWQ5NTVjNzQ5YTgxYmEyYzE4ZDI0OTY&source=gmail&ust=1520701470571000&usg=AFQjCNHi6LVIagI6qn70aca8ru5HVDEkRw
2018-03-09 14:25:10,https://mail.google.com/mail/u/1/#inbox/161fe3526f807ce2
2018-03-09 14:25:00,https://mail.google.com/mail/u/1/#inbox/1620c06992fbfbd4
2018-03-09 12:51:51,https://scontent-lga3-1.cdninstagram.com/vp/fb7a088ff12baa3ece5ab6303d0e340c/5B2F4B67/t51.2885-15/e35/12107661_563525683850551_378675684_n.jpg
2018-03-09 12:43:11,https://pythonexample.com/snippet/python/instagram-scraperpy_sweetmoniker_python
2018-03-09 12:40:01,https://www.google.com/search?biw=1307&bih=820&ei=eBqiWp-CLKra5gKHuZmYDg&q=instagram+beautiful+soup+end_cursor&oq=instagram+beautiful+soup+end_cursor&gs_l=psy-ab.3...44098786.44098786.0.44099070.1.1.0.0.0.0.75.75.1.1.0....0...1.1.64.psy-ab..0.0.0....0.R_JQ8JY2dUg
2018-03-09 12:39:21,https://python-forum.io/Thread-Get-pagination-Instagram
2018-03-09 12:31:02,https://stackoverflow.com/questions/35648361/atom-editor-view-whitespace-character
2018-03-09 12:30:55,https://www.google.com/search?q=show+tabs+in+atom&oq=show+tabs+in+atom&aqs=chrome..69i57j0l5.2192j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 12:30:12,https://discuss.atom.io/t/show-distinct-spaces-vs-tabs-on-highlight-like-sublime-text/23807
2018-03-09 12:30:12,https://discuss.atom.io/t/show-distinct-spaces-vs-tabs-on-highlight-like-sublime-text/23807/2
2018-03-09 12:30:05,https://www.google.com/url?q=https://discuss.atom.io/t/show-distinct-spaces-vs-tabs-on-highlight-like-sublime-text/23807&sa=D&source=hangouts&ust=1520701950942000&usg=AFQjCNFBc2br6Ayb5qTM7t15Znl-Qk8VGw
2018-03-09 12:07:59,https://github.com/xujenna/thesis_explorations/blob/master/trackers/keylogger/keylogger.py
2018-03-09 12:07:59,https://github.com/xujenna/thesis_explorations/tree/master/trackers/keylogger
2018-03-09 12:00:12,http://scienceai.github.io/tsne-js/
2018-03-09 11:54:55,https://www.macrumors.com/2018/03/08/nintendo-50-drop-mario-run/
2018-03-09 11:54:34,https://techcrunch.com/2018/03/09/mario-can-now-guide-your-route-in-google-maps/
2018-03-09 11:54:33,https://beta.techcrunch.com/2018/03/09/mario-can-now-guide-your-route-in-google-maps/
2018-03-09 11:54:32,https://www.google.com/url?q=https://beta.techcrunch.com/2018/03/09/mario-can-now-guide-your-route-in-google-maps/&sa=D&source=hangouts&ust=1520699716001000&usg=AFQjCNGADBYSgURJwZyhQLgVyQe5z2RpUA
2018-03-09 11:18:09,https://stackoverflow.com/questions/1712227/how-to-get-the-number-of-elements-in-a-list-in-python
2018-03-09 11:18:05,https://www.google.com/search?ei=sLOiWr6wK8-05gLlwLvgCg&q=length+of+list+python&oq=length+of+list+python&gs_l=psy-ab.3..0i7i30k1l7j0i7i5i30k1l3.9659.9794.0.9912.4.3.0.0.0.0.83.151.2.2.0....0...1.1.64.psy-ab..3.1.67....0.ftMQYbf4qN0
2018-03-09 11:17:53,https://www.google.com/search?q=length+of+array+python&oq=length+of+ar&aqs=chrome.4.69i59j0l2j69i57j0l2.3471j0j7&sourceid=chrome&ie=UTF-8
2018-03-09 11:09:06,https://www.google.com/url?hl=en&q=https://github.com/yulicai/Word-Land&source=gmail&ust=1520644398409000&usg=AFQjCNHZFbf3SeBn7nRnR-iasszUE_5vTQ
2018-03-09 11:09:06,https://github.com/yulicai/Word-Land
2018-03-09 00:24:08,https://www.google.com/search?biw=1307&bih=820&ei=ARmiWvPkHu6pggfRhLvQCw&q=instagram+beautiful+soup+all+user+photos+end_cursor&oq=instagram+beautiful+soup+all+user+photos+end_cursor&gs_l=psy-ab.3..33i160k1.32519.34941.0.35114.12.12.0.0.0.0.122.1113.9j3.12.0....0...1.1.64.psy-ab..0.9.852....0.sutFE8C4cEo
2018-03-09 00:23:33,https://www.google.com/search?biw=1307&bih=820&ei=5BiiWsC2B8K5ggfmloL4Cw&q=instagram+beautiful+soup+all+user+photos+has_next_page&oq=instagram+beautiful+soup+all+user+photos+has_next_page&gs_l=psy-ab.3..33i160k1l2.25624.28100.0.28184.15.13.1.0.0.0.170.1097.9j3.12.0....0...1.1.64.psy-ab..2.6.548....0.QVYhFl0fcHU
2018-03-09 00:23:26,https://github.com/althonos/InstaLooter
2018-03-09 00:18:03,https://kaijento.github.io/2017/05/17/web-scraping-instagram.com/
2018-03-09 00:17:24,https://www.google.com/search?q=instagram+beautiful+soup+all+user+photos+site:stackoverflow.com&ei=qBiiWvbRA4ek_QbNuJnIAQ&start=10&sa=N&biw=1307&bih=820
2018-03-09 00:17:12,https://www.google.com/search?q=instagram+beautiful+soup+all+user+photos+site:stackoverflow.com&sa=X&ved=0ahUKEwi_tp7fvd7ZAhUkUt8KHSr_BJoQrQIINCgEMAA&biw=1307&bih=820
2018-03-09 00:17:06,https://stackoverflow.com/questions/16344346/instagram-get-photos-by-user-and-tag/17006921
2018-03-09 00:16:47,https://stackoverflow.com/questions/41405697/how-to-extract-instagram-data
2018-03-09 00:15:49,https://pym0tz.wordpress.com/2016/08/14/how-to-scrap-instagram-images-with-beautifulsoup-and-selenium/
2018-03-09 00:15:22,http://web.stanford.edu/~zlotnick/TextAsData/Web_Scraping_with_Beautiful_Soup.html
2018-03-09 00:15:14,https://www.google.com/search?ei=ERiiWqrMHuqE_QaQt6XYBw&q=instagram+beautiful+soup+all+user+photos&oq=instagram+beautiful+soup+all+user+photos&gs_l=psy-ab.3..0i71k1l8.1349.1349.0.1745.1.1.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..1.0.0....0.BonwqYycdXI
2018-03-09 00:14:08,https://github.com/rarcega/instagram-scraper
2018-03-09 00:13:53,https://www.google.com/search?ei=JxWiWtunHKLv5gLr8p6ABA&q=instagram+beautiful+soup+all+user+photos+python&oq=instagram+beautiful+soup+all+user+photos+python&gs_l=psy-ab.3...648028.652531.0.652655.24.23.0.0.0.0.108.1803.19j3.22.0....0...1.1.64.psy-ab..2.20.1649...35i39k1j0i22i10i30k1j33i22i29i30k1j33i160k1j33i21k1.0.paOs_oK_ewU
2018-03-09 00:04:36,https://scontent-lga3-1.cdninstagram.com/vp/03a05fc72789144cae818193ceb7b8c1/5B43CE0C/t51.2885-19/s320x320/25007460_556010031420218_7498870774053208064_n.jpg
2018-03-09 00:03:00,https://www.google.com/search?ei=lRSiWsCLFo-d5wLEg7ugBQ&q=instagram+beautiful+soup+next+page+python&oq=instagram+beautiful+soup+next+page+python&gs_l=psy-ab.3...1053.1891.0.1994.7.6.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..7.0.0....0.PvRUu86wgE8
2018-03-09 00:02:51,https://www.digitalocean.com/community/tutorials/how-to-work-with-web-data-using-requests-and-beautiful-soup-with-python-3
2018-03-09 00:02:28,https://github.com/mattallinson/SelenaBot
2018-03-09 00:02:21,https://github.com/mattallinson/SelenaBot/blob/master/SelenaBot.py
2018-03-09 00:01:24,https://www.google.com/search?ei=-ROiWsH8GKbt5gLhy7rwAQ&q=instagram+beautiful+soup+next+page&oq=instagram+beautiful+soup+next+page&gs_l=psy-ab.3...17115.17115.0.17583.1.1.0.0.0.0.121.121.0j1.1.0....0...1.1.64.psy-ab..0.0.0....0.vFdpBpZUI0U
2018-03-08 23:59:13,https://github.com/ScriptSmith/insta-scrape
2018-03-08 23:58:42,https://www.google.com/search?q=instagram+beautiful+soup+how+to+go+to+next+page&oq=instagram+beautiful+soup+how+to+go+to+next+page&aqs=chrome..69i57.8277j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 23:58:22,https://stackoverflow.com/questions/46347650/how-to-scrape-instagram-account-info-in-python
2018-03-08 23:57:03,https://stackoverflow.com/questions/49085421/scraping-instagram-with-beautifulsoup
2018-03-08 23:56:31,https://stackoverflow.com/questions/45904953/scraping-instagram-from-beautifulsoup
2018-03-08 23:48:37,https://scontent-lga3-1.cdninstagram.com/vp/d90cb18fb92e0a7f48da22b10034c494/5B4BD385/t51.2885-15/s640x640/sh0.08/e35/12346240_1645123392442149_830136087_n.jpg
2018-03-08 23:48:16,https://scontent-lga3-1.cdninstagram.com/vp/ef4174e5fd8573beae764986240b167a/5B37E23E/t51.2885-15/s640x640/sh0.08/e35/13118182_940759399378809_1509394751_n.jpg
2018-03-08 23:47:25,https://scontent-lga3-1.cdninstagram.com/vp/7a59b9fd4a41ada931ba6c590f6bbaeb/5B34A86C/t51.2885-15/e35/11371165_1667560863485925_1624273424_n.jpg
2018-03-08 23:46:21,https://www.google.com/search?q=%22%3Dhttps%3A%2F%2Fscontent-lga3-1.cdninstagram.com%2Fvp%2F5c259527628aa79d88aed6ea37370609%2F5B3FDA84%2Ft51.2885-15%2Fe35%2F13118182_940759399378809_1509394751_n.jpg&oq=%22%3Dhttps%3A%2F%2Fscontent-lga3-1.cdninstagram.com%2Fvp%2F5c259527628aa79d88aed6ea37370609%2F5B3FDA84%2Ft51.2885-15%2Fe35%2F13118182_940759399378809_1509394751_n.jpg&aqs=chrome..69i57j69i59.6135j0j9&sourceid=chrome&ie=UTF-8
2018-03-08 23:46:12,https://www.google.com/search?q=%22https%3A%2F%2Fscontent-lga3-1.cdninstagram.com%2Fvp%2F5c259527628aa79d88aed6ea37370609%2F5B3FDA84%2Ft51.2885-15%2Fe35%2F13118182_940759399378809_1509394751_n.jpg%22&oq=%22https%3A%2F%2Fscontent-lga3-1.cdninstagram.com%2Fvp%2F5c259527628aa79d88aed6ea37370609%2F5B3FDA84%2Ft51.2885-15%2Fe35%2F13118182_940759399378809_1509394751_n.jpg%22&aqs=chrome..69i57.254j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 23:41:26,https://www.google.com/search?q=beautifulsoup+instagram+site:stackoverflow.com&sa=X&ved=0ahUKEwiH3tOpq97ZAhUEmVkKHS1CCvcQrQIINCgEMAA&biw=1307&bih=883
2018-03-08 23:41:05,https://stackoverflow.com/questions/42785017/grabbing-instagram-feed-using-python
2018-03-08 23:13:41,https://stackoverflow.com/questions/18130499/how-to-scrape-instagram-with-beautifulsoup
2018-03-08 23:13:33,https://www.google.com/search?ei=qQSiWqWgN62G5wKxvJDYAQ&q=beautifulsoup+instagram&oq=beautifulsoup+instagram&gs_l=psy-ab.3...2277.3644.0.3938.10.7.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..10.0.0....0.38lP40gPQtA
2018-03-08 23:13:31,https://www.google.com/search?ei=RQSiWpHRGYWa_QaS3qSYAw&q=beautifulsoup&oq=beautifulsoup&gs_l=psy-ab.3..0i20i263i264k1l2j0i67k1j0j0i67k1j0i131k1j0l2j0i67k1j0.39473.41213.0.41398.15.13.1.0.0.0.169.1365.3j8.11.0..2..0...1.1.64.psy-ab..3.12.1359...35i39k1j0i20i264i46k1j46i20i264k1j0i20i264k1.0.vvZrRQ4rNfw
2018-03-08 22:50:23,https://www.google.com/search?q=how+to+get+photo+urls+of+entire+instagram+account&oq=how+to+&aqs=chrome.0.69i59l3j69i60l2j69i65.3470j1j4&sourceid=chrome&ie=UTF-8
2018-03-08 22:49:53,https://www.wikihow.com/Back-Up-Your-Instagram-Images-Before-Deleting-Your-Account
2018-03-08 22:47:29,https://stackoverflow.com/questions/39459809/how-can-i-get-all-media-from-my-own-instagram-api
2018-03-08 22:47:23,https://www.google.com/search?ei=xgOiWvfCO_K0ggemv7DoDg&q=instagram+api+get+all+user+media+python&oq=instagram+api+get+all+user+media+python&gs_l=psy-ab.3...1245.1819.0.1999.8.6.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..8.0.0....0.NSEOdiEibxs
2018-03-08 22:47:19,https://www.google.com/search?ei=gAOiWsCNF6aD5wLh_LaICg&q=instagram+api+user+media+python&oq=instagram+api+user+media+python&gs_l=psy-ab.3...15981.17627.0.17897.13.12.1.0.0.0.117.951.6j5.11.0....0...1.1.64.psy-ab..4.1.71...35i39k1j0i13k1j0i7i30k1j0i8i13i30k1.0.mynWEFz6w2g
2018-03-08 22:47:00,https://www.google.com/search?ei=fgKiWpGdKcKq5gLe86mIBQ&q=instagram+api+get+all+photos+from+self+python&oq=instagram+api+get+all+photos+from+self+python&gs_l=psy-ab.3...2829.3619.0.3737.7.6.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..7.0.0....0.Ud40CS1USoI
2018-03-08 22:46:51,https://stackoverflow.com/questions/34772554/how-to-retrieve-images-from-instagram-api
2018-03-08 22:46:21,https://stackoverflow.com/questions/17373886/how-can-i-get-a-users-media-from-instagram-without-authenticating-as-a-user
2018-03-08 22:46:03,https://www.google.com/search?q=instagram+api+get+all+photos+from+self&oq=instagram+api+get+all+photos+from+self&aqs=chrome..69i57.14624j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 22:42:57,https://www.instagram.com/developer/endpoints/users/
2018-03-08 22:41:56,https://stackoverflow.com/questions/10881511/instagram-api-how-to-get-all-user-media
2018-03-08 22:40:36,https://groups.google.com/d/topic/instagram-api-developers/lGJvmwWF45E
2018-03-08 22:40:36,https://groups.google.com/forum/#!topic/instagram-api-developers/lGJvmwWF45E
2018-03-08 22:40:24,https://www.google.com/search?q=min_id+instagram+api&oq=min_id+instagram+api&aqs=chrome..69i57j69i60l2j0.4019j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 22:39:40,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&max_id=1243644789384054044_261405032
2018-03-08 22:37:48,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&?max_id=1243644789384054044_261405032
2018-03-08 22:36:21,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&max_id=1462474033
2018-03-08 22:35:28,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&max_id=17847058357129889
2018-03-08 22:31:05,https://stackoverflow.com/questions/37596076/why-is-the-instragram-api-ignoring-the-min-id-parameter-for-my-request
2018-03-08 22:30:50,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&?max_id=2017-01-01
2018-03-08 22:29:38,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&?min_id=2017-01-01
2018-03-08 22:29:19,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914&?min_id=2017
2018-03-08 22:29:05,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914?min_id=2017
2018-03-08 22:26:55,https://scontent.cdninstagram.com/vp/6219b94c123662f636924c2858273085/5B2EC419/t51.2885-15/s320x320/e35/12107661_563525683850551_378675684_n.jpg
2018-03-08 22:26:44,https://scontent.cdninstagram.com/vp/8158b43615653ae593dd76f4043df405/5B4C20FC/t51.2885-19/s150x150/25007460_556010031420218_7498870774053208064_n.jpg
2018-03-08 22:26:25,https://api.instagram.com/v1/users/self/media/recent/?access_token=261405032.fe2d6ec.2b58a657a1bf423ab27e1d02dfb57914
2018-03-08 22:24:36,https://www.instagram.com/accounts/login/?force_classic_login=&next=/oauth/authorize%3Fclient_id%3Dfe2d6ec34ba343509f4300c533a9223c%26response_type%3Dcode%26redirect_uri%3Dhttp%3A//www.xujenna.com/%26scope%3Dbasic
2018-03-08 22:24:36,https://www.instagram.com/oauth/authorize?client_id=fe2d6ec34ba343509f4300c533a9223c&response_type=code&redirect_uri=http://www.xujenna.com/&scope=basic
2018-03-08 22:24:36,http://www.xujenna.com/?code=435ba5de1e5b4001a5b7377b43b09d1d
2018-03-08 22:22:49,https://github.com/vgavro/python-instagram/commit/9dfc264571ad7c343af3899445d13afedf23e3aa
2018-03-08 22:17:12,https://stackoverflow.com/questions/38329960/instagram-api-keep-raise-you-must-provide-a-client-id-exception-when-i-use-pyt
2018-03-08 22:17:06,https://www.google.com/search?q=instagram.oauth2.OAuth2AuthExchangeError%3A+You+must+provide+a+client_id&oq=instagram.oauth2.OAuth2AuthExchangeError%3A+You+must+provide+a+client_id&aqs=chrome..69i57.245j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 22:16:23,http://www.xujenna.com/?code=07ca63349dc34effa09f39149e43cc3a
2018-03-08 22:15:40,https://www.instagram.com/oauth/authorize/?client_id=fe2d6ec34ba343509f4300c533a9223c&response_type=code&redirect_uri=http://www.xujenna.com/&scope=basic
2018-03-08 22:15:40,http://www.xujenna.com/?code=1fae3bdd1c5148669b966582d17d31ad
2018-03-08 22:13:43,https://github.com/facebookarchive/python-instagram
2018-03-08 22:13:42,https://github.com/facebookarchive/python-instagram/blob/master/get_access_token.py
2018-03-08 22:12:49,http://instagram.com/developer
2018-03-08 22:12:49,https://instagram.com/developer
2018-03-08 22:12:49,https://instagram.com/developer/
2018-03-08 22:11:57,https://www.instagram.com/developer/search/?q=access+token
2018-03-08 22:10:33,https://api.instagram.com/v1/users/self/media/recent/?access_token=fe2d6ec34ba343509f4300c533a9223c
2018-03-08 22:10:06,https://www.instagram.com/developer/clients/register/
2018-03-08 22:10:06,https://www.instagram.com/developer/clients/manage/?registered=Inkwell
2018-03-08 22:08:40,https://www.instagram.com/developer/endpoints/
2018-03-08 22:06:02,https://www.instagram.com/developer/endpoints/users/#get_users_media_recent_self
2018-03-08 22:04:55,http://distillery.s3.amazonaws.com/media/2010/07/16/4de37e03aa4b4372843a7eb33fa41cad_7.jpg
2018-03-08 22:04:50,http://distillery.s3.amazonaws.com/media/2010/07/16/4de37e03aa4b4372843a7eb33fa41cad_5.jpg
2018-03-08 22:04:35,http://distillery.s3.amazonaws.com/media/2010/07/16/4de37e03aa4b4372843a7eb33fa41cad_6.jpg
2018-03-08 22:03:48,http://instagr.am/developer/endpoints/media/
2018-03-08 22:03:48,https://www.instagram.com/developer/endpoints/media/
2018-03-08 22:02:32,https://github.com/Instagram/python-instagram
2018-03-08 22:02:29,https://www.instagram.com/developer/libraries/
2018-03-08 22:02:08,https://www.instagram.com/developer/secure-api-requests/
2018-03-08 22:01:41,https://www.google.com/search?ei=wPihWrj6O8eL5wK_xrDwCw&q=how+to+get+photo+urls+of+entire+instagram+account&oq=how+to+get+photo+urls+of+entire+instagram+account&gs_l=psy-ab.3...2539.11857.0.11989.35.21.0.0.0.0.180.1437.9j5.14.0....0...1.1.64.psy-ab..23.7.742...33i22i29i30k1j33i160k1.0.lk1HWF5rDwI
2018-03-08 22:01:02,https://www.quora.com/How-does-one-obtain-the-URL-to-an-Instagram-picture-that-he-she-took-without-posting-it-to-Twitter
2018-03-08 22:00:37,https://www.google.com/search?q=how+to+get+URLs+of+instagram&oq=how+to+get+URLs+of+instagram+&aqs=chrome..69i57j0j69i64.6550j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 22:00:24,https://help.instagram.com/372819389498306
2018-03-08 21:59:10,https://en.wikipedia.org/wiki/Instagram
2018-03-08 21:58:58,https://en.wikipedia.org/wiki/Instagram#/media/File:Instagram_Filters_2011.jpg
2018-03-08 21:50:56,https://www.instagram.com/53964/saved/
2018-03-08 21:48:01,https://www.instagram.com/developer/review/
2018-03-08 21:47:50,https://www.instagram.com/developer/authorization/
2018-03-08 21:47:48,https://www.instagram.com/developer/authentication/
2018-03-08 21:42:27,https://rejected.us/
2018-03-08 21:41:32,https://calendar.google.com/calendar/r/week/2018/3/15
2018-03-08 21:38:40,http://hirevue.force.com/E2Candidate?lang=en_US
2018-03-08 21:38:38,https://www.google.com/url?hl=en&q=http://hirevue.force.com/E2Candidate&source=gmail&ust=1520644995995000&usg=AFQjCNHKYZi4bI7jL8qX5W-AmAOr9YvTiw
2018-03-08 21:38:38,http://hirevue.force.com/E2Candidate
2018-03-08 21:34:05,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.770683157001562&tn=qutz4sbf9tf&rld=1
2018-03-08 20:34:44,https://mail.google.com/mail/u/2/#inbox/1615ca28394b5a29
2018-03-08 20:32:02,https://mail.google.com/mail/u/2/#inbox/161b499848e6a937
2018-03-08 20:31:51,https://mail.google.com/mail/u/2/#inbox/161f37c38d0b19aa
2018-03-08 20:21:41,https://mail.google.com/mail/u/1/#inbox/162037d81136f7b4
2018-03-08 20:21:12,https://www.instagram.com/p/BddLriDFiBO/?taken-by=we_are_ash
2018-03-08 20:21:08,https://www.instagram.com/p/BfOTHBJFiQM/?taken-by=we_are_ash
2018-03-08 20:21:03,https://www.instagram.com/p/BfYn49Mljul/?taken-by=we_are_ash
2018-03-08 20:20:55,https://www.instagram.com/magthenomad/
2018-03-08 20:18:40,https://mail.google.com/mail/u/1/#inbox/16207dbbb7a2700a
2018-03-08 20:18:03,https://powertofly.com/jobs/detail/5595
2018-03-08 20:18:00,https://powertofly.com/jobs/detail/5589
2018-03-08 20:17:35,https://mail.google.com/mail/u/1/#inbox/161fe76401e57bc7
2018-03-08 20:17:29,https://mail.google.com/mail/u/1/#inbox/162029b2b80a0169
2018-03-08 20:16:58,http://www.culturehub.org/events/2018/3/7/refest-20
2018-03-08 20:15:13,https://mail.google.com/mail/u/1/#inbox/161f6c7e047494c2
2018-03-08 20:14:17,https://mail.google.com/mail/u/1/#inbox/161fdf33aff688e8
2018-03-08 20:14:05,https://app.wootric.com/email_survey/NPS-ff5a6305/xujenna@nyu.edu/10?mkt_tok=eyJpIjoiTldOalltTXhaRE0zWlRVeCIsInQiOiJ4czVreDR2Mjh2aHArazVYZFwvd2dxQWUwRmtQSUJjSXJpZ25DOFR4bzhQWlFJMVZEUTlaYXBtM0c0UndhZEpId0hycjM5VWZXdW10bHpWTHBuQ0lzK0ZqanRXXC8waXd1VXhKcmlmMjd3M2YrckI0U2Z3RFVNRDRvUzg5bG5IMmF6In0%3D
2018-03-08 20:14:03,https://www.google.com/url?hl=en&q=http://info.clarifai.com/dc/GthHpO0Do3-z-X79kRitR6X0JHstu9Iuq4b-5rDs6BnCua36nW70Yty5bPFf_QGgqfr8hCs1Rgobq0_p7m9qquiSV7duoPSsQhwLPoJHXnc%3D/SX0D1k0mX060uIN0100CRJW&source=gmail&ust=1520631830719000&usg=AFQjCNE8y9QolWS7VwcOvkDaaKdyKbg6SA
2018-03-08 20:14:03,http://info.clarifai.com/dc/GthHpO0Do3-z-X79kRitR6X0JHstu9Iuq4b-5rDs6BnCua36nW70Yty5bPFf_QGgqfr8hCs1Rgobq0_p7m9qquiSV7duoPSsQhwLPoJHXnc=/SX0D1k0mX060uIN0100CRJW
2018-03-08 20:13:50,https://mail.google.com/mail/u/1/#inbox/162075ac852c02de
2018-03-08 20:13:43,https://mail.google.com/mail/u/1/#inbox/16207671b771f084
2018-03-08 16:52:36,"https://www.glassdoor.com/Jobs/IBM-Software-Engineer-Intern-Jobs-EI_IE354.0,3_KO4,28.htm?irs=C2J_TAB_INTERVIEWS"
2018-03-08 16:52:31,https://www.glassdoor.com/Interview/I-was-asked-if-I-knew-a-lot-of-technologies-that-were-on-my-resume-Seemed-pointless-QTN_667515.htm
2018-03-08 16:52:00,https://www.google.com/search?q=ibm+software+engineering+internship+coding+challenge&ei=YrChWpjqNqrv5gKksbmgCw&start=10&sa=N&biw=1319&bih=883
2018-03-08 16:51:53,https://www.reddit.com/r/cscareerquestions/comments/55awzr/has_anyone_ever_taken_the_ibm_coding_challenge/
2018-03-08 16:51:45,"https://www.glassdoor.com/Interview/IBM-Software-Engineer-Intern-Interview-Questions-EI_IE354.0,3_KO4,28.htm"
2018-03-08 16:51:32,https://www.google.com/search?ei=VrChWt6pOseG5wKFkrvIBQ&q=ibm+software+engineering+internship+coding+challenge&oq=ibm+software+engineering+internship+coding+challenge&gs_l=psy-ab.3...4685.5732.0.5840.11.6.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..11.0.0....0.4f3VcAtymEs
2018-03-08 16:51:20,https://www.google.com/search?q=ibm+software+engineering+coding+challenge&oq=ibm+software+engineering+coding+challenge&aqs=chrome..69i57j0l5.8438j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 16:41:18,https://www.emotiv.com/my-account/view-subscription/294996
2018-03-08 16:41:18,https://www.emotiv.com/my-account/view-subscription/294996/
2018-03-08 16:41:09,https://www.emotiv.com/my-account/subscriptions/
2018-03-08 16:18:33,http://174.138.34.95:3000/#/
2018-03-08 16:18:17,https://www.google.com/url?hl=en&q=http://174.138.34.95:3000/%23/&source=gmail&ust=1520630291614000&usg=AFQjCNE64cTIHPSDcRv2eZkLnpFrxiC_Wg
2018-03-08 15:58:03,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520274958222&xpc=%7B%22cn%22%3A%22op3p1b%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWb_V0dFsiWrQu0Nqk-EJj7U_u_w1NiqmEMq-Ar1MX8JQeJqc5OJTXEretFED6jCTo0ACur2ByPkCLZ9zTZfVTX49G0TFw%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.1719534804970677&hb=1&tn=ulbeqq9vsz5f&rld=1
2018-03-08 15:42:09,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520300065316&xpc=%7B%22cn%22%3A%224lcjow%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYbitiyLQa_pZMSsynkIXGPFvrhoUznNZya-IPB4oW0f6sdbYPD6Oh1MJyZngtwT0YZvVXJUEug94cshLPJY7WCFGPoBg%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.6599774991970144&hb=1&tn=pa0h7stltpfx&rld=1
2018-03-08 14:55:59,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/03/Screen-Shot-2018-03-08-at-2.33.23-PM.png
2018-03-08 14:55:46,https://itp.nyu.edu/classes/roy18/category/6-final/
2018-03-08 14:55:40,https://itp.nyu.edu/classes/roy18/
2018-03-08 14:55:36,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=895&action=edit
2018-03-08 14:55:36,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=895&action=edit&message=1
2018-03-08 14:55:34,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3135&action=edit
2018-03-08 14:55:33,https://itp.nyu.edu/classes/roy18/wp-admin/post.php
2018-03-08 14:55:33,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3135&action=edit&message=1
2018-03-08 14:55:09,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/03/Screen-Shot-2018-03-08-at-2.03.50-PM.png
2018-03-08 14:53:49,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3135&action=edit&message=6
2018-03-08 14:53:46,https://itp.nyu.edu/classes/roy18/wp-admin/post-new.php?wp-post-new-reload=true
2018-03-08 14:46:15,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=873&action=edit
2018-03-08 14:46:11,http://www.xujenna.com/itp_blog/2018/03/05/qh-w5-hw-quant-self-intervention/
2018-03-08 14:42:29,https://itp.nyu.edu/classes/roy18/wp-admin/post-new.php
2018-03-08 14:42:21,https://itp.nyu.edu/classes/roy18/wp-login.php
2018-03-08 14:42:17,https://itp.nyu.edu/classes/roy18/wp-login.php?redirect_to=%2Fclasses%2Froy18%2F
2018-03-08 14:41:31,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=895&action=edit&message=6
2018-03-08 14:41:28,http://www.xujenna.com/itp_blog/wp-admin/post-new.php?wp-post-new-reload=true
2018-03-08 14:39:29,https://keep.google.com/u/1/#LIST/16126ac37f5.a2d24e63b00ddadf
2018-03-08 14:35:59,http://www.xujenna.com/itp_blog/2018/02/05/qh-w2-hw-document-your-methodology/
2018-03-08 14:21:50,https://www.ibm.com/watson/
2018-03-08 14:21:43,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/
2018-03-08 14:21:43,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3
2018-03-08 14:21:42,https://www.ibm.com/watson/developercloud/tone-analyzer/
2018-03-08 14:04:32,http://www.xujenna.com/itp_blog/wp-admin/post-new.php
2018-03-08 14:02:28,https://www.nytimes.com/2018/03/06/technology/google-artificial-intelligence.html
2018-03-08 14:02:26,https://www.google.com/url?q=https://www.nytimes.com/2018/03/06/technology/google-artificial-intelligence.html&sa=D&source=hangouts&ust=1520613504138000&usg=AFQjCNHMRbk0CUB-pZ192JzKs7DWbzQM4A
2018-03-08 13:02:00,https://www.w3schools.com/jquery/html_attr.asp
2018-03-08 13:02:00,https://www.electrictoolbox.com/jquery-set-multiple-attributes/
2018-03-08 13:01:55,https://www.google.com/search?ei=aHqhWrmTIcGE5wK8oKOgCw&q=more+than+one+attribute+in+.attr%28%29&oq=more+than+one+attribute+in+.attr%28%29&gs_l=psy-ab.3..33i22i29i30k1l6.11532.26178.0.26429.66.51.11.0.0.0.172.5452.27j24.51.0....0...1.1.64.psy-ab..4.58.5122...0j46j0i30k1j0i22i30k1j0i22i10i30k1j35i39k1j0i131k1j0i67k1j0i20i264k1j0i131i20i264k1j0i131i67k1j0i46k1j0i131i46k1j46i131k1j0i13k1j33i160k1.0.hcyv38821Po
2018-03-08 13:01:47,https://stackoverflow.com/questions/13014317/jquery-adding-two-attributes-via-the-attr-method
2018-03-08 13:01:12,https://www.google.com/search?q=.attr(%22x1%22%2C+%22x2%22%2C&oq=.attr(%22x1%22%2C+%22x2%22%2C&aqs=chrome..69i57.10152j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 12:49:37,https://www.w3schools.com/graphics/svg_line.asp
2018-03-08 12:49:34,https://www.google.com/search?ei=qnehWuzeNYfq_Abt0rC4Dw&q=svg+line&oq=svg+line&gs_l=psy-ab.3...576.576.0.734.1.1.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..1.0.0....0.E1d2LWB1rsA
2018-03-08 12:49:31,https://www.google.com/search?q=svg+lin&oq=svg+lin&aqs=chrome..69i57j0l5.936j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 12:23:23,https://stackoverflow.com/questions/4673527/converting-milliseconds-to-a-date-jquery-js
2018-03-08 12:23:17,https://www.google.com/search?q=milliseconds+to+date+javascript&oq=miliseconds+to+date+&aqs=chrome.3.69i57j0l5.3404j1j4&sourceid=chrome&ie=UTF-8
2018-03-08 12:22:26,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_gettime
2018-03-08 12:22:17,https://www.w3schools.com/jsref/jsref_gettime.asp
2018-03-08 12:22:11,https://www.google.com/search?q=date+to+milliseconds+javascript&oq=date+to+mili&aqs=chrome.2.69i57j0l5.2447j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 12:21:50,https://www.google.com/search?q=6+minutes+to+milliseconds&oq=6+minutes+to+&aqs=chrome.2.69i57j0l5.3656j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 12:11:59,https://www.w3schools.com/jsref/met_win_alert.asp
2018-03-08 12:11:58,https://www.google.com/search?q=alert()&oq=alert()&aqs=chrome..69i57j0l5.1136j1j7&sourceid=chrome&ie=UTF-8
2018-03-08 12:08:17,https://stackoverflow.com/questions/1197928/how-to-add-30-minutes-to-a-javascript-date-object
2018-03-08 12:08:15,https://www.google.com/search?q=how+to+add+minutes+to+time+in+javascript&oq=how+to+add+minutes+to+time+in+javascript&aqs=chrome.0.0l4j69i64.6815j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 11:57:40,https://www.google.com/search?ei=amuhWpTyHIeJ5wL_tayADg&q=svg+stroke+width&oq=svg+stroke+&gs_l=psy-ab.3.1.0i20i263k1j0l9.20362.21641.0.24111.11.10.0.0.0.0.132.874.7j3.10.0..2..0...1.1.64.psy-ab..1.10.871...46j35i39k1j0i67k1j0i131k1j0i20i264k1j0i46k1j0i131i67k1.0.l3HCZwJXnac
2018-03-08 11:57:14,https://www.google.com/search?q=6+min+in+milliseconds&oq=6+min+to+mili&aqs=chrome.1.69i57j0l2.5950j1j7&sourceid=chrome&ie=UTF-8
2018-03-08 11:54:51,https://stackoverflow.com/questions/2861247/center-aligning-a-fixed-position-div
2018-03-08 11:54:49,https://www.google.com/search?q=how+to+center+a+fixed+position+div&oq=how+to+center+a+fixed+position+&aqs=chrome.0.0j69i57j0j69i64.5166j0j4&sourceid=chrome&ie=UTF-8
2018-03-08 11:53:32,https://www.w3schools.com/css/css_positioning.asp
2018-03-08 11:53:26,https://www.google.com/search?ei=gGqhWrzhMMqA5wLuw5KIDg&q=div+positioning&oq=div+positioning&gs_l=psy-ab.3..0i71k1l8.2241.2455.0.2710.3.3.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..3.0.0....0.s7rBe6rH5RA
2018-03-08 11:53:20,https://www.google.com/search?ei=OmqhWtP2JObn5gKVoJ1Q&q=div+position+center&oq=div+position+center&gs_l=psy-ab.3...2813.2813.0.3409.1.1.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..1.0.0....0.134VV39uiBk
2018-03-08 11:52:22,https://www.w3schools.com/css/css_align.asp
2018-03-08 11:52:10,https://www.google.com/search?q=div+position+absolute+center&oq=div+position&aqs=chrome.3.69i57j0l5.3488j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 11:52:01,https://stackoverflow.com/questions/1776915/how-to-center-absolutely-positioned-element-in-div
2018-03-08 11:48:58,https://calendar.google.com/calendar/r/week/2018/3/1
2018-03-08 11:41:55,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-08
2018-03-08 11:41:50,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-03-08
2018-03-08 11:29:22,https://mail.google.com/mail/u/1/#inbox/161fdc1ca5fd6b67
2018-03-08 11:23:16,https://dweet.io/follow/thin-wrench
2018-03-08 11:22:30,http://dweet.io/
2018-03-08 11:22:22,https://dweet.io/
2018-03-08 11:21:55,https://www.google.com/search?ei=OF-hWpqzHtHi_AaphpZQ&q=using+dweet.io+to+track+when+i%27m+using+my+phone&oq=using+dweet.io+to+track+when+i%27m+using+my+phone&gs_l=psy-ab.3...4779.5156.0.5368.3.3.0.0.0.0.107.282.2j1.3.0....0...1.1.64.psy-ab..0.0.0....0.Lzv90dOJ0ec
2018-03-08 11:21:18,https://mail.google.com/mail/u/0/#inbox/1620668185230f24
2018-03-08 11:13:02,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-03-08
2018-03-08 11:12:53,https://www.rescuetime.com/browse/productivity/5/by/hour/for/the/day/of/2018-03-08
2018-03-08 11:12:42,https://www.rescuetime.com/browse/productivity/4/by/hour/for/the/day/of/2018-03-08
2018-03-08 11:11:36,https://mail.google.com/mail/u/1/#inbox/162024ed0ba1a704
2018-03-08 11:06:26,https://www.networkworld.com/article/3133738/internet-of-things/dweetio-a-simple-effective-messaging-service-for-the-internet-of-things.html
2018-03-08 11:05:12,https://www.google.com/search?q=using+dweet+to+track+when+i%27m+using+my+phone&oq=using+dweet+to++track+when+i%27m+using+my+phone&aqs=chrome..69i57.18923j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 11:04:45,https://dweet.io/see
2018-03-08 11:03:29,https://developers.facebook.com/blog/post/2018/01/30/instagram-graph-api-updates/
2018-03-08 11:03:16,https://www.instagram.com/developer/register/
2018-03-08 10:59:07,https://www.instagram.com/developer/endpoints/locations/
2018-03-08 10:58:37,https://www.instagram.com/explore/locations/249273582/naperville-north-high-school/
2018-03-08 10:58:34,https://www.instagram.com/p/BflhIWtB7ur/?taken-at=249273582
2018-03-08 10:57:45,https://www.instagram.com/p/Bfv9JCOjUsx/?taken-at=249273582
2018-03-08 10:57:36,https://www.instagram.com/p/BfylQLcHaUg/?taken-at=249273582
2018-03-08 10:57:25,https://www.instagram.com/p/Bfm1rtWl9Sc/?taken-at=249273582
2018-03-08 10:57:20,https://www.instagram.com/p/BfliW3xBEs8/?taken-at=249273582
2018-03-08 10:53:15,https://www.facebook.com/xujenna
2018-03-08 10:50:51,https://www.emotiv.com/my-account/cortex-apps/
2018-03-08 10:50:44,https://www.emotiv.com/my-account/edit-account/
2018-03-08 10:50:41,https://www.emotiv.com/my-account/orders/
2018-03-08 10:47:56,https://id.emotivcloud.com/eoidc/api-auth/login/
2018-03-08 10:47:56,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5aa15b2377ee3&login-prompt=NO
2018-03-08 10:47:56,https://www.emotiv.com/oauth.php?state=emotiv5aa15b2377ee3&code=0b5Zzb6evxVJJmENKEA0kTVD5jtMHl
2018-03-08 10:47:48,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5aa15b2377ee3
2018-03-08 10:47:48,https://id.emotivcloud.com/eoidc/api-auth/login/?next=/eoidc/oidc/authorize/%3Fclient_id%3DyCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo%26response_type%3Dcode%26redirect_uri%3Dhttps%3A//www.emotiv.com/oauth.php%26scope%3Dwrite%2Bopenid%2Bprofile%2Baddress%2Bread%2Bfull_profile%2Bphone%2Bemail%26state%3Demotiv5aa15b2377ee3%26login-prompt%3DNO
2018-03-08 10:47:47,https://www.emotiv.com/oauth.php
2018-03-08 10:47:44,https://www.emotiv.com/my-account/customer-logout/
2018-03-08 10:47:44,https://www.emotiv.com/wp-login.php?action=logout&redirect_to=https%3A%2F%2Fwww.emotiv.com%2Fmy-account%2F&_wpnonce=8d134881b1
2018-03-08 10:47:10,https://feedly.com/i/subscription/feed%2Fhttp%3A%2F%2Ffeeds.feedburner.com%2FAeonMagazineEssays
2018-03-08 10:42:13,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-8
2018-03-08 10:42:11,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-7
2018-03-08 10:42:03,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-6
2018-03-08 10:40:48,https://www.google.com/search?q=hex+color+picker&oq=hex+color&aqs=chrome.2.69i57j69i60j0l4.2814j0j7&sourceid=chrome&ie=UTF-8
2018-03-08 10:38:15,http://www.color-hex.com/color/d3d3d3
2018-03-08 02:07:42,https://github.com/xujenna/how-to
2018-03-08 02:06:15,https://github.com/isabelacmor/instatype
2018-03-08 02:03:15,https://www.rescuetime.com/apidoc#connection-methods
2018-03-08 02:01:18,https://mail.google.com/mail/u/1/#inbox/16203b809b458770
2018-03-08 02:01:12,https://mail.google.com/mail/u/1/#inbox/161f6d569a9e06e9
2018-03-08 02:01:00,https://mail.google.com/mail/u/1/#inbox/162039cd1949b5e7
2018-03-08 02:00:27,https://mail.google.com/mail/u/1/#inbox/16203c56b059a063
2018-03-08 00:54:39,http://scholarslab.org/visualization-and-data-mining/working-with-d3-part-2/
2018-03-08 00:54:36,https://www.google.com/url?q=http://scholarslab.org/visualization-and-data-mining/working-with-d3-part-2/&sa=D&source=hangouts&ust=1520574382839000&usg=AFQjCNGrYj4P4l6UkneV7zQDHf9K1heMvQ
2018-03-08 00:38:17,https://www.google.com/search?q=d3+for+each+element+create&oq=d3+for+each+element+create&aqs=chrome..69i57.18657j0j9&sourceid=chrome&ie=UTF-8
2018-03-08 00:37:57,https://www.google.com/search?q=d3+foreach&oq=d3+foreach&aqs=chrome..69i57j35i39j0l4.1406j0j4&sourceid=chrome&ie=UTF-8
2018-03-08 00:37:33,https://stackoverflow.com/questions/13465796/d3-javascript-difference-between-foreach-and-each
2018-03-07 23:46:50,https://github.com/xujenna/thesis_explorations/blob/master/trackers/_viz/mindwandering/index.html
2018-03-07 23:30:26,https://www.google.com/search?q=for(var+i+%3D+0%3B+i+%3C+javascript&oq=for(var+i+%3D+0%3B+i+%3C+javascript&aqs=chrome..69i57j0l2.12623j1j7&sourceid=chrome&ie=UTF-8
2018-03-07 23:01:41,https://www.google.com/search?ei=n7WgWvjwOpKt_Qaz1IewDw&q=nest+data+d3&oq=nest+data+d3&gs_l=psy-ab.3...772.1113.0.1431.3.3.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..3.0.0....0.oQkfOk7SU7c
2018-03-07 23:01:36,https://www.google.com/search?ei=nLWgWu_fI-zn_QbNz6iYCQ&q=nest+data&oq=nest+data&gs_l=psy-ab.3...782.1846.0.1993.9.7.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..9.0.0....0.TeunK8Agz6o
2018-03-07 22:58:00,https://www.google.com/search?q=how+to+roll+up+d3+data+but+keep+values&oq=how+to+roll+up+d3+data+but+keep+values&aqs=chrome..69i57j69i64.6120j1j4&sourceid=chrome&ie=UTF-8
2018-03-07 22:50:29,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_slice
2018-03-07 22:50:27,https://www.w3schools.com/jsref/jsref_slice_string.asp
2018-03-07 22:50:16,https://www.google.com/search?ei=rbKgWpLCMNHr5gLNj77QBA&q=how+to+filter+out+part+of+a+string+javacscript&oq=how+to+filter+out+part+of+a+string+javacscript&gs_l=psy-ab.3...8594.17143.0.17248.46.42.0.0.0.0.164.4462.18j23.41.0..2..0...1.1.64.psy-ab..5.35.3847...0j35i39k1j0i131k1j0i67k1j0i20i264k1j0i20i263k1j0i22i30k1j33i22i29i30k1j33i160k1j33i13i21k1.0.IwVCnMCwGq4
2018-03-07 22:49:25,https://stackoverflow.com/questions/3568921/how-to-remove-part-of-a-string
2018-03-07 22:49:01,https://www.google.com/search?q=split+javascript+string&oq=split+javascript+string&aqs=chrome.0.0l6.2648j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:49:00,https://www.w3schools.com/jsref/jsref_split.asp
2018-03-07 22:40:18,https://www.google.com/search?q=d3+rollup&oq=d3+rollup&aqs=chrome..69i57j35i39j0l4.2063j1j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:29:34,https://www.google.com/search?q=light+grey+hex&oq=light+grey+hex&aqs=chrome..69i57j0l5.1676j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:28:16,http://www.d3noob.org/2014/02/styles-in-d3js.html
2018-03-07 22:28:11,https://www.google.com/search?q=stroke+d3+style&oq=stroke+d3+style&aqs=chrome..69i57j0l3.3141j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:28:08,https://www.google.com/search?q=d3%20triangle&ved=0ahUKEwjw2dyc5NvZAhUirVkKHTdMA1gQsKwBCDMoAzAA&biw=1680&bih=883
2018-03-07 22:27:52,https://www.dashingd3js.com/svg-basic-shapes-and-d3js
2018-03-07 22:17:18,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=activity&document=hour&restrict_begin=2018-03-07&restrict_end=2018-03-07&format=json
2018-03-07 22:15:38,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=category&document=hour&restrict_begin=2018-03-07&restrict_end=2018-03-07&format=json
2018-03-07 22:15:13,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=category&interval=hour&restrict_begin=2018-03-07&restrict_end=2018-03-07&format=json
2018-03-07 22:15:04,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=overview&interval=hour&restrict_begin=2018-03-07&restrict_end=2018-03-07&format=json
2018-03-07 22:14:05,https://www.rescuetime.com/apidoc
2018-03-07 22:13:59,https://www.rescuetime.com/developers
2018-03-07 22:13:53,https://www.google.com/search?q=rescuetime+api&oq=rescuetime+api&aqs=chrome..69i57j69i60l2j69i61j35i39j0.3247j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:13:18,https://ifttt.com/applets/316178p-keep-track-of-your-selfies
2018-03-07 22:12:49,https://ifttt.com/rescuetime
2018-03-07 22:12:45,https://www.rescuetime.com/integrations/ifttt
2018-03-07 22:12:36,https://www.rescuetime.com/anapi/setup/overview
2018-03-07 22:12:08,https://www.rescuetime.com/browse/activities/by/hour/for/the/day/of/2018-03-07
2018-03-07 22:11:59,https://www.rescuetime.com/browse/overview/by/hour/for/the/day/of/2018-03-07
2018-03-07 22:11:51,https://www.rescuetime.com/browse/overview/by/rank
2018-03-07 22:11:47,https://www.rescuetime.com/
2018-03-07 22:10:44,https://www.google.com/search?q=every+time+i+turn+on+my+phone+api&oq=every+time+i+turn+on+my+phone+api+&aqs=chrome..69i57.11798j1j7&sourceid=chrome&ie=UTF-8
2018-03-07 22:10:27,https://ifttt.com/android_device
2018-03-07 22:06:04,https://l.facebook.com/l.php?u=http%3A%2F%2Fwww.technologyreview.com%2Fthe-download%2F610423%2Fgoogle-has-built-the-worlds-most-advanced-quantum-chip%2F&h=ATPOUpJd9jSY-NZaW-o3j3SqmUI0u1EdyhxggNEQGcLF0SRgTzdStXMSDs4By4Xw2ydT3ONzGhGldifIwY4neEjOQicLaRzK7h6frXFmZQKHGcbmPViSvqU-
2018-03-07 22:00:23,https://shcportal.nyu.edu/logout.aspx
2018-03-07 22:00:15,https://shcportal.nyu.edu/messages_message_detail.aspx
2018-03-07 21:59:49,https://mail.google.com/mail/u/1/#inbox/16201376893170ba
2018-03-07 21:58:31,https://www.google.com/url?hl=en&q=https://meet.meetup.com/wf/click?upn%3DpEEcc35imY7Cq0tG1vyTtyN1oZWM8u9SrQtfeTflFY11kQJHsqBfNPWeBDwdfEpbd-2FxSCrUApErytZf5JRoJPF-2BaX-2Bse1DYWfKfuHGfsg-2BVhbkrSVXWAOxlWU1VWC0C38u-2Bik59m1PNtk5ovX3R6qiX5PS3qHxvVSI2TTwysOOqjh04eRaKYmnApmh6N7oHDO7YDA5M8jMpxGBP5HlkKVw-3D-3D_tASACh0cJjTsvCmRX2V1vPLi5YOmenHY6VQ96XfKbPaQtwyzlFqpBEmILMBNQfCicxt-2F6mSkEixIDdI90ZIdI32z-2B21zBOhm7yQxyAWc-2FXjZR0X-2FV-2FVssmQgig70DPXXCNFsQ58fgbOvvk66btxJFzDMyTV3trnFxZMQgVK9QQdU8cLZvhoWtCSjSo2QHhOPOYY55HED2kK3QSxoKwjcvA-3D-3D&source=gmail&ust=1520564295199000&usg=AFQjCNGMPJN3nuL0ckIWrcBQLEn4fM0K_g
2018-03-07 21:58:31,https://meet.meetup.com/wf/click?upn=pEEcc35imY7Cq0tG1vyTtyN1oZWM8u9SrQtfeTflFY11kQJHsqBfNPWeBDwdfEpbd-2FxSCrUApErytZf5JRoJPF-2BaX-2Bse1DYWfKfuHGfsg-2BVhbkrSVXWAOxlWU1VWC0C38u-2Bik59m1PNtk5ovX3R6qiX5PS3qHxvVSI2TTwysOOqjh04eRaKYmnApmh6N7oHDO7YDA5M8jMpxGBP5HlkKVw-3D-3D_tASACh0cJjTsvCmRX2V1vPLi5YOmenHY6VQ96XfKbPaQtwyzlFqpBEmILMBNQfCicxt-2F6mSkEixIDdI90ZIdI32z-2B21zBOhm7yQxyAWc-2FXjZR0X-2FV-2FVssmQgig70DPXXCNFsQ58fgbOvvk66btxJFzDMyTV3trnFxZMQgVK9QQdU8cLZvhoWtCSjSo2QHhOPOYY55HED2kK3QSxoKwjcvA-3D-3D
2018-03-07 21:58:31,https://www.meetup.com/DataVisualization/events/248436752/?rv=ea1&_xtd=gatlbWFpbF9jbGlja9oAJDBkZDM3N2JiLTM5ZWItNDQ4NS05NzlmLWUxNjlhZWRlZmY0Mw
2018-03-07 21:58:17,https://mail.google.com/mail/u/0/#inbox/162033e9b95b3630
2018-03-07 21:55:39,https://docs.python.org/2/library/threading.html#lock-objects
2018-03-07 21:54:45,https://docs.python.org/2/library/threading.html
2018-03-07 21:54:40,https://www.google.com/search?q=python+thread+blocking&oq=python+thread+blocking&aqs=chrome..69i57j0l5.11822j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 21:35:33,https://stackoverflow.com/questions/12994442/appending-data-to-a-json-file-in-python
2018-03-07 21:34:57,https://www.google.com/search?q=append+to+json+array+file&oq=append+to+json+array+file&aqs=chrome..69i57j0l5.7000j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 21:34:14,https://github.com/Tencent/rapidjson/issues/720
2018-03-07 21:02:54,https://pymotw.com/2/threading/
2018-03-07 21:02:37,https://www.google.com/search?q=python+threads&oq=python+threads&aqs=chrome..69i57j0l5.2022j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 21:02:34,https://en.wikibooks.org/wiki/Python_Programming/Threading
2018-03-07 21:02:21,https://docs.python.org/3/library/threading.html
2018-03-07 20:56:47,https://docs.python.org/2/tutorial/inputoutput.html
2018-03-07 20:56:41,https://www.google.com/search?q=python+file+read&oq=python+file+read&aqs=chrome..69i57j0j69i60l2j0l2.2103j1j9&sourceid=chrome&ie=UTF-8
2018-03-07 20:54:29,https://www.google.com/search?q=python+if+parentheses&oq=python+if+paren&aqs=chrome.1.69i57j0l4.3159j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 20:53:54,https://stackoverflow.com/questions/4740419/parentheses-in-python-conditionals
2018-03-07 20:53:32,https://softwareengineering.stackexchange.com/questions/201175/should-i-use-parentheses-in-logical-statements-even-where-not-necessary
2018-03-07 19:11:45,"https://www.google.com/maps/dir/40.7349466,-74.0074147/The+Butcher's+Daughter,+581+Hudson+St,+New+York,+NY+10014/@40.7357205,-74.0088588,17z/data=!3m1!4b1!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c259952bded0a7:0xc2b337ce78326448!2m2!1d-74.006155!2d40.736362!3e2"
2018-03-07 19:11:45,"https://www.google.com/maps/dir/40.7349466,-74.0074147/The+Butcher's+Daughter,+581+Hudson+St,+New+York,+NY+10014/@40.7356583,-74.0088709,17z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c259952bded0a7:0xc2b337ce78326448!2m2!1d-74.006155!2d40.736362!3e2"
2018-03-07 19:11:44,"https://www.google.com/maps/dir/40.7349466,-74.0074147/The+Butcher's+Daughter,+581+Hudson+St,+New+York,+NY+10014/@40.7333923,-74.0208526,14z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c259952bded0a7:0xc2b337ce78326448!2m2!1d-74.006155!2d40.736362!3e2"
2018-03-07 19:11:43,"https://www.google.com/maps/dir/40.7349466,-74.0074147/The+Butcher's+Daughter,+581+Hudson+St,+New+York,+NY+10014/@40.7333923,-74.0208526,14z/data=!4m17!1m6!3m5!1s0x89c259952bded0a7:0xc2b337ce78326448!2sThe+Butcher's+Daughter!8m2!3d40.736362!4d-74.006155!4m9!1m1!4e1!1m5!1m1!1s0x89c259952bded0a7:0xc2b337ce78326448!2m2!1d-74.006155!2d40.736362!3e3"
2018-03-07 19:11:42,"https://www.google.com/maps/dir//The+Butcher's+Daughter,+581+Hudson+St,+New+York,+NY+10014/@40.7333923,-74.0208526,14z/data=!4m17!1m6!3m5!1s0x89c259952bded0a7:0xc2b337ce78326448!2sThe+Butcher's+Daughter!8m2!3d40.736362!4d-74.006155!4m9!1m1!4e2!1m5!1m1!1s0x89c259952bded0a7:0xc2b337ce78326448!2m2!1d-74.006155!2d40.736362!3e3"
2018-03-07 19:11:41,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7333923,-74.0208526,14z/data=!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:11:40,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7333923,-74.0208526,14z/data=!4m5!1m2!2m1!1sbutcher's+daughter!3m1!1s0x89c259952bded0a7:0xc2b337ce78326448"
2018-03-07 19:11:38,"https://www.google.com/maps/search/butcher's+daughter/@40.7333923,-74.0208526,14z/data=!3m1!4b1"
2018-03-07 19:11:37,"https://www.google.com/maps/search/butcher's+daughter/@40.7333524,-74.0080584,15.88z"
2018-03-07 19:11:35,"https://www.google.com/maps/@40.7333524,-74.0080584,15.88z"
2018-03-07 19:02:40,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7363559,-74.0058803,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipMeZAqxEPexWvZ1WHwImQdknd-0W4jWPm3kSiIM!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipMeZAqxEPexWvZ1WHwImQdknd-0W4jWPm3kSiIM%3Dw203-h152-k-no!7i4032!8i3024!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:21,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7363559,-74.0058803,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipO62E9A_LA_NFNZ_VAMVGEUL40qH6heOokynDlL!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipO62E9A_LA_NFNZ_VAMVGEUL40qH6heOokynDlL%3Dw203-h360-k-no!7i2988!8i5312!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:18,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.736362,-74.0061549,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipP50Y7peQVPvDSX7n7DVP7bKIX3hPVZujRlAe68!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipP50Y7peQVPvDSX7n7DVP7bKIX3hPVZujRlAe68%3Dw203-h270-k-no!7i3024!8i4032!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:10,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.736362,-74.0061549,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipNweECjYDFwdhhtmBnDSk7w7msOvlo3H_hwTs8b!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNweECjYDFwdhhtmBnDSk7w7msOvlo3H_hwTs8b%3Dw203-h114-k-no!7i5312!8i2988!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:07,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.736362,-74.0061549,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipNEq07XJ_2Zg_0LIbPaMFl8iY6niFDUIk6WMwZB!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNEq07XJ_2Zg_0LIbPaMFl8iY6niFDUIk6WMwZB%3Dw203-h152-k-no!7i4032!8i3024!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:05,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.736362,-74.0061549,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipOZVogDlrfk5AQu0K02fJ94S3yurcTlaqt0fAyl!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipOZVogDlrfk5AQu0K02fJ94S3yurcTlaqt0fAyl%3Dw203-h270-k-no!7i3036!8i4048!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:02:00,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7363559,-74.0058803,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipMcs_yycmy0xeV3CaDNuYbRZuuyFpf6-ICC0VqK!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipMcs_yycmy0xeV3CaDNuYbRZuuyFpf6-ICC0VqK%3Dw159-h106-k-no!7i4210!8i2798!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:01:58,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7346344,-74.0387569,55615a,13.1y/data=!3m8!1e2!3m6!1sAF1QipMcs_yycmy0xeV3CaDNuYbRZuuyFpf6-ICC0VqK!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipMcs_yycmy0xeV3CaDNuYbRZuuyFpf6-ICC0VqK%3Dw159-h106-k-no!7i4210!8i2798!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:01:55,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7346344,-74.0387569,13z/data=!4m8!1m2!2m1!1sbutcher's+daughter!3m4!1s0x89c259952bded0a7:0xc2b337ce78326448!8m2!3d40.736362!4d-74.006155"
2018-03-07 19:01:54,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7346344,-74.0387569,13z/data=!4m5!1m2!2m1!1sbutcher's+daughter!3m1!1s0x89c259952bded0a7:0xc2b337ce78326448"
2018-03-07 19:01:54,"https://www.google.com/maps/search/butcher's+daughter/@40.7345587,-74.012385,15z"
2018-03-07 19:01:18,https://www.thebutchersdaughter.com/bdgallery/
2018-03-07 19:01:13,https://www.thebutchersdaughter.com/
2018-03-07 18:59:52,https://www.thebutchersdaughter.com/menus/
2018-03-07 18:59:48,http://thebutchersdaughter.com/
2018-03-07 18:59:43,"https://www.google.com/maps/search/butcher's+daughter/@40.7346344,-74.0387569,13z/data=!3m1!4b1"
2018-03-07 18:58:22,https://irp-cdn.multiscreensite.com/55f38000/files/uploaded/BusStopNYC.pdf
2018-03-07 18:58:21,https://www.google.com/url?q=https://irp-cdn.multiscreensite.com/55f38000/files/uploaded/BusStopNYC.pdf&sa=D&source=hangouts&ust=1520552860720000&usg=AFQjCNEDIOLFqulpuup5ek18GVYpH7pG7A
2018-03-07 18:54:05,https://mail.google.com/mail/u/0/#inbox/16201c5e6784d682
2018-03-07 18:53:31,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,17z/data=!4m12!1m6!3m5!1s0x89c2599530d9db7d:0x9faa0b253db40a31!2sBus+Stop+Cafe!8m2!3d40.7370233!4d-74.0060608!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:28,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,117.4y,90t/data=!3m8!1e2!3m6!1shttps:%2F%2Fb.zmtcdn.com%2Fdata%2Fmenus%2F517%2F16761517%2F9cbf3f7dad5f242b2a3025d812d405fb.jpg!2e7!3e27!6s%2F%2Flh4.googleusercontent.com%2Fproxy%2FPD2YfDo8Baq_6w4Uyyj7Nd0n5xO1Hw4QSIW7BqX54iQJsDc-GwinQWhoET4xc0aLpbYJ0yjjDeQ1PL4DVYYY4TnYZZ4fCe79Diwn39ko9wvKjFJ9dUVT4DTvLkryOwRwkTQKIeYQitLK9cjK8NF2RdEGDTw8Hg4%3Dw203-h188-k-no!7i650!8i603!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:26,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,96.7y,90t/data=!3m8!1e2!3m6!1shttps:%2F%2Fb.zmtcdn.com%2Fdata%2Fmenus%2F517%2F16761517%2F9cbf3f7dad5f242b2a3025d812d405fb.jpg!2e7!3e27!6s%2F%2Flh4.googleusercontent.com%2Fproxy%2FPD2YfDo8Baq_6w4Uyyj7Nd0n5xO1Hw4QSIW7BqX54iQJsDc-GwinQWhoET4xc0aLpbYJ0yjjDeQ1PL4DVYYY4TnYZZ4fCe79Diwn39ko9wvKjFJ9dUVT4DTvLkryOwRwkTQKIeYQitLK9cjK8NF2RdEGDTw8Hg4%3Dw203-h188-k-no!7i650!8i603!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:26,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,75y,90t/data=!3m8!1e2!3m6!1shttps:%2F%2Fb.zmtcdn.com%2Fdata%2Fmenus%2F517%2F16761517%2F9cbf3f7dad5f242b2a3025d812d405fb.jpg!2e7!3e27!6s%2F%2Flh4.googleusercontent.com%2Fproxy%2FPD2YfDo8Baq_6w4Uyyj7Nd0n5xO1Hw4QSIW7BqX54iQJsDc-GwinQWhoET4xc0aLpbYJ0yjjDeQ1PL4DVYYY4TnYZZ4fCe79Diwn39ko9wvKjFJ9dUVT4DTvLkryOwRwkTQKIeYQitLK9cjK8NF2RdEGDTw8Hg4%3Dw203-h188-k-no!7i650!8i603!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:23,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipM7yp1vTWXhJAIVXB_hCNs93_LmIHopSLc0lptu!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipM7yp1vTWXhJAIVXB_hCNs93_LmIHopSLc0lptu%3Dw203-h270-k-no!7i2448!8i3264!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:22,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7370032,-74.0059424,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipOLxKkRjIs0YoRur6g4cteA0mNRNjRTcuF-GHnR!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipOLxKkRjIs0YoRur6g4cteA0mNRNjRTcuF-GHnR%3Dw203-h150-k-no!7i4096!8i3040!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:18,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipP5jNidGnwQpHrHEWYwODkDkdGiBsnwesrzsxWG!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipP5jNidGnwQpHrHEWYwODkDkdGiBsnwesrzsxWG%3Dw203-h152-k-no!7i4032!8i3024!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:15,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371046,-74.005752,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipNlMKz4S41hisfEOKPKGzB85tR7eykvvMerako!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNlMKz4S41hisfEOKPKGzB85tR7eykvvMerako%3Dw159-h106-k-no!7i1500!8i1000!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:12,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7370261,-74.0075875,3476a,13.1y/data=!3m8!1e2!3m6!1sAF1QipNlMKz4S41hisfEOKPKGzB85tR7eykvvMerako!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipNlMKz4S41hisfEOKPKGzB85tR7eykvvMerako%3Dw159-h106-k-no!7i1500!8i1000!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:07,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7370261,-74.0075875,17z/data=!3m1!4b1!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:06,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7378794,-74.0074864,17.52z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:06,"https://www.google.com/maps/place/Bus+Stop+Cafe,+Hudson+Street,+New+York,+NY/@40.7378794,-74.0074864,17.52z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370233!4d-74.0060608"
2018-03-07 18:53:00,"https://www.google.com/maps/@40.7378794,-74.0074864,17.52z"
2018-03-07 18:52:59,"https://www.google.com/maps/place/Malaparte/@40.7378794,-74.0074864,17.52z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:58,"https://www.google.com/maps/place/Malaparte/@40.738029,-74.0071555,18.25z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:56,"https://www.google.com/maps/place/Malaparte/@40.7378845,-74.0074751,17.54z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:54,"https://www.google.com/maps/place/Malaparte/@40.7376338,-74.0068867,18.22z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:45,"https://www.google.com/maps/place/Malaparte/@40.7379499,-74.0076284,17.41z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:44,"https://www.google.com/maps/place/Malaparte/@40.7382396,-74.0078398,16.92z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:43,"https://www.google.com/maps/place/Malaparte/@40.7385911,-74.0086883,16.92z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:52:02,http://www.malapartenyc.com/
2018-03-07 18:52:02,http://malapartenyc.com/
2018-03-07 18:51:55,"https://www.google.com/maps/place/Malaparte/@40.7383218,-74.008368,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:51:54,"https://www.google.com/maps/place/Malaparte+Thin-crust+pizza+%26+housemade+pasta/@40.7383218,-74.008368,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:51:40,http://brunettipizza.com/west-village-dinner/
2018-03-07 18:51:31,http://www.brunettipizza.com/
2018-03-07 18:51:31,http://brunettipizza.com/
2018-03-07 18:51:25,"https://www.google.com/maps/place/Brunetti/@40.7383218,-74.008368,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:51:25,"https://www.google.com/maps/place/Brunetti+Rustic+pizzeria+with+Neapolitan+pies/@40.7383218,-74.008368,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:51:24,"https://www.google.com/maps/place/Sushi+West/@40.7383218,-74.008368,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:51:17,"https://www.google.com/maps/place/Sushi+West/@40.7376277,-74.0082847,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:51:12,"https://www.google.com/maps/place/Sushi+West/@40.737789,-74.008516,17.21z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:51:07,"https://www.google.com/maps/place/Sushi+West/@40.7378673,-74.0072993,17.8z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:51:02,"https://www.google.com/maps/place/Sushi+West/@40.7371335,-74.0066564,18.48z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:51:00,"https://www.google.com/maps/place/Sushi+West/@40.7377386,-74.0071804,17.48z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:50:46,http://www.sushiwestnyc.com/menu.aspx
2018-03-07 18:50:44,http://www.sushiwestnyc.com/
2018-03-07 18:50:38,"https://www.google.com/maps/place/Sushi+West/@40.7380553,-74.0077018,17.19z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:50:38,"https://www.google.com/maps/place/Sushi+West+Small,+no-frills+Japanese+restaurant/@40.7380553,-74.0077018,17.19z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x727a972b54287a12!8m2!3d40.7353833!4d-74.0058589"
2018-03-07 18:50:34,"https://www.google.com/maps/place/Injera/@40.7380553,-74.0077018,17.19z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xe3e05f752a5e6450!8m2!3d40.7370742!4d-74.0051682"
2018-03-07 18:50:33,"https://www.google.com/maps/place/Injera/@40.7381484,-74.007179,17.91z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xe3e05f752a5e6450!8m2!3d40.7370742!4d-74.0051682"
2018-03-07 18:50:31,"https://www.google.com/maps/place/Injera/@40.738021,-74.0078941,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xe3e05f752a5e6450!8m2!3d40.7370742!4d-74.0051682"
2018-03-07 18:50:30,"https://www.google.com/maps/place/Injera/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xe3e05f752a5e6450!8m2!3d40.7370742!4d-74.0051682"
2018-03-07 18:49:25,http://www.injeranyc.com/meals/daily-menu/
2018-03-07 18:49:21,http://www.injeranyc.com/
2018-03-07 18:49:16,"https://www.google.com/maps/place/Injera+Cozy+Ethiopian+spot+with+a+bar+%26+brunch/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0xe3e05f752a5e6450!8m2!3d40.7370742!4d-74.0051682"
2018-03-07 18:49:08,"https://www.google.com/maps/place/Bar+Bolonat/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x770a388fdf84bf17!8m2!3d40.737657!4d-74.0058562"
2018-03-07 18:49:08,"https://www.google.com/maps/place/Bar+Bolonat+Modern+Israeli+fare+%26+cocktails/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x770a388fdf84bf17!8m2!3d40.737657!4d-74.0058562"
2018-03-07 18:49:01,http://www.tortillaflats.nyc/
2018-03-07 18:48:58,"https://www.google.com/maps/place/Tortilla+Flats/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:48:57,"https://www.google.com/maps/place/Tortilla+Flats+Kitschy+Mexican+eatery/@40.738273,-74.0096429,17z/data=!4m11!1m5!2m4!1sRestaurants!5m2!1e0!1e1!3m4!1s0x0:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:48:54,"https://www.google.com/maps/search/Restaurants/@40.738273,-74.0096429,17z/data=!4m4!2m3!5m2!1e0!1e1"
2018-03-07 18:48:52,"https://www.google.com/maps/search/Restaurants/@40.738273,-74.0096429,17z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:48:51,"https://www.google.com/maps/search/Restaurants/@40.7382649,-74.0095142,17z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:48:48,"https://www.google.com/maps/search/Restaurants/@40.7379966,-74.0078619,17z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:48:46,"https://www.google.com/maps/search/Restaurants/@40.7379966,-74.0078619,17z/data=!3m1!4b1"
2018-03-07 18:48:45,"https://www.google.com/maps/search/Restaurants/@40.7379901,-74.0078619,17.31z"
2018-03-07 18:48:38,"https://www.google.com/maps/place/Malaparte/@40.7379901,-74.0078619,17.31z/data=!4m5!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:48:36,"https://www.google.com/maps/place/Malaparte/@40.7377935,-74.0079484,17.31z/data=!4m5!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:48:35,"https://www.google.com/maps/place/Barbuto/@40.7377935,-74.0079484,17.31z/data=!4m5!3m4!1s0x89c259ea95a02255:0x28641db273044a63!8m2!3d40.7377159!4d-74.0080529"
2018-03-07 18:48:33,"https://www.google.com/maps/place/Barbuto/@40.7382064,-74.0074728,17.31z/data=!4m5!3m4!1s0x89c259ea95a02255:0x28641db273044a63!8m2!3d40.7377159!4d-74.0080529"
2018-03-07 18:48:31,"https://www.google.com/maps/place/M%C3%B3le/@40.7382064,-74.0074728,17.31z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:31,"https://www.google.com/maps/place/M%C3%B3le/@40.738095,-74.0076976,17.31z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:30,"https://www.google.com/maps/place/M%C3%B3le/@40.7380787,-74.0077779,17.24z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:27,"https://www.google.com/maps/place/M%C3%B3le/@40.7379506,-74.00733,17.82z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:26,"https://www.google.com/maps/place/M%C3%B3le/@40.7380792,-74.0068753,17.82z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:24,"https://www.google.com/maps/place/M%C3%B3le/@40.7379873,-74.006457,17.82z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:23,"https://www.google.com/maps/place/M%C3%B3le/@40.7379898,-74.0065664,18.07z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:21,"https://www.google.com/maps/place/M%C3%B3le/@40.7379931,-74.0067096,18.46z/data=!4m5!3m4!1s0x89c259955ea181c9:0x9070d0ad2af0b0c3!8m2!3d40.7382407!4d-74.0054137"
2018-03-07 18:48:19,"https://www.google.com/maps/place/Malaparte/@40.7379931,-74.0067096,18.46z/data=!4m5!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:48:18,"https://www.google.com/maps/place/Malaparte/@40.737882,-74.0073921,17.69z/data=!4m5!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:47:53,"https://www.google.com/maps/place/Malaparte/@40.7378467,-74.0079303,17.69z/data=!4m5!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:47:46,"https://www.google.com/maps/place/Barbuto/@40.7378467,-74.0079303,17.69z/data=!4m5!3m4!1s0x89c259ea95a02255:0x28641db273044a63!8m2!3d40.7377159!4d-74.0080529"
2018-03-07 18:47:44,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7378467,-74.0079303,17.69z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:47:03,https://www.busstopcafe-nyc.com/services
2018-03-07 18:47:00,https://www.busstopcafe-nyc.com/
2018-03-07 18:46:57,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7379607,-74.0076641,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:46:55,"https://www.google.com/maps/place/Kava+Cafe/@40.7379607,-74.0076641,18z/data=!4m5!3m4!1s0x89af227d16113d93:0x646b64e1ee53ee9c!8m2!3d40.7389739!4d-74.0078397"
2018-03-07 18:46:53,"https://www.google.com/maps/place/Tortilla+Flats/@40.7379607,-74.0076641,18z/data=!4m5!3m4!1s0x89c259eac1d82add:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:46:07,http://www.tortillaflats.nyc/menu1.html
2018-03-07 18:45:58,"https://www.google.com/maps/place/Tortilla+Flats/@40.7376477,-74.0079215,18z/data=!4m5!3m4!1s0x89c259eac1d82add:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:45:57,"https://www.google.com/maps/place/Malaparte/@40.7376477,-74.0079215,18z/data=!4m5!3m4!1s0x89c259eae7a6555f:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:45:56,"https://www.google.com/maps/place/Malaparte/@40.7373998,-74.0076909,18z/data=!4m5!3m4!1s0x89c259eae7a6555f:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:45:54,"https://www.google.com/maps/place/Malaparte/@40.7363998,-74.0076372,18z/data=!4m5!3m4!1s0x89c259eae7a6555f:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:45:51,"https://www.google.com/maps/place/Automatic+Slims/@40.7363998,-74.0076372,18z/data=!4m5!3m4!1s0x89c259eb1f03749b:0xfec6594fc38c263d!8m2!3d40.7362826!4d-74.008171"
2018-03-07 18:45:50,"https://www.google.com/maps/place/THE+ELK/@40.7363998,-74.0076372,18z/data=!4m5!3m4!1s0x0:0xa9e2f821d593ec46!8m2!3d40.734147!4d-74.0074981"
2018-03-07 18:45:49,"https://www.google.com/maps/place/THE+ELK/@40.7362494,-74.007428,18z/data=!4m5!3m4!1s0x0:0xa9e2f821d593ec46!8m2!3d40.734147!4d-74.0074981"
2018-03-07 18:45:48,"https://www.google.com/maps/place/THE+ELK/@40.7355137,-74.0076104,18z/data=!4m5!3m4!1s0x0:0xa9e2f821d593ec46!8m2!3d40.734147!4d-74.0074981"
2018-03-07 18:45:46,"https://www.google.com/maps/place/THE+ELK/@40.7347048,-74.0073261,18z/data=!4m5!3m4!1s0x0:0xa9e2f821d593ec46!8m2!3d40.734147!4d-74.0074981"
2018-03-07 18:45:46,"https://www.google.com/maps/place//@40.7347048,-74.0073261,18z/data=!4m5!3m4!1s0x0:0xa9e2f821d593ec46!8m2!3d40.734147!4d-74.0074981"
2018-03-07 18:45:45,"https://www.google.com/maps/place/Cowgirl/@40.7347048,-74.0073261,18z/data=!4m5!3m4!1s0x89c259eb54e7e72d:0x45f023a15cfa6837!8m2!3d40.733803!4d-74.0064879"
2018-03-07 18:45:39,"https://www.google.com/maps/place/Cowgirl/@40.7347942,-74.0069238,18z/data=!4m5!3m4!1s0x89c259eb54e7e72d:0x45f023a15cfa6837!8m2!3d40.733803!4d-74.0064879"
2018-03-07 18:45:37,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7347942,-74.0069238,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:34,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7353633,-74.0067467,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:29,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7361153,-74.0074334,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:28,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7365949,-74.0078518,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:24,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7372209,-74.0067038,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:22,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7364974,-74.0066502,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:17,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7361234,-74.0065965,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:15,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7367006,-74.0068272,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:14,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371396,-74.0072242,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:11,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7371843,-74.0079484,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:09,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7365015,-74.0077713,18z/data=!4m5!3m4!1s0x89c2599530d9db7d:0x9faa0b253db40a31!8m2!3d40.7370234!4d-74.0060607"
2018-03-07 18:45:08,"https://www.google.com/maps/place/Left+Bank/@40.7365015,-74.0077713,18z/data=!4m6!3m5!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!4b1!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:45:04,"https://www.google.com/maps/place/Hudson+Hound/@40.7365015,-74.0077713,18z/data=!4m12!1m6!3m5!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!2sLeft+Bank!8m2!3d40.73515!4d-74.0067814!3m4!1s0x89c25994d6010861:0xa097c41320f94685!8m2!3d40.7361454!4d-74.0061848"
2018-03-07 18:45:02,"https://www.google.com/maps/place/Left+Bank/@40.7365015,-74.0077713,18z/data=!4m5!3m4!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:45:01,"https://www.google.com/maps/place/Left+Bank/@40.7361275,-74.0076909,18z/data=!4m5!3m4!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:44:24,https://www.leftbanknewyork.com/menu/
2018-03-07 18:44:21,http://leftbanknewyork.com/
2018-03-07 18:44:21,http://www.leftbanknewyork.com/
2018-03-07 18:44:21,https://www.leftbanknewyork.com/
2018-03-07 18:44:18,"https://www.google.com/maps/place/Left+Bank/@40.735152,-74.0078357,18z/data=!3m1!4b1!4m5!3m4!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:44:17,"https://www.google.com/maps/place/Left+Bank/@40.735893,-74.0069043,18.05z/data=!4m5!3m4!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:44:16,"https://www.google.com/maps/place/Left+Bank,+Perry+Street,+New+York,+NY/@40.735893,-74.0069043,18.05z/data=!4m5!3m4!1s0x89c259bd431aa4d9:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067814"
2018-03-07 18:44:11,"https://www.google.com/maps/@40.735893,-74.0069043,18.05z"
2018-03-07 18:44:10,"https://www.google.com/maps/@40.7356295,-74.0068026,19.15z"
2018-03-07 18:44:06,"https://www.google.com/maps/@40.7358956,-74.0069181,17.95z"
2018-03-07 18:44:04,"https://www.google.com/maps/@40.7378135,-74.0075339,16.56z"
2018-03-07 18:44:03,"https://www.google.com/maps/search/chinese+delivery/@40.7378135,-74.0075339,16.56z"
2018-03-07 18:44:01,"https://www.google.com/maps/search/chinese+delivery/@40.7375702,-74.0077091,16.56z"
2018-03-07 18:43:59,"https://www.google.com/maps/search/chinese+delivery/@40.7366854,-74.0071544,16.56z"
2018-03-07 18:43:54,"https://www.google.com/maps/search/chinese+delivery/@40.7377905,-74.0149988,15z/data=!3m1!4b1"
2018-03-07 18:43:53,"https://www.google.com/maps/search/chinese+delivery/@40.7377705,-74.0084327,17z"
2018-03-07 18:43:44,"https://www.google.com/maps/place/Brunetti/@40.7377705,-74.0084327,17z/data=!4m10!1m4!2m3!1sfood!5m1!1e0!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:43:41,"https://www.google.com/maps/place/Brunetti/@40.7377705,-74.0079284,17z/data=!4m10!1m4!2m3!1sfood!5m1!1e0!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:43:38,"https://www.google.com/maps/place/Brunetti/@40.7377217,-74.0077997,17z/data=!4m10!1m4!2m3!1sfood!5m1!1e0!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:42:47,"https://www.google.com/maps/place/Brunetti/@40.7380144,-74.0082932,17z/data=!4m10!1m4!2m3!1sfood!5m1!1e0!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:42:46,"https://www.google.com/maps/place/Brunetti+Rustic+pizzeria+with+Neapolitan+pies/@40.7380144,-74.0082932,17z/data=!4m10!1m4!2m3!1sfood!5m1!1e0!3m4!1s0x0:0xa2d6e0f3ca6e63cb!8m2!3d40.7382682!4d-74.0053768"
2018-03-07 18:42:37,"https://www.google.com/maps/search/food/@40.7380144,-74.0082932,17z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:42:36,"https://www.google.com/maps/search/food/@40.7380063,-74.0082932,17z"
2018-03-07 18:42:32,"https://www.google.com/maps/place/Cafe+Cluny/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x9a0ddffeb488f4ea!8m2!3d40.7373953!4d-74.0040021"
2018-03-07 18:42:32,"https://www.google.com/maps/place/Cafe+Cluny+Bustling+local+bistro/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x9a0ddffeb488f4ea!8m2!3d40.7373953!4d-74.0040021"
2018-03-07 18:41:24,"https://www.google.com/maps/place/Frankies+570+Spuntino/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc9dfaa8e68d7d3d2!8m2!3d40.7356769!4d-74.0057731"
2018-03-07 18:41:24,"https://www.google.com/maps/place/Frankies+570+Spuntino+Cozy+spot+for+Tuscan-style+cuisine/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc9dfaa8e68d7d3d2!8m2!3d40.7356769!4d-74.0057731"
2018-03-07 18:41:22,"https://www.google.com/maps/place/The+Spotted+Pig/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x12c76f5dfe3346f!8m2!3d40.7356068!4d-74.0066709"
2018-03-07 18:41:21,"https://www.google.com/maps/place//@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x12c76f5dfe3346f!8m2!3d40.7356068!4d-74.0066709"
2018-03-07 18:41:15,"https://www.google.com/maps/place/Bubby's/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xb828f4247178ece3!8m2!3d40.7395409!4d-74.0078089"
2018-03-07 18:41:15,"https://www.google.com/maps/place/Bubby's+Diner+classics+served+all+day/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xb828f4247178ece3!8m2!3d40.7395409!4d-74.0078089"
2018-03-07 18:41:06,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc2b337ce78326448!8m2!3d40.7363618!4d-74.0061553"
2018-03-07 18:41:06,"https://www.google.com/maps/place/The+Butcher's+Daughter+Cheerful+outfit+for+veggie+eats+%26+juices/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc2b337ce78326448!8m2!3d40.7363618!4d-74.0061553"
2018-03-07 18:41:00,"https://www.google.com/maps/place/M%C3%A9m%C3%A9+Mediterranean/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xab8ffdc023b48ed7!8m2!3d40.7364111!4d-74.0061613"
2018-03-07 18:41:00,"https://www.google.com/maps/place/M%C3%A9m%C3%A9+Mediterranean+Small+plates+%26+drinks+in+cozy+digs/@40.7380063,-74.0082932,17z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xab8ffdc023b48ed7!8m2!3d40.7364111!4d-74.0061613"
2018-03-07 18:40:46,"https://www.google.com/maps/search/food/@40.7376893,-74.0076602,17z"
2018-03-07 18:40:45,"https://www.google.com/maps/search/food/@40.7375795,-74.0098596,16z"
2018-03-07 18:40:42,"https://www.google.com/maps/search/food/@40.7377014,-74.0144945,15z/data=!3m1!4b1"
2018-03-07 18:40:41,"https://www.google.com/maps/search/food/@40.7376815,-74.0079284,17z"
2018-03-07 18:40:13,"https://www.google.com/maps/place/Malaparte/@40.7376815,-74.0079284,17z/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:40:00,"https://www.google.com/maps/place/Malaparte/@40.7368848,-74.008261,17z/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:59,"https://www.google.com/maps/place/Malaparte/@40.7368848,-74.008261,3a,75y,90t/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:57,"https://www.google.com/maps/place/Malaparte/@40.7368848,-74.008261,3a,75y,90t/data=!3m8!1e2!3m6!1sAF1QipMfa_Bo2EFR5Edtptwq2JXb9oqqAk4FqMDzQ43O!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipMfa_Bo2EFR5Edtptwq2JXb9oqqAk4FqMDzQ43O%3Dw159-h106-k-no!7i2048!8i1360!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:53,"https://www.google.com/maps/place/Malaparte/@40.7382148,-74.0092507,3476a,13.1y/data=!3m8!1e2!3m6!1sAF1QipMfa_Bo2EFR5Edtptwq2JXb9oqqAk4FqMDzQ43O!2e10!3e12!6shttps:%2F%2Flh5.googleusercontent.com%2Fp%2FAF1QipMfa_Bo2EFR5Edtptwq2JXb9oqqAk4FqMDzQ43O%3Dw159-h106-k-no!7i2048!8i1360!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:44,"https://www.google.com/maps/place/Malaparte/@40.7382148,-74.0092507,17z/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:42,"https://www.google.com/maps/place/Hudson+Hound/@40.7382148,-74.0092507,17z/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0xa097c41320f94685!8m2!3d40.7361459!4d-74.0061848"
2018-03-07 18:39:42,"https://www.google.com/maps/place/Hudson+Hound+Stepped-up+Irish+pub/@40.7382148,-74.0092507,17z/data=!4m12!1m6!2m5!1srestaurant!5m3!1e0!1e1!4e3!3m4!1s0x0:0xa097c41320f94685!8m2!3d40.7361459!4d-74.0061848"
2018-03-07 18:39:39,"https://www.google.com/maps/search/restaurant/@40.7382148,-74.0092507,17z/data=!4m5!2m4!5m3!1e0!1e1!4e3"
2018-03-07 18:39:36,"https://www.google.com/maps/search/restaurant/@40.7382148,-74.0092507,17z/data=!3m1!4b1!4m4!2m3!5m2!1e0!1e1"
2018-03-07 18:39:35,"https://www.google.com/maps/search/restaurant/@40.7382067,-74.0092507,17z/data=!4m4!2m3!5m2!1e0!1e1"
2018-03-07 18:39:24,"https://www.google.com/maps/place/Bus+Stop+Cafe/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x9faa0b253db40a31!8m2!3d40.7370229!4d-74.0060607"
2018-03-07 18:39:24,"https://www.google.com/maps/place/Bus+Stop+Cafe+Petite+corner+diner+with+outdoor+seating/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x9faa0b253db40a31!8m2!3d40.7370229!4d-74.0060607"
2018-03-07 18:39:21,"https://www.google.com/maps/place/Malaparte/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:21,"https://www.google.com/maps/place/Malaparte+Thin-crust+pizza+%26+housemade+pasta/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x482f47e51ae557c8!8m2!3d40.7368689!4d-74.0080382"
2018-03-07 18:39:15,"https://www.google.com/maps/place/Tortilla+Flats/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:39:14,"https://www.google.com/maps/place/Tortilla+Flats+Kitschy+Mexican+eatery/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x21081115e03f381b!8m2!3d40.7374461!4d-74.0080389"
2018-03-07 18:39:12,"https://www.google.com/maps/place/M%C3%B3le/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x9070d0ad2af0b0c3!8m2!3d40.7382412!4d-74.0054143"
2018-03-07 18:39:11,"https://www.google.com/maps/place/M%C3%B3le+Mexican+munchies+%26+margarita+joint/@40.7382067,-74.0092507,17z/data=!4m11!1m5!2m4!1srestaurant!5m2!1e0!1e1!3m4!1s0x0:0x9070d0ad2af0b0c3!8m2!3d40.7382412!4d-74.0054143"
2018-03-07 18:39:06,"https://www.google.com/maps/search/restaurant/@40.7382067,-74.0092507,17z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:39:05,"https://www.google.com/maps/search/restaurant/@40.7382067,-74.0092507,17z"
2018-03-07 18:38:56,"https://www.google.com/maps/place/Philip+Marie+Restaurant/@40.7382067,-74.0092507,17z/data=!4m8!1m2!2m1!1srestaurant!3m4!1s0x0:0x974097083b890241!8m2!3d40.7359198!4d-74.0062317"
2018-03-07 18:38:56,"https://www.google.com/maps/place/Philip+Marie+Restaurant+New+American+eats+in+low-key+environs/@40.7382067,-74.0092507,17z/data=!4m8!1m2!2m1!1srestaurant!3m4!1s0x0:0x974097083b890241!8m2!3d40.7359198!4d-74.0062317"
2018-03-07 18:38:54,"https://www.google.com/maps/place/Left+Bank/@40.7382067,-74.0092507,17z/data=!4m8!1m2!2m1!1srestaurant!3m4!1s0x0:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067809"
2018-03-07 18:38:53,"https://www.google.com/maps/place/Left+Bank+Farm-sourced+New+American+bistro/@40.7382067,-74.0092507,17z/data=!4m8!1m2!2m1!1srestaurant!3m4!1s0x0:0x9ce3b70d11885019!8m2!3d40.73515!4d-74.0067809"
2018-03-07 18:38:50,"https://www.google.com/maps/search/restaurant/@40.7382067,-74.0092507,17z/data=!3m1!4b1"
2018-03-07 18:38:49,"https://www.google.com/maps/search/restaurant/@40.7381991,-74.0092507,17.08z"
2018-03-07 18:38:33,"https://www.google.com/maps/search/food/@40.7381991,-74.0092507,17.08z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:38:27,"https://www.google.com/maps/search/food/@40.7380378,-74.009717,17.08z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:37:56,"https://www.google.com/maps/search/food/@40.7381299,-74.007862,17.08z/data=!4m3!2m2!5m1!1e0"
2018-03-07 18:37:54,"https://www.google.com/maps/search/food/@40.7381299,-74.007862,17.08z"
2018-03-07 18:37:53,"https://www.google.com/maps/search/food/@40.7381173,-74.0077123,17.17z"
2018-03-07 18:37:52,"https://www.google.com/maps/search/food/@40.7381101,-74.0063812,17.17z"
2018-03-07 18:37:49,"https://www.google.com/maps/search/food/@40.738341,-74.0074686,16z/data=!3m1!4b1"
2018-03-07 18:37:48,"https://www.google.com/maps/search/food/@40.7383311,-74.0074686,16.71z"
2018-03-07 18:37:44,"https://www.google.com/maps/place/The+Butcher's+Daughter/@40.7383311,-74.0074686,16.71z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc2b337ce78326448!8m2!3d40.7363623!4d-74.0061553"
2018-03-07 18:37:44,"https://www.google.com/maps/place/The+Butcher's+Daughter+Cheerful+outfit+for+veggie+eats+%26+juices/@40.7383311,-74.0074686,16.71z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0xc2b337ce78326448!8m2!3d40.7363623!4d-74.0061553"
2018-03-07 18:37:42,"https://www.google.com/maps/place/Piccolo+Angolo/@40.7383311,-74.0074686,16.71z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x44ebf718df9c65bf!8m2!3d40.7380451!4d-74.005812"
2018-03-07 18:37:41,"https://www.google.com/maps/place/Piccolo+Angolo+Cozy+spot+for+classic+Italian+fare/@40.7383311,-74.0074686,16.71z/data=!4m8!1m2!2m1!1sfood!3m4!1s0x0:0x44ebf718df9c65bf!8m2!3d40.7380451!4d-74.005812"
2018-03-07 18:37:34,"https://www.google.com/maps/search/food/@40.7387096,-74.0056939,16.71z"
2018-03-07 18:37:33,"https://www.google.com/maps/search/food/@40.7385975,-74.0058936,16.46z"
2018-03-07 18:37:32,"https://www.google.com/maps/search/food/@40.7381498,-74.0043385,16.46z"
2018-03-07 18:37:30,"https://www.google.com/maps/search/food/@40.7377134,-74.0042144,16z/data=!3m1!4b1"
2018-03-07 18:37:29,"https://www.google.com/maps/search/food/@40.7377009,-74.0042144,16.37z"
2018-03-07 18:35:22,"https://www.google.com/maps/@40.7377009,-74.0042144,16.37z"
2018-03-07 18:35:20,"https://www.google.com/maps/@40.7366435,-74.0077696,16.37z"
2018-03-07 18:35:19,"https://www.google.com/maps/@40.7357246,-74.0083344,16.37z"
2018-03-07 18:34:40,https://mail.google.com/mail/u/1/#inbox/16202ce942188cec
2018-03-07 18:33:37,https://calendar.google.com/calendar/r/week/2018/3/14
2018-03-07 18:32:59,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j0j35i39j0l3.764j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 18:26:11,https://www.google.com/search?ei=DnWgWuumHsLi_Ab_84ToAg&q=python+thread&oq=python+thread&gs_l=psy-ab.3..0i71k1l8.1109.1109.0.1536.1.1.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..1.0.0....0.J9gQgANlt0U
2018-03-07 18:26:06,https://www.google.com/search?q=python+threading&oq=python+thread&aqs=chrome.0.0l2j69i57j69i60j0l2.1238j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 18:23:36,https://stackoverflow.com/q/510348
2018-03-07 18:23:36,https://stackoverflow.com/questions/510348/how-can-i-make-a-time-delay-in-python
2018-03-07 18:23:27,https://www.google.com/search?q=can+you+put+a+python+function+to+sleep&oq=can+you+put+a+python+function+to+sleep&aqs=chrome..69i57.3592j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 18:08:32,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#post-tone
2018-03-07 18:06:55,https://stackoverflow.com/questions/13949637/how-to-update-json-file-with-python/13949836
2018-03-07 18:06:39,https://www.google.com/search?ei=d3CgWqnRNIG35gL5-5aQBA&q=how+to+edit+json+file+python&oq=how+to+edit+json+file+python&gs_l=psy-ab.3..0j0i8i30k1.4450.6920.0.7173.7.7.0.0.0.0.87.421.6.6.0....0...1.1.64.psy-ab..1.3.216...0i8i13i30k1.0.fbnQR4AYp-E
2018-03-07 18:06:32,https://www.google.com/search?q=how+to+write+to+json+file+python&oq=how+to+write+to+json+&aqs=chrome.3.69i57j69i60j0l4.5190j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 18:06:26,https://stackoverflow.com/questions/12309269/how-do-i-write-json-data-to-a-file
2018-03-07 17:57:45,https://personality-insights-demo.ng.bluemix.net/
2018-03-07 17:57:44,https://personality-insights-livedemo.mybluemix.net/
2018-03-07 17:57:21,https://www.ibm.com/watson/services/personality-insights/
2018-03-07 17:57:02,https://www.ibm.com/watson/developer/
2018-03-07 17:55:40,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#introduction
2018-03-07 17:55:40,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#api_explorer
2018-03-07 17:55:40,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#authentication
2018-03-07 17:55:39,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#request_logging
2018-03-07 17:55:39,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#error-handling
2018-03-07 17:53:30,https://stackoverflow.com/questions/36059194/what-is-the-difference-between-json-dump-and-json-dumps-in-python
2018-03-07 17:53:27,https://www.google.com/search?ei=YW2gWri2MMPt5gLKuZjwBQ&q=json.dumps+vs+json.dump&oq=json.dumps+vs+json.dump&gs_l=psy-ab.3..0.1151.4686.0.4884.19.13.0.0.0.0.875.1848.0j3j1j1j6-1.6.0....0...1.1.64.psy-ab..13.6.1845...0i22i10i30k1j0i22i30k1.0.HjTA2D6Wp5E
2018-03-07 17:53:21,https://www.google.com/search?ei=C22gWsuBNIGy5gLzk4jAAg&q=json.dumps+to+file&oq=json&gs_l=psy-ab.3.1.35i39k1l2j0i67k1j0i131i67k1j0i67k1l6.65428.67713.0.69321.6.5.1.0.0.0.167.492.4j1.5.0....0...1.1.64.psy-ab..0.6.492...0j0i20i264k1j0i131k1.0.537cV7XI-7U
2018-03-07 17:51:56,https://www.google.com/search?ei=72ygWqO1CsSe5gKF-bLwBQ&q=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+%28and+1+keyword-only+argument%29+were+given&oq=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+%28and+1+keyword-only+argument%29+were+given&gs_l=psy-ab.3...23145.23974.0.27597.5.5.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..5.0.0....0.NpmuVtliaYk
2018-03-07 17:51:27,https://www.google.com/search?q=TypeError%3A+dumps()+takes+1+positional+argument+but+2+positional+arguments+(and+1+keyword-only+argument)+were+given&oq=TypeError%3A+dumps()+takes+1+positional+argument+but+2+positional+arguments+(and+1+keyword-only+argument)+were+given&aqs=chrome..69i57j69i58j69i60.326j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 17:50:47,https://stackoverflow.com/questions/45415899/python-method-takes-one-positional-argument-but-two-were-given
2018-03-07 17:50:23,https://stackoverflow.com/questions/23944657/typeerror-method-takes-1-positional-argument-but-2-were-given
2018-03-07 17:50:02,https://www.google.com/search?ei=E2ygWoWuG6OB5wLky5PQCw&q=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+%28and+1+keyword-only+argument%29+were+given&oq=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+%28and+1+keyword-only+argument%29+were+given&gs_l=psy-ab.3...7599.8183.0.8464.5.5.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..5.0.0....0.ymbaqa6OzIA
2018-03-07 17:50:00,https://www.google.com/search?ei=HGygWq-ZLq7H5gLi8ICwAQ&q=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+were+given&oq=TypeError%3A+json.dumps%28%29+takes+1+positional+argument+but+2+positional+arguments+were+given&gs_l=psy-ab.3...18930.20561.0.20652.13.11.1.0.0.0.148.1155.6j5.11.0....0...1.1.64.psy-ab..1.0.0....0.h_uAaqnbSJY
2018-03-07 17:49:58,https://www.google.com/search?ei=MmygWqu4HIyO5wLl36mwBA&q=json.dumps%28%29&oq=json.dumps%28%29&gs_l=psy-ab.3..0i7i30k1l7j0i7i10i30k1j0i7i30k1l2.17595.19513.0.19772.2.2.0.0.0.0.81.158.2.2.0....0...1.1.64.psy-ab..0.2.158...35i39k1j0i22i30k1.0.q-HjoUgoUak
2018-03-07 17:48:45,https://docs.python.org/2/library/json.html
2018-03-07 17:47:04,https://www.google.com/search?q=json.dumps+to+file&oq=json.dumps&aqs=chrome.2.69i57j0l5.3655j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 17:44:11,https://github.com/watson-developer-cloud/python-sdk/tree/develop/examples/conversation_tone_analyzer_integration
2018-03-07 17:44:03,https://github.com/watson-developer-cloud/python-sdk/tree/develop/examples
2018-03-07 17:43:45,https://github.com/watson-developer-cloud/python-sdk/blob/develop/examples/tone_analyzer_v3.py
2018-03-07 17:35:31,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#methods
2018-03-07 17:33:31,https://console.bluemix.net/docs/services/tone-analyzer/getting-started.html#getting-started-tutorial
2018-03-07 17:33:29,https://console.bluemix.net/docs/services/tone-analyzer/getting-started.html
2018-03-07 17:27:24,https://github.com/watson-developer-cloud/python-sdk
2018-03-07 17:27:19,https://github.com/watson-developer-cloud/python-sdk/blob/develop/setup.py
2018-03-07 17:23:48,https://github.com/pypa/pip/issues/3165
2018-03-07 17:23:36,https://www.google.com/search?q=PermissionError%3A+%5BErrno+13%5D+Permission+denied%3A+%27%2Fanaconda%2Flib%2Fpython3.6%2Fsite-packages%2Fsix-1.11.0.dist-info%2FDESCRIPTION.rst%27&oq=PermissionError%3A+%5BErrno+13%5D+Permission+denied%3A+%27%2Fanaconda%2Flib%2Fpython3.6%2Fsite-packages%2Fsix-1.11.0.dist-info%2FDESCRIPTION.rst%27&aqs=chrome..69i57j69i58.1429j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 17:19:17,https://www.google.com/search?q=python+write+to+file+json.dumps()&oq=python+write+to+file+json.dumps()&aqs=chrome..69i57j0.10558j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 17:18:16,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#customer-tone
2018-03-07 17:14:34,https://console.bluemix.net/docs/services/tone-analyzer/index.html
2018-03-07 17:14:34,https://console.bluemix.net/docs/services/tone-analyzer/index.html#about
2018-03-07 17:14:32,https://www.ibm.com/watson/developercloud/doc/tone-analyzer/index.html
2018-03-07 17:13:26,https://console.bluemix.net/services/tone_analyzer/8ec670da-0894-4431-99f2-4b3133e326e1/?paneId=credentials&new=true&env_id=ibm:yp:us-south&org=a33933e7-78f1-400d-85fc-e69f24e0783c&space=a59a8353-d851-4488-9897-94aba1c395ee
2018-03-07 17:13:26,https://console.bluemix.net/services/tone_analyzer/8ec670da-0894-4431-99f2-4b3133e326e1/?paneId=connectedObjects&new=true&env_id=ibm:yp:us-south&org=a33933e7-78f1-400d-85fc-e69f24e0783c&space=a59a8353-d851-4488-9897-94aba1c395ee
2018-03-07 17:13:25,https://console.bluemix.net/services/tone_analyzer/8ec670da-0894-4431-99f2-4b3133e326e1/?paneId=plan&new=true&env_id=ibm:yp:us-south&org=a33933e7-78f1-400d-85fc-e69f24e0783c&space=a59a8353-d851-4488-9897-94aba1c395ee
2018-03-07 17:13:19,https://console.bluemix.net/services/tone_analyzer/8ec670da-0894-4431-99f2-4b3133e326e1/?paneId=manage&new=true&env_id=ibm:yp:us-south&org=a33933e7-78f1-400d-85fc-e69f24e0783c&space=a59a8353-d851-4488-9897-94aba1c395ee
2018-03-07 17:13:14,https://console.bluemix.net/services/tone_analyzer/8ec670da-0894-4431-99f2-4b3133e326e1/?paneId=gettingStarted&new=true&env_id=ibm:yp:us-south&org=a33933e7-78f1-400d-85fc-e69f24e0783c&space=a59a8353-d851-4488-9897-94aba1c395ee
2018-03-07 17:08:02,https://console.bluemix.net/docs/services/watson/getting-started-credentials.html#service-credentials-for-watson-services
2018-03-07 17:08:00,https://console.bluemix.net/docs/services/watson/getting-started-credentials.html
2018-03-07 17:07:00,https://console.bluemix.net/docs/services/service_credentials.html#service_credentials
2018-03-07 17:05:53,https://console.bluemix.net/catalog/services/tone-analyzer/
2018-03-07 17:02:51,https://console.bluemix.net/registration/accept
2018-03-07 17:01:22,https://console.bluemix.net/developer/watson/create-project?services=tone_analyzer&env_id=ibm%3Ayp%3Aus-south
2018-03-07 17:00:59,https://console.ng.bluemix.net/developer/watson/services
2018-03-07 17:00:59,https://console.bluemix.net/developer/watson/services
2018-03-07 16:59:06,https://www.google.com/url?q=https://www.theverge.com/circuitbreaker/2018/3/7/17092334/amazon-alexa-devices-strange-laughter&sa=D&source=hangouts&ust=1520546253710000&usg=AFQjCNHabRbPCiChGlvr7BzcrvQMOd-acw
2018-03-07 16:28:57,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9992168779631796&tn=sbqz8vq2ib9z&rld=1
2018-03-07 15:51:13,https://login.us-east.bluemix.net/UAALoginServerWAR/blueidclient/NThjNmM2MDQtY2I4Mi00
2018-03-07 15:51:13,https://idaas.iam.ibm.com/idaas/oidc/endpoint/default/authorize?response_type=code&client_id=NThjNmM2MDQtY2I4Mi00&state=001520455868612CaOtax6Vk&redirect_uri=https%3A%2F%2Flogin.us-east.bluemix.net%2Foidcclient%2Fredirect%2FNThjNmM2MDQtY2I4Mi00&scope=openid
2018-03-07 15:51:13,https://login.us-east.bluemix.net/oidcclient/redirect/NThjNmM2MDQtY2I4Mi00?scope=openid&code=LhgymAoDS9UKFrtCnAEnm7mgQDgwLo&state=001520455868612CaOtax6Vk
2018-03-07 15:51:13,https://console.bluemix.net/login/callback?code=DvVmaAkoFw&state=%252Fcatalog%252Fservices%252Ftone-analyzer%252F
2018-03-07 15:51:08,https://console.bluemix.net/login?state=%2Fcatalog%2Fservices%2Ftone-analyzer%2F
2018-03-07 15:51:08,https://login.us-east.bluemix.net/UAALoginServerWAR/oauth/authorize?response_type=code&redirect_uri=https%3A%2F%2Fconsole.bluemix.net%2Flogin%2Fcallback&state=%252Fcatalog%252Fservices%252Ftone-analyzer%252F&client_id=console2
2018-03-07 15:51:05,https://www.google.com/url?hl=en&q=https://u2042770.ct.sendgrid.net/wf/click?upn%3Dr3-2B-2Ftz82OzL8r5vvW9tseFHmoi-2BNH4NitEe8ID-2Bsbjung-2BZUu0zSNtPuVlX3RrZ3KJPMXNEgX8PgYmAXdMk89Dil9-2BUF9-2B3wnI20lwdb7oiQVXKKym5-2BUpucK3mGy5Qz3IVTtv15GotvSbDLUhmJuMulELwBJvppsms7az2qnSfEZPK0-2BW6a6vfwZiPyPoWk_tASACh0cJjTsvCmRX2V1vBpo1JPjSPcoifowFK5IqFf5eW9cKGQatfp4xVk5wyPOP7tD-2F4cyQJQ8m1vQUv5YUAof7HITMcRFb8qejns3Me3ysez0GlwBl-2FfCCyuSO1fARPJsNXJY6LIk70CtqGYhgJqr6cb0QwkpMT5XHX4DpjFZErEFApVrwRmlUlQf93bbAbKPSAH4a-2BXiUAitBKnWBzbIIGGQIm-2F6xa8OdASxC4BiJoJIyZ7i2cTwnVht1UWmo-2BASO3C0ihhLwlN2E1N-2BiHFgy8-2Fx04AI1aGiG2GVrSoNxuVn5z-2Fy84jawDtco82XV4UfSxJIls5CxX10Hroh0GQbcSDBwPV-2B82w8WGXXe-2BGw9NANyGgO8UW-2BsY1CTfgSI-2FJzy-2BMd3i1W488vOBz39KoASMMeW9XFtxaM-2Bc9Zwx0-3D&source=gmail&ust=1520542248619000&usg=AFQjCNFKfROFYWpMAPxCvfX9GQquyCxkIQ
2018-03-07 15:51:05,https://u2042770.ct.sendgrid.net/wf/click?upn=r3-2B-2Ftz82OzL8r5vvW9tseFHmoi-2BNH4NitEe8ID-2Bsbjung-2BZUu0zSNtPuVlX3RrZ3KJPMXNEgX8PgYmAXdMk89Dil9-2BUF9-2B3wnI20lwdb7oiQVXKKym5-2BUpucK3mGy5Qz3IVTtv15GotvSbDLUhmJuMulELwBJvppsms7az2qnSfEZPK0-2BW6a6vfwZiPyPoWk_tASACh0cJjTsvCmRX2V1vBpo1JPjSPcoifowFK5IqFf5eW9cKGQatfp4xVk5wyPOP7tD-2F4cyQJQ8m1vQUv5YUAof7HITMcRFb8qejns3Me3ysez0GlwBl-2FfCCyuSO1fARPJsNXJY6LIk70CtqGYhgJqr6cb0QwkpMT5XHX4DpjFZErEFApVrwRmlUlQf93bbAbKPSAH4a-2BXiUAitBKnWBzbIIGGQIm-2F6xa8OdASxC4BiJoJIyZ7i2cTwnVht1UWmo-2BASO3C0ihhLwlN2E1N-2BiHFgy8-2Fx04AI1aGiG2GVrSoNxuVn5z-2Fy84jawDtco82XV4UfSxJIls5CxX10Hroh0GQbcSDBwPV-2B82w8WGXXe-2BGw9NANyGgO8UW-2BsY1CTfgSI-2FJzy-2BMd3i1W488vOBz39KoASMMeW9XFtxaM-2Bc9Zwx0-3D
2018-03-07 15:51:05,https://accountmanagement.us-east.bluemix.net/coe/v2/accounts/verify?token=bbd62e1447e5587cfcff971d4a44a83e&email=xujenna@nyu.edu
2018-03-07 15:51:00,https://mail.google.com/mail/u/1/#inbox/162023b0dc217cdb
2018-03-07 15:50:57,https://mail.google.com/mail/u/1/#inbox/161fde64d2b1fb5b
2018-03-07 15:50:49,https://mail.google.com/mail/u/1/#inbox/162022ebf0573f0e
2018-03-07 15:50:33,https://console.bluemix.net/registration/trial/success?uid=8ae080536e8af0c6ef3873f37e4e48c7
2018-03-07 15:49:59,https://console.bluemix.net/registration/?target=/catalog/services/tone-analyzer/&cm_mmc=Earned--Watson+Core+-+Platform--WW_WW-_-intercom&cm_mmca1=000000OF&cm_mmca2=10000409
2018-03-07 15:34:44,https://stackoverflow.com/q/1466000
2018-03-07 15:34:44,https://stackoverflow.com/questions/1466000/python-open-built-in-function-difference-between-modes-a-a-w-w-and-r
2018-03-07 15:34:39,https://www.google.com/search?ei=10ygWsuCKuTM5gLbsKqACg&q=with+open+w+r+a&oq=with+open+w+r+a&gs_l=psy-ab.3..33i160k1.4938.6447.0.6726.7.6.1.0.0.0.101.495.5j1.6.0....0...1.1.64.psy-ab..0.3.233...0j0i22i30k1.0.rew0VWbcRTA
2018-03-07 15:34:31,https://www.google.com/search?ei=0kygWpmZK4zt5gKDkY8Y&q=with+open+a+w+r&oq=with+open+a+w+r&gs_l=psy-ab.3..33i22i29i30k1l3.2816.4009.0.4179.4.4.0.0.0.0.151.151.0j1.1.0....0...1.1.64.psy-ab..3.1.150....0.0NfTz4njJ18
2018-03-07 15:34:26,https://www.google.com/search?q=with+open+a&oq=with+open+a&aqs=chrome..69i57j0l5.2272j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 15:34:15,https://docs.python.org/2/library/functions.html
2018-03-07 15:28:34,https://mail.google.com/mail/u/1/#inbox/1620225c53dc25be
2018-03-07 15:28:28,https://mail.google.com/mail/u/2/#starred
2018-03-07 15:26:16,https://mail.google.com/mail/u/1/#all/16201376893170ba
2018-03-07 15:26:07,https://mail.google.com/mail/u/1/#all
2018-03-07 15:25:55,https://mail.google.com/mail/u/1/#inbox/161da791c5f92312
2018-03-07 15:24:59,https://shcportal.nyu.edu/messages_send_finished.aspx
2018-03-07 15:24:58,https://shcportal.nyu.edu/messages_send_compose.aspx
2018-03-07 15:22:37,https://doodle.com/poll/3rkwsgnv8e5wkvis
2018-03-07 15:22:33,https://doodle.com/poll/3rkwsgnv8e5wkvis/interstitial
2018-03-07 15:19:56,https://www.google.com/url?hl=en&q=https://doodle.com/poll/3rkwsgnv8e5wkvis&source=gmail&ust=1520540367693000&usg=AFQjCNHTyanqDIQJcCU-KxwmmQe_hKXmRQ
2018-03-07 15:19:53,https://mail.google.com/mail/u/1/#inbox/16201fdc12764fee
2018-03-07 15:18:01,https://mail.google.com/mail/u/1/#inbox/16201e887f05034f
2018-03-07 15:17:44,https://mail.google.com/mail/u/1/#inbox/16201daff1ce6ff9
2018-03-07 15:17:30,https://mail.google.com/mail/u/1/#inbox/162013cc0f715139
2018-03-07 15:14:30,https://mail.google.com/mail/u/0/#inbox/161e49c998abc892
2018-03-07 15:14:16,https://mail.google.com/mail/u/0/#inbox/16202197bd73a64e
2018-03-07 12:04:09,https://plus.google.com/u/0/photos/albums/p4kb5grjf8ujn8h08a8a3m3m24qv944i8?pid=6530247551006179266&oid=104413863944849018097
2018-03-07 12:04:09,https://lh3.googleusercontent.com/-h-_MOdhMs5g/WqAZjIUWf8I/AAAAAAAAiv4/U3Fy2Gp2o3QMXCIqM4ohz-jOj-vU-M2rACL0BGAYYCw/h322/2018-03-07.png
2018-03-07 11:55:47,https://lh3.googleusercontent.com/-h-_MOdhMs5g/WqAZjIUWf8I/AAAAAAAAiv0/hKhlX1Ha1EkXN2d3fc6QVoY9V3VXh4M1wCL0BGAYYCw/h322/2018-03-07.png
2018-03-07 11:38:26,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j0j35i39j0l3.750j0j4&sourceid=chrome&ie=UTF-8
2018-03-07 11:38:00,http://www.google.org/publicalerts/alert?aid=a30d219c7351b648&hl=en&gl=US&source=wweather
2018-03-07 11:38:00,https://www.google.org/publicalerts/alert?aid=a30d219c7351b648&hl=en&gl=US&source=wweather
2018-03-07 11:34:58,http://treyhunner.com/2016/04/how-to-loop-with-indexes-in-python/
2018-03-07 11:34:48,https://www.google.com/search?q=for+elem+in+list+python&oq=for+elem+&aqs=chrome.1.69i57j0l5.2191j1j9&sourceid=chrome&ie=UTF-8
2018-03-07 11:21:59,https://www.google.com/search?q=how+to+read+every+word+in+sentence+pythong&oq=how+to+read+every+word+in+sentence+pythong&aqs=chrome..69i57j69i64.19070j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 11:11:52,https://stackoverflow.com/questions/31845482/iterating-through-a-string-word-by-word
2018-03-07 11:05:13,https://www.nltk.org/api/nltk.corpus.html#module-nltk.corpus
2018-03-07 11:04:45,https://www.nltk.org/py-modindex.html
2018-03-07 11:04:34,https://www.nltk.org/api/nltk.app.html#module-nltk.app.wordnet_app
2018-03-07 11:03:15,https://www.nltk.org/install.html
2018-03-07 11:03:01,https://www.quora.com/Is-there-a-package-in-Python-that-can-check-if-a-string-of-letters-is-a-word
2018-03-07 11:02:27,https://www.google.com/search?q=nltk&oq=nltk&aqs=chrome..69i57j0l5.2511j1j7&sourceid=chrome&ie=UTF-8
2018-03-07 11:02:25,https://www.nltk.org/
2018-03-07 11:00:40,https://www.google.com/search?ei=OQygWqzyEoyd5gLbhYDoAw&q=how+to+check+for+english+words+in+python+string&oq=how+to+check+for+english+words+in+python+string&gs_l=psy-ab.3...26811.29201.0.29976.18.13.5.0.0.0.138.1218.7j6.13.0....0...1.1.64.psy-ab..6.9.270...35i39k1.0.j1iVpTaejp0
2018-03-07 10:59:33,https://inventwithpython.com/hacking/chapter12.html
2018-03-07 10:58:49,https://www.google.com/search?ei=D5idWozpB8-A5wLjs5qgDg&q=how+to+check+for+words+in+python+string&oq=how+to+check+for+words+in+python+string&gs_l=psy-ab.3..0i22i30k1l2.6641.7119.0.7249.7.6.0.0.0.0.143.507.0j4.4.0....0...1.1.64.psy-ab..3.4.507....0.14YX235iZnM
2018-03-07 10:57:43,https://www.instagram.com/jengotch/
2018-03-07 10:57:24,https://www.instagram.com/p/BcaKtEUlbjI/?taken-by=jengotch
2018-03-07 10:56:41,https://www.instagram.com/p/BewQxnQFcN6/?taken-by=jengotch
2018-03-07 10:55:09,https://www.instagram.com/
2018-03-07 10:54:53,https://www.instagram.com/mizamichelle/
2018-03-07 10:54:51,https://www.instagram.com/p/BXoECAxBTq75Yt97LvRCbMoCfGGy3dmOk2wUAI0/?taken-by=mizamichelle
2018-03-07 10:50:25,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=activity&interval=hour&restrict_begin=2018-03-07&restrict_end=2018-03-07&format=json
2018-03-07 10:49:13,https://mail.google.com/mail/u/0/#inbox/161fff8c00156f2a
2018-03-07 10:37:49,https://www.rescuetime.com/browse/activity/2515752/by/hour/for/the/day/of/2018-03-07
2018-03-07 10:36:53,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=activity&interval=hour&restrict_begin=2018-03-06&restrict_end=2018-03-06&format=json
2018-03-07 10:30:38,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=activity&interval=hour&restrict_begin=2018-03-01&restrict_end=2018-03-01&format=json
2018-03-07 10:29:18,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfEY&perspective=rank&restrict_kind=overview&restrict_begin=2018-03-01&restrict_end=2018-03-02&format=csv
2018-03-07 10:28:06,https://www.rescuetime.com/anapi/data?key=YOUR_API_KEY&perspective=rank&restrict_kind=overview&restrict_begin=2014-11-01&restrict_end=2014-11-01&format=csv
2018-03-07 10:28:01,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfEY&perspective=rank&restrict_kind=overview&restrict_begin=2014-11-01&restrict_end=2014-11-01&format=csv
2018-03-07 10:26:13,https://www.rescuetime.com/anapi/setup/documentation#analytic-api-reference
2018-03-07 10:22:26,https://keep.google.com/u/1/
2018-03-07 10:22:26,https://keep.google.com/u/1/?authuser=1
2018-03-07 10:22:26,https://keep.google.com/u/2/?authuser=1
2018-03-07 10:22:21,https://keep.google.com/u/2/#home
2018-03-07 10:20:23,http://codingclues.eu/2009/retrieve-the-favicon-for-any-url-thanks-to-google/
2018-03-07 10:15:57,http://www.google.com/s2/favicons?domain_url=https://www.facebook.com
2018-03-07 10:15:57,https://www.google.com/s2/favicons?domain_url=https://www.facebook.com
2018-03-07 10:14:55,http://www.google.com/s2/favicons?domain_url=https://www.facebook.com.jpg
2018-03-07 10:14:55,https://www.google.com/s2/favicons?domain_url=https://www.facebook.com.jpg
2018-03-07 10:09:48,http://bl.ocks.org/xujenna/raw/32b4b11f1b25a5cf3493fd9308e1e735/
2018-03-07 10:09:42,https://gist.github.com/xujenna
2018-03-07 10:09:41,https://gist.github.com/xujenna?page=2
2018-03-07 10:09:40,https://gist.github.com/xujenna?page=1
2018-03-07 10:07:02,http://bl.ocks.org/boeric/7d11226f5e1235cbe645
2018-03-07 10:07:01,https://www.google.com/search?ei=p_-fWr2iHq2IggeL075o&q=automatically+filter+date+by+day+d3+csv&oq=automatically+filter+date+by+day+d3+csv&gs_l=psy-ab.3...6002.6621.0.6796.4.4.0.0.0.0.83.298.4.4.0....0...1.1.64.psy-ab..0.2.153...33i160k1.0._V5IU42fvrY
2018-03-07 10:05:43,http://bl.ocks.org/boeric/raw/7d11226f5e1235cbe645
2018-03-07 10:05:43,http://bl.ocks.org/boeric/raw/7d11226f5e1235cbe645/
2018-03-07 10:05:11,https://www.google.com/search?q=automatically+filter+date+by+day+d3&oq=automatically+filter+date+by+day+d3+&aqs=chrome..69i57.6775j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 09:59:20,https://gist.github.com/xujenna/32b4b11f1b25a5cf3493fd9308e1e735/raw/2abba65199a639481cdbff06d4815156b38300df/index.html
2018-03-07 09:59:20,https://gist.githubusercontent.com/xujenna/32b4b11f1b25a5cf3493fd9308e1e735/raw/2abba65199a639481cdbff06d4815156b38300df/index.html
2018-03-07 09:59:01,https://gist.github.com/xujenna/32b4b11f1b25a5cf3493fd9308e1e735
2018-03-07 09:56:46,https://gist.github.com/xujenna/25db2af0bf59950d7390ceeba187df42#comments
2018-03-07 09:56:25,https://gist.github.com/xujenna/32b4b11f1b25a5cf3493fd9308e1e735#comments
2018-03-07 09:53:25,https://stackoverflow.com/questions/7901760/how-can-i-get-the-title-of-a-webpage-given-the-url-an-external-url-using-jquer
2018-03-07 09:53:22,https://www.google.com/search?q=get+page+title+from+url+javascript&oq=how+to+get+page+title+from+url+&aqs=chrome.2.69i57j0l4j69i64.6808j1j7&sourceid=chrome&ie=UTF-8
2018-03-07 09:53:07,https://stackoverflow.com/q/10940241
2018-03-07 09:53:07,https://stackoverflow.com/questions/10940241/getting-the-title-of-a-web-page-given-the-url
2018-03-07 09:45:02,https://www.w3schools.com/jsref/jsref_length_array.asp
2018-03-07 09:44:57,https://www.google.com/search?q=length+of+array+javascript&oq=length&aqs=chrome.1.69i57j0l2j69i65j0l2.3042j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 09:41:03,https://bl.ocks.org/curran/3a68b0c81991e2e94b19
2018-03-07 09:40:57,https://www.google.com/search?ei=7PmfWszBHJD2zgKklYrwAw&q=d3+resize+canvas&oq=d3+resize+canvas&gs_l=psy-ab.3..0i22i30k1.8464.10639.0.11361.16.16.0.0.0.0.92.1042.16.16.0....0...1.1.64.psy-ab..0.16.1031...0j35i39k1j0i131k1j0i131i20i264k1j0i67k1j0i20i264k1.0.N7OIYOzZ-4s
2018-03-07 09:40:45,https://www.google.com/search?q=javascript+resize+window&oq=javascript+resize+window&aqs=chrome..69i57j0l5.2863j0j7&sourceid=chrome&ie=UTF-8
2018-03-07 09:40:37,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_resizeby_resizeto
2018-03-07 09:39:51,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_resizeto
2018-03-07 09:37:23,https://www.w3schools.com/jsref/met_win_resizeto.asp
2018-03-06 18:00:26,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7316155,-74.0049988,15z/data=!3m1!4b1!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e3"
2018-03-06 18:00:25,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7301094,-74.0071946,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e3"
2018-03-06 18:00:24,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7316155,-74.0049988,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e2"
2018-03-06 18:00:19,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7309663,-74.005856,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e3"
2018-03-06 18:00:17,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7301094,-74.0071946,15z/data=!4m10!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e0"
2018-03-06 18:00:15,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7301094,-74.0071946,15z/data=!3m1!4b1!4m17!1m6!3m5!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2sDouble+Zero!8m2!3d40.72609!4d-73.989808!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e2"
2018-03-06 18:00:15,"https://www.google.com/maps/dir/40.7349469,-74.0073713/Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7284348,-74.0036602,14.69z/data=!4m17!1m6!3m5!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2sDouble+Zero!8m2!3d40.72609!4d-73.989808!4m9!1m1!4e1!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e2"
2018-03-06 18:00:14,"https://www.google.com/maps/dir//Double+Zero,+65+2nd+Ave,+New+York,+NY+10003/@40.7284348,-74.0036602,14.69z/data=!4m17!1m6!3m5!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2sDouble+Zero!8m2!3d40.72609!4d-73.989808!4m9!1m1!4e2!1m5!1m1!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!2m2!1d-73.989808!2d40.72609!3e2"
2018-03-06 18:00:13,"https://www.google.com/maps/place/Double+Zero/@40.7284348,-74.0036602,14.69z/data=!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 18:00:12,"https://www.google.com/maps/place/Double+Zero/@40.7216122,-73.9888596,14.69z/data=!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 18:00:11,"https://www.google.com/maps/place/Double+Zero/@40.7236999,-73.9903209,15.36z/data=!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 18:00:10,"https://www.google.com/maps/place/Double+Zero/@40.726094,-73.9919967,17z/data=!3m1!4b1!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 18:00:09,"https://www.google.com/maps/place/Double+Zero/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 18:00:09,"https://www.google.com/maps/place/Double+Zero,+2nd+Avenue,+New+York,+NY/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c25984b17f2929:0x57a0bd5c8fb7e9de!8m2!3d40.72609!4d-73.989808"
2018-03-06 17:57:50,https://mail.google.com/mail/u/0/#inbox/161fd7c1b229ae63
2018-03-06 17:52:39,https://github.com/xujenna/thesis_explorations/blob/master/.gitignore
2018-03-06 17:51:28,https://github.com/notifications
2018-03-06 17:45:26,https://www.google.com/search?q=d3.time.format&oq=d3.time.format&aqs=chrome..69i57j0l5.5279j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 17:39:35,https://mail.google.com/mail/u/0/#inbox/161fd61363b02b38
2018-03-06 17:38:52,https://mail.google.com/mail/u/0/#inbox/161fd6b49f39dab1
2018-03-06 17:29:47,https://stackoverflow.com/questions/12943819/how-to-prettyprint-a-json-file
2018-03-06 17:29:41,https://www.google.com/search?q=json.dump+format&oq=json.dump+format+&aqs=chrome..69i57j0l2.3208j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 17:18:40,http://localhost:8888/index.html
2018-03-06 17:09:22,https://mail.google.com/mail/u/1/#inbox/161fd149b90979e5
2018-03-06 17:09:18,https://mail.google.com/mail/u/1/#starred
2018-03-06 17:09:13,https://mail.google.com/mail/u/1/#inbox/161fc343fcb59332
2018-03-06 17:05:00,https://docs.python.org/3/library/time.html
2018-03-06 17:04:54,https://www.google.com/search?q=python+time&oq=python+time&aqs=chrome..69i57j69i60l2j0l2j69i59.2040j1j7&sourceid=chrome&ie=UTF-8
2018-03-06 17:03:21,https://www.w3schools.com/js/js_dates.asp
2018-03-06 17:02:41,https://www.google.com/search?q=javascript+new+date&oq=javascript+new+date&aqs=chrome.0.0l6.1857j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 17:02:38,https://www.w3schools.com/js/tryit.asp?filename=tryjs_date_current
2018-03-06 16:58:20,file:///Users/jxu2/github/thesis_explorations/trackers/_viz/mindwandering/index.html
2018-03-06 16:50:45,https://stackoverflow.com/questions/14257373/skip-the-headers-when-editing-a-csv-file-using-python
2018-03-06 16:50:40,https://www.google.com/search?q=how+to+skip+over+header+row+in+csv+pythong&oq=how+to+skip+over+header+row+in+csv+pythong&aqs=chrome..69i57j0j69i64.6481j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 16:40:11,https://www.google.com/search?ei=twqfWoeLCoTs5gLxrIToAQ&q=with+open+python+r+w+a&oq=with+open+python+r+w+a&gs_l=psy-ab.3...1088.1806.0.1900.5.4.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..5.0.0....0.jD5gYXbWTYc
2018-03-06 16:40:07,https://www.google.com/search?ei=sQqfWqmeOqjW5gL4jreoBg&q=with+open+python+r+w+ab&oq=with+open+python+r+w+ab&gs_l=psy-ab.3..33i22i29i30k1.1888.4262.0.4418.9.7.0.0.0.0.178.178.0j1.1.0....0...1.1.64.psy-ab..8.1.178....0.iJNYN1g7VL8
2018-03-06 16:40:02,https://www.google.com/search?ei=dAqfWuXaH8WL5wLwsq-gBQ&q=with+open+python&oq=with+open+python&gs_l=psy-ab.3..0l10.16894.18068.0.18168.7.7.0.0.0.0.94.540.7.7.0....0...1.1.64.psy-ab..0.7.536...46j35i39k1j0i67k1j0i20i263k1j0i46k1.0.ts5EzHHWR5A
2018-03-06 16:39:25,http://www.pythonforbeginners.com/files/with-statement-in-python
2018-03-06 16:37:32,https://www.google.com/search?q=with+open+rb&oq=with+open+rb&aqs=chrome..69i57j0l4.1738j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 16:30:57,http://www.diveintopython.net/power_of_introspection/filtering_lists.html
2018-03-06 16:30:45,https://www.google.com/search?q=how+to+filter+an+array+in+python&oq=how+to+filter+an+array&aqs=chrome.1.69i57j0l5.5208j1j7&sourceid=chrome&ie=UTF-8
2018-03-06 16:30:42,https://stackoverflow.com/questions/27189892/how-to-filter-json-array-in-python
2018-03-06 16:30:26,https://stackoverflow.com/questions/5640630/array-filter-in-python
2018-03-06 16:23:35,https://stackoverflow.com/questions/5166842/sort-dates-in-python-array
2018-03-06 16:23:33,https://www.google.com/search?q=python+sort+dates&oq=python+sort+dates&aqs=chrome..69i57j0l5.3247j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 16:20:36,https://stackoverflow.com/questions/41625986/how-to-filter-out-specific-data-from-a-csv-via-python
2018-03-06 16:20:31,https://www.google.com/search?q=how+to+filter+part+of+csv+file+in+python&oq=how+to+filter+part+of+csv+file+in+python&aqs=chrome..69i57j69i64.14848j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 16:20:21,https://stackoverflow.com/questions/44306310/how-to-filter-rows-in-csv-file-based-on-column-string
2018-03-06 16:19:34,https://stackoverflow.com/questions/31556643/filtering-csv-rows-by-specific-column-data
2018-03-06 16:15:49,https://codereview.stackexchange.com/questions/95511/reading-writing-and-filtering-a-csv-file
2018-03-06 16:13:46,https://stackoverflow.com/q/28162358
2018-03-06 16:13:46,https://stackoverflow.com/questions/28162358/append-a-header-for-csv-file
2018-03-06 16:13:35,https://www.google.com/search?ei=RQSfWp2wE9C2ggf7waCoDQ&q=how+to+edit+csv+header+row+in+python&oq=how+to+edit+csv+header+row+in+python&gs_l=psy-ab.3..33i22i29i30k1.2795.5672.0.6269.16.10.1.0.0.0.320.948.1j2j1j1.5.0....0...1.1.64.psy-ab..11.2.272....0.SucJOVwZXNU
2018-03-06 16:12:51,https://stackoverflow.com/questions/20347766/pythonically-add-header-to-a-csv-file
2018-03-06 16:12:37,https://www.google.com/search?ei=FQOfWp7XEara5gLy05CADQ&q=how+to+edit+csv+headers+in+python+3&oq=how+to+edit+csv+headers+in+python+3&gs_l=psy-ab.3...18248.20804.0.21027.5.5.0.0.0.0.101.399.4j1.5.0....0...1.1.64.psy-ab..1.0.0....0.BTv18HfTxqY
2018-03-06 16:12:22,http://www.pythonforbeginners.com/csv/using-the-csv-module-in-python
2018-03-06 16:09:42,https://stackoverflow.com/questions/16306819/python-edit-csv-headers
2018-03-06 16:08:17,https://docs.python.org/3/library/csv.html
2018-03-06 16:07:33,https://www.google.com/search?ei=uAKfWvnlDJHU5gL6jb_QBQ&q=how+to+rename+csv+header+in+python+3&oq=how+to+rename+csv+header+in+python+3&gs_l=psy-ab.3...1408.1551.0.2244.2.2.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..2.0.0....0.mGfcJgmpL58
2018-03-06 16:06:00,https://www.google.com/search?q=how+to+rename+csv+header+in+python&oq=how+to+rename+csv+header+in+python&aqs=chrome..69i57j69i64.5216j1j7&sourceid=chrome&ie=UTF-8
2018-03-06 15:58:39,https://github.com/xujenna/thesis_explorations/tree/master/trackers/chrome_history
2018-03-06 15:21:20,https://mail.google.com/mail/u/1/#inbox/161fcf3dda2a3fbf
2018-03-06 15:20:01,http://lauren-mccarthy.com/teaching
2018-03-06 15:19:59,http://lauren-mccarthy.com/
2018-03-06 15:19:35,http://lauren-mccarthy.com/teaching/about
2018-03-06 15:17:52,http://lauren-mccarthy.com/How-We-Act-Together
2018-03-06 15:02:39,http://lauren-mccarthy.com/The-Changing-Room
2018-03-06 15:02:29,https://www.facebook.com/v2.10/dialog/oauth?app_id=267357640441299&channel_url=http%3A%2F%2Fstaticxx.facebook.com%2Fconnect%2Fxd_arbiter%2Fr%2FNh1oH0K63yz.js%3Fversion%3D42%23cb%3Df152834a31b684c%26domain%3D24hour.host%26origin%3Dhttp%253A%252F%252F24hour.host%252Ff1b98a5a1269a48%26relation%3Dopener&client_id=267357640441299&display=popup&domain=24hour.host&e2e=%7B%7D&locale=en_US&origin=1&redirect_uri=http%3A%2F%2Fstaticxx.facebook.com%2Fconnect%2Fxd_arbiter%2Fr%2FNh1oH0K63yz.js%3Fversion%3D42%23cb%3Df2d08f388215d5%26domain%3D24hour.host%26origin%3Dhttp%253A%252F%252F24hour.host%252Ff1b98a5a1269a48%26relation%3Dopener%26frame%3Df8ec68b1bacbec&response_type=token%2Csigned_request&scope=public_profile%2Cuser_posts&sdk=joey&version=v2.10
2018-03-06 15:00:31,http://24hour.host/
2018-03-06 15:00:18,http://lauren-mccarthy.com/24h-HOST
2018-03-06 14:58:30,http://crowdpilot.me/
2018-03-06 14:58:30,http://www.crowdpilot.me/
2018-03-06 14:58:29,http://lauren-mccarthy.com/Crowdpilot
2018-03-06 14:55:31,http://lauren-mccarthy.com/Follower
2018-03-06 14:55:01,http://socialturkers.com/
2018-03-06 14:54:59,http://socialturkers.com/january-25/
2018-03-06 14:52:38,http://socialturkers.com/january-12/
2018-03-06 14:48:49,http://socialturkers.com/january-30/
2018-03-06 14:46:00,http://lauren-mccarthy.com/Social-Turkers
2018-03-06 14:45:00,https://mail.google.com/mail/u/0/#inbox/161901f9c58492a8
2018-03-06 14:43:59,https://events.nyu.edu/#!view/event/event_id/201201
2018-03-06 14:43:45,https://mail.google.com/mail/u/1/#inbox/161f64290dbcc70e
2018-03-06 14:43:16,https://mail.google.com/mail/u/1/#inbox/161fbb1186ad7b41
2018-03-06 14:41:55,"https://www.google.com/maps/place/239+Greene+St,+New+York,+NY+10003/@40.7296991,-73.9976748,17z/data=!3m1!4b1!4m5!3m4!1s0x89c2599087ffc6f1:0xe2d9579f074f2a7f!8m2!3d40.7296991!4d-73.9954861"
2018-03-06 14:41:52,"https://www.google.com/maps?q=239+GREENE+STREET,+FLOOR+8&entry=gmail&source=g"
2018-03-06 14:41:51,"https://www.google.com/url?hl=en&q=https://maps.google.com/?q%3D239%2BGREENE%2BSTREET,%2BFLOOR%2B8%26entry%3Dgmail%26source%3Dg&source=gmail&ust=1520447316092000&usg=AFQjCNG4cqGTh3z5BP9waOo66I30eaGMMg"
2018-03-06 14:41:51,"https://maps.google.com/?q=239+GREENE+STREET,+FLOOR+8&entry=gmail&source=g"
2018-03-06 14:41:51,"https://maps.google.com/maps?q=239+GREENE+STREET,+FLOOR+8&entry=gmail&source=g"
2018-03-06 14:41:34,https://mail.google.com/mail/u/1/#inbox/161fc2c5e81d62af
2018-03-06 14:40:52,https://mail.google.com/mail/u/1/#inbox/161fc5e11488547f
2018-03-06 14:38:17,https://mail.google.com/mail/u/0/#inbox/161fbe2c3e24567d
2018-03-06 14:37:43,https://mail.google.com/mail/u/0/#inbox/161fc186d9c40416
2018-03-06 14:36:33,https://mail.google.com/mail/u/0/#inbox/161ce5cd55167260
2018-03-06 14:29:14,https://mail.google.com/mail/u/1/#inbox/161d3755a1a5923c
2018-03-06 14:27:53,https://mail.google.com/mail/u/0/#inbox/161fc3443cef091f
2018-03-06 13:35:39,https://mail.google.com/mail/u/0/#inbox/161fc87454366a9f
2018-03-06 13:33:32,https://www.google.com/search?q=Double+Zero+65+2nd+Ave&oq=Double+Zero+65+2nd+Ave&aqs=chrome..69i57.422j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 13:30:51,http://weareash.org/new_version_staging/dist/what-we-do/us-team.html
2018-03-06 13:27:59,https://calendar.google.com/calendar/selfsched?sstoken=UVBlTFZhOVNCTmF0fGRlZmF1bHR8MmU2NTM4NjJmOTJiNTUwM2M0YTBmMzcyZDM4NjRkNmQ
2018-03-06 13:27:48,https://www.google.com/search?q=office&oq=office&aqs=chrome..69i57j0j69i60l3j69i65.855j0j7&sourceid=chrome&ie=UTF-8
2018-03-06 11:31:30,https://www.technologyreview.com/the-download/610423/google-has-built-the-worlds-most-advanced-quantum-chip/
2018-03-06 11:29:38,https://mail.google.com/mail/u/1/#inbox/161f912a32dfdab3
2018-03-06 08:20:30,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520225949316&xpc=%7B%22cn%22%3A%228bjrvq%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWborcqM2QOEIWqhl-Gu9a6zp7iFaJlBqXl0nC4038kEj9iGqzzemYuy10LwGC3ZK9JrqNvkz-VcZ-y_som-kUtgcc_M2w%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB0zyCAizUCY_ZnHLA14uxGy____AYAA0ADgG_Bv7gPoHAAAAAAAAAAAAAAAAAAAAGij-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Duy0eM_OxxRPvqUdb9l1oDD_wWWw%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C1%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=93kfiup2wlh
2018-03-05 21:18:50,http://biogenfutur.es/
2018-03-05 21:18:16,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_518
2018-03-05 21:18:14,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_531
2018-03-05 21:16:58,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_526
2018-03-05 21:16:35,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_621
2018-03-05 21:16:35,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_514
2018-03-05 21:16:26,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_335
2018-03-05 21:16:19,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_543
2018-03-05 21:15:00,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_556
2018-03-05 21:11:22,file:///Users/jxu2/Documents/Work/11%20ITP/Quant%20Humanists/dog.html
2018-03-05 21:10:29,https://github.com/joeyklee/quant-humanists-2018/blob/master/practice/fun-with-apis/get-random-dog.html
2018-03-05 21:10:28,https://github.com/joeyklee/quant-humanists-2018/tree/master/practice/fun-with-apis
2018-03-05 21:09:58,https://github.com/joeyklee/quant-humanists-2018/blob/master/practice/fun-with-apis/get-random-joke-forever.html
2018-03-05 21:09:26,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_328
2018-03-05 21:09:24,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_321
2018-03-05 21:03:53,https://github.com/joeyklee/quant-humanists-2018/blob/master/practice/fun-with-apis/get-random-cat.html
2018-03-05 21:02:33,https://alpha.editor.p5js.org/
2018-03-05 21:01:19,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_314
2018-03-05 21:01:17,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_310
2018-03-05 21:00:59,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_302
2018-03-05 21:00:55,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-05
2018-03-05 21:00:48,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-03-05
2018-03-05 21:00:32,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-03-05
2018-03-05 21:00:27,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-03-05
2018-03-05 21:00:14,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_290
2018-03-05 21:00:12,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_284
2018-03-05 20:58:59,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-3-5
2018-03-05 20:58:58,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-3-6
2018-03-05 20:58:31,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_277
2018-03-05 20:56:47,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_272
2018-03-05 20:56:45,https://github.com/cmda-be/transfer
2018-03-05 20:56:17,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_266
2018-03-05 20:55:35,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_260
2018-03-05 20:54:10,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_254
2018-03-05 20:53:12,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_235
2018-03-05 20:53:08,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_223
2018-03-05 20:51:29,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_214
2018-03-05 20:51:27,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_210
2018-03-05 20:50:03,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_206
2018-03-05 20:49:40,https://www.iana.org/assignments/message-headers/message-headers.xhtml
2018-03-05 20:49:08,https://www.huffingtonpost.com/entry/the-royals-of-wakanda-brought-black-panther-style-to-the-oscars_us_5a9ca02be4b0a0ba4ad4be05
2018-03-05 20:49:01,https://www.google.com/search?ei=ffOdWuekOIfr5gLjt4mwAg&q=black+panther+oscars&oq=black+panther+oscars&gs_l=psy-ab.3..0i131k1j0i3k1l2.12179.13634.0.13705.12.12.0.0.0.0.206.997.8j2j1.11.0....0...1.1.64.psy-ab..1.11.988...0j0i10k1j35i39k1j0i67k1j0i131i20i263i264k1j0i131i67k1j0i131i20i264k1j0i20i263k1j0i131i20i263k1j0i22i30k1.0.Q02A4zM_ke4
2018-03-05 20:48:46,https://www.google.com/search?q=black+panter&oq=black+panter&aqs=chrome..69i57j0l5.1440j0j4&sourceid=chrome&ie=UTF-8
2018-03-05 20:47:59,https://www.google.com/search?q=black+panther&tbm=nws&source=univ&tbo=u&sa=X&ved=0ahUKEwiZzOeLytbZAhWwwFkKHbPdACUQt8YBCGkoAQ&biw=1679&bih=883
2018-03-05 20:47:12,http://thecut.com/
2018-03-05 20:45:29,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_202
2018-03-05 20:44:13,https://github.com/joeyklee/quant-humanists-2018/blob/master/SYLLABUS.md
2018-03-05 20:37:44,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_190
2018-03-05 20:37:25,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_170
2018-03-05 20:37:13,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_69
2018-03-05 20:35:07,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_177
2018-03-05 20:35:07,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_65
2018-03-05 20:32:01,https://www.google.com/url?hl=en&q=https://u6980780.ct.sendgrid.net/wf/click?upn%3DSn7rfczqaz4iju6P7VfM-2BINdjLOK0XHpe7Cam1GxJZFVl5gGrPMFpjQEu9QVoJhEBNhQGNfAFI7qsigzx8WH3LR05NzGVOj2x3Ni6eIsxSCczsyvzrQj4DYZ-2Fsd4FNJbSII3TnqZqzRHwmrtVm-2BM6w-3D-3D_LDA7JbI6ESVIMqPR69g2vZIbOW6zKZ7surqyIeXll8gL3V5rjfErFnwvDawerqa4N8tcqvVjBZcArq4T2NFHDfQUIGIl31BNjokdab504GmSCxJF9o5WiXgS41Ton2qtxNpOpSOw8YJLa4CQp-2FVPYxgRLtCLt-2Ffr7ri8iEDtYCEobNPzPPcScttzzVzJBBy5XH4UpzRCeJYgpljap2R5QldAYmqxgABT57BdMsCcaA6mzKpoC-2BCZAxnneYFPGA3nQM-2Fm2uPaGAd1C9-2BCM5uB7cdJBt8Lypr1Gs-2FsZ-2BL5WqPVTsnqNfBk-2BVaYp14eKpjzW-2BGgDv7xO5SWIcxMYeCGyXQqqJ1UTFSf671KbuujtfUY6N5vBt2dD6goTykVr4WCK9wPG-2F-2BXhmV8FREyFLQsSWYkw1uOzOHrhIT5PIHB8vBGIAC-2BWnV8VLR3U6pS-2FPUT&source=gmail&ust=1520385085446000&usg=AFQjCNEJlNjErkZ5qSwpYd7CPhlHgEBBWA
2018-03-05 20:32:01,https://u6980780.ct.sendgrid.net/wf/click?upn=Sn7rfczqaz4iju6P7VfM-2BINdjLOK0XHpe7Cam1GxJZFVl5gGrPMFpjQEu9QVoJhEBNhQGNfAFI7qsigzx8WH3LR05NzGVOj2x3Ni6eIsxSCczsyvzrQj4DYZ-2Fsd4FNJbSII3TnqZqzRHwmrtVm-2BM6w-3D-3D_LDA7JbI6ESVIMqPR69g2vZIbOW6zKZ7surqyIeXll8gL3V5rjfErFnwvDawerqa4N8tcqvVjBZcArq4T2NFHDfQUIGIl31BNjokdab504GmSCxJF9o5WiXgS41Ton2qtxNpOpSOw8YJLa4CQp-2FVPYxgRLtCLt-2Ffr7ri8iEDtYCEobNPzPPcScttzzVzJBBy5XH4UpzRCeJYgpljap2R5QldAYmqxgABT57BdMsCcaA6mzKpoC-2BCZAxnneYFPGA3nQM-2Fm2uPaGAd1C9-2BCM5uB7cdJBt8Lypr1Gs-2FsZ-2BL5WqPVTsnqNfBk-2BVaYp14eKpjzW-2BGgDv7xO5SWIcxMYeCGyXQqqJ1UTFSf671KbuujtfUY6N5vBt2dD6goTykVr4WCK9wPG-2F-2BXhmV8FREyFLQsSWYkw1uOzOHrhIT5PIHB8vBGIAC-2BWnV8VLR3U6pS-2FPUT
2018-03-05 20:32:01,https://beta.observablehq.com/?utm_source=betasignups&utm_medium=email&utm_campaign=welcome
2018-03-05 20:30:29,https://mail.google.com/mail/u/0/#inbox/161f8ae9b475f4ca
2018-03-05 20:24:26,http://bl.ocks.org/xujenna/raw/3e9d0bdd1ee38c63ffb0ed39f69c6374
2018-03-05 20:24:26,http://bl.ocks.org/xujenna/raw/3e9d0bdd1ee38c63ffb0ed39f69c6374/
2018-03-05 20:24:20,https://bl.ocks.org/xujenna/e1b1ce336455b06970c2102c47f6c797
2018-03-05 20:24:20,http://bl.ocks.org/xujenna/e1b1ce336455b06970c2102c47f6c797
2018-03-05 20:22:27,http://lauren-mccarthy.com/us
2018-03-05 20:22:24,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_458
2018-03-05 20:22:23,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_448
2018-03-05 20:22:20,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_452
2018-03-05 20:22:15,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_16
2018-03-05 20:22:11,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_120
2018-03-05 20:20:49,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_8
2018-03-05 20:20:37,https://docs.google.com/presentation/d/1BX1bX_puR_ipcS0gXgeUrL6RGlbtTyeoi9pIdIlEjnQ/edit#slide=id.g349f224b12_0_0
2018-03-05 20:20:32,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_06.md
2018-03-05 20:20:21,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_07.md
2018-03-05 20:12:01,https://mail.google.com/mail/u/1/#inbox?compose=161f8dd7eac4e0f0
2018-03-05 20:12:00,https://mail.google.com/mail/u/1/#inbox?compose=161f8dd61b43f9a4
2018-03-05 20:11:52,https://mail.google.com/mail/u/1/#inbox?compose=161f8dd4d72e2261
2018-03-05 20:11:47,https://mail.google.com/mail/u/1/#inbox?compose=161f8dd32525a0b7
2018-03-05 20:11:41,https://mail.google.com/mail/u/1/#inbox?compose=161f8dd19c84e664
2018-03-05 20:09:30,https://mail.google.com/mail/u/0/#inbox/161ce5cd55167260?projector=1&messagePartId=0.1
2018-03-05 20:09:18,https://www.huffingtonpost.com/2014/12/15/virtual-body-swapping-racism_n_6328654.html
2018-03-05 20:09:18,https://www.huffingtonpost.com/?icid=hjx004
2018-03-05 20:09:17,http://www.mtv.com/news/2732118/virtual-reality-police-brutality/
2018-03-05 20:09:03,https://www.google.com/search?q=vr+experience+black+bodies+police&oq=vr+experience+black+bodies+police&aqs=chrome..69i57.8048j0j7&sourceid=chrome&ie=UTF-8
2018-03-05 18:33:37,https://www.eventbrite.com/e/refest-20-tickets-43458639962
2018-03-05 18:31:47,https://www.google.com/url?hl=en&q=http://www.culturehub.org/events/2018/3/7/refest-20&source=gmail&ust=1520375637749000&usg=AFQjCNE5T9kpaI1LyV8iQK0gagG8qezTkQ
2018-03-05 18:31:08,"https://www.google.com/maps/place/47+Great+Jones+St,+New+York,+NY+10012/@40.7269268,-73.9967407,16.2z/data=!4m5!3m4!1s0x89c25985321dacf3:0x809f4c86b36c6db6!8m2!3d40.7265254!4d-73.9926215"
2018-03-05 18:31:07,"https://www.google.com/maps/place/47+Great+Jones+St,+New+York,+NY+10012/@40.727594,-73.9999736,15.42z/data=!4m5!3m4!1s0x89c25985321dacf3:0x809f4c86b36c6db6!8m2!3d40.7265254!4d-73.9926215"
2018-03-05 18:31:06,"https://www.google.com/maps/place/47+Great+Jones+St,+New+York,+NY+10012/@40.7292335,-74.0079173,14.4z/data=!4m5!3m4!1s0x89c25985321dacf3:0x809f4c86b36c6db6!8m2!3d40.7265254!4d-73.9926215"
2018-03-05 18:31:05,"https://www.google.com/maps/place/47+Great+Jones+St,+New+York,+NY+10012/@40.7265294,-73.9948155,17z/data=!3m1!4b1!4m5!3m4!1s0x89c25985321dacf3:0x809f4c86b36c6db6!8m2!3d40.7265254!4d-73.9926215"
2018-03-05 18:31:05,"https://www.google.com/maps/place/47+Great+Jones+St,+New+York,+NY+10012/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c25985321dacf3:0x809f4c86b36c6db6!8m2!3d40.7265254!4d-73.9926215"
2018-03-05 18:31:03,"https://www.google.com/maps/search/47+Great+Jones+Street,+New+York,+NY/@40.7345587,-74.012385,15z"
2018-03-05 18:29:54,https://mail.google.com/mail/u/1/#inbox/161f6de0db4faa4b
2018-03-05 18:14:15,https://mail.google.com/mail/u/1/#search/aurelia/161708b4a9d21660
2018-03-05 18:14:12,https://mail.google.com/mail/u/1/#search/aurelia
2018-03-05 18:14:08,https://mail.google.com/mail/u/1/#search/aurelia/161d52620a31bab0
2018-03-05 18:14:07,https://mail.google.com/mail/u/1/#search/aurelia?compose=new
2018-03-05 18:13:49,http://www.xujenna.com/itp_blog/2018/02/05/qh-w2-hw-dear-data/
2018-03-05 18:13:32,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=887&action=edit
2018-03-05 18:13:31,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=887&action=edit&message=1
2018-03-05 18:12:23,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_03.md
2018-03-05 18:12:12,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_02.md
2018-03-05 18:12:06,https://github.com/joeyklee/quant-humanists-2018/issues/14
2018-03-05 18:11:47,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=887&action=edit&message=6
2018-03-05 18:06:52,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-5
2018-03-05 18:06:46,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-4
2018-03-05 18:06:42,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-3-3
2018-03-05 18:06:41,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-03-02
2018-03-05 17:59:42,https://github.com/joeyklee/quant-humanists-2018/issues/13
2018-03-05 17:59:29,https://www.google.com/url?hl=en&q=https://github.com/notifications/unsubscribe-auth/AMql0rF8gPrll9eP54NLWBffXnZDOheNks5tbJyigaJpZM4SbLjW&source=gmail&ust=1520376956478000&usg=AFQjCNEQQ2FC6p9TB9TuBv-BOrFR7r7eOA
2018-03-05 17:59:29,https://github.com/notifications/unsubscribe-auth/AMql0rF8gPrll9eP54NLWBffXnZDOheNks5tbJyigaJpZM4SbLjW
2018-03-05 17:59:20,https://mail.google.com/mail/u/0/#inbox/161f3e50e4060ff6
2018-03-05 17:55:10,https://mail.google.com/mail/u/0/#inbox/161ef0580a5285eb
2018-03-05 17:50:01,https://docs.google.com/spreadsheets/d/14HcShhLJACtvq_I6wp9K0tSL_roxWf4eWB_gJj4dhQ8/edit#gid=1871600019
2018-03-05 17:49:56,https://docs.google.com/spreadsheets/d/14HcShhLJACtvq_I6wp9K0tSL_roxWf4eWB_gJj4dhQ8/edit#gid=0
2018-03-05 17:49:53,https://docs.google.com/spreadsheets/d/14HcShhLJACtvq_I6wp9K0tSL_roxWf4eWB_gJj4dhQ8/edit
2018-03-05 17:49:50,https://docs.google.com/spreadsheets/d/14HcShhLJACtvq_I6wp9K0tSL_roxWf4eWB_gJj4dhQ8/edit?usp=drive_web&ouid=104413863944849018097
2018-03-05 16:06:36,https://secure.touchnet.com/C21125_tsa/tapp?tapp-stoken=rgaWvB61hti&Navigate=logout.jsp&STOP_APP=true
2018-03-05 16:06:36,https://secure.touchnet.com/C21125_tsa/web/logout.jsp
2018-03-05 16:05:18,https://mail.google.com/mail/u/0/#inbox/161f7d3e00d78c9c
2018-03-05 16:03:48,file:///Users/jxu2/Downloads/show.pdf
2018-03-05 16:03:45,https://secure.touchnet.com/C21125_tsa/tapp?tapp-stoken=rgaWvB61hti&Navigate=account_summary.jsp&OnError=account_summary.jsp&STMT_1098T=&STMT_ID=285774
2018-03-05 16:03:40,https://secure.touchnet.com/C21125_tsa/tapp?tapp-stoken=rgaWvB61hti&Navigate=account_summary.jsp&OnError=account_summary.jsp&LOAD_STMT_DTS=&CURR_ACTIVITY=240611&RELOAD_ALL_PMTS=
2018-03-05 16:03:10,https://secure.touchnet.com/C21125_tsa/tapp?X=1
2018-03-05 16:03:10,https://secure.touchnet.com/C21125_tsa/web/welcome.jsp
2018-03-05 16:02:57,https://secure.touchnet.com/C21125_tsa/tapp
2018-03-05 16:02:56,https://secure.touchnet.com/C21125_tsa/web/login.jsp
2018-03-05 16:02:55,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/h/?tab=IS_SSS_TAB&jsconfig=IS_ED_SSS_FINANCIALAIDLnk
2018-03-05 16:02:54,https://secure.touchnet.com/C21125_tsa/web/index.jsp
2018-03-05 16:02:52,https://sis.nyu.edu/psc/csprod_10/EMPLOYEE/HRMS/s/WEBLIB_NYU_TN.NYU_BP_AUTH.FieldFormula.IScript_NYU_BP_Tuit_Calc
2018-03-05 16:02:52,https://sis.nyu.edu/psc/csprod_10/EMPLOYEE/HRMS/s/WEBLIB_NYU_TN.NYU_BP_AUTH.FieldFormula.IScript_NYU_BP_Auth
2018-03-05 16:02:21,https://sis.portal.nyu.edu/psp/ihprod/EMPLOYEE/EMPL/?cmd=start&
2018-03-05 16:02:03,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZJRb4IwFIX%2FCuk7FHCb2ggJ04eZuGmE7WEvS6HX0aS0rLds898PRaN7Melbz%2F3OPSd3hrxRLcs6V%2BstfHWAzvttlEZ2%2FEhIZzUzHCUyzRtA5iqWZ88rFgcha61xpjKKeBkiWCeNnhuNXQM2B%2FstK3jdrhJSO9cio7SHBK2xjqtA77sAREfzWpalUeDqANHQAzmmm3VeEG%2FRryI1P0CvEBf9GSFFS%2FtFdlLBaX4LQlqoHM3zNfGWi4R8TCfjabSDXTUZC1GVYjziMX8oI3EHoopGUS9D7GCp0XHtEhKH0cQPR354X8QRC%2BP%2BvRNvc8r7KLWQ%2BvN2OeUgQvZUFBt%2FyPQGFo95egFJZ4eK2dHYXpV%2BG8vPTZP0Rq%2BXnnxsZ%2FTKaHBt2UtPXi42Rslq72VKmZ%2B5Be4gIRGh6TDy%2Fy7SPw%3D%3D&RelayState=ss%3Amem%3Aed8ab42445b52cc6cab5f69a1cef4b26c9995c519886fa8372d3f90e86e9219c
2018-03-05 16:01:47,https://www.nyu.edu/academics.html
2018-03-05 16:01:46,https://www.nyu.edu/content/nyu/en/academics.html
2018-03-05 16:01:42,https://www.nyu.edu/life/information-technology/getting-started/nyuhome.html
2018-03-05 16:01:41,http://www.nyu.edu/it/nyuhome
2018-03-05 16:01:41,https://www.nyu.edu/it/nyuhome
2018-03-05 16:01:41,http://www.nyu.edu/life/information-technology/getting-started/nyuhome.html
2018-03-05 16:01:36,https://www.google.com/search?q=nyuhome&oq=nyuhome&aqs=chrome..69i57j0l5.4912j1j7&sourceid=chrome&ie=UTF-8
2018-03-05 16:01:14,https://mail.google.com/mail/u/1/#inbox/161354d9ecf1e093
2018-03-05 16:00:16,https://mail.google.com/mail/u/1/#inbox/161d33088b558e29
2018-03-05 16:00:00,https://mail.google.com/mail/u/1/#inbox/161d32d9b91472bb
2018-03-05 15:59:12,https://www.frogdesign.com/
2018-03-05 15:59:04,https://www.google.com/search?q=Frog+Design&oq=Frog+Design&aqs=chrome..69i57j0j69i61j69i59j0l2.374j0j7&sourceid=chrome&ie=UTF-8
2018-03-05 15:58:43,https://mail.google.com/mail/u/1/#inbox/161d32ee282e10fc
2018-03-05 15:58:08,https://mail.google.com/mail/u/1/#inbox/161e2c487a8686a6
2018-03-05 15:57:44,https://mail.google.com/mail/u/1/#inbox/161e2d1d32c4224b
2018-03-05 15:57:09,https://www.google.com/url?hl=en&q=http://www.sva.edu/special-programs/summer-residency-programs/apply/dates-fees&source=gmail&ust=1520359938753000&usg=AFQjCNHeXf43B4XFmWtMoVhDRjLSDtBKjw
2018-03-05 15:57:09,http://www.sva.edu/special-programs/summer-residency-programs/apply/dates-fees
2018-03-05 15:56:44,https://mail.google.com/mail/u/1/#inbox/161e7a4fc5a948fa
2018-03-05 15:55:25,https://www.google.com/url?hl=en&q=http://buildwithnyc.github.io/&source=gmail&ust=1520369701727000&usg=AFQjCNGFSR-G_aR0klzQCFDF5ShptB3Jsw
2018-03-05 15:55:16,https://mail.google.com/mail/u/1/#inbox/161f7eccdf23fbb6
2018-03-05 15:55:02,https://calendar.google.com/calendar/r/week/2018/3/12
2018-03-05 15:54:30,https://mail.google.com/mail/u/1/#search/toolkit/1618bf982a755ea6
2018-03-05 15:54:00,https://mail.google.com/mail/u/1/#search/toolkit/1618bf982a755ea6?projector=1&messagePartId=0.1
2018-03-05 15:53:57,https://mail.google.com/mail/u/1/#search/toolkit
2018-03-05 15:53:56,https://mail.google.com/mail/u/1/#search/toolkit/1618a8a23f3b76f0
2018-03-05 15:53:51,https://mail.google.com/mail/u/1/#search/toolkit/1618a89da75fb952
2018-03-05 15:52:19,https://mail.google.com/mail/u/1/#inbox/161f7b87a3d17b74
2018-03-05 15:52:07,https://mail.google.com/mail/u/1/#inbox/161f7c1cb50c8aed
2018-03-05 15:51:54,https://mail.google.com/mail/u/2/#inbox/161d9eebb0cae260
2018-03-05 14:18:39,https://www.google.com/search?ei=zZadWrW3D6eE5wLd16CICQ&q=how+to+check+for+words+in+python&oq=how+to+check+for+words+in+python&gs_l=psy-ab.3..0i22i30k1l2.60848.64982.0.65123.34.30.1.0.0.0.168.2968.17j12.29.0..2..0...1.1.64.psy-ab..4.30.2954...0j35i39k1j0i67k1j0i131k1j0i131i20i264k1j0i20i264k1j0i20i263i264k1j0i20i263k1j33i22i29i30k1.0.nBGOws6299k
2018-03-05 14:14:29,https://stackoverflow.com/questions/5319922/python-check-if-word-is-in-a-string
2018-03-05 14:13:17,https://www.google.com/search?ei=IJadWp6JB4O5gge_y4rwCw&q=how+to+clean+up+python+keylogger&oq=how+to+clean+up+python+keylo&gs_l=psy-ab.3.0.33i21k1j33i160k1l2.93422.100963.0.102526.28.28.0.0.0.0.119.2191.25j3.28.0....0...1.1.64.psy-ab..0.28.2177...0j35i39k1j0i131k1j0i131i20i264k1j0i20i264k1j0i22i30k1j0i22i10i30k1j33i22i29i30k1.0.ttKQSy0aQx4
2018-03-05 14:12:58,https://www.udemy.com/off-limits-python-build-a-windows-keylogger-using-python-3/
2018-03-05 14:12:17,https://sourceforge.net/p/pykeylogger/wiki/Usage_Instructions/
2018-03-05 14:10:24,https://www.google.com/search?q=keyboard.KeyCode&oq=keyboard.KeyCode&aqs=chrome..69i57j0l5.2903j0j7&sourceid=chrome&ie=UTF-8
2018-03-05 14:06:56,https://www.ibm.com/cloud/watson-tone-analyzer/pricing
2018-03-05 14:05:52,https://www.google.com/search?ei=qJSdWpWqDsza5gKF9r3YBg&q=ibm+watson+tone+analyzer+api+limit&oq=ibm+watson+tone+analyzer+api+limit&gs_l=psy-ab.3...1498.2209.0.2328.4.4.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..4.0.0....0.Lq5hI_Ec-Ik
2018-03-05 14:05:17,https://www.ibm.com/blogs/bluemix/2016/11/measuring-emotion-ibm-watson-speech-text-tone-analysis/
2018-03-05 14:05:07,http://developer.ibm.com/answers/questions/255295/call-to-watson-tone-analyzer-tone-analyzer-betaapi/
2018-03-05 14:05:07,https://developer.ibm.com/answers/questions/255295/call-to-watson-tone-analyzer-tone-analyzer-betaapi/
2018-03-05 14:04:51,https://developer.ibm.com/answers/questions/387470/is-there-a-limit-on-simultaneous-api-calls-to-wats/
2018-03-05 14:04:19,http://developer.ibm.com/answers/questions/387470/is-there-a-limit-on-simultaneous-api-calls-to-wats/
2018-03-05 14:04:09,https://www.google.com/search?q=ibm+watson+tone+analyzer+limit&oq=ibm+watson+tone+analyzer+limit&aqs=chrome..69i57.6981j0j4&sourceid=chrome&ie=UTF-8
2018-03-05 14:03:03,https://www.ibm.com/watson/developercloud/tone-analyzer/api/v3/#ToneScore
2018-03-05 13:36:11,https://mail.google.com/mail/u/1/#inbox/161f71f39c2d489c
2018-03-05 13:35:50,https://mail.google.com/mail/u/2/
2018-03-05 13:35:47,https://mail.google.com/accounts/SetOSID?authuser=2&continue=https%3A%2F%2Faccounts.youtube.com%2Faccounts%2FSetSID%3Fssdc%3D1%26sidt%3DALWU2ct7Wjw0mV3RMxBFek0AblUC%252FkT7TSIqyVihZU9HcP1NY67NE9qCJO4%252Byzib%252Bmy43E%252FGby%252B%252BDbg8yowDgNsWhWjfX9IzS6vjwTjF2IUdKKuMkPAQMihM%252BvjNJ%252F1C2oe6uYIV2R4InaR3h4FwAseMP6FlzlUzTvF7ZfsOW%252FhqM%252BNsnIny2uc2uGjcZu7C40R71gYOrX8V5sQoYrimODv3fRjvgGQemiCi9K0eT53pzAlihjaGCKjVh8bplJH56R%252FNQ32Nx8zW%252B6M19IsUVGoe37ZNH625NZC4KQRzitrcl8U3H%252FCnNCJHSVJFn0ednqvFaZD%252F%252BGSe857JmvtfDEWo0lgR0HKMvQ%253D%253D%26continue%3Dhttps%253A%252F%252Fmail.google.com%252Fmail%252Fu%252F2%252F%253Fauth%253D2AUmYX_92mQygzRCbXpCjbooEXfJccAXT3IaVL0H_xR6krf3aACOmjOm1GhPf5Ugl0zAEQ.%2526authuser%253D2&osidt=ALWU2ctGb-5j3c0mm6VQ_TJSxwfVDAwOZ28SLz0st_a_GvSoTEey5LE6XhZYrLZgqvwlG28GoE_LiAgOwbQD7fKJRbS5B-MimU6jxGdK9lhFbc80F-7k5CN2UU48rvAxISauLtzNOGSF
2018-03-05 13:35:47,https://accounts.youtube.com/accounts/SetSID?ssdc=1&sidt=ALWU2ct7Wjw0mV3RMxBFek0AblUC/kT7TSIqyVihZU9HcP1NY67NE9qCJO4%2Byzib%2Bmy43E/Gby%2B%2BDbg8yowDgNsWhWjfX9IzS6vjwTjF2IUdKKuMkPAQMihM%2BvjNJ/1C2oe6uYIV2R4InaR3h4FwAseMP6FlzlUzTvF7ZfsOW/hqM%2BNsnIny2uc2uGjcZu7C40R71gYOrX8V5sQoYrimODv3fRjvgGQemiCi9K0eT53pzAlihjaGCKjVh8bplJH56R/NQ32Nx8zW%2B6M19IsUVGoe37ZNH625NZC4KQRzitrcl8U3H/CnNCJHSVJFn0ednqvFaZD/%2BGSe857JmvtfDEWo0lgR0HKMvQ%3D%3D&continue=https://mail.google.com/mail/u/2/?auth%3D2AUmYX_92mQygzRCbXpCjbooEXfJccAXT3IaVL0H_xR6krf3aACOmjOm1GhPf5Ugl0zAEQ.%26authuser%3D2
2018-03-05 13:35:47,https://mail.google.com/mail/u/2/?auth=2AUmYX_92mQygzRCbXpCjbooEXfJccAXT3IaVL0H_xR6krf3aACOmjOm1GhPf5Ugl0zAEQ.&authuser=2
2018-03-05 13:26:45,https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/2/&ss=1&scc=1&authuser=2&ltmpl=default&ltmplcache=2&emr=1&osid=1#
2018-03-05 13:26:45,https://accounts.google.com/signin/v2/sl/pwd?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F2%2F&ss=1&scc=1&authuser=2&ltmpl=default&ltmplcache=2&emr=1&osid=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin
2018-03-05 13:26:03,https://www.thecut.com/2018/03/oscars-2018-ryan-seacrest-red-carpet-awkward-moments.html
2018-03-05 13:12:16,https://mail.google.com/mail/u/1/
2018-03-05 13:12:15,https://notifications.google.com/u/2/widget?sourceid=23&hl=en&origin=https%3A%2F%2Fmail.google.com&usegapi=1&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.81qcNVAdPP0.O%2Fm%3D__features__%2Fam%3DAAE%2Frt%3Dj%2Fd%3D1%2Frs%3DAHpOoo-rnjHqcvRAlxtG-9gMfTrV90boIA#pid=23&_methods=onError%2ConInfo%2ChideNotificationWidget%2CpostSharedMessage%2Creauth%2CsetNotificationWidgetHeight%2CsetNotificationWidgetSize%2CswitchTo%2CnavigateTo%2CsetNotificationText%2CsetNotificationAnimation%2CgetNotificationText%2CvalidateUser%2C_ready&id=I0_1520225955031&_gfid=I0_1520225955031&parent=https%3A%2F%2Fmail.google.com&pfname=&rpctoken=33062797
2018-03-05 13:12:14,https://www.google.com/accounts/signin/continue?sarp=1&continue=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F1%2F&plt=AKgnsbvY7b7ALDJU-ZA2ywhQiDnLTHKcM-CMuREaaMtJlt18Uba3BKK8W07zQhmIJmB2nzQnUvpK_K_aNuvSx-LGO-5iR7NELV9DqUa7opwOiIUXIPzQ490H3CHzPdELZyrjmKhaHQoShN5q-6AvMByjYhnssG9O6dCFid2OqmA_eNF_-YuhgW1NkAYaAyYmZ0_oecIyL904e-NqaAe-zWVS-O-lufmYFpiUrE3APOy-3Yo7Jthb08E&scc=0&service=mail&osid=1
2018-03-05 13:12:14,https://accounts.google.com/signin/continue?sarp=1&continue=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F1%2F&plt=AKgnsbvY7b7ALDJU-ZA2ywhQiDnLTHKcM-CMuREaaMtJlt18Uba3BKK8W07zQhmIJmB2nzQnUvpK_K_aNuvSx-LGO-5iR7NELV9DqUa7opwOiIUXIPzQ490H3CHzPdELZyrjmKhaHQoShN5q-6AvMByjYhnssG9O6dCFid2OqmA_eNF_-YuhgW1NkAYaAyYmZ0_oecIyL904e-NqaAe-zWVS-O-lufmYFpiUrE3APOy-3Yo7Jthb08E&scc=0&service=mail&osid=1
2018-03-05 13:12:14,https://mail.google.com/accounts/SetOSID?authuser=1&continue=https%3A%2F%2Faccounts.youtube.com%2Faccounts%2FSetSID%3Fssdc%3D1%26sidt%3DALWU2cueQQCk6iCfN8Agg%252BOVIPoR0QsaNzf81E6FjxczbzkDcHSc7N%252FUNCbo%252Bp4kZjh6sjpYURIMLTCW1GGgyCgoRwCfrzYYcT1aZKObVpzdWloPYTTk5a7QLIju6zOLy%252BGMBPA0MPGtgo49M1pLZSgtn7JDC0nCGBA4FiJ4hpotWoO6R9bQRaEZ0bXw36dCBBeqLIkwDOdfs4KefFUUHeEW2%252FKu1HUrzcaL5WiFlhyMgO9gSkmfu%252BI0Tfhr9kz3qgnOzi9CIvlFQJ7a2SDAPggtLXUT5NEMmxvYgOWx%252BK%252FH0j2epj5y50pHAs08uZ4sEXahmxiiHQn6ae%252FSHW8lYXRNU7d14nEBrg%253D%253D%26continue%3Dhttps%253A%252F%252Fmail.google.com%252Fmail%252Fu%252F1%252F%253Fauth%253D2AUmYex859Wcw4k_a576v2pl-0FtrE3S6vmdJs7JkTPWmroqJ91Lc6Q2G7SbVbmDYwBjvg.%2526authuser%253D1&osidt=ALWU2cvz8iWOGqCrgvLpW0RJ5FAMCqmiNYVhgkYdwagmND7-YgFFDSOcixOIR7cOC4gF1xX2c8pulcVZ_-J6fFbGGGBvZSZvZkY2Wf57CsN-xh7D_pRwy-8hCx8UOY1YAR0yH9jSyQ10
2018-03-05 13:12:14,https://accounts.youtube.com/accounts/SetSID?ssdc=1&sidt=ALWU2cueQQCk6iCfN8Agg%2BOVIPoR0QsaNzf81E6FjxczbzkDcHSc7N/UNCbo%2Bp4kZjh6sjpYURIMLTCW1GGgyCgoRwCfrzYYcT1aZKObVpzdWloPYTTk5a7QLIju6zOLy%2BGMBPA0MPGtgo49M1pLZSgtn7JDC0nCGBA4FiJ4hpotWoO6R9bQRaEZ0bXw36dCBBeqLIkwDOdfs4KefFUUHeEW2/Ku1HUrzcaL5WiFlhyMgO9gSkmfu%2BI0Tfhr9kz3qgnOzi9CIvlFQJ7a2SDAPggtLXUT5NEMmxvYgOWx%2BK/H0j2epj5y50pHAs08uZ4sEXahmxiiHQn6ae/SHW8lYXRNU7d14nEBrg%3D%3D&continue=https://mail.google.com/mail/u/1/?auth%3D2AUmYex859Wcw4k_a576v2pl-0FtrE3S6vmdJs7JkTPWmroqJ91Lc6Q2G7SbVbmDYwBjvg.%26authuser%3D1
2018-03-05 13:12:14,https://mail.google.com/mail/u/1/?auth=2AUmYex859Wcw4k_a576v2pl-0FtrE3S6vmdJs7JkTPWmroqJ91Lc6Q2G7SbVbmDYwBjvg.&authuser=1
2018-03-05 13:12:12,https://www.google.com/a/nyu.edu/acs
2018-03-05 13:07:52,https://docs.google.com/spreadsheets/d/18US-qoc-2dtiQZvIh3xKYzuqxhXpoGxvhl9n1hd91Kk/edit#gid=1871600019
2018-03-05 13:07:49,https://docs.google.com/spreadsheets/d/18US-qoc-2dtiQZvIh3xKYzuqxhXpoGxvhl9n1hd91Kk/edit
2018-03-05 13:07:46,https://docs.google.com/spreadsheets/d/18US-qoc-2dtiQZvIh3xKYzuqxhXpoGxvhl9n1hd91Kk/edit?usp=drive_web&ouid=104413863944849018097
2018-03-05 13:07:44,https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/u/1/&ss=1&scc=1&authuser=1&ltmpl=default&ltmplcache=2&emr=1&osid=1#
2018-03-05 13:07:44,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fVJNTxsxEL1X4j9Yvu8XUBFZ2UUpCBEJ2hVZeujNeCcbE9uz9dhJ%2Bfd1NiDooVyf37yP8cwv%2F1jDduBJo6t5lZecgVPYazfU%2FLG7yWb8sjn5MidpzSgWMWzcA%2FyOQIGlSUdieqh59E6gJE3CSQskghKrxf2dOM1LMXoMqNBwtryu%2BabXGy0H3MrtBgaHo9QS1dbBMG7l6J4Ga6wdn5Gzn2%2BxTg%2BxlkQRlo6CdCFBZTXLyrOs%2FNpVM1FeiPPzX5y1r07ftDs2%2BCzW05FE4rbr2qz9seomgZ3uwX9P7JoPiIOBXKE92LeSSO8SvJaGgLMFEfiQAl6ho2jBr8DvtILHh7vUMoSRRFHs9%2Fv8XaaQhXuJOfSxkIp4M61VTM38h31%2Bnlu%2B%2BfLmXXlefJBqXr%2Fr0GJ53aLR6oUtjMH9lQcZUoXgY2pwg97K8H%2B3Kq8mRPfZeqKK6GgEpdcaes6K5uj6712ka%2FkL&RelayState=https%3A%2F%2Faccounts.google.com%2FCheckCookie%3Fcontinue%3Dhttps%253A%252F%252Fmail.google.com%252Fmail%252Fu%252F1%252F%26service%3Dmail%26ss%3D1%26scc%3D1%26rm%3Dfalse%26osid%3D1#
2018-03-05 13:07:44,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO;jsessionid=v9f7hr6j6lsm1i57q2f89z5m0?execution=e1s1#
2018-03-05 12:56:49,https://www.google.com/search?q=pizza-tycoon&ei=1oSdWqbNFoLr_AaK1rKYAg&start=10&sa=N&biw=1680&bih=883
2018-03-05 12:56:38,https://www.google.com/search?q=pizza-tycoon&oq=pizza-tycoon+&aqs=chrome..69i57j69i60j0l4.4407j0j4&sourceid=chrome&ie=UTF-8
2018-03-05 12:56:00,http://bestfwdservice.com/rg-clkrdr.php?_t=zro&_d=gWCC1c5qJvvB.JvV&_p=t%20nOnrFwZ&_pr=TAbGFEb&_v=zzHGZTAzAzHAAEETzTH&_rdfu=X55g%3ADDWBJaU.JvVD14RfNmfDQff4JaWJU%3F9PTr19aNEHgot9I8Tif%3DYaV37wV2O4FNa5lwyajbE0e3w1J9mGI4O-81RbVykSkzXz83MNaAkXjBBW%20aj0qw%20JyVcRchIBWOgEE3UhAausjuNQy3QYZfVzGjo1NkUCTInezF4hriXeoUkcw7bMBZ3j7yYS5UCTYsiz3TWVrXFwGv3gwVpvkcy6O0xj5jr14yFY0NMerWgiVrXRNY49uR-fal9R2RIrl8KhofHyy_IYsgIl%2F%20WomS-jUgs9ySQhxh0tIRG1%20jag_0U96%2F7mtf_5ZRpb_5i%20g91OJ72SCOStgj%3D0R_ICGvtqbvC2J%20HOEgAwGtMZJkB04bjFw20cu2szSSYkKJQIh_Oafk%20RsztxaZXYrBX9x%2F8%20bRxr54L0EhCo9A98tzfsfHjwlp%2FRJwI2H%2Fg%20Ai8s1Fk6hWTu8oRUnAiu1mz7jN7owIzu%20fm9tAjNRUrjesLWq9VjpKV25_Y%2FUTECNcba4NECp-c7E44J4j-6EAMLSayegoXzhNecyzI__rsif%20FhS%20JV%3DK4XHuh-HVXJEylHbeS_IvgTwz1wmVcwY4lTkwZBS5sUeyZIhopkA3XWEyROWvj7eGyOhr%2FXp8wstiRrCjnvbirIeQV19R57KFoaLcOUrsu8SZhQf8_7N%2FJnFBhn4lKlAvJ4o0J%2FCeQnun7w9nlLxXQy0yKhffV6ZJr%2FSyzjqbQbTa7Ab%3Dk5kHJLoEa3IaI0O%2FiOg%20r6pT7wW1yyTIK%20%3DgCG8c0%3DZeJKG6E49%2F2RQuvTOzO6Qs6LJIj_jeY71sNIu0CkGwUnT_e2V24Kl_jfcu_-jtMx9FsZ4Grp%2FN8zhhG%3Db6VrjuRgEKYsSlo_3Wb-%2FhY-JNfyJ3x3ELkW9lJJ01%207Wylg4jBs%3DOh6CASZ8w6IcUZYLbh-KhNJ-fZuNo0qy92-3WvQL0EsHcnsA0e5aL_WH5o_N%2FOVHG%2FcBN%3D5tIA%2Fh08_%205tNzG54AWvbyRzQHrxEh4azO-5CvEFp%3DQycBtgKZHb91kalFrHQ%20HjYkbg%3DbklorlJOqxNSh4t-nZ6RF8B6B%20NHMmNHtRgV_Acn%209zcM-25ZIyl-%20cWmvlqaIAsYUSuii-rRjK4n1YY8uepRbtfrmsJaiOtVhL%20_%3DL-0I-L0x5skQmUF2UmmERJbRtAFbKpxzk9-FcYi_Ql95rKnfUZ3zf-koJEsQstEGwQxuIfVvbwUAR%3DcZJnKn-bte4YuvrBucq-kbx0xXO6CpwkWm8hM1nZj%3D%205aS794KYHyZk0F%3DX7NMoOwkqubT4lpWqpWNY46pZHWq%3DWFEyoq_245%2FrYws6J6ZnGvmVW9%3DW78kaY2r0-i%2FnFJgqBz-moB1NI1WFCgcvJJlmRQQlN-u%3DRk%3Dg8t4C%2FSwwzX1aqksMFYR8ry%20BywrHn8J8_FuN%3DSb555RAZ052mjJoaTEwaBfSA6V1jnJ3zoe0kCRUcj7sTk%2FG%20%20frJavsiu9ivUNtkup%2F9W-RJGx1lu_ibb%3DgbWn0Za_4mK2sYBm73gfA2Z%2FeEIySZszEz2b_Mlne57%20XbT%20XuVNf5KvCJzp%2FRb%20RuygbxYTLH5tmYhOUoJm_n%3D6Te9qFe%3Dkw_iUW1IRzQF-k%3DgzI%3D9NXgiXLYWG8cEen9S4raK%20Hg5rog6s_IEUi2H5yE%203XxRmO%2Fca4XWNylstbAf8syCJ-NvZAbAUC-xl967%3Dl-w%20EfycVC0WRwZBy0Zl8mokAe0hRJmiS5cmjQ9Ai8xRjEfLlYcX-4&_rdrtyp=5&_bku=X55g%3ADDQi49fNmWJf.JvVD%3F%26s1Py-aFlk7Zi_eRHb+CM1RyE7ubzF+qXmt%25G_IMfA5asT8ktg%2FXHF%25Gh%3Di2N9Alzqt_QTbMwzNzZ+klx+1%25G_l%3DGSCu2CrQH3Tvl5ibEibplL%25GhWeF7uQ%3DGrKltN-Xx%25GhTwh_EMVZm9x%3D%25Gh4-eMi7y%25Ghn5+nOE+ZuFs%25FI%25FI
2018-03-05 12:55:58,http://pizza-tycoon.com/
2018-03-05 12:55:16,http://xujenna.com/stats/
2018-03-05 12:55:06,https://panel.dreamhost.com/index.cgi?tree=domain.stats&
2018-03-05 12:39:06,https://www.flickr.com/photos/133005141@N08/39701711305/in/datetaken/
2018-03-05 12:39:05,https://www.flickr.com/photos/133005141@N08/26725140028/in/datetaken/
2018-03-05 12:39:03,https://www.flickr.com/photos/133005141@N08/39701711955/in/datetaken/
2018-03-05 12:38:51,https://www.flickr.com/photos/133005141@N08/40595840512/in/datetaken/
2018-03-05 12:38:43,https://www.flickr.com/photos/133005141@N08/40595840502/in/datetaken/
2018-03-05 12:36:23,https://www.thecut.com/2018/03/emma-stone-2018-oscars-best-director-greta-gerwig.html
2018-03-05 12:34:15,https://www.thecut.com/2017/11/darren-aronofsky-kind-of-stressed-jennifer-lawrence-out.html
2018-03-05 12:33:44,https://www.thecut.com/2018/03/weekly-horoscope-astrology-madame-clairevoyant-march-5.html
2018-03-05 12:30:48,https://twitter.com/JasmineLWatkins/status/970511388341915648/photo/1?ref_src=twsrc%5Etfw&ref_url=https%3A%2F%2Ffeedly.com%2Fi%2Fcategory%2Fdaily
2018-03-05 12:28:18,http://humanetech.com/jobs/
2018-03-05 12:28:13,https://mail.google.com/mail/u/1/#inbox/161f7277c9a569b3
2018-03-05 12:27:50,https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md#assignment
2018-03-05 12:25:00,https://www.google.com/url?hl=en&q=https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md%23assignment&source=gmail&ust=1520356855432000&usg=AFQjCNF4KW0ClddNORBpk8LzHu6ZT4XRbw
2018-03-05 12:22:11,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=873&action=edit&message=1
2018-03-05 12:21:26,https://github.com/joeyklee/quant-humanists-2018/blob/master/_templates/assignment-submission-template.md
2018-03-05 12:21:01,https://www.google.com/url?hl=en&q=https://github.com/joeyklee/quant-humanists-2018/issues&source=gmail&ust=1520356855432000&usg=AFQjCNFAWAvs7RjzwdQqfczrZuupCQv_sg
2018-03-05 12:19:38,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?p=846
2018-03-05 12:19:38,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Approve+Comment&_wpnonce=17318daf27&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dapprove%26c%3D116&action=approvecomment&c=116&noredir=1
2018-03-05 12:19:38,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?p=846&approved=1
2018-03-05 12:19:33,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=approve&c=117#wpbody-content
2018-03-05 12:19:30,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=approve&c=116#wpbody-content
2018-03-05 12:19:25,https://mail.google.com/mail/u/1/#inbox/161f193c5f6714f5
2018-03-05 12:14:54,https://www.buzzfeed.com/jenniferabidor/cynthia-nixon-and-sarah-jessica-parker?utm_term=.vc7ZKN9nw#.jnm7GPEYy
2018-03-05 12:14:54,https://www.buzzfeed.com/jenniferabidor/cynthia-nixon-and-sarah-jessica-parker#.jnm7GPEYy
2018-03-05 12:14:54,https://www.buzzfeed.com/jenniferabidor/cynthia-nixon-and-sarah-jessica-parker
2018-03-05 12:14:40,https://www.google.com/search?q=sex+and+the+city&oq=sex+and&aqs=chrome.2.69i57j69i60j35i39j69i61l2j0.2382j0j7&sourceid=chrome&ie=UTF-8
2018-03-05 12:11:59,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=873&action=edit&message=6
2018-03-05 11:47:22,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-2
2018-03-05 11:47:15,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-3
2018-03-05 11:46:45,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-03-02
2018-03-05 11:46:41,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-02
2018-03-05 11:46:39,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-3-2
2018-03-05 11:45:37,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-3-1
2018-03-05 11:45:35,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-3-3
2018-03-05 11:45:34,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-3-4
2018-03-05 11:32:51,https://www.amazon.com/gp/yourstore/iyr/ref=pd_ys_iyr_edit_watched?ie=UTF8&collection=watched
2018-03-05 11:32:49,https://www.amazon.com/gp/yourstore/iyr/ref=sv_ys_2
2018-03-05 11:32:34,https://www.amazon.com/gp/yourstore/ref=nav_youraccount_recs
2018-03-05 11:32:10,https://www.google.com/search?q=amazon+video+watch+history&oq=amazon+video+watch+history&aqs=chrome..69i57j0l2j69i64.2546j0j7&sourceid=chrome&ie=UTF-8
2018-03-05 11:32:04,https://www.amazon.com/gp/video/storefront/ref=sv_atv_0?ie=UTF8&merchId=originals1
2018-03-05 11:31:53,https://www.amazon.com/gp/video/watchlist/ref=sv_atv_8
2018-03-05 11:31:49,https://www.amazon.com/Prime-Instant-Video/s/browse/ref=nav_youraccount_piv?_encoding=UTF8&node=2676882011
2018-03-05 11:31:49,https://www.amazon.com/b/ref=lp_2676882011_nav_youraccount_piv?rh=i%3Aprime-instant-video%2Cn%3A2676882011&ie=UTF8&node=2676882011
2018-03-05 11:06:26,https://www.facebook.com/weareASH/videos/175273675880747/
2018-03-05 11:05:30,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/03/intervention_forweb.mp4
2018-03-05 11:01:24,http://weareash.org/new_version_staging/dist/what-we-do/pilot-site.html
2018-03-05 10:55:40,https://mail.google.com/mail/u/1/#inbox/161f6df99b8a2432
2018-03-05 10:47:16,https://mail.google.com/mail/u/1/?ui=2&ik=b749d0747b&view=lg&msg=161f6c7e047494c2
2018-03-05 10:46:52,https://calendar.google.com/calendar/r/week/2018/3/19
2018-03-05 10:45:43,https://mail.google.com/mail/u/1/#inbox/161f6b99b180184a
2018-03-05 10:44:17,https://mail.google.com/mail/u/0/#inbox/161f5fb678c3701a
2018-03-05 10:43:22,https://mail.google.com/mail/u/1/#inbox/161f6c8ac1f01007
2018-03-05 10:39:22,https://mail.google.com/mail/u/2/#search/music/15889cb57b64d6f5
2018-03-05 10:39:13,https://mail.google.com/mail/u/2/#search/music/15889cb57b64d6f5?projector=1
2018-03-05 10:39:09,https://docs.google.com/a/weareash.org/uc?id=0B4G0fcTomV6GcUI5b0IwVU9QMTQ&export=download&authuser=2
2018-03-05 10:39:09,https://docs.google.com/a/weareash.org/uc?id=0B4G0fcTomV6GcUI5b0IwVU9QMTQ&export=download
2018-03-05 10:38:36,https://mail.google.com/mail/u/2/#search/music
2018-03-05 10:38:25,https://mail.google.com/mail/u/2
2018-03-05 10:38:21,https://mail.google.com/mail/u/0/
2018-03-05 10:38:19,https://mail.google.com/mail/
2018-03-05 10:38:19,https://gmail.com/
2018-03-05 10:38:19,http://gmail.com/
2018-03-05 10:38:19,https://www.google.com/gmail/
2018-03-05 10:16:07,https://docs.google.com/document/d/11RpZaKMpIAHRFg0SUgOV6QAZKle-QT0v9X1i_tmlCw4/edit
2018-03-05 10:16:02,https://docs.google.com/document/d/11RpZaKMpIAHRFg0SUgOV6QAZKle-QT0v9X1i_tmlCw4/edit?usp=drive_web&ouid=104036777704885376701
2018-03-05 10:16:02,https://docs.google.com/document/u/2/d/11RpZaKMpIAHRFg0SUgOV6QAZKle-QT0v9X1i_tmlCw4/edit?usp=drive_web&ouid=104036777704885376701
2018-03-05 10:15:58,https://drive.google.com/drive/u/2/my-drive
2018-03-05 10:15:57,https://drive.google.com/drive/u/2/
2018-03-05 10:15:57,https://drive.google.com/drive/u/2/?tab=mo
2018-03-05 10:15:56,https://drive.google.com/?tab=mo&authuser=2
2018-03-05 10:09:46,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520262525872&xpc=%7B%22cn%22%3A%22cr9dvt%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWaQHW9Ud99VhPL6NoKTuLPzes6sAjpWTkISa8xKnclW9ZULwaYp3iJq2wA5GxSlSP161peSBIQBL7BBLysk7D877YP1jQ%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=jhd4zi5rrr5w
2018-03-05 10:09:46,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520262525872&xpc=%7B%22cn%22%3A%22cr9dvt%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWaQHW9Ud99VhPL6NoKTuLPzes6sAjpWTkISa8xKnclW9ZULwaYp3iJq2wA5GxSlSP161peSBIQBL7BBLysk7D877YP1jQ%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AU%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BTjGfwcXeYblUkeqToyjC0efHVmQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.6413041013142147&hb=1&tn=maqhv77t8qcu&rld=1
2018-03-05 10:07:04,https://www.dropbox.com/sh/75yhlmla0ttfpz9/AADdujaBGMvsAdz6QhK8HWb7a?dl=0&preview=Maggie+Take+2+-+2%3A18%3A18%2C+2.15+PM.mp3
2018-03-05 10:07:01,https://www.dropbox.com/sh/75yhlmla0ttfpz9/AADdujaBGMvsAdz6QhK8HWb7a?dl=0
2018-03-05 10:05:53,https://www.dropbox.com/sh/75yhlmla0ttfpz9/AADdujaBGMvsAdz6QhK8HWb7a?dl=0&preview=Kyle+Take+3+-+2%3A18%3A18%2C+2.16+PM.mp3
2018-03-05 10:02:12,https://www.youtube.com/watch?time_continue=5&v=-pNPLxJ1tI8
2018-03-05 10:01:17,https://app.frame.io/d/684e6276-e73a-4f5f-adb0-2e600a9aac92
2018-03-05 10:00:46,http://weareash.org/newland/images/newland5.mp4
2018-03-05 10:00:38,http://weareash.org/images/newland5.mp4
2018-03-05 10:00:35,http://weareash.org//images/newland5.mp4
2018-03-05 09:59:52,http://weareash.org/newland
2018-03-05 09:59:52,http://weareash.org/newland/
2018-03-05 09:59:44,http://weareash.org/newland_paypal_test/
2018-03-05 09:54:38,https://www.facebook.com/weareASH/
2018-03-05 09:54:30,https://www.facebook.com/pg/weareASH/videos/
2018-03-05 09:54:26,https://www.facebook.com/weareASH/videos/
2018-03-05 09:54:17,http://weareash.org/
2018-03-05 09:53:24,https://www.facebook.com/weareASH/videos/1836888046337028/
2018-03-05 09:49:22,https://www.facebook.com/profile.php?id=112712442087939
2018-03-05 09:49:20,https://www.facebook.com/search/top/?q=ambassadors%20for%20sustained%20health
2018-03-05 09:48:39,https://www.facebook.com/max.horwich?hc_ref=ARR_a0_i4lVMHh9TSSSYzj-9-Sa6cBHVqJ24uJ7gfzQMwEMnYFAb-tzJbcbMo2b-BQ0
2018-03-05 09:48:38,https://www.facebook.com/photo.php?fbid=10100494875677013&set=a.555790918423.2081213.4201039&type=3&theater
2018-03-05 09:48:36,https://www.facebook.com/photo.php?fbid=10100513004811083&set=a.555790918423.2081213.4201039&type=3&theater
2018-03-05 09:46:47,https://portal.office.com/OLS/MySoftware.aspx?source=ohp-ib&SoftwareManageLayout=Panel_MicrosoftOffice_ClientDownload
2018-03-05 09:46:37,https://www.office.com/apps?auth=2&home=1
2018-03-05 09:46:27,https://office.live.com/start/PowerPoint.aspx?auth=2&nf=1
2018-03-05 09:46:27,https://office.live.com/start/auth/signin
2018-03-05 09:46:27,https://office.live.com/start/PowerPoint.aspx?auth=2
2018-03-05 09:46:26,https://login.windows.net/common/oauth2/authorize?response_mode=form_post&response_type=id_token&scope=openid&msafed=0&nonce=7ee3fec8-c583-439f-b62e-7ca449426967.636558247767262078&state=https%3a%2f%2foffice.live.com%2fstart%2fPowerPoint.aspx%3fauth%3d2&client_id=4b233688-031c-404b-9a80-a4f3f2351f90&redirect_uri=https%3a%2f%2foffice.live.com%2fstart%2fauth%2fsignin&login_hint=xujenna%40nyu.edu
2018-03-05 09:46:26,https://login.microsoftonline.com/common/oauth2/authorize?response_mode=form_post&response_type=id_token&scope=openid&msafed=0&nonce=7ee3fec8-c583-439f-b62e-7ca449426967.636558247767262078&state=https%3a%2f%2foffice.live.com%2fstart%2fPowerPoint.aspx%3fauth%3d2&client_id=4b233688-031c-404b-9a80-a4f3f2351f90&redirect_uri=https%3a%2f%2foffice.live.com%2fstart%2fauth%2fsignin&login_hint=xujenna%40nyu.edu
2018-03-05 09:44:10,https://mail.google.com/mail/u/1/#search/Kate+Compton
2018-03-05 09:44:02,https://mail.google.com/mail/u/1/#search/Kate+Compton+talk
2018-03-05 09:43:42,https://mail.google.com/mail/u/1/#search/kate+compton
2018-03-05 09:43:34,https://www.office.com/?auth=2&home=1
2018-03-05 09:43:33,https://www.office.com/
2018-03-05 09:43:33,https://login.microsoftonline.com/common/oauth2/authorize?client_id=4345a7b9-9a63-4910-a426-35363201d503&response_mode=form_post&response_type=code+id_token&scope=openid+profile&state=OpenIdConnect.AuthenticationProperties%3dbq-S0goXg-w_N0KDE03IbhLvC-5l63MCOS4xxAfx5rEIEJTSC6_KOeBXHGoS1Y5gJGO0AzwYZLqpo864UjhdvRtcYS8-YS4ie_G7lwHNidXXYhplrD5fizx2y7MdDErFmlB02AHElq9GEMY9A3wmR1IDu43rSw8rM3Ar7nYvh6qxPZJ5exudVBJcGHBspNVP&nonce=636558578121123257.OWJhNGNmMjctOWZjYi00OTFiLWJhZWYtOWU2YWRjZmRiZDFkODQyYmQxYWItYjE1NS00Nzg1LTgxMmItMTVkZjc2NjFiZTVl&redirect_uri=https%3a%2f%2fwww.office.com%2f&ui_locales=en-US&mkt=en-US&client-request-id=f3e4176b-150a-40f8-baed-bfa84b85a170&msafed=0
2018-03-05 09:43:29,https://www.nature.com/articles/d41586-018-02391-6?WT.feed_name=subjects_neuroscience
2018-03-05 09:42:54,https://mail.google.com/mail/u/0/#inbox/161d9c58287684e3
2018-03-05 00:34:23,https://mail.google.com/mail/u/1/#inbox/161f38e1c914b326
2018-03-05 00:33:32,https://office.live.com/start/Excel.aspx?auth=2&nf=1
2018-03-05 00:33:32,https://office.live.com/start/Excel.aspx?auth=2
2018-03-05 00:33:00,https://office.live.com/start/Excel.aspx?auth=2&s=4&nf=1#
2018-03-05 00:32:58,https://office.live.com/start/Excel.aspx?auth=2&s=4&nf=1
2018-03-05 00:32:57,https://login.windows.net/common/oauth2/authorize?response_mode=form_post&response_type=id_token&scope=openid&msafed=0&nonce=7ee3fec8-c583-439f-b62e-7ca449426967.636558247767262078&state=https%3a%2f%2foffice.live.com%2fstart%2fExcel.aspx%3fauth%3d2%26s%3d4%26nf%3d1&client_id=4b233688-031c-404b-9a80-a4f3f2351f90&redirect_uri=https%3a%2f%2foffice.live.com%2fstart%2fauth%2fsignin
2018-03-05 00:32:57,https://login.microsoftonline.com/common/oauth2/authorize?response_mode=form_post&response_type=id_token&scope=openid&msafed=0&nonce=7ee3fec8-c583-439f-b62e-7ca449426967.636558247767262078&state=https%3a%2f%2foffice.live.com%2fstart%2fExcel.aspx%3fauth%3d2%26s%3d4%26nf%3d1&client_id=4b233688-031c-404b-9a80-a4f3f2351f90&redirect_uri=https%3a%2f%2foffice.live.com%2fstart%2fauth%2fsignin
2018-03-05 00:32:26,https://portal.office.com/landing
2018-03-05 00:32:26,https://portal.office.com/default.aspx?username=xujenna%40nyu.edu
2018-03-05 00:32:26,https://www.office.com/?auth=2&home=1&from=PortalLanding&client-request-id=f3e4176b-150a-40f8-baed-bfa84b85a170
2018-03-05 00:32:26,https://login.microsoftonline.com/common/oauth2/authorize?client_id=4345a7b9-9a63-4910-a426-35363201d503&response_mode=form_post&response_type=code+id_token&scope=openid+profile&state=OpenIdConnect.AuthenticationProperties%3d_QY29mpQB4f6M8Xb1Rl7XtxhFyykbqtSZ6B4uMO32GCWESMtL9eVedztIujRQxfrDr5X9CrthXUJK4CLX8he7jYyGLPYwVz35109GYo5wsdtOIumIgb8aInnjfi0jHlx4hdKPjhdo0FLuJ_xeyXUXGVSVZO1Q98bYkw6gh58kyDkUsX_ECtTxYzHGY37kzF4JF7Cb_cIiYH_0SPL2SnFg5heLs3EGiyLEpxWG_7_pn8SmFEzYk6GGGvm54rT615Q5MV6N1GdV0nAQXphX-GzKEFjTPmYr8sxUqiZD2Mpf3I&nonce=636558247465781262.Mjg4ZmQ2ZWQtNGY0Yy00ZjUzLTk0ZjItYmVjZDE0OTIzNDBhNDA0MGYwYjctZGM3MS00YzZkLTk1MDAtZDY4ZGI1ODg1N2Ji&redirect_uri=https%3a%2f%2fwww.office.com%2f&ui_locales=en-US&mkt=en-US&client-request-id=f3e4176b-150a-40f8-baed-bfa84b85a170&msafed=0
2018-03-05 00:32:25,https://portal.office.com/workloaddata?ru=%2f%3fusername%3dxujenna%2540nyu.edu%26AutomaticLogin%3dtrue
2018-03-05 00:32:25,https://portal.office.com/?username=xujenna%40nyu.edu&AutomaticLogin=true
2018-03-05 00:32:25,https://portal.office.com/login?IdentityProvider=aad&login_hint=xujenna%40nyu.edu&ru=%2Fdefault.aspx%3Fusername%3Dxujenna%2540nyu.edu%26AutomaticLogin%3Dtrue&AutomaticLogin=True
2018-03-05 00:32:25,https://login.microsoftonline.com/common/oauth2/authorize?client_id=00000006-0000-0ff1-ce00-000000000000&response_mode=form_post&response_type=code+id_token&scope=openid+profile&state=OpenIdConnect.AuthenticationProperties%3d0ZSzsMd5N1Ig1NkWHb4Q4820jJLNkbz6342AKJ4BzLMIuWc46SIr69WxI0I5pfFVb2_K47Y1fX2FZ8ZBq5zo2YdrPgw3t5113-5WNxBqM4s7kB1nZzEOKkqUifL_48FA4Q4S0JGSYOddUv2z6GEKOEQQ4WBfPJFs6aS95Hv5fB-p6g13gVdIMaMbLEUmLMe3h4gK-1Y2j1dR03slm3d_Hzkx-pCEl7qa2PpEcSVFByUdtvNNBxPy3-Wcwazn1y4Gh152BY4O08XJw0GL7cfZbg&nonce=636558247451385680.YzE4ODliMzUtNGVjYS00ODJiLThkZTYtZjJkOTczNjg1NTlmNTU1OTA2ZjEtODk2YS00YzY2LWFjNTYtZTQ1YTE4YzM0MWFj&redirect_uri=https%3a%2f%2fportal.office.com%2flanding&ui_locales=en-US&mkt=en-US&client-request-id=f3e4176b-150a-40f8-baed-bfa84b85a170&prompt=none&login_hint=xujenna%40nyu.edu&msafed=0
2018-03-05 00:32:21,https://signup.microsoft.com/signup/index?sku=e82ae690-a2d5-4d76-8d30-7c6e01e6022e&email=xujenna%40nyu.edu&ru=https%3a%2f%2fportal.office.com%2f&Token=&origin=&custom=true&pi=11
2018-03-05 00:32:15,https://signup.microsoft.com/landing
2018-03-05 00:32:15,https://signup.microsoft.com/signup/index?sku=e82ae690-a2d5-4d76-8d30-7c6e01e6022e&email=xujenna@nyu.edu&ru=https%3a%2f%2fportal.office.com%2f&Token=&origin=&custom=true&pi=8&showinternaloffers=False
2018-03-05 00:32:14,https://signup.microsoft.com/login?IdentityProvider=aad&es=Signup&login_hint=xujenna%40nyu.edu&ru=%2fsignup%2findex%3fsku%3de82ae690-a2d5-4d76-8d30-7c6e01e6022e%26email%3dxujenna%40nyu.edu%26ru%3dhttps%253a%252f%252fportal.office.com%252f%26Token%3d%26origin%3d%26custom%3dtrue%26pi%3d8%26showinternaloffers%3dFalse&AutomaticLogin=True&slt=AwEfUthZ6QBpZTpiHUibZdSl1RvQZ8JzJ3SkxbwYQkG6poljMevT8H92deU6JQj0lQuSAJvFsb8wKiplLXl%2aW%21CC2%21P1OVMUaIVgaXr6YUPTSZTQBkLUC71DEea%2a&client-request-id=439107ab-6ebb-4546-963a-3c9e06e6d466
2018-03-05 00:32:14,https://login.microsoftonline.com/common/oauth2/authorize?client_id=b4bddae8-ab25-483e-8670-df09b9f1d0ea&response_mode=form_post&response_type=code+id_token&scope=openid+profile&state=OpenIdConnect.AuthenticationProperties%3dvopw8ah7ACZQDIanFT6UiHx-9e-16r3N6kIig4DcN2lVSZ-Tq_4zqhPE_m5FQ4Kzawk9jVIxDjmoKgbur2CrRJI8CwL1PFt4jH4ieS4_Vq3E4l-OB-dlP1Oj72KTT1x4288xi7e_eQfZTxTX9kdMINu1vdEwbuQeEXg7unWwrDTYfql48WQlBKqvrVJarnxahBwqwpB6-vrtqknRur0_4mKHbE7pskffhL1sCbKFhKFo3ySnnUS4RsfhdveFCS5vOHXtMnZpO89xwbuuMf3lYM1ER_bf7lbCPAmQpd-9unbTO5a-5T0JbCcnKZYFb1FdNwPAUGQZceYENG2NmBFXnLqCa2ExnD7dOQpr8AF4hBdxjGaVQg8wImSJzPOs1KbZEb7w9n8ap7Ql9B3eAF7PrvxprquAL3UaAS-13T9Smi2VB3US0Gm9itjsosPIS8jxODimBqsDblwDr_GcBvttQuHZKwAp3IbK2Cn-B2KDvY1I18ucPYGfdX94liBKDjHmZUmMYtjkEk3PfDE_Tn7JsxC6aIwIkLHrmVJO_tZB6qq3xEydbmr0jrrgxoKGnAYN6Ax1gg&nonce=636558247334148985.NzIzOTRhMWQtNzBiZi00ZGRmLTgwYjItOTJjNGNjZjNiYjY4MThiZDkwN2UtMmMyZi00MDUwLWEyNDgtNDVlNWNiMTMyNGRi&redirect_uri=https%3a%2f%2fsignup.microsoft.com%2flanding&ui_locales=en-US&mkt=en-US&client-request-id=439107ab-6ebb-4546-963a-3c9e06e6d466&prompt=none&login_hint=xujenna%40nyu.edu&msafed=0&slt=AwEfUthZ6QBpZTpiHUibZdSl1RvQZ8JzJ3SkxbwYQkG6poljMevT8H92deU6JQj0lQuSAJvFsb8wKiplLXl*W!CC2!P1OVMUaIVgaXr6YUPTSZTQBkLUC71DEea*
2018-03-05 00:31:56,https://mail.google.com/mail/u/1/#inbox/161f4a510286ca04
2018-03-05 00:31:35,https://signup.microsoft.com/signup?skug=Education&StepsData.Email=xujenna%40nyu.edu&sku=e82ae690-a2d5-4d76-8d30-7c6e01e6022e
2018-03-05 00:31:06,https://signup.microsoft.com/signup?sku=Education
2018-03-05 00:31:01,https://www.google.com/url?hl=en&q=https://nursing.nyu.edu/current-students/advisement/new-ms-advanced-certificate-students/laptoptablet&source=gmail&ust=1520312310873000&usg=AFQjCNHuIyObxvfdom3Wg0f2QrPd0G6srw
2018-03-05 00:31:01,https://nursing.nyu.edu/current-students/advisement/new-ms-advanced-certificate-students/laptoptablet
2018-03-05 00:30:52,https://www.google.com/url?hl=en&q=http://go.microsoft.com/fwlink/p/?LinkId%3D391418&source=gmail&ust=1520312310873000&usg=AFQjCNEE1Uzrjd7uPEMu8LgbeJWb-BuTaw
2018-03-05 00:30:52,http://go.microsoft.com/fwlink/p/?LinkId=391418
2018-03-05 00:30:52,https://products.office.com/en-us/student
2018-03-05 00:30:12,https://github.com/xujenna/stories-page
2018-03-05 00:29:53,https://github.com/xujenna/learning_machines
2018-03-05 00:29:22,https://github.com/xujenna/thesis_explorations/tree/master/past%20analyzers/clarifai
2018-03-05 00:29:12,https://github.com/xujenna/thesis_explorations/tree/master/z%20aaron%20examples
2018-03-05 00:19:27,https://fieldguide.gizmodo.com/all-the-sensors-in-your-smartphone-and-how-they-work-1797121002
2018-03-05 00:19:26,https://en.wikipedia.org/wiki/Cron
2018-03-05 00:19:25,https://raymii.org/s/snippets/Get_the_current_or_all_Firefox_tab_urls_in_Bash.html
2018-03-05 00:19:24,https://devcenter.heroku.com/articles/clock-processes-python
2018-03-05 00:19:19,https://stackoverflow.com/questions/28218173/extract-part-of-data-from-json-file-with-python
2018-03-05 00:19:18,https://gist.github.com/remarkablemark/feff40b0a522f0c41c4eff0b77ea1d47
2018-03-05 00:19:16,https://www.media.mit.edu/groups/affective-computing/overview/
2018-03-05 00:19:16,https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5436791/
2018-03-05 00:14:59,https://www.google.com/search?q=Emacs&stick=H4sIAAAAAAAAAONgFuLQz9U3MK_KMFfiBLEMKwsMcrX4nPNzc_PzgjNTUssTK4sB57q2dicAAAA&sa=X&ved=0ahUKEwiUn9HetdTZAhXjs1kKHfdEAisQxA0IqAIwFw&biw=1102&bih=882
2018-03-05 00:14:57,https://www.google.com/search?q=gnu&oq=gnu&aqs=chrome..69i57j0l5.510j0j9&sourceid=chrome&ie=UTF-8
2018-03-05 00:14:50,https://en.wikipedia.org/wiki/GNU
2018-03-05 00:14:48,https://upload.wikimedia.org/wikipedia/commons/2/24/En-gnu.ogg
2018-03-05 00:14:31,https://en.wiktionary.org/wiki/gnu
2018-03-05 00:14:29,https://www.google.com/search?q=gnu&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjg0f2vttTZAhUEqlkKHfZDCkAQ_AUICigB&biw=1102&bih=882#imgrc=eWGyWOXO3cLyNM:
2018-03-05 00:14:24,https://www.google.com/search?q=gnu&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjg0f2vttTZAhUEqlkKHfZDCkAQ_AUICigB&biw=1102&bih=882
2018-03-05 00:14:07,https://www.google.com/search?q=vim&oq=vim&aqs=chrome..69i57j0j69i65j69i60l3.415j0j4&sourceid=chrome&ie=UTF-8
2018-03-05 00:13:19,https://en.wikipedia.org/wiki/Vim_(text_editor)
2018-03-05 00:13:01,https://en.wikipedia.org/wiki/Vi
2018-03-05 00:12:32,https://en.wikipedia.org/wiki/Line_editor
2018-03-05 00:11:02,https://stackoverflow.com/questions/26703776/why-are-h-j-k-l-recommended-over-using-arrow-keys-for-vim
2018-03-05 00:11:00,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=YS8p3ow7O07-hM:
2018-03-05 00:11:00,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=0CAVkve1WqxpqM:
2018-03-05 00:10:59,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=m2L919nNA9S9rM:
2018-03-05 00:10:57,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=6Zt6utD7ozXh7M:
2018-03-05 00:10:57,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=-LyMzmRtCKMZvM:
2018-03-05 00:10:44,https://www.google.com/search?q=old+vim+keyboard+with+arrows&tbm=isch&source=iu&ictx=1&fir=mxPtrCqbXJABtM%253A%252C-rkTmUybZXnBwM%252C_&usg=__LuJYT-eeHXfYo3-PoI4-PY7tcZ8%3D&sa=X&ved=0ahUKEwiI6ZW7tdTZAhWjrFkKHVZ3AqMQ9QEILzAC#imgrc=mxPtrCqbXJABtM:
2018-03-05 00:10:15,https://www.google.com/search?q=old+vim+keyboard+with+arrows&oq=old+vim+keyboard+with+arrows&aqs=chrome..69i57.8397j0j4&sourceid=chrome&ie=UTF-8
2018-03-05 00:03:51,https://github.com/xujenna/thesis_explorations/commits/master/trackers
2018-03-05 00:03:50,https://github.com/xujenna/thesis_explorations/commit/3e658a0e120870fdc09cf2c0a71cbe528bc9aaa5#diff-f7638638a3f450a511cdb84dea2f16e5
2018-03-05 00:03:25,https://github.com/xujenna/thesis_explorations/commit/3e658a0e120870fdc09cf2c0a71cbe528bc9aaa5#diff-9862c44f5919ff15db709d758be4a00f
2018-03-04 23:58:37,http://www.xujenna.com/itp_blog/wp-login.php?redirect_to=http%3A%2F%2Fwww.xujenna.com%2Fitp_blog%2Fwp-admin%2Fpost.php%3Fpost%3D873%26action%3Dedit&reauth=1
2018-03-04 23:58:27,https://www.rescuetime.com/get_rescuetime
2018-03-04 23:58:26,https://arxiv.org/pdf/1702.05747.pdf
2018-03-04 23:58:24,http://paraphrase.org/#/
2018-03-04 23:58:24,https://www.technologyreview.com/s/610159/100000-happy-moments/
2018-03-04 23:58:24,http://speculatingfutures.club/
2018-03-04 23:58:22,https://www.technologyreview.com/s/608322/the-emerging-science-of-computational-psychiatry/
2018-03-04 23:58:21,https://www.nytimes.com/2017/11/16/opinion/house-tax-bill-graduate-students.html
2018-03-04 23:58:20,https://docs.google.com/forms/d/e/1FAIpQLSe0ySqI8j9Q5_5Oo7jnYH_On-dxcB7q9-bawUM8U4k6XgTDoA/viewform
2018-03-04 23:58:19,https://docs.google.com/forms/d/e/1FAIpQLSe0ySqI8j9Q5_5Oo7jnYH_On-dxcB7q9-bawUM8U4k6XgTDoA/formResponse
2018-03-04 23:16:23,https://www.seaworthypdx.com/collections/sample-sale?page=2
2018-03-04 23:16:16,https://www.seaworthypdx.com/collections/sample-sale
2018-03-04 23:15:45,https://www.google.com/url?hl=en&q=https://seaworthypdx.us4.list-manage.com/track/click?u%3D421b69b87650f39be08b3f162%26id%3D748780a5c4%26e%3D1777683c44&source=gmail&ust=1520309736050000&usg=AFQjCNEpmxw52GOysxv8YQKQsq1pG10PVQ
2018-03-04 23:15:45,https://seaworthypdx.us4.list-manage.com/track/click?u=421b69b87650f39be08b3f162&id=748780a5c4&e=1777683c44
2018-03-04 23:15:45,https://www.seaworthypdx.com/collections/sample-sale?utm_source=Seaworthy+Email+List&utm_campaign=34658bcd74-EMAIL_CAMPAIGN_2018_03_05&utm_medium=email&utm_term=0_5b4262a01b-34658bcd74-114003797&goal=0_5b4262a01b-34658bcd74-114003797&mc_cid=34658bcd74&mc_eid=1777683c44
2018-03-04 23:15:37,https://mail.google.com/mail/u/0/#inbox/161f3fbd30bf1799
2018-03-04 23:15:12,https://mail.google.com/mail/u/0/#inbox/161f375e269db8b0
2018-03-04 23:14:01,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520102585723&xpc=%7B%22cn%22%3A%22f0vazd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbEYk_L4eThGKpEFga0kv7Z3OouxypWJ1XGClTzL_8NVcxMKupP7Lz5SrvQYKcqmudwWTkjkv1PO-_QQITtpDWkkQuN6Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.07230037620350149&tn=2f1qcocn5cnr&rld=1
2018-03-04 23:14:01,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520102585723&xpc=%7B%22cn%22%3A%22f0vazd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbEYk_L4eThGKpEFga0kv7Z3OouxypWJ1XGClTzL_8NVcxMKupP7Lz5SrvQYKcqmudwWTkjkv1PO-_QQITtpDWkkQuN6Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.29985390890137853&hb=1&tn=gpzdfpmjk8ll&rld=1
2018-03-04 23:13:58,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520022129167&xpc=%7B%22cn%22%3A%222w6xwi%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbLDBb0UGNvlH56BE0HoIJADv0OlFTXQ2ctlRbF9OtkLO_O8FK-oIC7AhdWmu7QzRurNKa65b75Cr6zsHD1yRBisVUdag%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BDSNhW6H4ngAPr6Itu5EPnXiWGXg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.49134230850445104&tn=cui3s9n36i5e&rld=1
2018-03-04 23:13:58,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520022129167&xpc=%7B%22cn%22%3A%222w6xwi%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbLDBb0UGNvlH56BE0HoIJADv0OlFTXQ2ctlRbF9OtkLO_O8FK-oIC7AhdWmu7QzRurNKa65b75Cr6zsHD1yRBisVUdag%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BDSNhW6H4ngAPr6Itu5EPnXiWGXg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.5971264923908386&tn=zb4ofk5bb3k4&rld=1
2018-03-04 22:03:54,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520102585723&xpc=%7B%22cn%22%3A%22f0vazd%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbEYk_L4eThGKpEFga0kv7Z3OouxypWJ1XGClTzL_8NVcxMKupP7Lz5SrvQYKcqmudwWTkjkv1PO-_QQITtpDWkkQuN6Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafoAAgB017CAirUCY_ZnHPA04mREy_v_vAYAA1ADgCuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Al7j5Oq-yg8HqPtVPPDGISvHP54A%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=7qqe7og39rps
2018-03-04 18:55:07,https://yuji.wordpress.com/2014/03/10/export-chrome-history-as-csv-spreadsheet/
2018-03-04 18:51:43,https://stackoverflow.com/questions/2193820/convert-chrome-history-date-time-stamp-to-readable-format
2018-03-04 18:51:13,https://stackoverflow.com/questions/20458406/what-is-the-format-of-chromes-timestamps
2018-03-04 18:51:10,https://www.google.com/search?q=chrome+history+sql+last_visit_time&oq=chrome+history+sql+last_visit_time&aqs=chrome..69i57.4830j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:48:20,https://www.google.com/search?ei=vIWcWrSaK5C2ggfJn7X4AQ&q=javascript+milliseconds+to+date&oq=javascript+miliseconds+to+&gs_l=psy-ab.3.0.0i10k1l10.1542.6260.0.7089.38.20.2.0.0.0.587.1888.3j8j5-1.12.0....0...1c.1.64.psy-ab..24.14.1889...0j0i20i263i264k1j0i20i263k1j0i67k1j0i22i10i30k1j0i22i30k1j0i13k1.0.tRPndmO9S0A
2018-03-04 18:48:12,https://www.google.com/search?ei=U4WcWvz4K6qc5wLyzauABQ&q=python+time+milliseconds+to+string&oq=python+time+milliseconds+to+&gs_l=psy-ab.1.0.0j0i22i10i30k1j0i22i30k1l4.10574.10947.0.12419.4.4.0.0.0.0.84.317.4.4.0....0...1c.1.64.psy-ab..0.4.316....0.eioIvBtz02o
2018-03-04 18:47:58,https://stackoverflow.com/questions/21787496/converting-epoch-time-with-milliseconds-to-datetime/21787689
2018-03-04 18:46:56,https://stackoverflow.com/q/25457050
2018-03-04 18:46:56,https://stackoverflow.com/questions/25457050/convert-time-to-string-with-milliseconds
2018-03-04 18:46:44,https://stackoverflow.com/questions/698223/how-can-i-parse-a-time-string-containing-milliseconds-in-it-with-python
2018-03-04 18:46:28,https://www.google.com/search?q=python+time+milliseconds&oq=python+time+from+mili&aqs=chrome.1.69i57j0l3.6750j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 18:42:44,https://stackoverflow.com/questions/3330435/is-there-an-sqlite-equivalent-to-mysqls-describe-table
2018-03-04 18:42:38,https://www.google.com/search?q=sqlite+describe+table&oq=sqlite+decribe+table&aqs=chrome.1.69i57j0l5.4839j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:41:51,https://code.i-harness.com/en/q/32d183
2018-03-04 18:41:42,http://sqlite.1065341.n5.nabble.com/Describe-table-td44303.html
2018-03-04 18:41:14,https://stackoverflow.com/questions/4654762/how-can-one-see-the-structure-of-a-table-in-sqlite/30348775
2018-03-04 18:39:46,https://stackoverflow.com/questions/30773243/database-file-locked-error-while-reading-chrome-history-c-sharp
2018-03-04 18:39:43,https://www.google.com/search?q=chrome+history+database+is+locked&oq=database+is+locked+history+&aqs=chrome.1.69i57j0.4111j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:35:45,https://chrome.google.com/webstore/detail/history-export/lpmoaclacdaofhlijejogfldmgkdlglj?hl=en
2018-03-04 18:35:40,https://www.google.com/search?q=chrome+history+sql+database+to+json&oq=chrome+history+sql+database+to+json&aqs=chrome..69i57.9535j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:35:39,https://developer.chrome.com/home
2018-03-04 18:34:07,https://www.google.com/search?q=sqllite+mac+os&oq=sqllite+mac+os&aqs=chrome..69i57j0l5.3359j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 18:33:48,https://stackoverflow.com/questions/11047799/sqlite-best-viewer-on-mac
2018-03-04 18:33:28,http://sqlitebrowser.org/
2018-03-04 18:30:48,https://developers.google.com/web/tools/chrome-devtools/console/command-line-reference?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:30:46,https://developers.google.com/web/updates/tags/history
2018-03-04 18:30:44,https://developers.google.com/web/updates/2015/09/history-api-scroll-restoration
2018-03-04 18:29:46,https://developer.mozilla.org/en-US/docs/Web/API/History_API#Examples
2018-03-04 18:28:39,https://developer.mozilla.org/en-US/docs/Web/API/History_API
2018-03-04 18:27:52,https://developer.chrome.com/devtools/docs/commandline-api
2018-03-04 18:27:52,https://developers.google.com/web/tools/chrome-devtools/debug/command-line/command-line-reference?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:27:34,https://developer.chrome.com/
2018-03-04 18:25:38,https://www.google.com/search?biw=1469&bih=882&ei=UH-cWt6JAqiL5wL_t7eQBg&q=how+to+get+history+from+chrome+as+json&oq=how+to+get+history+from+chrome+as+json&gs_l=psy-ab.3..33i22i29i30k1.238118.238821.0.238894.8.7.0.0.0.0.138.780.3j4.7.0....0...1c.1.64.psy-ab..1.7.777...35i39k1j0i22i30k1.0.q3xQCoj5QBs
2018-03-04 18:25:28,https://github.com/christiangenco/chrome-export-history
2018-03-04 18:22:41,https://developer.chrome.com/extensions/activeTab
2018-03-04 18:22:00,https://developer.chrome.com/extensions
2018-03-04 18:21:48,https://developer.chrome.com/extensions/manifest
2018-03-04 18:21:40,https://developer.chrome.com/apps/history
2018-03-04 18:21:40,https://developer.chrome.com/extensions/history
2018-03-04 18:21:35,https://www.google.com/search?q=chrome.history+API&oq=chrome.history+API&aqs=chrome..69i57j0l5.213j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:21:12,https://developer.chrome.com/extensions/history#method-search
2018-03-04 18:20:48,https://www.google.com/search?q=how+to+get+history+from+chrome+api&ei=RH-cWpeoH5Gc5gLX8ZfIAQ&start=0&sa=N&biw=1469&bih=882
2018-03-04 18:20:36,https://www.google.com/search?q=how+to+get+history+from+chrome+api&ei=vH6cWtKXCOW6ggeQhgo&start=20&sa=N&biw=1469&bih=882
2018-03-04 18:20:07,https://superuser.com/questions/364470/is-there-a-way-to-view-google-chrome-browsing-history-past-three-months-ago
2018-03-04 18:19:33,http://html5doctor.com/history-api/
2018-03-04 18:19:32,http://html5doctor.com/demos/history/
2018-03-04 18:19:32,http://html5doctor.com/demos/history/fluffy
2018-03-04 18:19:31,http://html5doctor.com/demos/history/socks
2018-03-04 18:19:31,http://html5doctor.com/demos/history/whiskers
2018-03-04 18:19:30,http://html5doctor.com/demos/history/bob
2018-03-04 18:18:20,https://www.google.com/search?q=how+to+get+history+from+chrome+api&ei=oH6cWqOvB8bi_Abe7qGADg&start=10&sa=N&biw=1469&bih=882
2018-03-04 18:17:52,https://www.google.com/search?biw=1469&bih=882&ei=fn6cWuHgOuHn_Qarq73QBQ&q=how+to+get+history+from+chrome+api&oq=how+to+get+history+from+chrome+api&gs_l=psy-ab.3...30710.31772.0.31915.4.4.0.0.0.0.103.372.3j1.4.0....0...1c.1.64.psy-ab..0.3.268...0i22i30k1j33i22i29i30k1.0.70IC57V-cFk
2018-03-04 18:17:19,https://www.google.com/search?biw=1469&bih=882&ei=eH6cWr3dNqLl_Qal-Yz4AQ&q=how+to+get+history+from+chrome&oq=how+to+get+history+from+chrome&gs_l=psy-ab.3..0j0i22i30k1l9.1708.4521.0.5140.30.10.0.0.0.0.435.1057.2-1j0j2.3.0....0...1c.1.64.psy-ab..27.3.1055...0i20i263k1.0.G3L9ICJaXe4
2018-03-04 18:17:13,https://www.google.com/search?q=chrome.history+api&ei=cH6cWoSHLO6pggexoZOgCQ&start=10&sa=N&biw=1469&bih=882
2018-03-04 18:17:05,https://www.google.com/search?q=chrome.history+api&sa=X&ved=0ahUKEwiC8ZPI49PZAhUiwlkKHY0xD5EQ1QIInwEoAA&biw=1469&bih=882
2018-03-04 18:16:54,https://chrome.google.com/webstore/detail/history-finder/eailembbokjdoehchhlpbhnjlkecgack?hl=en
2018-03-04 18:16:31,https://github.com/better-history/chrome-historian
2018-03-04 18:16:26,https://github.com/better-history/chrome-historian/tree/master/lib
2018-03-04 18:12:38,https://groups.google.com/a/chromium.org/d/topic/chromium-extensions/wyXdqRP0Y28
2018-03-04 18:12:38,https://groups.google.com/a/chromium.org/forum/#!topic/chromium-extensions/wyXdqRP0Y28
2018-03-04 18:11:17,https://developer.chrome.com/extensions/history#type-VisitItem
2018-03-04 18:10:06,https://developer.chrome.com/devtools/docs/console-api
2018-03-04 18:10:06,https://developers.google.com/web/tools/chrome-devtools/debug/console/console-reference?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:10:06,https://developers.google.com/web/tools/chrome-devtools/console/console-reference?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:09:44,https://developer.chrome.com/devtools/docs/timeline
2018-03-04 18:09:44,https://developers.google.com/web/tools/chrome-devtools/profile/evaluate-performance/timeline-tool?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:09:44,https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/timeline-tool?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3
2018-03-04 18:08:32,https://developer.chrome.com/extensions/getstarted
2018-03-04 18:07:32,https://developer.chrome.com/extensions/api_other
2018-03-04 18:06:35,https://stackoverflow.com/questions/24894627/how-to-get-browsing-history-using-history-api-in-chrome-extension
2018-03-04 18:05:35,https://www.google.com/search?q=how+to+get+chrome+history+api&oq=how+to+get+chrome+history+api&aqs=chrome..69i57j69i60j69i64.11985j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 18:05:19,https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/docs/examples/api/history/showHistory
2018-03-04 18:05:09,https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/docs/examples/api/history/showHistory/typedUrls.js
2018-03-04 18:04:41,https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/docs/examples/api/history/showHistory/
2018-03-04 18:04:33,https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/docs/examples/api/history/showHistory/typedUrls.html
2018-03-04 18:04:27,https://chromium.googlesource.com/chromium/src/+/master/chrome/common/extensions/docs/examples/api/history/
2018-03-04 18:03:51,https://www.google.com/search?ei=H3ucWu-_EsLH5gL6yIfoCA&q=chrome+browsesr+history+api&oq=chrome+browsesr+history+api&gs_l=psy-ab.3..0i13i30k1.52115.53089.0.54125.9.8.0.0.0.0.108.574.6j1.7.0....0...1c.1.64.psy-ab..3.6.496...35i39k1j0i13k1j0i13i5i30k1j0i8i13i30k1j0i7i30k1.0.svs2hedTvgI
2018-03-04 18:02:55,https://www.google.com/search?q=chrome+history+api&oq=chrome+history+api&aqs=chrome..69i57j0l5.2111j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 18:02:04,https://developer.chrome.com/extensions/samples
2018-03-04 18:01:33,https://chromium.googlesource.com/chromium/src/+/master/chrome/test/data/extensions/api_test/history/
2018-03-04 18:00:25,https://mail.google.com/mail/u/0/#inbox/161f33e7969b2578
2018-03-04 17:52:08,https://keep.google.com/u/0/?authuser=1
2018-03-04 17:52:06,https://keep.google.com/u/0/#home
2018-03-04 17:52:04,https://keep.google.com/u/0/#LIST/1515791567113.467394560
2018-03-04 17:42:50,https://www.facebook.com/photo.php?fbid=995841013907722&set=a.366359233522573.1073741827.100004454979322&type=3&theater
2018-03-04 17:41:19,https://mail.google.com/mail/u/1/#inbox/161f195cef76e945
2018-03-04 15:42:39,https://mail.google.com/mail/u/0/#inbox/161f2a7d513cba7d
2018-03-04 15:37:26,https://calendar.google.com/calendar/r/week/2018/3/18
2018-03-04 15:37:08,https://calendar.google.com/calendar/r/eventedit
2018-03-04 15:33:10,https://www.wgsn.com/en/
2018-03-04 15:33:06,https://www.wgsn.com/en/demo/?prdct=insight
2018-03-04 15:32:09,https://mail.google.com/mail/u/1/#inbox/161f27d537425be7
2018-03-04 15:30:35,https://docs.google.com/document/d/1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g/edit
2018-03-04 15:30:34,https://docs.google.com/document/d/1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g/edit?usp=gmail
2018-03-04 15:26:22,https://docs.google.com/forms/d/e/1FAIpQLSe0ySqI8j9Q5_5Oo7jnYH_On-dxcB7q9-bawUM8U4k6XgTDoA/viewform?c=0&amp;w=1&amp;usp=mail_form_link&fbzx=5442952902103631000
2018-03-04 15:25:48,https://docs.google.com/forms/d/e/1FAIpQLSe0ySqI8j9Q5_5Oo7jnYH_On-dxcB7q9-bawUM8U4k6XgTDoA/viewform?c=0&amp;w=1&amp;usp=mail_form_link
2018-03-04 15:25:17,https://docs.google.com/spreadsheets/d/1N8okdseWp1pqOuOBfyjTLF_UZE-jar-vOmjwEt5Xduk/edit#gid=0
2018-03-04 15:25:14,https://docs.google.com/spreadsheets/d/1N8okdseWp1pqOuOBfyjTLF_UZE-jar-vOmjwEt5Xduk/edit
2018-03-04 15:25:11,https://docs.google.com/spreadsheets/d/1N8okdseWp1pqOuOBfyjTLF_UZE-jar-vOmjwEt5Xduk/edit?usp=drive_web&ouid=107590985135967535521
2018-03-04 15:25:11,https://docs.google.com/spreadsheets/u/1/d/1N8okdseWp1pqOuOBfyjTLF_UZE-jar-vOmjwEt5Xduk/edit?usp=drive_web&ouid=107590985135967535521
2018-03-04 15:25:06,https://drive.google.com/drive/u/1/my-drive
2018-03-04 15:25:05,https://drive.google.com/drive/u/1/my-drive?ogss=1
2018-03-04 15:25:04,https://drive.google.com/drive/u/0/my-drive?authuser=1&ogss=1
2018-03-04 15:25:04,https://drive.google.com/drive/u/1/my-drive?authuser=1&ogss=1
2018-03-04 15:24:21,https://docs.google.com/spreadsheets/d/1xY6w-owmlYH4gP_Fv1phSEzy2OcHdFeb8EUTIYfUYAQ/edit#gid=0
2018-03-04 15:24:18,https://docs.google.com/spreadsheets/d/1xY6w-owmlYH4gP_Fv1phSEzy2OcHdFeb8EUTIYfUYAQ/edit
2018-03-04 15:24:16,https://docs.google.com/spreadsheets/d/1xY6w-owmlYH4gP_Fv1phSEzy2OcHdFeb8EUTIYfUYAQ/edit?usp=drive_web&ouid=104413863944849018097
2018-03-04 15:23:40,https://ifttt.com/applets/73917229d-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet
2018-03-04 15:23:36,https://ifttt.com/my_applets
2018-03-04 15:23:34,https://ifttt.com/google_drive
2018-03-04 15:23:33,https://www.google.com/url?hl=en&q=https://links.ifttt.com/wf/click?upn%3D7WQCkQw8pPqM25Y2uVqvquAHl30ZEzMZWNsZvPrub9-2FOHUXVaEN37NDdbdHi8NARc2Lw-2BlS7ij104lDhsG4othREBadRHcbTOEAZYKHIB1bQ4WaeDPb9ClI-2BNYWiGL7pl7dJaFFSdBPJrchkXJMLTU4D-2BRcOxbH4YCc17EqTD-2BTeZHho7SkHekKuGb-2F98-2BjwhlaCBk3fshXrvbCaFzb419f7BmsapxWUUWDjLY8R22esoIvsoK8V7spBqk5s0-2F3TZFiO8Nh3AQR8AnAcN5c-2BHD5OYzLtV7gIRo4f3evuB5LHuI0PYwzNirrRf-2FBR1AV1setXvBHmsL44WXbHMGd3OQ-3D-3D_rjiwBTiwoAhL1UYmc7VWdxoC4ogvn41zegFhAN5OZ-2F5UnPOdzWFulgJKDhvGyu1FQlMFzvB54hscNjS00ZbJZ6r-2BXV1nvulqzJmMUhU8sdTyINqLW-2Bq0bDg-2Fipp7-2BBBLQ0NfvNjVRUFQLkX7UJwvWznGPzECjPnS5xKjcP5jYJBTkaDnjHpNxkARQCckHIX1i89krj0SnQzBFMfiKCHmJuL54o-2Bn67xKCqm91R-2FfbPImG8Hfx8VliLWzmu88aMBjqQJA8cXAXHA30mWXxCN89Q-3D-3D&source=gmail&ust=1520268159458000&usg=AFQjCNFP86aw6VPdijXbp-5pxsirGyo0iQ
2018-03-04 15:23:33,https://links.ifttt.com/wf/click?upn=7WQCkQw8pPqM25Y2uVqvquAHl30ZEzMZWNsZvPrub9-2FOHUXVaEN37NDdbdHi8NARc2Lw-2BlS7ij104lDhsG4othREBadRHcbTOEAZYKHIB1bQ4WaeDPb9ClI-2BNYWiGL7pl7dJaFFSdBPJrchkXJMLTU4D-2BRcOxbH4YCc17EqTD-2BTeZHho7SkHekKuGb-2F98-2BjwhlaCBk3fshXrvbCaFzb419f7BmsapxWUUWDjLY8R22esoIvsoK8V7spBqk5s0-2F3TZFiO8Nh3AQR8AnAcN5c-2BHD5OYzLtV7gIRo4f3evuB5LHuI0PYwzNirrRf-2FBR1AV1setXvBHmsL44WXbHMGd3OQ-3D-3D_rjiwBTiwoAhL1UYmc7VWdxoC4ogvn41zegFhAN5OZ-2F5UnPOdzWFulgJKDhvGyu1FQlMFzvB54hscNjS00ZbJZ6r-2BXV1nvulqzJmMUhU8sdTyINqLW-2Bq0bDg-2Fipp7-2BBBLQ0NfvNjVRUFQLkX7UJwvWznGPzECjPnS5xKjcP5jYJBTkaDnjHpNxkARQCckHIX1i89krj0SnQzBFMfiKCHmJuL54o-2Bn67xKCqm91R-2FfbPImG8Hfx8VliLWzmu88aMBjqQJA8cXAXHA30mWXxCN89Q-3D-3D
2018-03-04 15:23:33,http://link.ifttt.com/e/c/eyJlbWFpbF9pZCI6IlpLRy1Bd0FCWWZBbU11U1NWUk9fNnZyTzBzcnUiLCJocmVmIjoiaHR0cHM6Ly9pZnR0dC5jb20vZ29vZ2xlX2RyaXZlIiwibGlua19pZCI6MzQxNDM3NTIsInBvc2l0aW9uIjoyfQ/7c3d03d54df87d8582942206cc0180026326fc8d621c9cf12857638c42291827
2018-03-04 15:23:01,https://mail.google.com/mail/u/1/#inbox/161f026470c9aa16
2018-03-04 15:22:11,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-04
2018-03-04 15:21:04,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-03-04
2018-03-04 15:20:49,https://www.rescuetime.com/browse/productivity/5/by/hour/for/the/day/of/2018-03-04
2018-03-04 15:15:55,https://www.google.com/search?q=how+long+to+marinate+salmon&oq=how+long+to+marinate&aqs=chrome.1.69i57j0l5.15760j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 14:41:38,https://www.instagram.com/robfranceillustration/
2018-03-04 14:41:32,https://www.instagram.com/p/BRjIB5QhuEf/?taken-by=robfranceillustration
2018-03-04 14:41:00,https://www.instagram.com/p/Be8afdaB8SU/?taken-by=robfranceillustration
2018-03-04 14:40:40,https://www.instagram.com/atreyumoniaga/
2018-03-04 14:40:16,https://www.instagram.com/p/BfD4JxvhrMr/?taken-by=robfranceillustration
2018-03-04 14:39:52,https://www.instagram.com/p/BfG5wbehMLy/?taken-by=robfranceillustration
2018-03-04 14:39:38,https://www.instagram.com/p/BfEUSNvhveH/?hl=en&taken-by=jvn
2018-03-04 14:39:33,https://www.instagram.com/jvn/?hl=en
2018-03-04 14:38:32,https://www.instagram.com/p/BfcGs59BN6j/?hl=en&taken-by=jvn
2018-03-04 14:38:23,https://www.instagram.com/p/Bfe33sLh8EK/?hl=en&taken-by=jvn
2018-03-04 14:38:11,https://www.instagram.com/p/BfjhYADhkV7/?hl=en&taken-by=jvn
2018-03-04 14:37:41,https://www.instagram.com/p/Bfq-EZEh-7y/?hl=en&taken-by=jvn
2018-03-04 14:37:32,https://www.instagram.com/p/Bfyy-qohzOo/?hl=en&taken-by=jvn
2018-03-04 14:37:27,https://www.instagram.com/p/BfzTNTQhFN7/?hl=en&taken-by=jvn
2018-03-04 14:37:10,https://www.instagram.com/p/BfJkdPJneQV/?hl=en&taken-by=tanfrance
2018-03-04 14:37:04,https://www.instagram.com/tanfrance/?hl=en
2018-03-04 14:36:56,https://www.instagram.com/p/BetFuNvHLFQ/?hl=en&taken-by=tanfrance
2018-03-04 14:36:39,https://www.instagram.com/p/BfEpJhanKDE/?hl=en&taken-by=tanfrance
2018-03-04 14:35:23,https://www.instagram.com/p/BfOoJt3HaOT/?hl=en&taken-by=tanfrance
2018-03-04 14:35:02,https://www.instagram.com/p/BfRPiRpH8bN/?hl=en&taken-by=tanfrance
2018-03-04 14:34:56,https://www.instagram.com/p/BfTYpA9HTgy/?hl=en&taken-by=tanfrance
2018-03-04 14:34:48,https://www.instagram.com/p/BfcLUYen9ag/?hl=en&taken-by=tanfrance
2018-03-04 14:34:41,https://www.instagram.com/p/Bfi4Vk4n6Ai/?hl=en&taken-by=tanfrance
2018-03-04 14:34:32,https://www.instagram.com/p/Bfd9sOGnsAW/?hl=en&taken-by=tanfrance
2018-03-04 14:34:13,https://www.instagram.com/p/BfqkaFpnXpX/?hl=en&taken-by=tanfrance
2018-03-04 14:34:05,https://www.instagram.com/p/BfoMhFiHbKM/?hl=en&taken-by=tanfrance
2018-03-04 14:33:33,https://www.instagram.com/p/Bfs_O3Hnrpw/?hl=en&taken-by=tanfrance
2018-03-04 14:33:22,https://www.google.com/search?q=Tan+France&oq=Tan+France&aqs=chrome..69i57j0l5.221j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 14:27:03,http://www.geniuskitchen.com/recipe/the-best-salmon-marinade-286303#activity-feed
2018-03-04 14:26:21,http://www.geniuskitchen.com/recipe/the-best-salmon-marinade-286303
2018-03-04 14:26:21,https://thestayathomechef.com/best-salmon-marinade/
2018-03-04 14:26:05,https://www.google.com/search?q=salmon+marinade&oq=salmon+ma&aqs=chrome.0.0j69i57j0l4.1910j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 14:25:22,http://www.vulture.com/author/Brian%20Moylan/
2018-03-04 14:21:11,https://www.theatlantic.com/entertainment/archive/2018/03/queer-eye-netflix-money-review/554609/
2018-03-04 14:21:09,http://www.vulture.com/2018/02/queer-eye-fab-five-ranked-worst-to-best.html
2018-03-04 14:20:53,https://www.google.com/search?q=queer+eye&oq=queer+&aqs=chrome.0.69i59j69i60j0j69i60j69i57j69i60.1014j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 14:07:19,https://en.wikipedia.org/wiki/Complex_manifold
2018-03-04 14:06:37,https://en.wikipedia.org/wiki/Grothendieck%E2%80%93Riemann%E2%80%93Roch_theorem
2018-03-04 14:06:17,https://www.google.com/search?q=grothendieck+hirzebruch+riemann+roch&oq=grothendieck+hirzebruch+riemann+roch&aqs=chrome..69i57j0.7950j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 14:05:54,https://en.wikipedia.org/wiki/Riemann%E2%80%93Roch_theorem
2018-03-04 14:05:46,https://www.google.com/search?q=grothendieck+riemann+roch&oq=grothendieck+riemann+roch&aqs=chrome..69i57j0l3.3607j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 14:04:43,https://en.wikipedia.org/wiki/List_of_things_named_after_Niels_Henrik_Abel
2018-03-04 14:00:59,http://en.wikipedia.org/wiki/Niels_Henrik_Abel
2018-03-04 14:00:59,https://en.wikipedia.org/wiki/Niels_Henrik_Abel
2018-03-04 14:00:10,https://suhaimiramly.wordpress.com/2010/04/13/roots-of-quartic-equation/
2018-03-04 13:59:43,https://suhaimiramly.files.wordpress.com/2010/04/quartic.jpg
2018-03-04 13:59:36,https://www.google.com/search?q=quartic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwisp66VrNPZAhVNGt8KHQpuDCAQ_AUICigB&biw=1040&bih=882#imgrc=ywzKlwLVJjIkfM:
2018-03-04 13:59:32,https://www.google.com/search?q=quartic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwisp66VrNPZAhVNGt8KHQpuDCAQ_AUICigB&biw=1040&bih=882#imgrc=92ETWBYCMnrBQM:
2018-03-04 13:58:14,https://en.wikipedia.org/wiki/%C3%89variste_Galois
2018-03-04 13:58:08,https://www.google.com/search?q=galois&oq=galois&aqs=chrome..69i57j0l2j69i61j0l2.910j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 13:56:53,http://pjk.scripts.mit.edu/pkj/2017/11/01/representing-the-quartic-formula/
2018-03-04 13:56:34,http://pjk.scripts.mit.edu/pkj/wp-content/uploads/2018/11/quartic_formula.jpg
2018-03-04 13:56:07,https://www.google.com/search?q=quartic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwisp66VrNPZAhVNGt8KHQpuDCAQ_AUICigB&biw=1040&bih=882#imgrc=zLMIC8HZmfydnM:
2018-03-04 13:56:05,https://www.google.com/search?q=quartic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwisp66VrNPZAhVNGt8KHQpuDCAQ_AUICigB&biw=1040&bih=882
2018-03-04 13:56:00,https://www.google.com/search?ei=NkGcWrqFM4We_QbCnpGABQ&q=quartic+formula&oq=quartic+formula&gs_l=psy-ab.3..0i67k1j0i7i30k1j0i20i263k1j0i7i30k1j0i10k1j0i7i30k1j0j0i7i30k1l3.4979.5864.0.8199.7.7.0.0.0.0.88.556.7.7.0....0...1c.1.64.psy-ab..0.7.553...0i13k1.0.lYuRmKRZha8
2018-03-04 13:55:50,https://www.google.com/search?q=cubic+formula&oq=cubic+formula&aqs=chrome..69i57j0l5.2047j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 13:55:19,https://en.wikipedia.org/wiki/Cubic_function#General_formula
2018-03-04 13:55:12,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=aW39enWgfzifjM:
2018-03-04 13:55:11,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=JRUrU3rfLltbwM:
2018-03-04 13:55:10,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=4jAezrB7SDYFsM:
2018-03-04 13:55:09,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=PO6XJmGeva92-M:
2018-03-04 13:55:08,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=62LOmwCgedldgM:
2018-03-04 13:55:07,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=rHisJgRbEOQV4M:
2018-03-04 13:55:06,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=BBRguqqS-r01gM:
2018-03-04 13:55:02,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=J9pMNppdb5mfKM:
2018-03-04 13:54:58,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=EOdH8k6qvgemuM:
2018-03-04 13:54:51,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882#imgrc=AuxZLD_pfb0YlM:
2018-03-04 13:54:46,https://www.google.com/search?q=cubic+formula&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjlkr3wq9PZAhWEslkKHX3rA98Q_AUICigB&biw=1040&bih=882
2018-03-04 13:54:01,https://en.wikipedia.org/wiki/Quadratic_formula
2018-03-04 13:53:29,https://www.google.com/search?q=quadratic+formula&oq=quadratic+&aqs=chrome.0.0l2j69i57j0l3.2390j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 13:47:08,https://www.google.com/search?q=evariste+galois&oq=evariste+g&aqs=chrome.0.0j69i57j0l4.3390j0j4&sourceid=chrome&ie=UTF-8
2018-03-04 13:44:45,https://www.quora.com/
2018-03-04 13:44:43,https://www.quora.com/?qp_story=6052321&window_id=dep4601-4551342343464389441
2018-03-04 13:44:03,https://www.quora.com/What-happens-to-a-running-Python-script-if-the-computer-sleeps-shuts-down-hibernates
2018-03-04 13:43:35,https://www.google.com/search?q=does+a+python+program+put+to+sleep+still+run+after+i+put+my+computer+to+sleep&oq=does+a+python+program+put+to+sleep+still+run+after+i+put+my+computer+to+sleep&aqs=chrome..69i57.14728j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 13:43:18,https://apple.stackexchange.com/questions/278185/do-terminal-processes-stop-if-mac-sleeps
2018-03-04 13:41:57,https://docs.google.com/document/d/1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g/copy?id=1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g&copyCollaborators=false&copyComments=false&title=Copy%20of%20NYU%202018%20Manovich&token=AC4w5VgaBhjsjhZvCf0jdnhjSmot4D4GSw%3A1520181695678&usp=docs_web
2018-03-04 13:41:57,https://docs.google.com/document/d/1ktBq-gK2KIEKAkHdLEgdfH27qoB78CZnQ8vO4cTZysU/edit
2018-03-04 13:32:12,https://www.google.com/search?q=dreams+about+teeth+falling+out&oq=dreams+about+teeth&aqs=chrome.1.69i57j0l5.2766j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 13:28:06,https://calendar.google.com/calendar/r/week/2018/2/25
2018-03-04 13:26:43,http://visual-earth.net/
2018-03-04 13:08:08,http://on-broadway.nyc/
2018-03-04 13:04:45,http://www.on-broadway.nyc/app/#direct=true
2018-03-04 13:04:45,http://www.on-broadway.nyc/app/#
2018-03-04 13:03:29,http://www.on-broadway.nyc/
2018-03-04 13:01:24,http://lab.softwarestudies.com/2014/05/our-new-instagram-visualization-project.html
2018-03-04 13:00:04,http://manovich.net/index.php/exhibitions
2018-03-04 13:00:02,http://manovich.net/
2018-03-04 12:59:57,http://lab.softwarestudies.com/2010/11/one-million-manga-pages.html
2018-03-04 12:58:48,http://softwarestudies.com/cultural_analytics/2011.How_To_Compare_One_Million_Images.pdf
2018-03-04 12:55:44,https://en.wikipedia.org/wiki/Reality_mining
2018-03-04 12:54:29,https://docs.google.com/document/d/1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g/edit#
2018-03-04 12:54:28,https://docs.google.com/document/d/1Syomr5qpVgdBfzwnFZrI-HEvyotlsINYllRckhX3d9g/edit#heading=h.dfda87r4o3hy
2018-03-04 12:47:55,http://manovich.net/content/04-projects/101-automating-aesthetics-artificial-intelligence-and-image-culture/automating_aesthetics.pdf
2018-03-04 12:47:55,https://arxiv.org/pdf/1707.03491
2018-03-04 12:47:55,https://arxiv.org/pdf/1707.03491.pdf
2018-03-04 12:47:42,https://arxiv.org/abs/1707.03491
2018-03-04 12:47:01,http://manovich.net/index.php/projects/automating-aesthetics-artificial-intelligence-and-image-culture
2018-03-04 12:46:59,http://manovich.net/index.php/projects/tag:Article
2018-03-04 12:45:50,https://steinhardt.nyu.edu/mcc/doctoral/abstracts
2018-03-04 12:45:41,https://wikis.nyu.edu/Shibboleth.sso/SAML2/POST
2018-03-04 12:45:41,https://wikis.nyu.edu/spaces/viewspace.action?key=mccphd
2018-03-04 12:45:40,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?execution=e2s2
2018-03-04 12:45:21,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?execution=e2s1
2018-03-04 12:45:20,https://wikis.nyu.edu/display/mccphd/
2018-03-04 12:45:20,https://wikis.nyu.edu/Shibboleth.sso/Login?target=https%3A%2F%2Fwikis.nyu.edu%2Fspaces%2Fviewspace.action%3Fkey%3Dmccphd&permissionViolation=true
2018-03-04 12:45:20,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZJdT8IwFIb%2FytJ76DaYSMOWTLiQBGVh0wtvTNcdpLG0s6cT%2BfcOBgETw3Xf83486QT5VtUsbdxGr%2BCrAXTez1ZpZMeHmDRWM8NRItN8C8icYHn6tGBh32e1Nc4Io4iXIoJ10uip0dhsweZgv6WAl9UiJhvnamSU7uSnxL7eN32oGppvZFkaBW7TRzT0YBrSbJkXxJu1LaTmB7%2FLNV70ZwtZ1bTtsJYKTvcrqKQF4WieL4k3n8XkvQIxjtZV4JfDURSEUK0H0diHEb%2BrfBFGvJUhNjDX6Lh2MQn94L7nD3r%2BsAhGbBix0H8jXnaa%2BiB1JfXHbS5lJ0L2WBRZr9v0ChaPe1oBSSYHuuwYbK9437blZ8gk%2BR8pr2ukwui1akALuELWw3pCrzK7AjV7bkPms8woKfZeqpTZTS1wBzEJCE26k7%2B%2FI%2FkF&RelayState=ss%3Amem%3A044aefabf8b9de550c568e0d83b6ac5ebcc28583af0a5a2f40307eef9c4392ec
2018-03-04 12:44:48,https://steinhardt.nyu.edu/mcc/
2018-03-04 12:44:26,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZJdT8IwFIb%2FytL7rdtkDBtGgnAhCQph0wtvTCln0ti1s6cT%2BfcOBgETw3Xf83486RB5pWo2btxWr%2BCrAXTeT6U0suNDRhqrmeEokWleATInWD5%2BmrM4CFltjTPCKOKNEcE6afTEaGwqsDnYbyngZTXPyNa5GhmlO%2FkpMdD7JoBNQ%2FOtXK%2BNArcNEA09mMZ0ucgL4k3bFlLzg9%2FlGi%2F6s4Xc1LTtUEoFp%2FsVbKQF4WieL4g3m2bk%2FR7CKOShiBNISlH2y0GaJEkqovuUJ2UiWhliAzONjmuXkTiMBn5454e9IkpZr8fi%2FhvxlqepD1JvpP64zWXdiZA9FsXS7za9gsXjnlZARsMDXXYMtle8b9vyM2Qy%2Bh8pr2ukwuhSNaAFXCHzsR7Sq8yuQM2e25DZdGmUFHtvrJTZTSxwBxmJCB11J39%2Fx%2BgX&RelayState=ss%3Amem%3A6c2142a562274ef3f171900e9898723faf5f95500bf707d5b03b264ae42676fd
2018-03-04 12:35:31,http://manovich.net/index.php/about
2018-03-04 11:42:33,https://docs.google.com/document/d/1yzG4knTOYbWK6j8iJ1k976v6nZpeD0ogEDmW4fBGHj4/edit
2018-03-04 11:42:14,https://docs.google.com/document/d/1yzG4knTOYbWK6j8iJ1k976v6nZpeD0ogEDmW4fBGHj4/edit?usp=drive_web&ouid=107590985135967535521
2018-03-04 11:42:14,https://docs.google.com/document/u/1/d/1yzG4knTOYbWK6j8iJ1k976v6nZpeD0ogEDmW4fBGHj4/edit?usp=drive_web&ouid=107590985135967535521
2018-03-04 11:42:03,https://mail.google.com/mail/u/1/#inbox/161d3755a1a5923c?projector=1&messagePartId=0.1
2018-03-04 00:16:35,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=873&action=edit&message=10
2018-03-04 00:13:36,https://feedly.com/i/account
2018-03-04 00:13:26,https://feedly.com/i/latest
2018-03-04 00:10:35,https://en.wikipedia.org/wiki/Addictive_personality
2018-03-04 00:10:29,https://www.google.com/search?q=addictive+personality&oq=addictive+&aqs=chrome.2.69i57j0l5.2471j0j7&sourceid=chrome&ie=UTF-8
2018-03-04 00:02:16,https://github.com/ownaginatious/fbchat-archive-parser
2018-03-04 00:02:00,https://padlet.com/xujenna/9xf0crrdxb31
2018-03-03 23:56:04,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-1
2018-03-03 23:56:03,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-28
2018-03-03 23:56:02,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-27
2018-03-03 23:55:58,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-26
2018-03-03 23:55:38,https://www.rescuetime.com/dashboard/for/the/day/of/2018-3-2
2018-03-03 23:55:05,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-03-03
2018-03-03 23:54:47,https://www.rescuetime.com/browse/productivity/5/by/hour/for/the/day/of/2018-03-03
2018-03-03 23:46:45,https://www.google.com/url?hl=en&q=https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md%23assignment&source=gmail&ust=1520195698548000&usg=AFQjCNEWJOr00F5Vg2Hy-xZOJw0WruapPQ
2018-03-03 23:46:42,https://mail.google.com/mail/u/1/#inbox/161d52620a31bab0
2018-03-03 23:42:20,https://www.rescuetime.com/browse/productivity/5/by/rank/for/the/day/of/2018-03-03
2018-03-03 23:41:32,https://mail.google.com/mail/u/1/#inbox/161ef0d3025c046b
2018-03-03 22:48:28,https://www.youtube.com/watch?v=hY7m5jjJ9mM
2018-03-03 22:46:25,https://www.youtube.com/watch?v=9Ine0LNFVUc
2018-03-03 22:28:19,https://www.youtube.com/watch?v=psLjEBUOnVs
2018-03-03 22:28:19,https://www.youtube.com/watch?v=LDeBIhBmJpA
2018-03-03 22:27:06,https://www.youtube.com/watch?v=BeEUemtdoJQ
2018-03-03 22:25:52,https://keep.google.com/u/0/?authuser=0
2018-03-03 22:25:52,https://keep.google.com/u/0/
2018-03-03 22:25:52,https://keep.google.com/u/1/?authuser=0
2018-03-03 22:23:04,https://www.youtube.com/watch?v=pXtN4y3O35M
2018-03-03 22:18:37,https://vimeo.com/20527888
2018-03-03 22:16:12,http://itp.nyu.edu/classes/roy18/e-unconscious/
2018-03-03 22:16:12,https://itp.nyu.edu/classes/roy18/e-unconscious/
2018-03-03 22:15:59,http://itp.nyu.edu/classes/roy18/rest-of-us/
2018-03-03 22:15:59,https://itp.nyu.edu/classes/roy18/rest-of-us/
2018-03-03 22:15:16,https://itp.nyu.edu/classes/roy17/talking/
2018-03-03 22:07:48,https://www.amazon.com/gp/product/B015EV9G86?autoplay=1&ref=dvm_us_api_cs_hud_ac_api_Prime-CW&pf_rd_p=c816389d-9036-49cf-9327-9f3828866da2&pf_rd_r=0SQFE80WDTFPTCQPNZZ7
2018-03-03 22:07:23,https://github.com/xujenna/thesis_explorations/tree/master/trackers/rescuetime
2018-03-03 22:04:27,https://www.rescuetime.com/browse/activities/by/hour/for/the/day/of/2018-03-03
2018-03-03 22:00:03,https://www.youtube.com/watch?v=FEmMW62StO8
2018-03-03 21:59:06,https://www.youtube.com/watch?v=1J0C2HlC38c
2018-03-03 21:58:48,https://www.youtube.com/watch?v=qeUM1WDoOGY
2018-03-03 21:58:48,https://www.youtube.com/
2018-03-03 21:22:34,https://www.amazon.com/gp/video/detail/B015EV9G86/ref=atv_hm_hom_3_c_obwanp_2_1?ie=UTF8&pf_rd_i=home&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=3511224122&pf_rd_r=N4GBEE9XZ64TV782N30K&pf_rd_s=center-4&pf_rd_t=12401
2018-03-03 21:11:07,https://www.youtube.com/watch?v=vshorblS32w
2018-03-03 21:11:07,https://www.youtube.com/watch?v=HLpG6PmL-6Y
2018-03-03 21:10:36,https://www.youtube.com/watch?v=nrSdiqp0Dpk
2018-03-03 21:06:30,https://www.youtube.com/watch?v=2ixspJ-SnMk
2018-03-03 21:04:10,https://www.youtube.com/watch?v=W86cTIoMv2U&list=RD_kgRFHaNo-Y&index=3
2018-03-03 21:03:10,https://www.youtube.com/watch?v=psGDf2VrvK8&list=RD_kgRFHaNo-Y
2018-03-03 21:03:10,https://www.youtube.com/watch?v=_kgRFHaNo-Y&feature=youtu.be
2018-03-03 20:52:47,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=efficiency&interval=hour&restrict_begin=2018-03-03&restrict_end=2018-03-03&format=json
2018-03-03 20:31:08,https://www.google.com/search?q=how+to+run+python+script+every+hour&oq=how+to+run+python+script+every&aqs=chrome.0.0j69i57j0l4.6239j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 20:26:32,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-24
2018-03-03 20:26:28,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-23
2018-03-03 20:22:37,https://automatetheboringstuff.com/chapter15/
2018-03-03 20:22:30,https://www.google.com/search?q=python+open+file+every+hour&oq=python+open+file+every+hour&aqs=chrome..69i57.4630j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 20:22:01,https://media.readthedocs.org/pdf/apscheduler/latest/apscheduler.pdf
2018-03-03 20:18:35,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-25
2018-03-03 20:18:32,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-26
2018-03-03 20:18:28,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-27
2018-03-03 20:18:25,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-2-28
2018-03-03 20:18:22,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-3-1
2018-03-03 20:17:28,http://nymag.com/strategist/article/best-fathers-day-gift-ideas-prada-tom-ford-gucci.html
2018-03-03 20:17:24,https://www.google.com/search?q=best-fathers-day-gift-ideas-prada-tom-ford-gucci.html&oq=best-fathers-day-gift-ideas-prada-tom-ford-gucci.html&aqs=chrome..69i57.193j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 20:17:03,http://nymag.com/strategist/article/small-wallet-with-zipper-pouch-ask-the-strategist.html
2018-03-03 20:17:01,https://www.google.com/search?q=small-wallet-with-zipper-pouch-ask-the-strategist.html&oq=small-wallet-with-zipper-pouch-ask-the-strategist.html&aqs=chrome..69i57j69i58j5i66l2j0i66l2.237j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 20:16:26,https://www.thecut.com/search.html?q=%22money+clip%22
2018-03-03 20:15:54,https://www.thecut.com/search.html?q=money+clip
2018-03-03 20:13:06,https://www.thecut.com/2018/03/little-girl-at-museum-thinks-michelle-obama-is-a-queen.html
2018-03-03 20:12:48,https://feedly.com/i/search/money%20clip/-/-/-/month/-/user%2Fc8b04d11-6a3b-4309-a699-f569542f2801%2Fcategory%2Fdaily
2018-03-03 20:12:43,https://feedly.com/i/pro/search
2018-03-03 20:06:56,https://stackoverflow.com/questions/22715086/scheduling-python-script-to-run-every-hour-accurately
2018-03-03 20:00:11,https://www.google.com/search?ei=-ESbWv7hNcfk_Abp77bADg&q=python+module+%27time%27+has+no+attribute+%27clock_gettime%27&oq=python+module+%27time%27+has+no+attribute+%27clock_gettime%27&gs_l=psy-ab.3...31517.32298.0.32430.7.7.0.0.0.0.160.416.0j3.3.0....0...1c.1.64.psy-ab..5.0.0....0.WwCcWioOhlQ
2018-03-03 19:59:38,https://www.google.com/search?q=AttributeError%3A+module+%27time%27+has+no+attribute+%27clock_gettime%27&oq=AttributeError%3A+module+%27time%27+has+no+attribute+%27clock_gettime%27&aqs=chrome..69i57j69i58.253j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 19:53:50,https://docs.python.org/3/library/time.html?highlight=time#time-clock-id-constants
2018-03-03 19:49:11,https://docs.python.org/3/library/time.html?highlight=time#module-time
2018-03-03 19:49:08,https://docs.python.org/3/search.html?q=time&check_keywords=yes&area=default
2018-03-03 19:41:48,http://docs.python.org/library/webbrowser.html
2018-03-03 19:41:48,https://docs.python.org/library/webbrowser.html
2018-03-03 19:41:48,https://docs.python.org/3/library/webbrowser.html
2018-03-03 19:40:42,https://stackoverflow.com/questions/4302027/how-to-open-a-url-in-python
2018-03-03 19:40:31,https://www.google.com/search?q=python+open+url&oq=python+open+url&aqs=chrome..69i57j0l5.3031j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 19:39:50,https://www.rescuetime.com/browse/activities/2515752/by/hour/for/the/day/of/2018-3-2
2018-03-03 19:39:45,https://www.rescuetime.com/browse/activities/2515752/by/hour/for/the/day/of/2018-03-01
2018-03-03 19:37:15,https://www.instagram.com/tomjackson5042/
2018-03-03 19:37:12,https://www.instagram.com/p/BfWfLa_BjcQ/?taken-by=tomjackson5042
2018-03-03 19:37:03,https://www.instagram.com/p/Bfrcunvh5SI/?taken-by=tomjackson5042
2018-03-03 19:37:00,https://www.instagram.com/p/BfrcItxBk3Y/?taken-by=tomjackson5042
2018-03-03 19:36:56,https://www.instagram.com/dubis4w/
2018-03-03 19:32:18,https://www.bustle.com/p/where-is-tom-from-queer-eye-now-he-might-be-your-new-favorite-person-on-twitter-8393321
2018-03-03 19:32:13,https://www.newyorker.com/culture/annals-of-gastronomy/the-exquisite-blankness-and-highly-suspect-guacamole-of-antoni-porowski-from-queer-eye
2018-03-03 19:26:07,https://www.google.com/search?q=queer+eye&oq=queer+eye&aqs=chrome..69i57j0l5.1512j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 19:25:32,http://tvline.com/2017/01/24/queer-eye-for-the-straight-guy-reboot-netflix-stereotypes/
2018-03-03 19:25:28,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgrc=GhCw2PqZHzJOYM:
2018-03-03 19:25:23,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgrc=LCnaUxrgnG5x9M:
2018-03-03 19:25:18,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgrc=r9WDFmmE4TKldM:
2018-03-03 19:25:15,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgrc=bzwhrbAE-S0GuM:
2018-03-03 19:25:09,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgdii=IWpKvWSbddN7nM:&imgrc=9VQ9zc1M36DbdM:
2018-03-03 19:25:05,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757#imgrc=9VQ9zc1M36DbdM:
2018-03-03 19:24:58,https://www.google.com/search?q=queer+eye&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjK7b7ns9HZAhXJqFkKHTeUAY8Q_AUIDCgD&biw=980&bih=757
2018-03-03 19:22:40,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-3-1
2018-03-03 19:22:32,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-3-2
2018-03-03 19:22:28,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-2-18
2018-03-03 19:22:27,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-2-17
2018-03-03 19:22:23,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-2-16
2018-03-03 19:22:16,https://www.rescuetime.com/browse/activities/by/rank/for/the/day/of/2018-2-15
2018-03-03 19:22:08,https://www.rescuetime.com/browse/overview/by/rank/for/the/day/of/2018-2-14
2018-03-03 19:22:07,https://www.rescuetime.com/browse/overview/by/rank/for/the/day/of/2018-2-13
2018-03-03 19:21:59,https://www.rescuetime.com/browse/overview/7/by/rank/for/the/day/of/2018-02-12
2018-03-03 19:21:52,https://www.rescuetime.com/browse/overview/4/by/rank/for/the/day/of/2018-02-12
2018-03-03 19:21:44,https://www.rescuetime.com/browse/overview/3/by/rank/for/the/day/of/2018-02-12
2018-03-03 19:21:27,https://www.rescuetime.com/browse/overview/10/by/rank/for/the/day/of/2018-02-12
2018-03-03 19:21:17,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-12
2018-03-03 19:21:12,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-13
2018-03-03 19:21:10,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-14
2018-03-03 19:21:06,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-15
2018-03-03 19:21:03,https://www.rescuetime.com/dashboard/for/the/day/of/2018-2-16
2018-03-03 19:20:25,https://mail.google.com/mail/u/1/#inbox/161eda8b436881c0
2018-03-03 19:20:05,https://mail.google.com/mail/u/1/#inbox/161edc38859437e3
2018-03-03 19:19:52,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1520022129167&xpc=%7B%22cn%22%3A%222w6xwi%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWbLDBb0UGNvlH56BE0HoIJADv0OlFTXQ2ctlRbF9OtkLO_O8FK-oIC7AhdWmu7QzRurNKa65b75Cr6zsHD1yRBisVUdag%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.c6entt0uZCQ.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafoAAgB0x7CAirUCY_ZnHPA14uRGy___veYAA1ADgGuBv7gPoHAAAAAAAAAAAAAAAAAAAAGCj-AQ%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9BDSNhW6H4ngAPr6Itu5EPnXiWGXg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&pal=1&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=am59z2wk82nc
2018-03-03 16:28:39,https://www.google.com/search?q=json+dump+pretty+print&oq=json+dump+pretty+print&aqs=chrome..69i57.7979j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 16:17:33,http://docs.python-requests.org/en/master/user/quickstart/
2018-03-03 16:17:26,https://www.google.com/search?q=python+requests+json+string&oq=python+requests+json+string&aqs=chrome..69i57j0.3399j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 15:51:48,https://www.google.com/search?q=rescumetime+api+limits&oq=rescumetime+api+limits&aqs=chrome..69i57.4234j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 15:51:20,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=efficiency&interval=hour&restrict_begin=2018-02-15&restrict_end=2018-03-03&format=json
2018-03-03 15:48:55,file:///Users/jxu2/github/thesis_explorations/trackers/keylogger/keylogger.py
2018-03-03 15:42:20,https://www.rescuetime.com/anapi/setup/documentation
2018-03-03 15:40:02,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=efficiency&interval=hour&restrict_begin=2018-03-02&restrict_end=2018-02-15&format=json
2018-03-03 15:39:53,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-15
2018-03-03 15:39:52,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-16
2018-03-03 15:39:51,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-17
2018-03-03 15:39:50,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-18
2018-03-03 15:39:50,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-19
2018-03-03 15:39:48,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-20
2018-03-03 15:39:47,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-21
2018-03-03 15:39:46,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-22
2018-03-03 15:39:46,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-23
2018-03-03 15:39:45,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-24
2018-03-03 15:39:44,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-25
2018-03-03 15:39:43,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-26
2018-03-03 15:39:42,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-27
2018-03-03 15:39:37,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-2-28
2018-03-03 15:37:45,https://stackoverflow.com/questions/35120250/python-3-get-and-parse-json-api
2018-03-03 15:37:40,https://www.google.com/search?q=how+to+download+json+api+response+python&oq=how+to+download+json+api+response+python&aqs=chrome..69i57j69i64.6421j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 15:36:55,https://www.google.com/search?q=how+to+read+api+response+json+python&oq=how+to+read+api+response+json+python&aqs=chrome..69i57j69i64.13438j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 15:36:36,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=efficiency&interval=hour&restrict_begin=2018-03-02&restrict_end=2018-03-02&format=json
2018-03-03 15:32:08,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=productivity&interval=hour&restrict_begin=2018-03-02&restrict_end=2018-03-02&format=json
2018-03-03 15:29:09,https://www.rescuetime.com/anapi/data?key=B63X_PtvpSERKQwozOFH_6oXpXwlXTcWh3c3OxfE&perspective=interval&restrict_kind=productivity&interval=hour&restrict_begin=2018-03-03&restrict_end=2018-03-03&format=json
2018-03-03 15:28:47,https://www.rescuetime.com/anapi/data?key=kX_P&perspective=interval&restrict_kind=productivity&interval=hour&restrict_begin=2018-03-03&restrict_end=2018-03-03&format=json
2018-03-03 15:27:20,https://www.rescuetime.com/anapi/manage
2018-03-03 15:19:57,https://en.wikipedia.org/wiki/List_of_highest-grossing_films
2018-03-03 15:19:48,https://www.google.com/search?q=most+successful+movie&oq=most+successful+&aqs=chrome.2.69i57j0l5.3219j0j4&sourceid=chrome&ie=UTF-8
2018-03-03 15:18:11,https://www.forbes.com/sites/markhughes/2018/02/26/its-inevitable-black-panther-will-pass-1-billion-at-the-worldwide-box-office/
2018-03-03 15:18:11,https://www.forbes.com/sites/markhughes/2018/02/26/its-inevitable-black-panther-will-pass-1-billion-at-the-worldwide-box-office/#2d93c4d25b35
2018-03-03 15:18:11,https://www.forbes.com/sites/markhughes/2018/02/26/its-inevitable-black-panther-will-pass-1-billion-at-the-worldwide-box-office/1
2018-03-03 15:18:08,https://www.forbes.com/sites/markhughes/2018/02/26/its-inevitable-black-panther-will-pass-1-billion-at-the-worldwide-box-office/#39488291279f
2018-03-03 15:18:08,https://www.forbes.com/forbes/welcome/?toURL=https://www.forbes.com/sites/markhughes/2018/02/26/its-inevitable-black-panther-will-pass-1-billion-at-the-worldwide-box-office/&refURL=https://www.facebook.com/&referrer=https://www.facebook.com/#39488291279f
2018-03-03 15:17:16,https://youtu.be/_kgRFHaNo-Y
2018-03-03 15:15:20,https://ifttt.com/applets/73917229d-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet#
2018-03-03 15:15:19,https://ifttt.com/channels/google_sheets/authorize?state=cnRneTNJK0J1eWRjVGQvVXpWYWQwYkRUVVRrTThjSUpuMzNPUEh1VHpyUUNLaDFTQURqVndiYnFkdUwxbHJyRjhWYVlMdUp6cHloVUJlY0xxNzJJM2c9PS0tMDJXbmJpcVpRS3B4eXNReUZpd1RVdz09--b2f14468e6dfcb4874cc36ad04614e7d19ec0f7a&code=4/AAA7WxhvXxMWti8ZxiyNB7wzDwVzO0NKFu9yjOScxY8SHFUVLuwWDdETQ7zEmb6KS-8tUMUC-jLw-IWydCCfcO0#
2018-03-03 15:15:19,https://ifttt.com/channels/google_sheets/activate_success#
2018-03-03 15:15:19,https://ifttt.com/bulk_channel_activation/continue#
2018-03-03 15:15:19,https://ifttt.com/applets/315640p-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet/edit?secure_key=BAhbB0kiDDMxNTY0MHAGOgZFVEkiLTQzYjk1ZGUwOWVmNzYxNmRhZDEzZTAxZWQ0YzJlNTk2NmJjY2Y5MDUGOwBU--8ffc1a301e1aa7e60b0cdfc43053c06c03cbc9a2#
2018-03-03 15:15:19,https://ifttt.com/applets/73917229d#
2018-03-03 15:15:15,https://accounts.google.com/signin/oauth/consent?authuser=1&part=AJi8hAMl22WVoNT4XVSZg6uERKekL3SzlebAy2sXj6aPdhr4PFfzfMI-QKdfYNh5zPJBnT1hDtPfV2VcuAnqjQsXcl0ew31ErZgzwYq3eKV4_1IxNLyzYf52mnjaNFWPVk4aLpamy97K77YxWAkeXjLwe8wKzei_B8qp7bzTFoOruOTM5uzTAQNbkfnSChAtXwzXeAX-k7tvVsJM0Ht9W-NSb825uHeCRFst51Iu7SVBzC9DfY27Ovh7KJos66zoXONgktkTj-UJFt74QfU-msglb7XZZlMB3gJc7U6__aphYP0zRyEzUWUHehwwNnEcVmIwFpFPsoRXxzzx4heCxWvpfWefzYRXamu0pJg26RhkGtSexTGmyzCOZS4fE9cCj6WVhh8MkhhNS_tBSIhZfU6iJVidRjauLOhlef8bq4lnxfW9ca8HkQ5gn8XsOUYq59ObTfsVNtsbFIaQQvvlu911oEVEP9GCCA3ebDACYZ1FwgVutpeY0Ac&hl=en&as=E1DrZgakSAk87rLrVEMDkg#
2018-03-03 15:15:11,https://accounts.google.com/signin/oauth?client_id=427071021612.apps.googleusercontent.com&as=E1DrZgakSAk87rLrVEMDkg&nosignup=1&destination=https://ifttt.com&approval_state=!ChR0UmtBRVdKZktQN05PZEtCWjZUMhIfNHlXZkZBLVltQUVXTUpIMzhHRFhRN1RkREJEWUhoWQ%E2%88%99ACThZt4AAAAAWpxTzh6gviCfoiBhGpZI3kS7jJZKyMUr&xsrfsig=AHgIfE-mBKmeF94RZz2M9pHR-0sOoXWoYQ
2018-03-03 15:15:11,https://accounts.google.com/signin/oauth/oauthchooseaccount?client_id=427071021612.apps.googleusercontent.com&as=E1DrZgakSAk87rLrVEMDkg&nosignup=1&destination=https%3A%2F%2Fifttt.com&approval_state=!ChR0UmtBRVdKZktQN05PZEtCWjZUMhIfNHlXZkZBLVltQUVXTUpIMzhHRFhRN1RkREJEWUhoWQ%E2%88%99ACThZt4AAAAAWpxTzh6gviCfoiBhGpZI3kS7jJZKyMUr&xsrfsig=AHgIfE-mBKmeF94RZz2M9pHR-0sOoXWoYQ&flowName=GeneralOAuthFlow
2018-03-03 15:15:10,https://www.rescuetime.com/oauth/authorize
2018-03-03 15:15:10,https://ifttt.com/bulk_channel_activation/activate
2018-03-03 15:15:10,https://ifttt.com/channels/rescuetime/authorize?code=cec5d2e3de79ae238ff8a3820fed27f18502d296ca95110c5403763d06440343&state=bkVlcWRqby92OGNjbUIvK3FoNnAzazhjUmVCaUgyN1NkWWhTd0p0R05abWQ3L2xmekhpayt4dzZzR1ByYTZqTk90eUx2K3lLTlZFK0N6VExnZko4VVE9PS0tcFQrWW5XQ3UxRzJldGJ6YWMrNTFlUT09--8ce2e1217f6e6278a7a0f322df1d4fd958328cbe
2018-03-03 15:15:10,https://ifttt.com/channels/rescuetime/activate_success
2018-03-03 15:15:10,https://ifttt.com/bulk_channel_activation/continue
2018-03-03 15:15:10,https://ifttt.com/channels/google_sheets/activate?activation_failure_path=https%3A%2F%2Fifttt.com%2Fbulk_channel_activation%2Ffailed&activation_success_path=https%3A%2F%2Fifttt.com%2Fbulk_channel_activation%2Fcontinue&expires=1520108409&is_web_view=1&token=j4QZSg4WPTdQbth4x363E2HIFJHUSTuEvaftdnhD9qU%3D&user_id=14716568
2018-03-03 15:15:10,https://ifttt.com/channel_activation/google_sheets/start
2018-03-03 15:15:10,https://ifttt.com/channel_activation/google_sheets/approve
2018-03-03 15:15:10,https://accounts.google.com/o/oauth2/auth?access_type=offline&approval_prompt=force&client_id=427071021612.apps.googleusercontent.com&redirect_uri=https%3A%2F%2Fifttt.com%2Fchannels%2Fgoogle_sheets%2Fauthorize&response_type=code&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fspreadsheets+profile+email&state=cnRneTNJK0J1eWRjVGQvVXpWYWQwYkRUVVRrTThjSUpuMzNPUEh1VHpyUUNLaDFTQURqVndiYnFkdUwxbHJyRjhWYVlMdUp6cHloVUJlY0xxNzJJM2c9PS0tMDJXbmJpcVpRS3B4eXNReUZpd1RVdz09--b2f14468e6dfcb4874cc36ad04614e7d19ec0f7a
2018-03-03 15:15:05,https://ifttt.com/services/rescuetime/applets/315640p/activate?secure_key=BAhbB0kiDDMxNTY0MHAGOgZFVEkiLTQzYjk1ZGUwOWVmNzYxNmRhZDEzZTAxZWQ0YzJlNTk2NmJjY2Y5MDUGOwBU--8ffc1a301e1aa7e60b0cdfc43053c06c03cbc9a2
2018-03-03 15:15:05,https://ifttt.com/bulk_channel_activation/new?c%5B%5D=rescuetime&c%5B%5D=google_sheets&return_to=https://ifttt.com/applets/315640p-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet/edit?secure_key=BAhbB0kiDDMxNTY0MHAGOgZFVEkiLTQzYjk1ZGUwOWVmNzYxNmRhZDEzZTAxZWQ0YzJlNTk2NmJjY2Y5MDUGOwBU--8ffc1a301e1aa7e60b0cdfc43053c06c03cbc9a2
2018-03-03 15:15:05,https://ifttt.com/channels/rescuetime/activate?activation_failure_path=https%3A%2F%2Fifttt.com%2Fbulk_channel_activation%2Ffailed&activation_success_path=https%3A%2F%2Fifttt.com%2Fbulk_channel_activation%2Fcontinue&expires=1520108405&is_web_view=1&token=KYVPJ6Pp9Wht1wL2bGuYz6g6YILeM0rWsOhfXojiJF0%3D&user_id=14716568
2018-03-03 15:15:05,https://ifttt.com/channel_activation/rescuetime/start
2018-03-03 15:15:05,https://ifttt.com/channel_activation/rescuetime/approve
2018-03-03 15:15:05,https://www.rescuetime.com/oauth/authorize?client_id=92d3c869b9bcec16d75ac2c788036291daad695a24ec8d7cf907c36cde461a08&redirect_uri=https%3A%2F%2Fifttt.com%2Fchannels%2Frescuetime%2Fauthorize&response_type=code&scope=ifttt&state=bkVlcWRqby92OGNjbUIvK3FoNnAzazhjUmVCaUgyN1NkWWhTd0p0R05abWQ3L2xmekhpayt4dzZzR1ByYTZqTk90eUx2K3lLTlZFK0N6VExnZko4VVE9PS0tcFQrWW5XQ3UxRzJldGJ6YWMrNTFlUT09--8ce2e1217f6e6278a7a0f322df1d4fd958328cbe
2018-03-03 15:15:01,https://ifttt.com/applets/315640p-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet/permissions?secure_key=BAhbB0kiDDMxNTY0MHAGOgZFVEkiLTQzYjk1ZGUwOWVmNzYxNmRhZDEzZTAxZWQ0YzJlNTk2NmJjY2Y5MDUGOwBU--8ffc1a301e1aa7e60b0cdfc43053c06c03cbc9a2
2018-03-03 15:14:46,https://ifttt.com/applets/315640p-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet
2018-03-03 15:14:44,https://ifttt.com/applets/315640p-if-new-daily-summary-is-available-log-a-row-in-a-google-sheets-spreadsheet?aea=true
2018-03-03 15:14:39,https://accounts.google.com/signin/oauth?client_id=427071021612.apps.googleusercontent.com&as=0IYPF4xlOx4k90owhx_0rA&destination=https://ifttt.com&approval_state=!ChRxcjVENVpKVFl2NllrdzBnVjBEThIfWTB0QjVFa1lPSmtSTUpIMzhHRFhRN1R0SVFqWUhoWQ%E2%88%99ACThZt4AAAAAWpxTraYPs-8DhHGUJBXND4Q9UcEjf6nF&xsrfsig=AHgIfE-18M4A-ABEwct6qKrjW1HAQEfeqA
2018-03-03 15:14:39,https://accounts.google.com/signin/oauth/oauthchooseaccount?client_id=427071021612.apps.googleusercontent.com&as=0IYPF4xlOx4k90owhx_0rA&destination=https%3A%2F%2Fifttt.com&approval_state=!ChRxcjVENVpKVFl2NllrdzBnVjBEThIfWTB0QjVFa1lPSmtSTUpIMzhHRFhRN1R0SVFqWUhoWQ%E2%88%99ACThZt4AAAAAWpxTraYPs-8DhHGUJBXND4Q9UcEjf6nF&xsrfsig=AHgIfE-18M4A-ABEwct6qKrjW1HAQEfeqA&flowName=GeneralOAuthFlow
2018-03-03 15:14:37,https://accounts.google.com/o/oauth2/auth?response_type=code&scope=email%20profile&openid.realm=&include_granted_scopes=true&redirect_uri=storagerelay%3A%2F%2Fhttps%2Fifttt.com%3Fid%3Dauth722180&client_id=427071021612.apps.googleusercontent.com&ss_domain=https%3A%2F%2Fifttt.com&gsiwebsdk=shim&access_type=offline
2018-03-03 15:14:32,https://ifttt.com/join
2018-03-03 15:06:01,https://www.rescuetime.com/browse/productivity/5/by/hour/for/the/day/of/2018-03-02
2018-03-03 15:04:41,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-02-26
2018-03-03 14:59:13,https://www.google.com/url?hl=en&q=https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md%23assignment&source=gmail&ust=1520109046428000&usg=AFQjCNGl0jzz_5ulPQN6XF4H--2_5t6I7A
2018-03-03 14:58:14,https://mail.google.com/mail/u/1/#inbox/161ded83ff781f3f
2018-03-03 14:54:00,https://gizmodo.com/what-is-5g-and-how-will-it-make-my-life-better-1760847799
2018-03-03 14:53:53,https://www.google.com/search?q=5g+wifi&oq=5g+wifi&aqs=chrome..69i57j0l5.1920j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 14:53:46,https://www.cnet.com/news/5g-wi-fi-802-11ac-explained-its-cool/
2018-03-03 14:53:46,https://www.cnet.com/g00/news/5g-wi-fi-802-11ac-explained-its-cool/?i10c.encReferrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8%3D&i10c.ua=1&i10c.dv=13
2018-03-03 14:08:58,http://kkeramidas.nyufasedtech.com/sites/dh-analysis-visualization/
2018-03-03 14:06:41,https://www.media.mit.edu/projects/real-time-assessment-of-suicidal-thoughts-and-behaviors/overview/
2018-03-03 13:59:53,http://affect.media.mit.edu/pdfs/16.Jaques-Taylor-et-al-PredictingHealthStressHappiness.pdf
2018-03-03 13:59:53,https://affect.media.mit.edu/pdfs/16.Jaques-Taylor-et-al-PredictingHealthStressHappiness.pdf
2018-03-03 13:59:35,https://padlet.com/xujenna/vq1rwl7gfl5b
2018-03-03 13:59:24,https://www.media.mit.edu/publications/multi-task-learning-for-predicting-health-stress-and-happiness/
2018-03-03 13:58:21,https://www.myfeel.co/how-it-works
2018-03-03 13:56:05,http://www.myfeel.co/
2018-03-03 13:56:05,https://www.myfeel.co/
2018-03-03 13:56:03,http://prana.co/
2018-03-03 13:54:04,https://www.techradar.com/news/is-stress-tracking-the-future-of-well-being-tech
2018-03-03 13:53:55,https://www.google.com/search?q=stress+biometrics&oq=stress+biometrics&aqs=chrome..69i57j0l5.1862j0j7&sourceid=chrome&ie=UTF-8
2018-03-03 13:50:36,https://mail.google.com/mail/u/0/#inbox/161ea6464fb9fe77
2018-03-03 13:48:07,https://www.facebook.com/txtstories/videos/234390640463135/
2018-03-03 13:40:46,https://mail.google.com/mail/u/2/#search/video/p3
2018-03-03 13:40:31,https://mail.google.com/mail/u/2/#search/video/p2
2018-03-03 13:40:18,https://mail.google.com/mail/u/2/#search/video
2018-03-03 13:35:47,https://mail.google.com/mail/u/2/#search/video/15889cb57b64d6f5
2018-03-03 13:35:30,https://mail.google.com/mail/u/2/#search/video/15919ebe87dcb3cd
2018-03-03 13:35:26,https://mail.google.com/mail/u/2/#search/video/158f8356e174a1c4
2018-03-03 13:34:57,https://mail.google.com/mail/u/2/#search/video/158d2190d16eed60
2018-03-03 13:32:22,https://mail.google.com/mail/u/0/#inbox/161ecf526637437c
2018-03-03 13:31:48,https://mail.google.com/mail/u/0/#inbox/161ecd3402915b74
2018-03-03 13:20:56,file:///Users/jxu2/Documents/Work/1%20Freelance/ASH/ASH%20Website/mockups/new/mockups/3_WhatWeDo_OurPilotSite_web2.pdf
2018-03-03 13:17:20,https://mail.google.com/mail/u/1/#inbox/161ebc3253bbaf82
2018-03-03 13:17:19,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419374512&xpc=%7B%22cn%22%3A%22uf1uzk%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWZYogeaosn9DCGzCvpLK2a26zAEahxGXPtZCbWfJp6JuAA5L2nkgjTMbGiegpvrTgKbTxsmJ4R4MygNE_qy0BgMcWlI5Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafiAAYKeGHURpBcLszzzyacDJGcj8_78HAAJQA4ArgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9C2DvhLl0eBaTf3_LPKkmZKkpgmYg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C2%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.32049992169196195&tn=dnadeeuk7ee2&rld=1
2018-03-03 13:17:19,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419374512&xpc=%7B%22cn%22%3A%22uf1uzk%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWZYogeaosn9DCGzCvpLK2a26zAEahxGXPtZCbWfJp6JuAA5L2nkgjTMbGiegpvrTgKbTxsmJ4R4MygNE_qy0BgMcWlI5Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafiAAYKeGHURpBcLszzzyacDJGcj8_78HAAJQA4ArgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9C2DvhLl0eBaTf3_LPKkmZKkpgmYg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C2%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9984490326219542&tn=y9ic2jq0bf0i&rld=1
2018-03-02 20:43:43,https://mail.google.com/mail/u/1/#inbox/161e923c8fcc661c
2018-03-02 20:42:52,https://mail.google.com/mail/u/0/#inbox/161e97165273e905
2018-03-02 20:42:47,https://accounts.google.com/CheckCookie?hl=en&checkedDomains=youtube&checkConnection=youtube%3A346%3A1&pstMsg=1&osid=1&chtml=LoginDoneHtml&service=sierra&continue=https%3A%2F%2Fwallet.google.com%2Fn%2Fhome%3Ftab%3Dma%26authuser%3D0&gidl=EgIIAA
2018-03-02 20:42:47,https://wallet.google.com/accounts/SetOSID?authuser=0&continue=https%3A%2F%2Faccounts.youtube.com%2Faccounts%2FSetSID%3Fssdc%3D1%26sidt%3DALWU2cuuQLmwTYkPO5Iu%252B7I0zRYfurP4zC6hh1j4Z3MhQC8GYlOP4n3wLuTxSaflCj%252FWe9ktz%252F2CfbdXPIGihbFhfgsqMbmeRHT%252FvQJaoO%252BoE%252BS58JjqWdt5j%252FveD9anvrd%252BEr7Tv89rCq7Pr0po63bNQsfIkbmdORRzvnqOjR01wYbRrTdghi1Q7QhariErIMBm4y17MrCrmXopIf5Ck6CUpI%252FFO%252Ffm3DaJsrCTJ5gVGtVVDLFLnywmutKO3UPMLAbNuJ5fNnM5jc9JwGHWDzbeQmdDPCjhK6MxQF7%252BzY87vFJB2%252BuMiEQouc67AtUCNR2moifJgc6PqmOO18iFva%252BFaGfwYOWFHw%253D%253D%26continue%3Dhttps%253A%252F%252Fwallet.google.com%252Fn%252Fhome%253Ftab%253Dma%2526authuser%253D0%2526auth%253D1gUmYce4wlZQoOZCYHDVpaUP1ubxMDFmeQ90-hyc5Mep_eATBWJvxIfkqlmp63GlmZJ1ag.&osidt=ALWU2cvU_yBF1fah2E10zmEg54cA0JwnWKKatytvU5aybWX4SYa24qXshFEWsDqt4vb41tqOlR-kjkEniwNhsHu6e-bEZc6liS3S7xkXafRfZmIHCN1nQxLI5S9qHjChtsMCB91gmbQT
2018-03-02 20:42:47,https://accounts.youtube.com/accounts/SetSID?ssdc=1&sidt=ALWU2cuuQLmwTYkPO5Iu%2B7I0zRYfurP4zC6hh1j4Z3MhQC8GYlOP4n3wLuTxSaflCj/We9ktz/2CfbdXPIGihbFhfgsqMbmeRHT/vQJaoO%2BoE%2BS58JjqWdt5j/veD9anvrd%2BEr7Tv89rCq7Pr0po63bNQsfIkbmdORRzvnqOjR01wYbRrTdghi1Q7QhariErIMBm4y17MrCrmXopIf5Ck6CUpI/FO/fm3DaJsrCTJ5gVGtVVDLFLnywmutKO3UPMLAbNuJ5fNnM5jc9JwGHWDzbeQmdDPCjhK6MxQF7%2BzY87vFJB2%2BuMiEQouc67AtUCNR2moifJgc6PqmOO18iFva%2BFaGfwYOWFHw%3D%3D&continue=https://wallet.google.com/n/home?tab%3Dma%26authuser%3D0%26auth%3D1gUmYce4wlZQoOZCYHDVpaUP1ubxMDFmeQ90-hyc5Mep_eATBWJvxIfkqlmp63GlmZJ1ag.
2018-03-02 20:42:47,https://wallet.google.com/n/home?tab=ma&authuser=0&auth=1gUmYce4wlZQoOZCYHDVpaUP1ubxMDFmeQ90-hyc5Mep_eATBWJvxIfkqlmp63GlmZJ1ag.
2018-03-02 20:42:28,https://secure.bankofamerica.com/login/sign-in/entry/signOnV2.go
2018-03-02 20:42:28,https://secure.bankofamerica.com/login/sign-in/signOnV2Screen.go?msg=InvalidCredentials_1_Remaining&request_locale=en_us&lpOlbResetErrorCounter=0
2018-03-02 20:42:09,https://www.bankofamerica.com/
2018-03-02 20:41:49,https://mail.google.com/mail/u/0/#search/bank+of+america+login
2018-03-02 20:41:44,https://mail.google.com/mail/u/0/#search/bank+of+america+account
2018-03-02 20:41:36,https://mail.google.com/mail/u/0/#search/bank+of+america/p3
2018-03-02 20:41:22,https://mail.google.com/mail/u/0/#search/bank+of+america/p2
2018-03-02 20:41:17,https://mail.google.com/mail/u/0/#search/bank+of+america
2018-03-02 20:41:07,https://secure.bankofamerica.com/login/sign-in/signOnV2Screen.go?msg=InvalidCredentials_2_Remaining&request_locale=en_us&lpOlbResetErrorCounter=0
2018-03-02 20:40:57,https://mail.google.com/mail/u/0/#search/bank+of+america/1614a8224890f415
2018-03-02 20:40:31,https://www.google.com/search?q=bankofamerica&oq=bankof&aqs=chrome.0.0j69i57j0l4.2007j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 19:18:43,"https://www.google.com/maps/place/Westville+West/@40.7340561,-74.0073342,17.39z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:42,"https://www.google.com/maps/place/Westville+West/@40.7339494,-74.0059025,18.11z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:41,"https://www.google.com/maps/place/Westville+West/@40.73431,-74.0052036,18.11z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:39,"https://www.google.com/maps/place/Westville+West/@40.7341941,-74.0042176,18.9z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:38,"https://www.google.com/maps/place/Westville+West/@40.7342093,-74.0048155,18.9z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:37,"https://www.google.com/maps/place/Westville+West/@40.7343447,-74.0052654,18.19z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:35,"https://www.google.com/maps/place/Westville+West/@40.7343946,-74.0072189,18.19z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:34,"https://www.google.com/maps/place/Westville+West/@40.7339771,-74.0058429,17z/data=!3m1!4b1!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:34,"https://www.google.com/maps/place/Westville+West/@40.7344209,-74.006843,17.47z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 19:18:33,"https://www.google.com/maps/place/Westville+West,+West+10th+Street,+New+York,+NY/@40.7344209,-74.006843,17.47z/data=!4m2!3m1!1s0x89c259948ff8dfe1:0x14ab90efc1e33677"
2018-03-02 19:18:31,"https://www.google.com/maps/@40.7344209,-74.006843,17.47z"
2018-03-02 19:18:30,"https://www.google.com/maps/search/bank/@40.7344209,-74.006843,17.47z"
2018-03-02 19:18:19,"https://www.google.com/maps/search/bank/@40.7348483,-74.0056221,17.47z"
2018-03-02 19:18:19,"https://www.google.com/maps/search/bank/@40.7350825,-74.0060934,17.47z"
2018-03-02 19:18:17,"https://www.google.com/maps/search/bank/@40.7347371,-74.0043239,17.47z"
2018-03-02 19:18:13,"https://www.google.com/maps/search/bank/@40.7350005,-74.0056289,16.43z"
2018-03-02 19:18:08,"https://www.google.com/maps/search/bank/@40.7350488,-74.0074425,16.43z"
2018-03-02 19:18:07,"https://www.google.com/maps/search/bank/@40.7349157,-74.007321,15z/data=!3m1!4b1"
2018-03-02 19:18:06,"https://www.google.com/maps/search/bank/@40.7348839,-74.0072781,15z"
2018-03-02 19:18:00,"https://www.google.com/maps/@40.7348839,-74.0072781,15z"
2018-03-02 18:58:21,https://www.google.com/search?q=chinese+delivery&oq=chinese+delivery&aqs=chrome..69i57j0l5.2111j0j4&sourceid=chrome&ie=UTF-8
2018-03-02 18:57:05,https://keep.google.com/u/1/#NOTE/1519419340603.1675843150
2018-03-02 18:55:51,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j0j35i39j0l3.1140j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 18:55:43,"https://www.google.com/maps/dir/40.7349846,-74.0073705/Westville+West,+210+W+10th+St,+New+York,+NY+10014/@40.7345146,-74.0069154,18z/data=!3m1!4b1!4m17!1m6!3m5!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2sWestville+West!8m2!3d40.7339742!4d-74.0042627!4m9!1m1!4e1!1m5!1m1!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2m2!1d-74.0042627!2d40.7339742!3e2"
2018-03-02 18:55:43,"https://www.google.com/maps/dir/40.7349846,-74.0073705/Westville+West,+210+W+10th+St,+New+York,+NY+10014/@40.7339742,-74.0064567,17z/data=!4m17!1m6!3m5!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2sWestville+West!8m2!3d40.7339742!4d-74.0042627!4m9!1m1!4e1!1m5!1m1!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2m2!1d-74.0042627!2d40.7339742!3e2"
2018-03-02 18:55:42,"https://www.google.com/maps/dir//Westville+West,+210+W+10th+St,+New+York,+NY+10014/@40.7339742,-74.0064567,17z/data=!4m17!1m6!3m5!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2sWestville+West!8m2!3d40.7339742!4d-74.0042627!4m9!1m1!4e2!1m5!1m1!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!2m2!1d-74.0042627!2d40.7339742!3e2"
2018-03-02 18:54:33,"https://www.google.com/maps/place/Westville+West/@40.7339742,-74.0064567,17z/data=!3m1!4b1!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:54:32,"https://www.google.com/maps/place/Westville+West/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:53:51,"https://www.google.com/maps/place/Westville+West/@40.7339742,-74.0062009,17z/data=!3m1!4b1!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:53:50,"https://www.google.com/maps/place/Westville+West/@40.7336009,-74.0039926,17.18z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:53:49,"https://www.google.com/maps/place/Westville+West,+West+10th+Street,+New+York,+NY/@40.7336009,-74.0039926,17.18z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:53:46,"https://www.google.com/maps/@40.7336009,-74.0039926,17.18z"
2018-03-02 18:53:42,"https://www.google.com/maps/@40.7328468,-74.004438,17.18z"
2018-03-02 18:53:40,"https://www.google.com/maps/@40.7334088,-74.0058447,16.46z"
2018-03-02 18:53:39,"https://www.google.com/maps/@40.7345262,-74.012385,15z"
2018-03-02 18:49:04,https://www.media.mit.edu/projects/real-time-assessment-of-suicidal-thoughts-and-behaviors/people/
2018-03-02 18:47:54,https://www.google.com/search?q=weather&oq=weat&aqs=chrome.0.69i59j0j69i57j35i39j0l2.701j0j4&sourceid=chrome&ie=UTF-8
2018-03-02 18:47:01,"https://www.google.com/maps/place/Westville+West,+West+10th+Street,+New+York,+NY/@40.7345587,-74.012385,15z/data=!4m5!3m4!1s0x89c259948ff8dfe1:0x14ab90efc1e33677!8m2!3d40.7339742!4d-74.0042627"
2018-03-02 18:30:30,https://www.media.mit.edu/projects/objective-asessment-of-depression-and-its-improvement/overview/
2018-03-02 18:29:55,https://www.media.mit.edu/projects/objective-asessment-of-depression-and-its-improvement/people/
2018-03-02 18:28:56,"https://www.google.com/maps/@40.7268513,-74.000197,15z"
2018-03-02 18:28:54,"https://www.google.com/maps/@40.7299734,-73.9926869,15z"
2018-03-02 18:28:49,"https://www.google.com/maps/@40.7370626,-73.9996821,15z"
2018-03-02 18:26:25,https://www.media.mit.edu/projects/automatic-stress-recognition-in-real-life-settings/overview/
2018-03-02 18:26:20,https://www.media.mit.edu/projects/predicting-students-wellbeing-from-physiology-phone-mobility-and-behavioral-data/overview/
2018-03-02 18:25:25,https://www.media.mit.edu/projects/predicting-bonding/overview/
2018-03-02 18:24:50,https://www.media.mit.edu/projects/quantifyme/overview/
2018-03-02 18:24:22,https://www.media.mit.edu/projects/wavelet-based-motion-artifact-removal-for-electrodermal-activity/overview/
2018-03-02 18:22:43,https://www.affectiva.com/experience-it/
2018-03-02 18:22:43,http://affectiva.com/experience-it/
2018-03-02 18:22:43,http://www.affectiva.com/experience-it/
2018-03-02 18:22:18,https://developer.affectiva.com/metrics/
2018-03-02 18:21:27,"https://en.wikipedia.org/wiki/Hell,_California"
2018-03-02 18:21:20,https://en.wikipedia.org/wiki/Hell
2018-03-02 18:18:41,"https://en.wikipedia.org/wiki/Hell,_Michigan"
2018-03-02 18:18:34,https://www.google.com/search?ei=sNuZWuuAL-m0ggew6bqADA&q=hell%2C+michigan&oq=hell%2C+michigan&gs_l=psy-ab.3..0i20i263k1j0j0i20i263k1j0l7.20434.23415.0.23587.18.16.2.0.0.0.165.1441.13j3.16.0....0...1.1.64.psy-ab..0.18.1443...35i39k1j0i67k1j0i46i67k1j46i67k1j0i131i67k1j0i131k1j0i20i264k1j0i10k1j0i20i263i264k1.0.NRVHWrJIT_U
2018-03-02 18:18:09,https://www.google.com/search?q=go+to+hell&oq=go+to+hell&aqs=chrome..69i57j0l5.5321j0j8&sourceid=chrome&ie=UTF-8
2018-03-02 18:09:55,https://itunes.apple.com/us/app/true-emoji/id1297340357?mt=8
2018-03-02 18:08:55,http://www.trueemoji.com/
2018-03-02 18:08:55,http://trueemoji.com/
2018-03-02 18:06:50,https://www.google.com/search?q=Affdex&oq=Affdex&aqs=chrome..69i57j0l5.382j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 18:06:45,https://www.affectiva.com/affdex-anywhere/
2018-03-02 18:05:53,https://developer.affectiva.com/hero/developer-hero-4/
2018-03-02 18:05:39,https://developer.affectiva.com/hero/erin-smith/
2018-03-02 18:04:52,https://blog.clarifai.com/built-with-clarifai/page/7
2018-03-02 18:01:13,https://www.instagram.com/slightly_janky/
2018-03-02 17:58:32,https://www.uclassify.com/browse
2018-03-02 17:58:29,https://www.uclassify.com/browse/uclassify/sentiment
2018-03-02 17:58:26,https://www.uclassify.com/browse/uclassify/sentiment/default/classifytextpost
2018-03-02 17:58:26,https://www.uclassify.com/browse/uclassify/sentiment?input=Text
2018-03-02 17:58:12,https://www.uclassify.com/browse/prfekt/mood
2018-03-02 17:58:10,https://www.uclassify.com/browse/prfekt/mood?input=Text
2018-03-02 17:57:52,https://www.uclassify.com/browse/prfekt/mood/default/classifytextpost
2018-03-02 17:54:09,https://padlet.com/create
2018-03-02 17:49:11,https://blog.clarifai.com/built-with-clarifai/page/6
2018-03-02 17:49:11,https://blog.clarifai.com/built-with-clarifai/page/6/
2018-03-02 17:46:43,http://devpost.com/software/instatype
2018-03-02 17:46:43,https://devpost.com/software/instatype
2018-03-02 17:45:56,https://github.com/isabellacmor/instatype
2018-03-02 17:44:07,https://www.uclassify.com/
2018-03-02 17:42:47,https://mail.google.com/mail/u/0/#inbox/161d41e57400d728
2018-03-02 17:41:59,https://www.google.com/url?hl=en&q=https://teledipity.us11.list-manage.com/track/click?u%3D69a7d73c0a06035c2b5a114a7%26id%3Db3252ba977%26e%3Dfc2dbeecb3&source=gmail&ust=1520034887169000&usg=AFQjCNE4RN6IRmWMlVEtOWs3q7pT9NZrmw
2018-03-02 17:41:59,https://teledipity.us11.list-manage.com/track/click?u=69a7d73c0a06035c2b5a114a7&id=b3252ba977&e=fc2dbeecb3
2018-03-02 17:41:59,http://www.teledipity.com/?telnum=614718066735
2018-03-02 17:41:59,https://www.teledipity.com/?telnum=614718066735
2018-03-02 17:41:42,https://mail.google.com/mail/u/0/#inbox/161e1a74d1153060
2018-03-02 17:39:37,https://www.google.com/search?q=uClassify&oq=uClassify&aqs=chrome..69i57j0l5.534j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 17:38:12,https://blog.clarifai.com/clarifai-featured-hack-classifi-me-predicts-your-myers-briggs-type-based-on-your-instagram-photos-videos/
2018-03-02 17:35:18,https://azure.microsoft.com/en-us/services/cognitive-services/emotion/
2018-03-02 17:35:11,https://www.google.com/search?q=Microsoft+Emotion+API&oq=Microsoft+Emotion+API&aqs=chrome..69i57j0l4.252j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 17:33:44,https://blog.clarifai.com/built-with-clarifai/page/5
2018-03-02 17:33:40,https://blog.clarifai.com/clarifai-featured-hack-improve-your-emotional-health-with-feelybot/
2018-03-02 17:32:53,https://blog.clarifai.com/built-with-clarifai/page/4
2018-03-02 17:29:10,https://mail.google.com/mail/u/1/#inbox/161e8aab3c2174a8
2018-03-02 16:32:15,https://www.amazon.com/gp/video/detail/B015EV8HZE/ref=atv_hm_hom_3_c_obwanp_2_1?ie=UTF8&pf_rd_i=home&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=3511224122&pf_rd_r=BMPCV769XJTG2MVJJRY7&pf_rd_s=center-4&pf_rd_t=12401
2018-03-02 16:31:27,https://mail.google.com/mail/u/0/#inbox/161e89b0eb3babec
2018-03-02 15:51:00,https://www.google.com/search?q=tisch&oq=tisch&aqs=chrome..69i57j0l2j69i65l2j69i60.1631j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 15:47:14,https://mail.google.com/mail/u/1/#inbox/161e87300d292a0d
2018-03-02 15:45:21,https://blog.clarifai.com/create-digital-art-with-p5-js-and-clarifais-color-recognition-model/
2018-03-02 15:45:12,https://blog.clarifai.com/built-with-clarifai/page/3
2018-03-02 15:44:49,https://blog.clarifai.com/built-with-clarifai/page/2
2018-03-02 15:44:49,https://blog.clarifai.com/built-with-clarifai/page/2/
2018-03-02 15:43:20,http://www.break.com/article/ai-thinks-these-celebrities-look-like-famous-people-3096808
2018-03-02 15:43:07,https://blog.clarifai.com/five-mind-blowingly-intelligent-ai-apps-built-on-clarifai-featuring-mongodb-instagram-more/
2018-03-02 15:40:57,https://ifttt.com/collections
2018-03-02 15:39:11,https://www.amazon.com/Wonderful-No-Shell-Pistachios-oz/dp/B01E76E5MQ/ref=pd_lpo_vtph_325_tr_img_2?_encoding=UTF8&refRID=4DH868BMBXBEXRK632C8&th=1
2018-03-02 15:39:07,https://www.amazon.com/Wonderful-No-Shell-Pistachios-oz/dp/B01E76E5MQ/ref=pd_lpo_vtph_325_tr_img_2?_encoding=UTF8&psc=1&refRID=4DH868BMBXBEXRK632C8
2018-03-02 15:39:02,https://www.amazon.com/Wonderful-Pistachios-Almonds-Shelled-16-Ounce/dp/B00355CNFW
2018-03-02 15:38:57,https://www.google.com/search?q=shelled+pistachios&oq=shelled+pistachios&aqs=chrome..69i57j0l5.3239j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 15:35:11,https://ifttt.com/collections/new_applets
2018-03-02 15:33:09,https://ifttt.com/collections/health
2018-03-02 15:33:00,https://ifttt.com/collections/voice_assistants
2018-03-02 15:30:48,https://mail.google.com/mail/u/1/#inbox/161e7ad744205d32
2018-03-02 15:30:00,https://www.google.com/url?hl=en&q=https://github.com/joeyklee/quant-humanists-2018/blob/master/WEEK_05.md%23assignment&source=gmail&ust=1520108990500000&usg=AFQjCNGtI9e5akZI1AFaejg2xBHzkuzAbw
2018-03-02 15:29:51,https://mail.google.com/mail/u/1/#search/quant+humanists/161d52620a31bab0
2018-03-02 15:29:49,https://mail.google.com/mail/u/1/#search/quant+humanists
2018-03-02 15:29:16,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j0j35i39j0l3.790j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 15:27:38,https://ifttt.com/applets/eLqFf5Ev-save-notifications-from-all-of-your-apps-to-a-google-spreadsheet
2018-03-02 15:27:19,https://ifttt.com/collections/android
2018-03-02 15:26:48,https://ifttt.com/collections/google
2018-03-02 15:26:29,https://ifttt.com/about
2018-03-02 15:26:24,https://mail.google.com/mail/u/1/#search/ifttt
2018-03-02 15:25:38,https://ifttt.com/
2018-03-02 15:24:04,http://datathroughdesign.com/
2018-03-02 15:23:50,http://datathroughdesign.com/juansteven.html
2018-03-02 15:23:05,http://datathroughdesign.com/soyeonyeeun.html
2018-03-02 15:22:52,https://www.google.com/url?hl=en&q=http://datathroughdesign.com/&source=gmail&ust=1520108528974000&usg=AFQjCNEB4rHOVEuqwM9iHt6u6PzHimbBdw
2018-03-02 15:22:43,http://datathroughdesign.com/davidmathura.html
2018-03-02 15:21:54,https://www.google.com/url?hl=en&q=http://datathroughdesign.com/&source=gmail&ust=1520102119459000&usg=AFQjCNFdJthhVsilFZ-IXDr4e-w2wGONzQ
2018-03-02 15:21:49,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.6964713,-73.9881485,15.09z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:47,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.6988695,-73.9873947,15.71z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:40,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.6952139,-73.9885437,14.85z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:40,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.7017321,-73.9920783,14.85z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:26,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.7011199,-73.991615,15.01z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:25,https://www.google.com/search?q=weather&oq=weather&aqs=chrome..69i57j69i60l2j69i61j69i60l2.573j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 15:21:20,"https://www.google.com/maps/place/30+John+St,+Brooklyn,+NY+11201/@40.7091155,-73.998917,15.01z/data=!4m5!3m4!1s0x89c25a32462241e3:0xd8c2a76e2f039d0d!8m2!3d40.7042318!4d-73.9870246"
2018-03-02 15:21:17,"https://www.google.com/maps?q=30+John+St,+Brooklyn+NY+11201&entry=gmail&source=g"
2018-03-02 15:21:13,"https://maps.google.com/?q=30+John+St,+Brooklyn+NY+11201&entry=gmail&source=g"
2018-03-02 15:21:13,"https://maps.google.com/maps?q=30+John+St,+Brooklyn+NY+11201&entry=gmail&source=g"
2018-03-02 15:20:44,https://data.cityofnewyork.us/Social-Services/illegal-animals-kept-as-pets/qhqf-m5aq
2018-03-02 15:20:19,https://www.google.com/url?hl=en&q=http://datathroughdesign.com/davidmathura.html&source=gmail&ust=1520102119460000&usg=AFQjCNFpyCjtzLQ5NqO3uDg67xOveuhFpw
2018-03-02 15:20:03,https://mail.google.com/mail/u/1/#inbox/161e7dc12c1909c3
2018-03-02 15:19:58,https://mail.google.com/mail/u/1/#inbox/161b52ae566324d6
2018-03-02 15:19:19,http://www.tandfonline.com/doi/abs/10.1080/17540760701785842
2018-03-02 15:19:19,http://www.tandfonline.com/doi/abs/10.1080/17540760701785842?cookieSet=1
2018-03-02 15:19:19,https://www.tandfonline.com/doi/abs/10.1080/17540760701785842
2018-03-02 15:18:32,http://manovich.net/index.php/projects/instagram-and-contemporary-image
2018-03-02 15:15:53,https://mail.google.com/mail/u/1/#inbox/161e855633a4d45c
2018-03-02 14:53:17,https://www.emotiv.com/support/
2018-03-02 14:53:04,https://www.emotiv.com/product/emotivpro/
2018-03-02 14:53:00,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5a99ab92bdd34&login-prompt=NO
2018-03-02 14:53:00,https://www.emotiv.com/oauth.php?state=emotiv5a99ab92bdd34&code=dj9Cmv8eoR46Zq8QT0pzCydmNXEwMP
2018-03-02 14:52:54,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5a99ab92bdd34
2018-03-02 14:52:54,https://id.emotivcloud.com/eoidc/api-auth/login/?next=/eoidc/oidc/authorize/%3Fclient_id%3DyCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo%26response_type%3Dcode%26redirect_uri%3Dhttps%3A//www.emotiv.com/oauth.php%26scope%3Dwrite%2Bopenid%2Bprofile%2Baddress%2Bread%2Bfull_profile%2Bphone%2Bemail%26state%3Demotiv5a99ab92bdd34%26login-prompt%3DNO
2018-03-02 14:51:42,https://www.emotiv.com/product-category/applications/
2018-03-02 14:51:06,https://www.emotiv.com/product/xavier-control-panel/
2018-03-02 14:45:53,https://www.emotiv.com/developer/#developerSupport
2018-03-02 14:44:52,https://www.emotiv.com/developer/#
2018-03-02 14:44:30,https://www.emotiv.com/developer/
2018-03-02 14:41:39,https://store.trxtraining.com/products/trx-tactical-gym
2018-03-02 14:41:39,https://store.trxtraining.com/products/trx-tactical
2018-03-02 14:41:29,https://www.trxtraining.com/trx-tactical-gym
2018-03-02 14:41:22,https://www.trxtraining.com/
2018-03-02 14:41:22,https://www.trxtraining.com/#/
2018-03-02 14:41:16,https://www.google.com/search?q=trx&oq=trx&aqs=chrome..69i57j0l5.2286j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 13:41:13,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419334139&xpc=%7B%22cn%22%3A%22q5tzn7%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYf-Oorc-4YxNZWPdV2FdBKAUMzNf8Dz6kGtLNIWJZp-yr6dL54b6AKTFkDZhFWxvK4nb6j7ovwtXhnXuA_z0INtYFzhQ%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafiAAYCeGHURpBcLszzzyacDLG8j-_7_nAQJQA4BrgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DHBW-GGjkbckvFfd7LuHHEYuzllg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.4473303623299998&tn=zf0ljx7qhrxr&rld=1
2018-03-02 13:41:13,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419334139&xpc=%7B%22cn%22%3A%22q5tzn7%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYf-Oorc-4YxNZWPdV2FdBKAUMzNf8Dz6kGtLNIWJZp-yr6dL54b6AKTFkDZhFWxvK4nb6j7ovwtXhnXuA_z0INtYFzhQ%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafiAAYCeGHURpBcLszzzyacDLG8j-_7_nAQJQA4BrgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DHBW-GGjkbckvFfd7LuHHEYuzllg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9755685718491656&tn=9tcnalqw5835&rld=1
2018-03-02 11:45:23,https://mail.google.com/mail/u/1/#inbox/161e7840f0f46b61
2018-03-02 11:45:07,https://trueandco.com/bras/true-co/merced-t-back/3289
2018-03-02 11:44:56,https://trueandco.com/bras/true-co/merced-t-back/3290
2018-03-02 11:44:24,https://trueandco.com/bras/true-co/true-everyday-full-coverage-bra/5684#product-reviews
2018-03-02 11:43:59,https://trueandco.com/collections/sale?page=2
2018-03-02 11:43:48,https://trueandco.com/lounge-sleep/true-co/westley-jogger-pant/4097
2018-03-02 11:43:28,https://trueandco.com/lingerie-boudoir-bodysuits/trove/swiss-dot-cage-set/5592
2018-03-02 11:43:21,https://trueandco.com/bras/true-co/true-everyday-full-coverage-bra/5684
2018-03-02 11:42:57,https://trueandco.com/collections/sale
2018-03-02 11:42:26,http://trueandco.com/bras/true-co/alice-easy-fit-pullover/5469?SSAID=314743&utm_medium=referral&utm_source=shareasale.com&utm_campaign=314743_626828
2018-03-02 11:42:26,https://trueandco.com/bras/true-co/alice-easy-fit-pullover/5469?SSAID=314743&utm_medium=referral&utm_source=shareasale.com&utm_campaign=314743_626828
2018-03-02 11:42:25,http://www.shareasale.com/r.cfm?b=626828&u=314743&m=54397&afftrack=1025X1552619Xf41be8b3dbe442f28525ba05f4c3b0e2&urllink=trueandco.com%2Fbras%2Ftrue-co%2Falice-easy-fit-pullover%2F5469
2018-03-02 11:42:22,chrome-extension://cjpalhdlnbpafiamejdnhcphjbkeiagm/document-blocked.html?details=eyJ1cmwiOiJodHRwOi8vd3d3LnNoYXJlYXNhbGUuY29tL3IuY2ZtP2I9NjI2ODI4JnU9MzE0NzQzJm09NTQzOTcmYWZmdHJhY2s9MTAyNVgxNTUyNjE5WGY0MWJlOGIzZGJlNDQyZjI4NTI1YmEwNWY0YzNiMGUyJnVybGxpbms9dHJ1ZWFuZGNvLmNvbSUyRmJyYXMlMkZ0cnVlLWNvJTJGYWxpY2UtZWFzeS1maXQtcHVsbG92ZXIlMkY1NDY5IiwiaG4iOiJ3d3cuc2hhcmVhc2FsZS5jb20iLCJkbiI6InNoYXJlYXNhbGUuY29tIiwiZmMiOiJbMCw2MixcInNoYXJlYXNhbGUuY29tXCJdIiwiZnMiOiJ8fHNoYXJlYXNhbGUuY29tXiJ9
2018-03-02 11:41:21,http://nymag.com/strategist/2018/03/on-sale-vince-nordstrom-rebecca-minkoff-frye-frame-2018.html
2018-03-02 11:30:07,https://www.sketchapp.com/
2018-03-02 11:30:01,https://www.google.com/search?q=sketch&oq=sketch&aqs=chrome..69i57j69i65j69i60l2j0l2.764j1j7&sourceid=chrome&ie=UTF-8
2018-03-02 11:29:43,https://mail.google.com/mail/u/1/#inbox/161d2bca7c4229c3
2018-03-02 11:29:34,https://mail.google.com/mail/u/1/#inbox/161c4fce4ccb6706
2018-03-02 11:27:52,https://mail.google.com/mail/u/1/#inbox/161e38b51fbe9d47
2018-03-02 11:27:47,https://mail.google.com/mail/u/1/#inbox/161e7827e5f4a668
2018-03-02 11:27:40,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:39,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=X_ka93LZCA0-2M:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:38,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=uDaKVokq9jtMcM:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:37,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=fjuOsHme-TBxJM:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:36,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=P5gQRdnCxi4xMM:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:35,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=aSdRc46wPb2KWM:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:27:32,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgdii=hOMzN2xGqPxybM:&imgrc=LhBq0rG6koZm_M:
2018-03-02 11:23:32,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=RgNxIDGzzO_LfM:
2018-03-02 11:23:07,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=Z3UUMJNfMl7TRM:
2018-03-02 11:21:56,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=_i14GXU3veZP5M:
2018-03-02 11:21:41,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=7L0gYawtCp1rbM:
2018-03-02 11:21:33,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=r6Yz0icJVXTvCM:
2018-03-02 11:21:03,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=mIYarrI_Xcds0M:
2018-03-02 11:20:52,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=c5chh_tmV-__mM:
2018-03-02 11:20:47,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=I_svQPyjGLfprM:
2018-03-02 11:20:38,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=Q_euYfduNW0ulM:
2018-03-02 11:20:31,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=B1ma1fzyC39rAM:
2018-03-02 11:19:54,https://www.iizcat.com/post/4787/Kittens-and-their-matching-bunnies-Gallery-
2018-03-02 11:19:52,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=Pdfy__hjqTmfcM:
2018-03-02 11:19:40,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=DeWWYHCQDyflMM:
2018-03-02 11:19:31,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=EZpv2N2Gj48tSM:
2018-03-02 11:19:13,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=uEA19Zoqbc97UM:
2018-03-02 11:19:07,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=RAkAJPfXNp2EZM:
2018-03-02 11:18:58,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=IfB-gs2JmzoIwM:
2018-03-02 11:18:51,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885#imgrc=N3OhuX7TeAaRHM:
2018-03-02 11:18:48,https://www.google.com/searchbyimage/upload
2018-03-02 11:18:48,https://www.google.com/search?tbs=sbi:AMhZZiusbTe27UXiDU9rCFGIYztJ9q-Ir99A6cu5zVNzzg7qspUBN2tgPh-BGxj4OmfnFoswyt_1x1vbMIGGtXUu8Eo3j9FdN-s0kbMnKK0aQAT63l02AfIBo1igTT5UcZL761s8OkDaEyt_1vuBabAIQM1sdlefQBPKKIQOfRpMQoz08ZhmDr0CcuoluPtgFWYvSCUzh_1MATtyoWelW-mmaEOnJGUF2MyLWc8mzCG42EPIDTzXUiIL7QzntIeNRLKvfM7JDLJmX85vx4AcRBqbM6T6vVcmINXbOegFAQ4QtUu0cCFrChDqkzAcbOUW1g3mZzFK1Psez7n&btnG=Search%20by%20image&hl=en
2018-03-02 11:18:34,https://www.google.com/search?q=cats+and+bunnies&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiDpr6chc7ZAhVJq1kKHWzyCfgQ_AUICigB&biw=1680&bih=885
2018-03-02 11:18:29,https://www.google.com/search?q=cats+and+bunnies&oq=cats+and+bunnies&aqs=chrome.0.0l6.1700j0j7&sourceid=chrome&ie=UTF-8
2018-03-02 11:17:12,https://mail.google.com/mail/u/1/#inbox/161d369b650e4e98
2018-03-02 11:12:48,https://mail.google.com/mail/u/1/#inbox?compose=161e77c8ef456990
2018-03-02 11:12:37,https://mail.google.com/mail/u/1/#inbox?compose=161e77c113296ae4
2018-03-02 11:12:04,https://mail.google.com/mail/u/1/#inbox?compose=161e77be5197454b
2018-03-02 11:11:53,https://mail.google.com/mail/u/1/#inbox?compose=161e77bd4fdba2ed
2018-03-02 11:11:49,https://mail.google.com/mail/u/1/#inbox?compose=161e77bafba94bed
2018-03-02 11:11:39,https://mail.google.com/mail/u/1/#inbox?compose=161e77b8fb28e64f
2018-03-02 11:11:31,https://mail.google.com/mail/u/1/#inbox?compose=161e77b5530df0ee
2018-03-02 11:11:16,https://mail.google.com/mail/u/1/#inbox?compose=161e77b177983550
2018-03-02 11:11:01,https://mail.google.com/mail/u/1/#inbox?compose=161e77ae96b3b6a0
2018-03-02 11:08:47,https://pypi.python.org/pypi/protest
2018-03-02 11:08:41,https://github.com/montoyamoraga/protestpy
2018-03-02 11:07:13,https://www.facebook.com/jon.remo.3/videos/pcb.10156167265696944/10156167265231944/?type=3&theater
2018-03-02 11:07:12,https://www.facebook.com/photo.php?fbid=10156167265351944&set=pcb.10156167265696944&type=3&theater
2018-03-02 11:07:09,https://www.facebook.com/photo.php?fbid=10156167265461944&set=pcb.10156167265696944&type=3&theater
2018-03-02 11:06:58,https://www.facebook.com/photo.php?fbid=10156167265606944&set=pcb.10156167265696944&type=3&theater
2018-03-02 11:05:50,https://calendar.google.com/calendar/r/week/2018/3/9
2018-03-02 11:05:25,https://mail.google.com/mail/u/0/#inbox/161e1d2e223f3b97
2018-03-02 11:04:09,https://mail.google.com/mail/u/1/#search/sketch
2018-03-02 11:03:55,https://mail.google.com/mail/u/1/#search/sketch/161d2bca7c4229c3
2018-03-02 11:02:26,https://www.tsabe.co.uk/s/CUT
2018-03-02 11:02:26,https://static1.squarespace.com/static/55b4b19fe4b0fb43720e1351/t/5a0ef973e4966bd198565f91/1510930811522/CUT
2018-03-02 11:02:03,https://www.tsabe.co.uk/s/nyt-interview.jpg
2018-03-02 11:02:03,https://static1.squarespace.com/static/55b4b19fe4b0fb43720e1351/t/5a0efb56e2c48384bd3c27be/1510931291207/nyt+interview.jpg
2018-03-02 11:01:56,https://www.tsabe.co.uk/interviews/
2018-03-02 11:01:43,https://www.tsabe.co.uk/animated-self-portraits/
2018-03-02 11:01:19,https://www.tsabe.co.uk/contact/
2018-03-02 11:01:12,http://www.tsabe.co.uk/
2018-03-02 11:01:12,https://www.tsabe.co.uk/
2018-03-02 11:01:08,https://giphy.com/ts_abe
2018-03-02 11:00:58,https://www.google.com/url?hl=en&q=http://gph.is/2x9cFsO&source=gmail&ust=1520092765824000&usg=AFQjCNFbDr7zXPqnX23wyf--oVR75AGaRw
2018-03-02 11:00:58,http://gph.is/2x9cFsO
2018-03-02 11:00:58,http://giphy.com/gifs/art-illustration-drawing-l1J9FqUWRdsoJClHy
2018-03-02 11:00:58,https://giphy.com/gifs/art-illustration-drawing-l1J9FqUWRdsoJClHy
2018-03-02 10:59:40,https://mail.google.com/mail/u/1/#search/sketch/161be960ff5d954f
2018-03-02 10:58:59,https://mail.google.com/mail/u/2/#inbox/161dea9901b1774f
2018-03-02 10:58:42,https://mail.google.com/mail/u/1/#inbox/161d4e7d47b941d9
2018-03-02 10:58:00,https://mail.google.com/mail/u/1/#inbox/161e5089f051f7c4
2018-03-02 02:00:50,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419311090&xpc=%7B%22cn%22%3A%22me3iqk%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWZeebj8yIghw5dTUQQikN7jz3ono-AM1VcKwVdfHQTL_J3mDs3Nl4Z8dzXM2s-QLh2_BxiqK4ZokkiFk81qrJjCOUSrwA%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafiAAYGcGGURpBsLszzxyacDbG8j-__8HAAJAA4BvwL-5D6BzAAAAAAAAAAAAAAAAAAAAoI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Dlkk5IVfWMY9B_skjTDDGxQRhHKQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C2%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.5490194972194422&tn=ef2ej8hho7g6&rld=1
2018-03-02 02:00:50,https://hangouts.google.com/webchat/u/0/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419311090&xpc=%7B%22cn%22%3A%22me3iqk%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F0%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWZeebj8yIghw5dTUQQikN7jz3ono-AM1VcKwVdfHQTL_J3mDs3Nl4Z8dzXM2s-QLh2_BxiqK4ZokkiFk81qrJjCOUSrwA%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafiAAYGcGGURpBsLszzxyacDbG8j-__8HAAJAA4BvwL-5D6BzAAAAAAAAAAAAAAAAAAAAoI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9Dlkk5IVfWMY9B_skjTDDGxQRhHKQ%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C2%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.11724601820196767&tn=czox7l73od7c&rld=1
2018-03-02 01:45:29,https://hangouts.google.com/webchat/u/2/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419374512&xpc=%7B%22cn%22%3A%22uf1uzk%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F2%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWZYogeaosn9DCGzCvpLK2a26zAEahxGXPtZCbWfJp6JuAA5L2nkgjTMbGiegpvrTgKbTxsmJ4R4MygNE_qy0BgMcWlI5Q%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Cit%2Fam%3D_p4AdkDafiAAYKeGHURpBcLszzzyacDJGcj8_78HAAJQA4ArgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9C2DvhLl0eBaTf3_LPKkmZKkpgmYg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C2%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.9920723827680733&tn=g2oceigt9hnw&rld=1
2018-03-01 21:47:15,https://mail.google.com/mail/u/1/#inbox/1618ac576fffdad0
2018-03-01 21:30:20,https://en.wikipedia.org/wiki/Pink_noise
2018-03-01 21:30:19,https://en.wikipedia.org/wiki/Colors_of_noise
2018-03-01 21:23:58,https://news.northwestern.edu/stories/2017/april/pink-noise-sound-enhance-deep-sleep-memory/
2018-03-01 21:23:50,https://www.google.com/search?q=Phyllis+Zee%2C+a+neurologist+at+Northwestern+University+in+Chicago%2C+Illinois+pink+noise&oq=Phyllis+Zee%2C+a+neurologist+at+Northwestern+University+in+Chicago%2C+Illinois+pink+noise&aqs=chrome..69i57.1247j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 21:23:33,https://en.wikipedia.org/wiki/Colors_of_noise#/media/File:The_Colors_of_Noise.png
2018-03-01 21:22:55,https://www.google.com/search?q=pink+noise&oq=pink+noise&aqs=chrome..69i57j0j69i61l2j0l2.909j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 21:20:44,https://www.cognitotx.com/
2018-03-01 21:19:59,https://www.cognitotx.com/for-patients
2018-03-01 21:19:34,https://www.cognitotx.com/careers
2018-03-01 21:19:23,https://www.google.com/search?q=Cognito+Therapeutics+in+Cambridge&oq=Cognito+Therapeutics+in+Cambridge&aqs=chrome..69i57.224j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 21:10:57,http://www.nature.com/articles/d41586-018-02391-6?WT.feed_name=subjects_neuroscience
2018-03-01 21:10:57,https://idp.nature.com/authorize?response_type=cookie&client_id=grover&redirect_uri=https%3A%2F%2Fwww.nature.com%2Farticles%2Fd41586-018-02391-6%3FWT.feed_name%3Dsubjects_neuroscience
2018-03-01 21:10:57,https://idp.nature.com/transit?redirect_uri=https%3A%2F%2Fwww.nature.com%2Farticles%2Fd41586-018-02391-6%3FWT.feed_name%3Dsubjects_neuroscience&code=5c1341c6-f3c4-4674-b673-5ff05df0e276
2018-03-01 20:46:09,"https://www.google.com/maps/place/238+Thompson+St,+New+York,+NY+10012/@40.7290349,-74.0011629,16.72z/data=!4m5!3m4!1s0x89c25991a91649b3:0x900beb64e42cf49e!8m2!3d40.7298729!4d-73.9982424"
2018-03-01 20:45:29,https://www.google.com/url?hl=en&q=https://www.nyu.edu/students/communities-and-groups/student-diversity/spiritual-life/mindfulness/free-meditation-and-yoga.html&source=gmail&ust=1520027341892000&usg=AFQjCNGQ_Vm_IwC4h-mi-eTDlPojlhJ9Hg
2018-03-01 20:45:07,"https://www.google.com/maps/place/238+Thompson+St,+New+York,+NY+10012/@40.7298729,-73.9991883,18z/data=!4m5!3m4!1s0x89c25991a91649b3:0x900beb64e42cf49e!8m2!3d40.7298729!4d-73.9982424"
2018-03-01 20:45:06,"https://www.google.com/maps/place/238+Thompson+St,+New+York,+NY+10012/@40.7284551,-73.9990384,18.21z/data=!4m5!3m4!1s0x89c25991a91649b3:0x900beb64e42cf49e!8m2!3d40.7298729!4d-73.9982424"
2018-03-01 20:45:05,"https://www.google.com/maps/place/yoga+Mar+2+12:30pm/@40.7284551,-73.9990384,18.21z/data=!4m5!3m4!1s0x89c25991a91649b3:0x900beb64e42cf49e!8m2!3d40.7298729!4d-73.9982424"
2018-03-01 20:45:04,"https://www.google.com/maps/@40.7284551,-73.9990384,18.21z"
2018-03-01 20:45:03,"https://www.google.com/maps/@40.729262,-73.9981378,16.49z"
2018-03-01 20:40:28,https://www.sosolimited.com/work/
2018-03-01 20:40:10,http://sosolimited.com/
2018-03-01 20:40:10,https://www.sosolimited.com/
2018-03-01 20:39:06,https://hangouts.google.com/hangouts/_/pbtw65votvghbdmqc4eyu2g23me?hl=en&authuser=0
2018-03-01 20:39:06,https://plus.google.com/hangouts/_?gid=652359686588&hl=en&authuser=0
2018-03-01 20:39:06,https://hangouts.google.com/hangouts/_?gid=652359686588&hl=en&authuser=0
2018-03-01 20:06:35,https://calendar.google.com/calendar/r/week/2018/3/8
2018-03-01 20:05:40,https://calendar.google.com/calendar/r/week/2018/2/15
2018-03-01 20:03:31,https://mail.google.com/mail/u/0/#inbox/161e4169667b2b62
2018-03-01 19:44:54,https://www.amazon.com/gp/video/detail/B015EV8HZE/ref=atv_hm_hom_3_c_obwanp_2_1?ie=UTF8&pf_rd_i=home&pf_rd_m=ATVPDKIKX0DER&pf_rd_p=3511224122&pf_rd_r=5ZBQQMR9FG9YCAY8QJ7B&pf_rd_s=center-4&pf_rd_t=12401
2018-03-01 19:43:01,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=844&action=edit
2018-03-01 19:42:59,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=844&action=edit&message=10
2018-03-01 19:20:57,https://mail.google.com/mail/u/1/#inbox/161e22f55a4dca83
2018-03-01 19:20:08,https://mail.google.com/mail/u/1/#inbox/161de497e5807cf6
2018-03-01 19:17:12,https://tools.usps.com/go/TrackConfirmAction?tLabels=9361289697090172018460
2018-03-01 19:17:09,https://www.usps.com/
2018-03-01 19:17:09,http://www.usps.com/
2018-03-01 19:16:56,https://www.amazon.com/progress-tracker/package/ref=oh_aui_hz_st_btn?_encoding=UTF8&itemId=jnrokpkslqrrwn&orderId=111-9861776-5697820&packageIndex=0&shipmentId=DFJR93cxk
2018-03-01 19:16:36,https://www.amazon.com/gp/css/order-history/ref=nav_nav_orders_first
2018-03-01 19:16:29,https://mail.google.com/mail/u/0/#inbox/161e4101a4073514
2018-03-01 19:16:06,https://www.instagram.com/beeshaffer/?utm_source=ig_embed&action=profilevisit
2018-03-01 19:15:48,https://www.instagram.com/p/jVihd-AMaf/?taken-by=beeshaffer
2018-03-01 19:15:36,https://www.instagram.com/p/lAetlXgMVD/?taken-by=beeshaffer
2018-03-01 19:15:02,https://www.instagram.com/p/l2ajI5gMSA/?taken-by=beeshaffer
2018-03-01 19:14:41,https://www.instagram.com/p/q20NKvgMSB/?taken-by=beeshaffer
2018-03-01 19:14:23,https://www.instagram.com/p/u8OiUsgMUz/?taken-by=beeshaffer
2018-03-01 19:13:53,https://www.instagram.com/p/2T6vtggMcI/?taken-by=beeshaffer
2018-03-01 19:13:47,https://www.instagram.com/p/2gcuUsgMca/?taken-by=beeshaffer
2018-03-01 19:13:07,https://www.instagram.com/p/BEHkS8kAMdw/?taken-by=beeshaffer
2018-03-01 19:12:56,https://www.instagram.com/p/BE86gvigMfj/?taken-by=beeshaffer
2018-03-01 19:12:36,https://www.instagram.com/p/BFJ1xrugMRH/?taken-by=beeshaffer
2018-03-01 19:12:00,https://www.instagram.com/p/BNIn6Z4DVSz/?taken-by=beeshaffer
2018-03-01 19:11:51,https://www.instagram.com/explore/tags/voguevip/
2018-03-01 19:11:42,https://www.instagram.com/p/BM1Z_d0gQGB/?taken-by=beeshaffer
2018-03-01 19:10:57,https://www.instagram.com/p/BSRfgQwg9yK/?taken-by=beeshaffer
2018-03-01 19:10:48,https://www.instagram.com/p/BSUC6IOgH6v/?taken-by=beeshaffer
2018-03-01 19:10:32,https://www.instagram.com/p/BTnBNNyAemd/?taken-by=beeshaffer
2018-03-01 19:10:22,https://www.instagram.com/p/BTtbdOEgpa5/?taken-by=beeshaffer
2018-03-01 19:10:08,https://www.instagram.com/p/BX5u9vEAYmQ/?taken-by=beeshaffer
2018-03-01 19:09:50,https://www.instagram.com/p/Bfs3ZQvASlW/?taken-by=beeshaffer
2018-03-01 19:09:36,https://www.instagram.com/p/BbDKG8wl9Ws/?taken-by=beeshaffer
2018-03-01 19:09:22,https://www.instagram.com/p/Bfb5oG4gRU8/?taken-by=beeshaffer
2018-03-01 19:08:27,https://www.instagram.com/micheal_mongar/
2018-03-01 19:08:20,https://instagram.com/beeshaffer/?utm_source=ig_embed&action=profilevisit
2018-03-01 19:08:16,https://www.thecut.com/2018/03/hope-hicks-anna-wintour-daughter-bee-shaffer-lookalike.html
2018-03-01 19:07:38,http://www.thecut.com/2017/09/hope-hicks-trump-communications-director.html
2018-03-01 19:07:38,https://www.thecut.com/2017/09/hope-hicks-trump-communications-director.html
2018-03-01 19:05:45,https://www.thecut.com/2017/12/trump-compares-hope-hicks-skills-to-a-coffee-cup.html
2018-03-01 19:00:33,https://www.wired.com/story/github-ddos-memcached/
2018-03-01 18:55:22,https://www.technologyreview.com/s/610395/if-youre-so-smart-why-arent-you-rich-turns-out-its-just-chance/
2018-03-01 18:47:36,https://mail.google.com/mail/u/1/#inbox/161e3f56c0b3fc8f
2018-03-01 18:36:37,https://vimeo.com/216898370
2018-03-01 18:36:36,https://www.google.com/url?hl=en&q=https://vimeo.com/216898370&source=gmail&ust=1520012710337000&usg=AFQjCNHdd4oHVfq7KFf1aBInrMxDEnQVQg
2018-03-01 17:55:54,https://m.albert.nyu.edu/app/student/nyuCrseEval/evaluations
2018-03-01 17:55:54,https://m.albert.nyu.edu/app/student/nyuCrseEval/crseEvalSummarySubmit
2018-03-01 17:55:48,https://m.albert.nyu.edu/app/student/nyuCrseEval/crseEvalSubmit
2018-03-01 17:55:48,https://m.albert.nyu.edu/app/student/nyuCrseEval/crseEvalSummary/1184/24704/T_ITP
2018-03-01 17:53:38,https://mail.google.com/mail/u/1/#inbox/161e1c1ee0352a9c
2018-03-01 17:50:45,https://m.albert.nyu.edu/app/student/nyuCrseEval/crseEval/1184/24704/T_ITP/10
2018-03-01 17:50:45,https://m.albert.nyu.edu/app/user/emergency/update
2018-03-01 17:50:25,https://m.albert.nyu.edu/app/profile/login
2018-03-01 17:50:25,https://m.albert.nyu.edu/app/user/emergency
2018-03-01 17:49:24,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO?SAMLRequest=fZLLbsIwEEV%2FJfI%2BcWIQJRZBorAoEi0RSbvopnKcaWPJ2KnH6ePvGwgIumHtO%2BfOHHmGYq9bvuh8Y3bw2QH64GevDfLjQ0Y6Z7gVqJAbsQfkXvJi8bjhLIp566y30moSLBDBeWXN0hrs9uAKcF9KwvNuk5HG%2BxY5pT0kaq3zQkfmt4ug7mjRqKqyGnwTIVp6IDOab4uSBKt%2BFWXEAXqFuOTPCFW3tF%2FkXWk4ze%2BgVg6kp0WxJcF6lZG36TStUmCTRCR3TLJJyqSUY5DJVLBRWsV9DLGDtUEvjM8Ii5NpGI%2FCOCkZ4%2BOUs%2FErCfLTvffK1Mp83JZTDSHkD2WZh8NNL%2BDweE8fIPPZQTE%2FFrsr6bex4myazG94vXgKsZ3Rq6KhteVPPXm9yq1W8jdYaG2%2Flw6Eh4wkhM6Hkf%2F%2FYv4H&RelayState=ss%3Amem%3A39db53646293b3ca325f47500587269a08d1bee499a09254873f5e6db65e5fea
2018-03-01 17:49:24,https://shibboleth.nyu.edu/idp/profile/SAML2/Redirect/SSO;jsessionid=p77o8bnls64km2titwa5y6ne?execution=e1s1
2018-03-01 17:49:17,http://www.nyu.edu/students/student-information-and-resources/registration-records-and-graduation/registration/course-evaluation.html#evlasinalbert
2018-03-01 17:49:04,http://www.nyu.edu/students/student-information-and-resources/registration-records-and-graduation/registration/course-evaluation.html
2018-03-01 17:49:04,https://www.google.com/url?hl=en&q=http://www.nyu.edu/students/student-information-and-resources/registration-records-and-graduation/registration/course-evaluation.html&source=gmail&ust=1520002786145000&usg=AFQjCNFOAIwvsvDsABPKy6MKiA4rGugBLg
2018-03-01 17:48:02,https://mail.google.com/mail/u/0/#inbox/161cfdf46c7bb64e
2018-03-01 17:47:12,https://mail.google.com/mail/u/1/#inbox/161d7fa90216e85c
2018-03-01 16:51:32,https://mail.google.com/mail/u/1/#inbox/161e3591ac8b32e2
2018-03-01 16:50:37,https://itp.nyu.edu/classes/roy18/i/
2018-03-01 16:49:51,https://itp.nyu.edu/classes/roy18/category/5-talking-to-the-rest-of-you-us/
2018-03-01 16:49:39,https://itp.nyu.edu/classes/roy18/talking/
2018-03-01 16:49:16,https://www.gimletmedia.com/reply-all/109-facebook-spying
2018-03-01 16:49:15,https://www.gimletmedia.com/episode/109-facebook-spying/
2018-03-01 16:49:01,https://www.google.com/search?q=reply+all+targeted+advertising&oq=reply+all+targeted+advertising&aqs=chrome..69i57.3544j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 15:47:57,https://spectrum.ieee.org/the-human-os/robotics/artificial-intelligence/hacking-the-brain-with-adversarial-images
2018-03-01 15:47:44,https://www.google.com/search?q=google+brain+tricking+humans&oq=google+brain+tricking+humans&aqs=chrome..69i57j69i64.13580j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 15:23:30,https://itp.nyu.edu/classes/roy18/author/jx603/
2018-03-01 15:23:17,https://mail.google.com/mail/u/1/#inbox/161e3049e8b87f87
2018-03-01 15:16:19,http://www.xujenna.com/itp_blog/wp-content/uploads/2018/03/emotiv.gif
2018-03-01 15:15:21,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=865&action=edit
2018-03-01 15:15:21,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=865&action=edit&message=1
2018-03-01 15:15:13,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3036&action=edit
2018-03-01 15:15:13,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3036&action=edit&message=6
2018-03-01 15:11:59,https://en.wikipedia.org/wiki/Fear_of_needles
2018-03-01 15:11:54,https://www.google.com/search?q=hypdoermic+needle+phobia&oq=hypdoermic+needle+phobia&aqs=chrome..69i57j0.3669j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 15:08:57,http://xujenna.com/focus
2018-03-01 15:08:57,http://xujenna.com/focus/
2018-03-01 15:05:45,https://www.flickr.com/photos/133005141@N08/26678548278/in/datetaken/
2018-03-01 15:05:44,https://www.flickr.com/photos/133005141@N08/26678548498/in/datetaken/
2018-03-01 13:42:15,https://itp.nyu.edu/classes/roy18/wp-admin/post.php?post=3036&action=edit&message=10
2018-03-01 13:41:55,https://itp.nyu.edu/classes/roy18/wp-login.php?redirect_to=%2Fclasses%2Froy18%2Ftalking%2F
2018-03-01 13:41:33,http://www.xujenna.com/itp_blog/wp-admin/post.php?post=865&action=edit&message=6
2018-03-01 13:41:08,https://calendar.google.com/calendar/r/week/2018/2/22
2018-03-01 13:29:36,https://gist.github.com/xujenna/cc79c311b7899a778d8ad7ec9329f820
2018-03-01 13:08:02,http://osxdaily.com/2010/11/16/screen-recorder-mac/
2018-03-01 13:07:59,https://www.google.com/url?q=http://osxdaily.com/2010/11/16/screen-recorder-mac/&sa=D&source=hangouts&ust=1520013940919000&usg=AFQjCNEtcK6GHA5_s-U3_PNovQ0T7Vj_jA
2018-03-01 13:04:07,https://www.google.com/search?q=screen+recorder&oq=screen+record&aqs=chrome.0.0j69i57j0l4.3973j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 13:00:48,https://www.emotiv.com/epoc/
2018-03-01 13:00:46,https://www.emotiv.com/#
2018-03-01 13:00:34,https://www.emotiv.com/
2018-03-01 12:49:37,https://www.facebook.com/SUPERMHR
2018-03-01 12:49:33,https://www.facebook.com/search/top/?q=m.h.%20rahmani
2018-03-01 12:43:11,https://mail.google.com/mail/u/1/#inbox/161e29d40a1e55fa
2018-03-01 12:42:01,https://www.emotiv.com/myemotiv/
2018-03-01 12:41:47,https://www.google.com/search?q=emotive&oq=emotive&aqs=chrome..69i57j0l5.708j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 12:34:34,https://id.emotivcloud.com/eoidc/api-auth/login/#form_messages
2018-03-01 12:33:34,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5a98396a1adf4
2018-03-01 12:33:34,https://id.emotivcloud.com/eoidc/api-auth/login/?next=/eoidc/oidc/authorize/%3Fclient_id%3DyCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo%26response_type%3Dcode%26redirect_uri%3Dhttps%3A//www.emotiv.com/oauth.php%26scope%3Dwrite%2Bopenid%2Bprofile%2Baddress%2Bread%2Bfull_profile%2Bphone%2Bemail%26state%3Demotiv5a98396a1adf4%26login-prompt%3DNO
2018-03-01 12:33:23,https://www.emotiv.com/wp-login.php?action=logout&redirect_to=https%3A%2F%2Fwww.emotiv.com%2Fmy-account%2F&_wpnonce=fe8e820b71
2018-03-01 12:33:11,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5a98394ad8e52&login-prompt=NO
2018-03-01 12:33:11,https://www.emotiv.com/oauth.php?state=emotiv5a98394ad8e52&code=DCjG8MOI0xOaLQAjsKZPvir7XOkTAh
2018-03-01 12:33:05,https://id.emotivcloud.com/eoidc/oidc/authorize/?client_id=yCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo&response_type=code&redirect_uri=https://www.emotiv.com/oauth.php&scope=write+openid+profile+address+read+full_profile+phone+email&state=emotiv5a98394ad8e52
2018-03-01 12:33:05,https://id.emotivcloud.com/eoidc/api-auth/login/?next=/eoidc/oidc/authorize/%3Fclient_id%3DyCJg9mB9Gh2mVSEJ8NkTdU4ff4xXNO3BzXSPnNRo%26response_type%3Dcode%26redirect_uri%3Dhttps%3A//www.emotiv.com/oauth.php%26scope%3Dwrite%2Bopenid%2Bprofile%2Baddress%2Bread%2Bfull_profile%2Bphone%2Bemail%26state%3Demotiv5a98394ad8e52%26login-prompt%3DNO
2018-03-01 11:33:14,http://localhost:9999/index.html
2018-03-01 11:08:51,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?ids=112
2018-03-01 11:08:51,http://www.xujenna.com/itp_blog/wp-admin/comment.php?submit=Mark+as+Spam&_wpnonce=e2bf508d59&_wp_http_referer=%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D112&action=spamcomment&c=112&noredir=1
2018-03-01 11:08:51,http://www.xujenna.com/itp_blog/wp-admin/edit-comments.php?spammed=1&ids=112
2018-03-01 11:07:24,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-02-27
2018-03-01 11:07:23,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-02-27
2018-03-01 11:02:58,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-02-28
2018-03-01 11:02:52,https://www.rescuetime.com/browse/activities/by/hour/for/the/day/of/2018-2-28
2018-03-01 11:01:23,https://www.rescuetime.com/browse/activities/by/hour/for/the/day/of/2018-2-27
2018-03-01 11:00:25,https://www.rescuetime.com/browse/activities/by/hour/for/the/day/of/2018-02-28
2018-03-01 11:00:23,https://www.rescuetime.com/browse/activity/913365693/by/hour/for/the/day/of/2018-02-28
2018-03-01 10:59:48,https://www.rescuetime.com/browse/productivity/1/by/hour/for/the/day/of/2018-02-28
2018-03-01 10:59:47,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:58:58,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-02-27
2018-03-01 10:58:52,https://www.rescuetime.com/browse/productivity/2/by/hour/for/the/day/of/2018-02-27
2018-03-01 10:58:02,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-02-27
2018-03-01 10:57:56,https://www.rescuetime.com/browse/productivity/2/by/rank/for/the/day/of/2018-02-27
2018-03-01 10:57:47,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-02-27
2018-03-01 10:57:27,https://www.rescuetime.com/browse/productivity/3/by/rank/for/the/day/of/2018-02-27
2018-03-01 10:57:24,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-2-27
2018-03-01 10:56:30,https://www.rescuetime.com/browse/productivity/3/by/hour/for/the/day/of/2018-02-28
2018-03-01 10:56:10,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:55:40,https://www.rescuetime.com/browse/productivity/3/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:55:30,https://www.rescuetime.com/browse/productivity/4/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:55:24,https://www.rescuetime.com/browse/productivity/2/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:55:15,https://www.rescuetime.com/browse/productivity/5/by/rank/for/the/day/of/2018-02-28
2018-03-01 10:32:31,https://www.rescuetime.com/browse/productivity/by/hour/for/the/day/of/2018-02-26
2018-03-01 10:32:29,https://www.rescuetime.com/browse/productivity/by/rank/for/the/day/of/2018-02-26
2018-03-01 10:32:28,https://www.rescuetime.com/browse/productivity/1/by/rank/for/the/day/of/2018-02-26
2018-03-01 10:18:12,https://stackoverflow.com/questions/25418333/how-to-draw-straight-line-in-d3-js-horizontally-and-vertically
2018-03-01 10:18:12,https://www.google.com/search?q=d3+straight+line+path&oq=d3+straight+line&aqs=chrome.1.69i57j0l5.4023j1j7&sourceid=chrome&ie=UTF-8
2018-03-01 10:09:27,https://www.dashingd3js.com/svg-paths-and-d3js
2018-03-01 10:04:28,https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_includes
2018-03-01 10:01:21,https://www.w3schools.com/jsref/jsref_includes.asp
2018-03-01 10:01:16,https://www.google.com/search?q=javascript+if+string+includes+string&oq=if+string+includes+string&aqs=chrome.1.69i57j0.9197j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 05:53:33,https://hangouts.google.com/webchat/u/1/load?client=sm&prop=gmail&nav=true&fid=gtn-roster-iframe-id&os=MacIntel&stime=1519419334139&xpc=%7B%22cn%22%3A%22q5tzn7%22%2C%22tp%22%3A1%2C%22ifrid%22%3A%22gtn-roster-iframe-id%22%2C%22pu%22%3A%22https%3A%2F%2Fhangouts.google.com%2Fwebchat%2Fu%2F1%2F%22%7D&ec=%5B%22ci%3Aec%22%2Ctrue%2Ctrue%2Cfalse%5D&pvt=AMP3uWYf-Oorc-4YxNZWPdV2FdBKAUMzNf8Dz6kGtLNIWJZp-yr6dL54b6AKTFkDZhFWxvK4nb6j7ovwtXhnXuA_z0INtYFzhQ%3D%3D&href=https%3A%2F%2Fmail.google.com%2F_%2Fscs%2Fmail-static%2F_%2Fjs%2Fk%3Dgmail.main.en.iEEFj798MIw.O%2Fm%3Dpds%2Cpdl%2Cpdit%2Cm_i%2Cpdt%2Ct%2Fam%3D_p4AdkDafiAAYCeGHURpBcLszzzyacDLG8j-_7_nAQJQA4BrgL-5D6BzAAAAAAAAAAAAAAAAAAAAgI3iEw%2Frt%3Dh%2Fd%3D1%2Frs%3DAHGWq9DHBW-GGjkbckvFfd7LuHHEYuzllg%3Frel%3D1&pos=l&uiv=2&hl=en&hpc=true&hsm=true&hrc=true&uqp=false&gooa=false&gltsi=true&gusm=true&sl=false&hs=%5B%22h_hs%22%2Cnull%2Cnull%2C%5B2%2C0%5D%5D&moleh=380&mmoleh=36&two=https%3A%2F%2Fmail.google.com&host=1&zx=0.8851756562060711&tn=mpkpa4n6ikfz&rld=1
2018-03-01 03:21:12,https://docs.google.com/spreadsheets/d/1GajXhi2eSDO1oX86DkPNI4EMFhwE6jNpn2dfAyhx81k/edit#gid=0
2018-03-01 03:21:12,https://docs.google.com/spreadsheets/d/1GajXhi2eSDO1oX86DkPNI4EMFhwE6jNpn2dfAyhx81k/edit#gid=1952663834
2018-03-01 03:20:37,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=112
2018-03-01 03:20:13,http://www.xujenna.com/itp_blog/wp-admin/comment.php?action=spam&c=112#wpbody-content
2018-03-01 03:20:13,http://www.xujenna.com/itp_blog/wp-login.php?redirect_to=http%3A%2F%2Fwww.xujenna.com%2Fitp_blog%2Fwp-admin%2Fcomment.php%3Faction%3Dspam%26c%3D112&reauth=1#wpbody-content
2018-03-01 03:19:56,https://mail.google.com/mail/u/1/#inbox/161e01a3cfdac609
2018-03-01 03:04:31,https://groups.google.com/d/topic/d3-js/aQSWnEDFxIc
2018-03-01 03:04:31,https://groups.google.com/forum/#!topic/d3-js/aQSWnEDFxIc
2018-03-01 03:04:24,https://www.google.com/search?q=how+to+load+images+in+d3&oq=how+to+load+images+in+d3&aqs=chrome..69i57j69i64.2415j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 03:04:21,https://gist.github.com/10340316
2018-03-01 03:04:21,https://gist.github.com/mygoare/10340316
2018-03-01 03:03:13,http://bl.ocks.org/mpmckenna8/raw/b87df1c44243aa1575cb/23322d63b1b43ad81d60c2b72d83570bbb853493
2018-03-01 03:03:13,http://bl.ocks.org/mpmckenna8/raw/b87df1c44243aa1575cb/23322d63b1b43ad81d60c2b72d83570bbb853493/
2018-03-01 03:00:46,http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.xujenna.com/itp_blog/wp-admin/post.php?post%3D830%26action%3Dedit&%20AMp;sa=D&%20AMp;ust=1519887424317000&%20AMp;usg=AFQjCNGIjM6KZeeKSDCpi2gH8UKop02ZWA.jpg
2018-03-01 03:00:46,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.xujenna.com/itp_blog/wp-admin/post.php?post%3D830%26action%3Dedit&%20AMp;sa=D&%20AMp;ust=1519887424317000&%20AMp;usg=AFQjCNGIjM6KZeeKSDCpi2gH8UKop02ZWA.jpg
2018-03-01 02:56:07,http://bl.ocks.org/mpmckenna8/b87df1c44243aa1575cb/23322d63b1b43ad81d60c2b72d83570bbb853493
2018-03-01 02:56:01,https://stackoverflow.com/questions/14567809/how-to-add-an-image-to-an-svg-container-using-d3-js
2018-03-01 02:55:03,https://www.w3schools.com/cssref/pr_class_position.asp
2018-03-01 02:54:57,https://www.google.com/search?q=div+position&oq=div+posit&aqs=chrome.0.0j69i57j0l4.1377j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 02:45:34,http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fmail.google.com/mail/u/1/%23inbox/161d2bca7c4229c3&%20AMp;sa=D&%20AMp;ust=1519887424253000&%20AMp;usg=AFQjCNHPFf0T7dvp%20AMSaRIXP7LeyoZTLMw.jpg
2018-03-01 02:45:34,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fmail.google.com/mail/u/1/%23inbox/161d2bca7c4229c3&%20AMp;sa=D&%20AMp;ust=1519887424253000&%20AMp;usg=AFQjCNHPFf0T7dvp%20AMSaRIXP7LeyoZTLMw.jpg
2018-03-01 02:44:55,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.de%2F.jpg
2018-03-01 02:44:51,http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.de%2F
2018-03-01 02:44:51,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.de%2F
2018-03-01 02:06:56,https://www.w3schools.com/jsref/jsref_string.asp
2018-03-01 02:06:19,https://www.google.com/search?ei=XaaXWpKLO6Pc5gLLjI_gAQ&q=convert+to+string+javascript&oq=convert+to+string+javascript&gs_l=psy-ab.3..35i39k1j0i7i30k1l8j0.9532.10584.0.10693.11.10.0.0.0.0.131.1030.6j4.10.0....0...1.1.64.psy-ab..5.6.644....0.6OrIZoEmX4s
2018-03-01 02:06:06,https://www.google.com/search?ei=W6aXWqqPF4zz5gLgi4PwDA&q=string+javascript&oq=string+javascript&gs_l=psy-ab.3..0i71k1l8.1506.1506.0.1706.1.1.0.0.0.0.0.0..0.0....0...1.1.64.psy-ab..1.0.0....0.rt4-J9DDHmk
2018-03-01 02:06:03,https://www.google.com/search?q=stringify+javascript&oq=stringify+&aqs=chrome.2.0j69i57j0l4.3679j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 02:05:54,https://www.w3schools.com/js/js_json_stringify.asp
2018-03-01 02:01:45,https://docs.google.com/spreadsheets/d/1r3rRoiGDiUwddRcTdhPl9gaVMNjhhpPMywKt_3DuCl8/edit#gid=10045405
2018-03-01 02:01:38,https://docs.google.com/spreadsheets/d/1r3rRoiGDiUwddRcTdhPl9gaVMNjhhpPMywKt_3DuCl8/edit#
2018-03-01 02:00:14,https://docs.google.com/spreadsheets/d/1VzdC2_Q2NXBI9jQiHYgp2EnYqX6PrpfkYsAyPmL48Jk/edit#gid=1325178442
2018-03-01 02:00:07,https://docs.google.com/spreadsheets/d/1VzdC2_Q2NXBI9jQiHYgp2EnYqX6PrpfkYsAyPmL48Jk/edit#
2018-03-01 01:58:28,https://docs.google.com/spreadsheets/d/1kyICa0RRaewmXWx_p1JK_Nj6tyZm23wTG9A52ygqJvs/edit#gid=1274426786
2018-03-01 01:58:22,https://docs.google.com/spreadsheets/d/1kyICa0RRaewmXWx_p1JK_Nj6tyZm23wTG9A52ygqJvs/edit#
2018-03-01 01:56:45,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=Oc5Mg3oR98f5mM:
2018-03-01 01:56:43,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=us04oP7ppLPZNM:
2018-03-01 01:56:40,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=wHdfS802Pd9u1M:
2018-03-01 01:56:34,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=eKqfgoNAYEQFLM:
2018-03-01 01:56:32,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=XLyA8b-FD1NtmM:
2018-03-01 01:56:30,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=-2IdY-bvL4cuaM:
2018-03-01 01:56:27,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=llCkmXm6M5J54M:
2018-03-01 01:56:26,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=m2nWFmozvyGZbM:
2018-03-01 01:55:14,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=54xjr_LwaFAfgM:
2018-03-01 01:55:12,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=ngZbpy_TjuZllM:
2018-03-01 01:55:10,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887#imgrc=69sA0IBfp1TNAM:
2018-03-01 01:54:56,https://www.google.com/search?q=tsv+format&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjfj9muxcrZAhUOvFMKHUVJBKgQ_AUICygC&biw=1680&bih=887
2018-03-01 01:54:47,https://www.google.com/search?q=tsv+format&oq=tsv+format&aqs=chrome..69i57j0l5.2271j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 01:51:24,https://events.nyu.edu/#!view/event/event_id/192323
2018-03-01 01:41:48,https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date
2018-03-01 01:41:48,https://developer.mozilla.org/en-US/JavaScript/Reference/Global_Objects/Date
2018-03-01 01:41:48,https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date
2018-03-01 01:41:48,https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
2018-03-01 01:39:28,https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md
2018-03-01 01:39:19,https://www.google.com/search?q=d3+time+data&oq=d3+time+data&aqs=chrome..69i57j0l2.2440j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 01:23:17,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fgoogle.com/search?ei%3D_rKVWrmtAfLn_QbQi6WQBw%26q%3Dsubletee%26oq%3Dsubletee%26gs_l%3Dpsy-ab.3..0i10k1l10.5303.5460.0.6354.2.2.0.0.0.0.81.158.2.2.0....0...1.1.64.psy-ab..0.2.156...0.0.DNgE9n9xp-E&amp;sa=D&amp;ust=1519888789790000&amp;usg=AFQjCNFdLAWXnj7p9OB683FKvYwYxJDgSQ
2018-03-01 01:22:31,http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.com/search?ei%3D_rKVWrmtAfLn_QbQi6WQBw%26q%3Dsubletee%26oq%3Dsubletee%26gs_l%3Dpsy-ab.3..0i10k1l10.5303.5460.0.6354.2.2.0.0.0.0.81.158.2.2.0....0...1.1.64.psy-ab..0.2.156...0.0.DNgE9n9xp-E&amp;sa=D&amp;ust=1519888789790000&amp;usg=AFQjCNFdLAWXnj7p9OB683FKvYwYxJDgSQ
2018-03-01 01:22:31,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fwww.google.com/search?ei%3D_rKVWrmtAfLn_QbQi6WQBw%26q%3Dsubletee%26oq%3Dsubletee%26gs_l%3Dpsy-ab.3..0i10k1l10.5303.5460.0.6354.2.2.0.0.0.0.81.158.2.2.0....0...1.1.64.psy-ab..0.2.156...0.0.DNgE9n9xp-E&amp;sa=D&amp;ust=1519888789790000&amp;usg=AFQjCNFdLAWXnj7p9OB683FKvYwYxJDgSQ
2018-03-01 01:19:41,https://docs.google.com/document/d/1qaQpTAP9nIuOrCboTjaUgpj8rH_kLbUI_1E7RihZCsU/edit
2018-03-01 01:19:32,https://docs.google.com/spreadsheets/d/1GajXhi2eSDO1oX86DkPNI4EMFhwE6jNpn2dfAyhx81k/edit#gid=677487013
2018-03-01 01:15:07,https://docs.google.com/document/d/1rW7hAZSkE5HTBbOAKciegMCWEP39MIdHcG1gZHxLcHg/edit
2018-03-01 01:15:03,https://docs.google.com/document/u/0/create?zx=k9xibzl30vao&usp=docs_web
2018-03-01 01:15:03,https://docs.google.com/document/u/0/d/1rW7hAZSkE5HTBbOAKciegMCWEP39MIdHcG1gZHxLcHg/edit
2018-03-01 00:56:03,https://docs.google.com/document/u/0/d/1qaQpTAP9nIuOrCboTjaUgpj8rH_kLbUI_1E7RihZCsU/edit
2018-03-01 00:56:03,https://docs.google.com/document/u/0/create?usp=docs_home&ths=true
2018-03-01 00:56:00,https://docs.google.com/document/u/0/
2018-03-01 00:55:59,https://docs.google.com/
2018-03-01 00:55:59,https://docs.google.com/document/u/0/?usp=direct_url
2018-03-01 00:55:58,https://docs.google.com/document/d/1cuFUq-Xiu4FK_FoxgHGfH6loz6GWUHg8v6uiBNkOGLw/edit
2018-03-01 00:55:54,https://docs.google.com/document/u/1/d/1cuFUq-Xiu4FK_FoxgHGfH6loz6GWUHg8v6uiBNkOGLw/edit
2018-03-01 00:52:03,https://webapps.stackexchange.com/questions/89557/extract-the-link-text-and-url-from-a-hyperlinked-cell
2018-03-01 00:51:58,https://www.google.com/search?q=google+sheets+get+url+from+hyperlink&oq=google+sheets+get+url+&aqs=chrome.1.69i57j0l2j69i64.4759j0j7&sourceid=chrome&ie=UTF-8
2018-03-01 00:51:44,https://script.google.com/oauthcallback?state=ACjPJvGRHnWofi5Ss5kGIU1okRneTL3Wc3klCOMF_UTP7aICadbO8Clv78T42lubT1BB1ol2NWjQNbwWeXB5yIFb0kNSPsr9dZYsseZurffC-CC7cOFFYqVTYG4-uxC9-XhkvDDUh9gADFBHsTlg9yePENo_PIaN8HcSmJJ2-lVD2dM-Rbpk0xwdi4HhKVMdWpEHHxt6BCDYGShEyWIcZoVOI8Aop6wOyTUT9B4PHSbD_WnyWeiXlUOku5ZAcceJMcirrIVXRjHok-6YTy9G7swJg7O7xPjElDY49ulmNNONkdT-oE-C_5-SxQktEUo_N2D7SB6LN-10VxVYJuYSy0T0WObY_ZuSnvjnF8ZUhDQ2EHgLrAQjcgxNcPJy3dKQoNnxe5nPZTqERII704Eirg0HcwFqXVj1FIpxHHF1&code=4/AACB84BftAiWVpvlDbxEs6xQf-cSvJNBEqu5YxDg0aW8sj3bEA81gUu0M2srwGASFcFlllCJtbaLZrhntAn2nj0&authuser=0&session_state=06c451c1a28b008a163514c6a229336f324032ad..1740&prompt=consent&version_info=Ch93OTRwaksySWZSUVFrS0hqdWVXLVZteFpVOXdCSGhZ#
2018-03-01 00:51:44,https://script.google.com/oauthcallback?state=ACjPJvGRHnWofi5Ss5kGIU1okRneTL3Wc3klCOMF_UTP7aICadbO8Clv78T42lubT1BB1ol2NWjQNbwWeXB5yIFb0kNSPsr9dZYsseZurffC-CC7cOFFYqVTYG4-uxC9-XhkvDDUh9gADFBHsTlg9yePENo_PIaN8HcSmJJ2-lVD2dM-Rbpk0xwdi4HhKVMdWpEHHxt6BCDYGShEyWIcZoVOI8Aop6wOyTUT9B4PHSbD_WnyWeiXlUOku5ZAcceJMcirrIVXRjHok-6YTy9G7swJg7O7xPjElDY49ulmNNONkdT-oE-C_5-SxQktEUo_N2D7SB6LN-10VxVYJuYSy0T0WObY_ZuSnvjnF8ZUhDQ2EHgLrAQjcgxNcPJy3dKQoNnxe5nPZTqERII704Eirg0HcwFqXVj1FIpxHHF1&code=4/AACB84BftAiWVpvlDbxEs6xQf-cSvJNBEqu5YxDg0aW8sj3bEA81gUu0M2srwGASFcFlllCJtbaLZrhntAn2nj0&session_state=06c451c1a28b008a163514c6a229336f324032ad..1740&prompt=consent&version_info=Ch93OTRwaksySWZSUVFrS0hqdWVXLVZteFpVOXdCSGhZ#
2018-03-01 00:51:37,https://accounts.google.com/signin/oauth/consent?authuser=0&part=AJi8hAOpk3oy9Tu8UV23DWxKY_7uxP3FnmmZSIzKRWF0ysQN1LPi5hXpe0imyaeKsM8DGBE9fAJwJeEwJdcgL-xrf1RZG0Yq2xSHeK9ujJfuwtXMBvcJVAL9nOJgYr2CluWclWF-OQ6sHyxbH53uE7rN-2etV2cOU0n1Ld9ezE4yFtfdYlS2QZRfSaNLVP2ukm-JGAHffP1_M1mIbZ1g8G-PSwM3f9A1ucSbiSBP9XlJTtbW2TYMXRzRfJBca-TZWE3wNVGwEFTvCjSmsu8-Ly0527Xeu5mmJP0eQpTPD6EKdG0YcUPDxrY9Lkwe8Ir2nIkYK7rQTkQRg0nTYABAUuXLBxc9gfIj4VNMekwLlkcwl8F8RMLKGTlD66KVDFel-iOl19qx7QibDcqi3tQJ7nsJvpghqeerxa3HmMuMnBSwyNTj-9Y6UAJqAX4d0zyG2mubQeEZJvnYlYCVox50js1z8wpdCEl9laYPEVxZnMI30_sO8RPoulU&hl=en&as=M-pE8BDznB6XIen7QIjZ0g#
2018-03-01 00:51:19,https://accounts.google.com/signin/oauth/danger?authuser=0&part=AJi8hAMQgaGdM3OIuS2PYxvQS4yk1A4iD2gv84M-JT0ynRCyigs8RR5WUMWhZ4VjH63D9iwzUvzE4vf6kYC0pz19xMpCRRCrLkr1sA2__ULAlH6ppw8KqFFj1FFCESHNZQ401tBhDuWyrbElLwGZtpHZwKoKXkzd2IEUBKbovM_4jIto62_dPYXRg5KGCQ0xXJokwy-SmK0ANmaRo24TgwJoaoQeRIOuzEAPVlwIvFhxNVHyjJNGGySJWaRUuM7qbCD7NiukgEP4yePCinWwTnR5QRn8Cx-zFysgQJZjkqbrwEKUjnseGBlpL3LPfvFSVVikKP20kGY_ZOxcJCh3CtDNeWUlBHijZfkYOkGHkkPUjJvljPxPrusAd-pvCne6JtbXA2RzcZ6QKu1tXouFcP20n5PP5Z9Neu0NLCYZkCd-O4wXhngwT2s&hl=en&as=M-pE8BDznB6XIen7QIjZ0g#
2018-03-01 00:51:17,https://accounts.google.com/signin/oauth?hl=en&client_id=649879643481-h2oa3rkalputqf2tp356c9m5jecqjvdu@developer.gserviceaccount.com&as=M-pE8BDznB6XIen7QIjZ0g&Email=xujenna@gmail.com&destination=https://script.google.com&approval_state=!ChQ2aTlPMTlkaEllcjA0bkRzaGFPYRIfY3lzbzR2ODlqU0VVTUpIMzhHRFhRN1M5cDlVQkhoWQ%E2%88%99ACThZt4AAAAAWpjmU-vOv1QxOajI4PM6va5cHZVYw7dj&xsrfsig=AHgIfE_XjuMqVsqilqu9hD1m1llrDM9W6A
2018-03-01 00:51:17,https://accounts.google.com/signin/oauth/oauthchooseaccount?hl=en&client_id=649879643481-h2oa3rkalputqf2tp356c9m5jecqjvdu%40developer.gserviceaccount.com&as=M-pE8BDznB6XIen7QIjZ0g&Email=xujenna%40gmail.com&destination=https%3A%2F%2Fscript.google.com&approval_state=!ChQ2aTlPMTlkaEllcjA0bkRzaGFPYRIfY3lzbzR2ODlqU0VVTUpIMzhHRFhRN1M5cDlVQkhoWQ%E2%88%99ACThZt4AAAAAWpjmU-vOv1QxOajI4PM6va5cHZVYw7dj&xsrfsig=AHgIfE_XjuMqVsqilqu9hD1m1llrDM9W6A&flowName=GeneralOAuthFlow
2018-03-01 00:51:15,https://accounts.google.com/o/oauth2/auth?client_id=649879643481-h2oa3rkalputqf2tp356c9m5jecqjvdu@developer.gserviceaccount.com&redirect_uri=https://script.google.com/oauthcallback&state=ACjPJvGRHnWofi5Ss5kGIU1okRneTL3Wc3klCOMF_UTP7aICadbO8Clv78T42lubT1BB1ol2NWjQNbwWeXB5yIFb0kNSPsr9dZYsseZurffC-CC7cOFFYqVTYG4-uxC9-XhkvDDUh9gADFBHsTlg9yePENo_PIaN8HcSmJJ2-lVD2dM-Rbpk0xwdi4HhKVMdWpEHHxt6BCDYGShEyWIcZoVOI8Aop6wOyTUT9B4PHSbD_WnyWeiXlUOku5ZAcceJMcirrIVXRjHok-6YTy9G7swJg7O7xPjElDY49ulmNNONkdT-oE-C_5-SxQktEUo_N2D7SB6LN-10VxVYJuYSy0T0WObY_ZuSnvjnF8ZUhDQ2EHgLrAQjcgxNcPJy3dKQoNnxe5nPZTqERII704Eirg0HcwFqXVj1FIpxHHF1&scope=https://www.googleapis.com/auth/spreadsheets&response_type=code+none+gsession&access_type=offline&approval_prompt=force&hl=en&login_hint=xujenna@gmail.com
2018-03-01 00:50:34,https://script.google.com/macros/d/18pmJLPsGPoKecOLfGTZF6hfp17xOv4GglpercbhkAE3rgSIeWXQ6nqCE/edit?uiv=2&mid=ACjPJvHJRVy5OFG71Djq1qCJ0lHkh1sfug8BFg5GIIhUzTX0OiuNulBV0ZeLbJEsbGTqe9YGTjW9sA5a1j03OW-3YsouRuVqtb49tnp8feLltTenii0Kn_JBPAMZdiQevhCRFcIuVUn5T0w&splash=yes
2018-03-01 00:50:34,https://script.google.com/macros/u/0/start?mid=ACjPJvHJRVy5OFG71Djq1qCJ0lHkh1sfug8BFg5GIIhUzTX0OiuNulBV0ZeLbJEsbGTqe9YGTjW9sA5a1j03OW-3YsouRuVqtb49tnp8feLltTenii0Kn_JBPAMZdiQevhCRFcIuVUn5T0w&uiv=2
2018-03-01 00:50:34,https://script.google.com/macros/u/0/create?uiv=2&mid=ACjPJvHJRVy5OFG71Djq1qCJ0lHkh1sfug8BFg5GIIhUzTX0OiuNulBV0ZeLbJEsbGTqe9YGTjW9sA5a1j03OW-3YsouRuVqtb49tnp8feLltTenii0Kn_JBPAMZdiQevhCRFcIuVUn5T0w
2018-03-01 00:50:34,https://script.google.com/macros/u/0/d/18pmJLPsGPoKecOLfGTZF6hfp17xOv4GglpercbhkAE3rgSIeWXQ6nqCE/edit?uiv=2&mid=ACjPJvHJRVy5OFG71Djq1qCJ0lHkh1sfug8BFg5GIIhUzTX0OiuNulBV0ZeLbJEsbGTqe9YGTjW9sA5a1j03OW-3YsouRuVqtb49tnp8feLltTenii0Kn_JBPAMZdiQevhCRFcIuVUn5T0w&splash=yes
2018-03-01 00:50:11,https://www.bettercloud.com/monitor/the-academy/extract-urls-or-link-text-from-a-google-sheets-cell/
2018-03-01 00:49:19,http://alexbea.com/2014/10/08/extract-urls-in-excel.html
2018-03-01 00:46:32,http://productforums.google.com/d/topic/docs/7QglmHmxrAY
2018-03-01 00:46:32,https://productforums.google.com/d/topic/docs/7QglmHmxrAY
2018-03-01 00:46:32,https://productforums.google.com/forum/#!topic/docs/7QglmHmxrAY
2018-03-01 00:45:28,https://www.quora.com/What-is-the-Google-Sheets-function-to-extract-a-URL-from-a-cell-that-contains-text-and-the-wanted-URL
2018-03-01 00:42:16,https://stackoverflow.com/questions/35230764/how-to-extract-url-from-link-in-google-sheets-using-a-formula
2018-03-01 00:41:24,https://docs.google.com/spreadsheets/d/1GajXhi2eSDO1oX86DkPNI4EMFhwE6jNpn2dfAyhx81k/edit#gid=174904245
2018-03-01 00:34:54,http://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fmail.google.com
2018-03-01 00:34:54,https://www.google.com/s2/favicons?domain_url=http%3A%2F%2Fmail.google.com
2018-03-01 00:32:43,https://mail.google.com/mail/u/1/#inbox/161dc13a99663dec
{
"notes": "data is an array of arrays (rows), column names for rows in row_headers",
"row_headers": [
"Date",
"Time Spent (seconds)",
"Number of People",
"Efficiency (-2:2)",
"Efficiency (percent)"
],
"rows": [
[
"2018-03-01T00:00:00",
2277,
1,
0.61,
65.36
],
[
"2018-03-01T01:00:00",
3599,
1,
1.83,
95.82
],
[
"2018-03-01T02:00:00",
3599,
1,
1.88,
96.92
],
[
"2018-03-01T03:00:00",
1353,
1,
1.89,
97.36
],
[
"2018-03-01T09:00:00",
130,
1,
0.19,
54.81
],
[
"2018-03-01T10:00:00",
3599,
1,
1.96,
98.92
],
[
"2018-03-01T11:00:00",
1486,
1,
1.69,
92.29
],
[
"2018-03-01T12:00:00",
4450,
1,
-0.03,
49.2
],
[
"2018-03-01T13:00:00",
5648,
1,
0.3,
57.45
],
[
"2018-03-01T14:00:00",
1113,
1,
-0.14,
46.54
],
[
"2018-03-01T15:00:00",
1294,
1,
1.29,
82.26
],
[
"2018-03-01T16:00:00",
754,
1,
0.05,
51.23
],
[
"2018-03-01T17:00:00",
820,
1,
0.85,
71.37
],
[
"2018-03-01T18:00:00",
2584,
1,
-0.23,
44.25
],
[
"2018-03-01T19:00:00",
2587,
1,
-0.81,
29.79
],
[
"2018-03-01T20:00:00",
1324,
1,
-0.61,
34.86
],
[
"2018-03-01T21:00:00",
1970,
1,
0.94,
73.55
],
[
"2018-03-01T22:00:00",
558,
1,
0.54,
63.58
],
[
"2018-03-01T23:00:00",
17,
1,
0.18,
54.41
],
[
"2018-03-02T00:00:00",
2328,
1,
0.33,
58.28
],
[
"2018-03-02T01:00:00",
1355,
1,
0.0,
50.0
],
[
"2018-03-02T08:00:00",
16,
1,
0.13,
53.13
],
[
"2018-03-02T09:00:00",
247,
1,
-0.77,
30.67
],
[
"2018-03-02T10:00:00",
1362,
1,
-0.73,
31.7
],
[
"2018-03-02T11:00:00",
2847,
1,
-0.43,
39.28
],
[
"2018-03-02T12:00:00",
161,
1,
0.15,
53.73
],
[
"2018-03-02T13:00:00",
1419,
1,
0.98,
74.54
],
[
"2018-03-02T14:00:00",
1135,
1,
1.75,
93.81
],
[
"2018-03-02T15:00:00",
3167,
1,
0.56,
64.07
],
[
"2018-03-02T16:00:00",
897,
1,
-0.9,
27.59
],
[
"2018-03-02T17:00:00",
1835,
1,
-1.69,
7.71
],
[
"2018-03-02T18:00:00",
2308,
1,
0.93,
73.13
],
[
"2018-03-02T19:00:00",
1351,
1,
0.73,
68.32
],
[
"2018-03-02T20:00:00",
289,
1,
0.07,
51.82
],
[
"2018-03-02T21:00:00",
855,
1,
-1.0,
25.0
],
[
"2018-03-03T00:00:00",
257,
1,
0.01,
50.19
],
[
"2018-03-03T11:00:00",
46,
1,
-2.0,
0.0
],
[
"2018-03-03T12:00:00",
524,
1,
-0.8,
29.91
],
[
"2018-03-03T13:00:00",
2585,
1,
0.43,
60.85
],
[
"2018-03-03T14:00:00",
1236,
1,
0.89,
72.33
],
[
"2018-03-03T15:00:00",
3600,
1,
1.35,
83.76
],
[
"2018-03-03T16:00:00",
2057,
1,
1.92,
97.92
],
[
"2018-03-03T17:00:00",
320,
1,
0.8,
69.92
],
[
"2018-03-03T18:00:00",
18,
1,
1.89,
97.22
],
[
"2018-03-03T19:00:00",
2405,
1,
1.99,
99.75
],
[
"2018-03-03T20:00:00",
3599,
1,
1.94,
98.53
],
[
"2018-03-03T21:00:00",
1088,
1,
0.75,
68.7
],
[
"2018-03-03T22:00:00",
2016,
1,
-1.41,
14.78
],
[
"2018-03-03T23:00:00",
2820,
1,
1.64,
90.88
],
[
"2018-03-04T00:00:00",
1058,
1,
1.97,
99.15
],
[
"2018-03-04T10:00:00",
916,
1,
0.24,
56.06
],
[
"2018-03-04T11:00:00",
390,
1,
1.85,
96.22
],
[
"2018-03-04T12:00:00",
277,
1,
1.28,
82.04
],
[
"2018-03-04T13:00:00",
2051,
1,
0.13,
53.32
],
[
"2018-03-04T14:00:00",
955,
1,
0.46,
61.47
],
[
"2018-03-04T15:00:00",
2197,
1,
1.28,
81.95
],
[
"2018-03-04T17:00:00",
1147,
1,
1.56,
88.93
],
[
"2018-03-04T18:00:00",
3599,
1,
1.11,
77.63
],
[
"2018-03-04T19:00:00",
221,
1,
1.92,
97.96
],
[
"2018-03-04T20:00:00",
918,
1,
-0.86,
28.59
],
[
"2018-03-04T21:00:00",
801,
1,
0.32,
57.96
],
[
"2018-03-04T22:00:00",
930,
1,
0.0,
50.0
],
[
"2018-03-04T23:00:00",
3570,
1,
1.12,
77.96
],
[
"2018-03-05T00:00:00",
2112,
1,
1.8,
95.03
],
[
"2018-03-05T09:00:00",
1399,
1,
-0.14,
46.5
],
[
"2018-03-05T10:00:00",
3425,
1,
0.48,
62.09
],
[
"2018-03-05T11:00:00",
3600,
1,
1.97,
99.26
],
[
"2018-03-05T12:00:00",
3723,
1,
1.57,
89.32
],
[
"2018-03-05T13:00:00",
2959,
1,
1.85,
96.27
],
[
"2018-03-05T14:00:00",
1955,
1,
0.57,
64.18
],
[
"2018-03-05T15:00:00",
1997,
1,
-0.18,
45.57
],
[
"2018-03-05T16:00:00",
1267,
1,
0.4,
59.94
],
[
"2018-03-05T17:00:00",
1524,
1,
0.4,
60.02
],
[
"2018-03-05T18:00:00",
1510,
1,
1.6,
89.88
],
[
"2018-03-05T19:00:00",
197,
1,
0.12,
52.92
],
[
"2018-03-05T20:00:00",
2479,
1,
0.88,
71.98
],
[
"2018-03-05T21:00:00",
1970,
1,
0.81,
70.37
],
[
"2018-03-05T22:00:00",
1621,
1,
-0.73,
31.66
],
[
"2018-03-05T23:00:00",
559,
1,
-0.78,
30.41
],
[
"2018-03-06T00:00:00",
30,
1,
0.8,
70.0
],
[
"2018-03-06T08:00:00",
187,
1,
0.11,
52.81
],
[
"2018-03-06T11:00:00",
1064,
1,
-1.08,
22.89
],
[
"2018-03-06T13:00:00",
1012,
1,
-0.9,
27.4
],
[
"2018-03-06T14:00:00",
2975,
1,
0.06,
51.51
],
[
"2018-03-06T15:00:00",
2867,
1,
-0.01,
49.78
],
[
"2018-03-06T16:00:00",
3600,
1,
1.92,
97.97
],
[
"2018-03-06T17:00:00",
3640,
1,
1.85,
96.31
],
[
"2018-03-06T18:00:00",
113,
1,
1.67,
91.81
],
[
"2018-03-07T09:00:00",
2063,
1,
1.24,
81.1
],
[
"2018-03-07T10:00:00",
3600,
1,
1.52,
87.95
],
[
"2018-03-07T11:00:00",
2831,
1,
1.85,
96.37
],
[
"2018-03-07T12:00:00",
351,
1,
1.95,
98.72
],
[
"2018-03-07T15:00:00",
2532,
1,
1.32,
83.0
],
[
"2018-03-07T16:00:00",
3600,
1,
1.86,
96.62
],
[
"2018-03-07T17:00:00",
3600,
1,
1.8,
94.92
],
[
"2018-03-07T18:00:00",
3599,
1,
0.85,
71.29
],
[
"2018-03-07T19:00:00",
193,
1,
0.09,
52.33
],
[
"2018-03-07T20:00:00",
895,
1,
1.92,
97.91
],
[
"2018-03-07T21:00:00",
3600,
1,
1.69,
92.22
],
[
"2018-03-07T22:00:00",
3600,
1,
1.8,
94.99
],
[
"2018-03-07T23:00:00",
3600,
1,
1.99,
99.67
],
[
"2018-03-08T00:00:00",
3600,
1,
1.98,
99.51
],
[
"2018-03-08T01:00:00",
3181,
1,
1.99,
99.8
],
[
"2018-03-08T02:00:00",
564,
1,
1.05,
76.37
],
[
"2018-03-08T10:00:00",
1431,
1,
0.63,
65.65
],
[
"2018-03-08T11:00:00",
2673,
1,
-0.1,
47.44
],
[
"2018-03-08T12:00:00",
3600,
1,
1.97,
99.35
],
[
"2018-03-08T13:00:00",
3600,
1,
2.0,
100.0
],
[
"2018-03-08T14:00:00",
3387,
1,
1.87,
96.79
],
[
"2018-03-08T15:00:00",
374,
1,
0.24,
55.95
],
[
"2018-03-08T16:00:00",
1281,
1,
0.15,
53.75
],
[
"2018-03-08T17:00:00",
1285,
1,
-0.08,
48.11
],
[
"2018-03-08T18:00:00",
1290,
1,
-0.01,
49.65
],
[
"2018-03-08T19:00:00",
1016,
1,
-0.27,
43.21
],
[
"2018-03-08T20:00:00",
2275,
1,
-0.28,
42.9
],
[
"2018-03-08T21:00:00",
1734,
1,
0.15,
53.65
],
[
"2018-03-08T22:00:00",
3600,
1,
1.15,
78.83
],
[
"2018-03-08T23:00:00",
3600,
1,
1.95,
98.74
],
[
"2018-03-09T00:00:00",
1098,
1,
1.4,
84.97
],
[
"2018-03-09T10:00:00",
1062,
1,
-0.32,
42.11
],
[
"2018-03-09T11:00:00",
3177,
1,
1.53,
88.27
],
[
"2018-03-09T12:00:00",
3306,
1,
1.55,
88.66
],
[
"2018-03-09T13:00:00",
130,
1,
0.51,
62.69
],
[
"2018-03-09T14:00:00",
2303,
1,
0.77,
69.17
],
[
"2018-03-09T15:00:00",
3532,
1,
0.08,
52.02
],
[
"2018-03-09T16:00:00",
1498,
1,
-0.69,
32.81
],
[
"2018-03-09T17:00:00",
1701,
1,
0.15,
53.78
],
[
"2018-03-09T18:00:00",
3298,
1,
1.83,
95.72
],
[
"2018-03-09T19:00:00",
452,
1,
1.2,
80.03
],
[
"2018-03-09T20:00:00",
1975,
1,
0.49,
62.37
],
[
"2018-03-09T21:00:00",
1102,
1,
1.47,
86.71
],
[
"2018-03-09T22:00:00",
169,
1,
1.43,
85.65
],
[
"2018-03-09T23:00:00",
103,
1,
1.38,
84.47
],
[
"2018-03-10T00:00:00",
831,
1,
1.81,
95.16
],
[
"2018-03-10T11:00:00",
531,
1,
1.54,
88.61
],
[
"2018-03-10T12:00:00",
28,
1,
-1.25,
18.75
],
[
"2018-03-10T13:00:00",
99,
1,
1.43,
85.86
],
[
"2018-03-10T14:00:00",
3076,
1,
1.6,
89.91
],
[
"2018-03-10T15:00:00",
1515,
1,
1.4,
85.05
],
[
"2018-03-10T16:00:00",
787,
1,
0.65,
66.17
],
[
"2018-03-10T17:00:00",
108,
1,
1.18,
79.4
],
[
"2018-03-10T18:00:00",
314,
1,
-1.51,
12.18
],
[
"2018-03-10T20:00:00",
2525,
1,
1.98,
99.42
],
[
"2018-03-10T21:00:00",
3599,
1,
1.97,
99.14
],
[
"2018-03-10T22:00:00",
3600,
1,
1.66,
91.4
],
[
"2018-03-10T23:00:00",
3131,
1,
1.76,
93.88
],
[
"2018-03-11T01:00:00",
1292,
1,
1.98,
99.61
],
[
"2018-03-11T12:00:00",
2313,
1,
1.98,
99.44
],
[
"2018-03-11T13:00:00",
2161,
1,
1.9,
97.56
],
[
"2018-03-11T14:00:00",
291,
1,
2.0,
100.0
],
[
"2018-03-11T15:00:00",
3162,
1,
1.97,
99.23
],
[
"2018-03-11T16:00:00",
407,
1,
1.43,
85.75
],
[
"2018-03-11T17:00:00",
887,
1,
0.04,
51.1
],
[
"2018-03-11T18:00:00",
3524,
1,
1.69,
92.3
],
[
"2018-03-11T19:00:00",
2785,
1,
1.64,
91.0
],
[
"2018-03-11T20:00:00",
1329,
1,
2.0,
99.91
],
[
"2018-03-11T21:00:00",
1108,
1,
2.0,
100.0
],
[
"2018-03-11T22:00:00",
2383,
1,
2.0,
99.98
],
[
"2018-03-11T23:00:00",
3600,
1,
1.91,
97.86
],
[
"2018-03-12T00:00:00",
2849,
1,
1.99,
99.68
],
[
"2018-03-12T01:00:00",
1669,
1,
1.91,
97.78
],
[
"2018-03-12T02:00:00",
3600,
1,
1.94,
98.43
],
[
"2018-03-12T03:00:00",
1990,
1,
1.95,
98.69
],
[
"2018-03-12T10:00:00",
1092,
1,
0.07,
51.69
],
[
"2018-03-12T11:00:00",
10792,
1,
0.66,
66.43
],
[
"2018-03-12T12:00:00",
5454,
1,
0.54,
63.42
],
[
"2018-03-12T13:00:00",
3417,
1,
-1.34,
16.48
],
[
"2018-03-12T14:00:00",
2417,
1,
1.81,
95.31
],
[
"2018-03-12T15:00:00",
3601,
1,
2.0,
99.96
],
[
"2018-03-12T16:00:00",
2005,
1,
0.85,
71.2
],
[
"2018-03-12T17:00:00",
955,
1,
-0.45,
38.66
],
[
"2018-03-12T18:00:00",
3090,
1,
0.82,
70.53
],
[
"2018-03-12T19:00:00",
2582,
1,
1.82,
95.42
],
[
"2018-03-12T20:00:00",
1955,
1,
1.78,
94.6
],
[
"2018-03-12T21:00:00",
271,
1,
-1.96,
1.11
],
[
"2018-03-12T22:00:00",
205,
1,
-1.0,
25.0
],
[
"2018-03-12T23:00:00",
515,
1,
-0.86,
28.4
],
[
"2018-03-13T00:00:00",
3093,
1,
1.67,
91.87
],
[
"2018-03-13T01:00:00",
1107,
1,
1.91,
97.7
],
[
"2018-03-13T08:00:00",
50,
1,
0.88,
72.0
],
[
"2018-03-13T09:00:00",
205,
1,
-0.21,
44.76
],
[
"2018-03-13T11:00:00",
2234,
1,
0.1,
52.51
],
[
"2018-03-13T12:00:00",
3626,
1,
-0.02,
49.61
],
[
"2018-03-13T13:00:00",
2814,
1,
0.68,
66.9
],
[
"2018-03-13T14:00:00",
775,
1,
1.33,
83.26
],
[
"2018-03-13T15:00:00",
1409,
1,
-0.3,
42.39
],
[
"2018-03-13T16:00:00",
243,
1,
-0.3,
42.39
],
[
"2018-03-13T19:00:00",
745,
1,
-0.02,
49.43
],
[
"2018-03-13T20:00:00",
4413,
1,
0.06,
51.53
],
[
"2018-03-13T21:00:00",
1815,
1,
0.22,
55.52
],
[
"2018-03-13T23:00:00",
709,
1,
-0.32,
42.0
],
[
"2018-03-14T00:00:00",
538,
1,
0.52,
63.1
],
[
"2018-03-14T10:00:00",
657,
1,
-1.69,
7.84
],
[
"2018-03-14T11:00:00",
2752,
1,
0.76,
69.1
],
[
"2018-03-14T12:00:00",
3016,
1,
0.04,
50.99
],
[
"2018-03-14T13:00:00",
2125,
1,
0.15,
53.71
],
[
"2018-03-14T14:00:00",
1274,
1,
0.48,
62.05
],
[
"2018-03-14T15:00:00",
2001,
1,
1.15,
78.87
],
[
"2018-03-14T16:00:00",
915,
1,
-1.05,
23.83
],
[
"2018-03-14T17:00:00",
14,
1,
-2.0,
0.0
],
[
"2018-03-14T18:00:00",
434,
1,
-0.21,
44.7
],
[
"2018-03-14T19:00:00",
4116,
1,
0.46,
61.39
],
[
"2018-03-14T20:00:00",
2487,
1,
0.7,
67.54
],
[
"2018-03-14T21:00:00",
2599,
1,
0.05,
51.27
],
[
"2018-03-14T22:00:00",
3164,
1,
-0.09,
47.87
],
[
"2018-03-14T23:00:00",
3443,
1,
-0.02,
49.48
],
[
"2018-03-15T00:00:00",
735,
1,
-0.62,
34.46
],
[
"2018-03-15T02:00:00",
2797,
1,
-1.04,
23.9
],
[
"2018-03-15T03:00:00",
3,
1,
1.0,
75.0
],
[
"2018-03-15T10:00:00",
448,
1,
-0.47,
38.17
],
[
"2018-03-15T11:00:00",
1857,
1,
-0.12,
47.09
],
[
"2018-03-15T12:00:00",
1867,
1,
-0.07,
48.17
],
[
"2018-03-15T13:00:00",
3397,
1,
-0.12,
47.09
],
[
"2018-03-15T14:00:00",
5550,
1,
0.81,
70.14
],
[
"2018-03-15T15:00:00",
1380,
1,
-0.58,
35.45
],
[
"2018-03-15T16:00:00",
2831,
1,
0.26,
56.44
],
[
"2018-03-15T17:00:00",
3271,
1,
0.34,
58.38
],
[
"2018-03-15T18:00:00",
3640,
1,
0.23,
55.76
],
[
"2018-03-15T19:00:00",
2911,
1,
0.61,
65.18
],
[
"2018-03-15T20:00:00",
800,
1,
1.29,
82.25
],
[
"2018-03-15T21:00:00",
403,
1,
0.0,
50.0
],
[
"2018-03-15T22:00:00",
3438,
1,
0.99,
74.65
],
[
"2018-03-15T23:00:00",
941,
1,
0.59,
64.67
],
[
"2018-03-16T00:00:00",
1547,
1,
-0.09,
47.71
],
[
"2018-03-16T01:00:00",
1707,
1,
0.0,
50.0
],
[
"2018-03-16T09:00:00",
1659,
1,
0.59,
64.8
],
[
"2018-03-16T10:00:00",
1403,
1,
0.12,
53.08
],
[
"2018-03-16T11:00:00",
627,
1,
0.46,
61.4
],
[
"2018-03-16T12:00:00",
2080,
1,
0.36,
59.07
],
[
"2018-03-16T13:00:00",
3916,
1,
0.38,
59.54
],
[
"2018-03-16T14:00:00",
1653,
1,
0.6,
65.0
],
[
"2018-03-16T15:00:00",
804,
1,
-0.06,
48.57
],
[
"2018-03-16T16:00:00",
1206,
1,
-0.22,
44.59
],
[
"2018-03-16T17:00:00",
709,
1,
-0.38,
40.59
],
[
"2018-03-16T18:00:00",
531,
1,
-0.15,
46.14
],
[
"2018-03-16T19:00:00",
8,
1,
-0.5,
37.5
],
[
"2018-03-16T20:00:00",
218,
1,
1.5,
87.39
],
[
"2018-03-16T21:00:00",
467,
1,
-1.47,
13.33
],
[
"2018-03-17T00:00:00",
1742,
1,
-1.1,
22.45
],
[
"2018-03-17T01:00:00",
572,
1,
-0.97,
25.79
],
[
"2018-03-17T11:00:00",
463,
1,
-2.0,
0.0
],
[
"2018-03-17T12:00:00",
512,
1,
0.01,
50.34
],
[
"2018-03-17T14:00:00",
1671,
1,
-0.3,
42.5
],
[
"2018-03-17T15:00:00",
2145,
1,
0.4,
60.08
],
[
"2018-03-17T16:00:00",
1096,
1,
1.71,
92.72
],
[
"2018-03-17T18:00:00",
247,
1,
-0.9,
27.53
],
[
"2018-03-17T20:00:00",
261,
1,
-1.08,
22.99
],
[
"2018-03-17T21:00:00",
1738,
1,
0.95,
73.83
],
[
"2018-03-17T22:00:00",
3557,
1,
0.93,
73.36
],
[
"2018-03-17T23:00:00",
431,
1,
-0.58,
35.38
],
[
"2018-03-18T00:00:00",
2222,
1,
0.1,
52.49
],
[
"2018-03-18T01:00:00",
2176,
1,
0.55,
63.72
],
[
"2018-03-18T02:00:00",
306,
1,
0.18,
54.41
],
[
"2018-03-18T10:00:00",
61,
1,
0.0,
50.0
],
[
"2018-03-18T11:00:00",
1384,
1,
0.59,
64.63
]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment