@ -73,3 +75,8 @@ echo -e "\nwhat is the repartition of visits per type of activity in general"
# SELECT url,title,datetime(visit_date/1000000, 'unixepoch','localtime') as moment FROM moz_historyvisits, moz_places WHERE moz_historyvisits.place_id = moz_places.id AND (url like "%fabien.benetou.fr%" OR url like "%127.0.0.1%" OR url like "%seedea.org%" OR url like "%agi-wiki.org%" OR url like "%ourp.im%")
# SELECT url,title,datetime(visit_date/1000000, 'unixepoch','localtime') as moment FROM moz_historyvisits, moz_places WHERE moz_historyvisits.place_id = moz_places.id AND (url like "%fabien.benetou.fr%" OR url like "%127.0.0.1%" OR url like "%seedea.org%" OR url like "%agi-wiki.org%" OR url like "%ourp.im%")
# social
# social
# SELECT url,title,datetime(visit_date/1000000, 'unixepoch','localtime') as moment FROM moz_historyvisits, moz_places WHERE moz_historyvisits.place_id = moz_places.id AND (url like "%facebook%" OR url like "%twitter%" OR url like "%mail.google%")
# SELECT url,title,datetime(visit_date/1000000, 'unixepoch','localtime') as moment FROM moz_historyvisits, moz_places WHERE moz_historyvisits.place_id = moz_places.id AND (url like "%facebook%" OR url like "%twitter%" OR url like "%mail.google%")
echo -e "\nwhat are the sources of your Wikipedia explorations?"
# from http://www.thesimplelogic.com/2010/04/17/wandering-wikipedia-datamining-my-firefox-history/
WP="SELECT curr.id, curr.url, curr.title, prev.id, prev.url, prev.title, t.visit_date FROM moz_places curr, moz_places prev, moz_historyvisits frm, moz_historyvisits t WHERE t.place_id = curr.id AND frm.place_id = prev.id AND frm.id = t.from_visit AND curr.url LIKE 'http://en.wikipedia.org/%' AND prev.url NOT LIKE 'http://en.wikipedia.org/%'"