Skip to main content

Random Ideas


  • Deep Fakes: old Music Videos updated to play/sing recent music


  • Append Google Scholar to WikiData in its entirety and maintain it. WikiData does have some published articles but does not have references on most, and is far sparser than Google Scholar.
    • This will allow detailed graph search.
    • Example: Given two lists of authors, find any author pairs where one has reference the other.
      • useful when finding an advisor that is into papers you have recently read
      • https://query.wikidata.org/#%0ASELECT%20%3Fitem%20%3FitemLabel%20%0AWHERE%20%0A%7B%0A%20%20%23%3Fitem%20wdt%3AP31%20wd%3AQ13442814.%0A%20%20%23%3Fitem%20wdt%3AP2093%20%22Steven%20Werner%22%0A%20%20%3Fitem%20wdt%3AP31%20wd%3AQ1713%0A%20%20%23%3Fitem%20wdt%3AP31%20wd%3AQ21528959%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D
        • SELECT ?item ?itemLabel
        • WHERE
        • {
        •   ?item wdt:P31 wd:Q13442814.
        •   ?item wdt:P2093 "Steven Werner"
        •   #?item wdt:P31 wd:Q1713
        •   #?item wdt:P31 wd:Q21528959
        •   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
        • }

Comments