About me edit

Check the meta page.

To do lists edit

Add missing info edit

  • List 1: People without "country of citizenship" (most probably from Turkey or the Ottoman empire!)
  • List 2: People without "country of citizenship" (most probably from Azerbaijan or the USSR!)
  • List 3: Items which we don't know what they are about!
  • List 4: Items which we don't know what they are about!
  • List 5: Bands with MusicBrainz artist ID but no Discogs artist ID
  • List 6: Bands with location of formation but no country of origin
  • List 7: Albums with no performer

Properties edit

Misc edit

SELECT ?standard ?standardLabel ?title WHERE {
  ?standard wdt:P31 wd:Q67035425.
  ?standard wdt:P1476 ?title
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY (?standardLabel)
See all!
  •   Done: Cleanup the old ASTM standard items wrongly described as scholarly article (Q13442814) and merge them with the recently created ones.
  •   In progress: Extract data from the ASTM website about the standard titles and fix the title of the items imported from misc sources.
  •   In progress: Extract data from the ASTM website about the various editions of the standards and create their items.
  •   In progress: Extract data from the ISO website about the various editions of the standards and create their items.

Simple Fun Queries (SFQ) edit

Doom source ports' genealogy! edit

#Genealogy of the Doom ports
#defaultView:Graph
SELECT ?port ?portLabel ?mother ?motherLabel WHERE {
  ?port wdt:P31 wd:Q7565159;
    (wdt:P144*) wd:Q909009;
    wdt:P144 ?mother.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Try it!

Scientist animals! edit

#Papers authored by animals
SELECT ?paper ?paperLabel ?author ?authorLabel WHERE {
  ?paper wdt:P31 wd:Q13442814;
    wdt:P50 ?author.
  ?author ((wdt:P31*)/(wdt:P279*)) wd:Q729.
  FILTER(NOT EXISTS { ?author wdt:P31 wd:Q5. })
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Try it!