From fe58517dc85da0a295879685da0f74e56110fb35 Mon Sep 17 00:00:00 2001 From: Fabien Benetou Date: Wed, 27 Jul 2011 09:29:24 +0200 Subject: [PATCH] added Adam Fletcher's query --- greasemonkey/tos_inspector.user.js | 6 +++--- shell_scripts/browser_queries | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/greasemonkey/tos_inspector.user.js b/greasemonkey/tos_inspector.user.js index bc54616..63295ee 100644 --- a/greasemonkey/tos_inspector.user.js +++ b/greasemonkey/tos_inspector.user.js @@ -41,13 +41,13 @@ GM_xmlhttpRequest({ function responseCheck(tos) { if (tos == 'Ok' ){ - return 'TOS ok :)'; + return 'TOS ok :)'; } if (tos == 'Meh'){ - return 'Warning (consider those settings)'; + return 'Warning (consider those settings)'; } if (tos == 'Bad'){ - return 'BAD TOS! (try '+serviceAlternatives+' instead)'; + return 'BAD TOS! (try '+serviceAlternatives+' instead)'; } } diff --git a/shell_scripts/browser_queries b/shell_scripts/browser_queries index f9fcfa8..8f16f75 100755 --- a/shell_scripts/browser_queries +++ b/shell_scripts/browser_queries @@ -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"