added Adam Fletcher's query
This commit is contained in:
@@ -14,6 +14,8 @@
|
||||
# PmWiki output format
|
||||
# %s/"\(.*\)","\(.*\)","\(.*\)"/* \3 [[\1|\2]]/
|
||||
# consider bc for the math
|
||||
# browse the web for more cool queries
|
||||
# http://www.thesimplelogic.com/2010/04/17/wandering-wikipedia-datamining-my-firefox-history/
|
||||
# see
|
||||
# http://fabien.benetou.fr/MemoryRecalls/ImprovingPIM#FirefoxSQLiteLogs
|
||||
# http://self/wiki/PBES/PBES#FirefoxSQLiteLogs
|
||||
@@ -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%")
|
||||
# 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%")
|
||||
|
||||
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/%'"
|
||||
sqlite3 -list -line $DB "$WP"
|
||||
|
||||
Reference in New Issue
Block a user