ID photo of Ciro Santilli taken in 2013 right eyeCiro Santilli OurBigBook logoOurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
Notably in STEM, not so interested in literature of course:
Here's a SPARQL sketch for Wikidata that can be run at query.wikidata.org/. It gathers all the relevant data, but TODO we don't know how to do the proper query yet:
# List of living Nobel Laureates sorted by date of birth 
SELECT DISTINCT ?recipient ?recipientLabel $birthDate ?awardLabel ?nobelDate ?educatedAtLabel ?academicDegree ?academicDegreeLabel ?doctorateDate
WHERE { 
  ?recipient wdt:P31 wd:Q5 ; # recepient is human (Peace prize can go to organizations) 
             wdt:P569 ?birthDate ; 
             p:P166 ?awardStat . # recepient was awarded something 
  ?awardStat ps:P166 ?award .
  ?award wdt:P279* wd:Q7191 . # received any subclass of nobel prize (physics, chemistry, etc.) 
  ?awardStat pq:P585 ?nobelDate .
  ?recipient p:P69 ?recipientEducatedAt .
  ?recipientEducatedAt ps:P69 ?educatedAt .
  ?recipientEducatedAt pq:P512 ?academicDegree .
  ?academicDegree wdt:P279* wd:Q849697 .
  OPTIONAL{ ?recipientEducatedAt pq:P582 ?doctorateDate . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } 
} 
ORDER BY ASC(?birthDate) ASC(?nobelDate) ASC(?awardLabel)

Ancestors (8)

  1. Rebel without a PhD
  2. Doctor of Philosophy
  3. Academia
  4. Education
  5. Social technology
  6. Area of technology
  7. Technology
  8. Home