Skip to content

Instantly share code, notes, and snippets.

@tanayseven
Created August 16, 2016 12:32
Show Gist options
  • Save tanayseven/1291a0df806ffb5eba7263d1880861ef to your computer and use it in GitHub Desktop.
Save tanayseven/1291a0df806ffb5eba7263d1880861ef to your computer and use it in GitHub Desktop.
A simple xml file that shows scientist details
<person>
<name>
<birth-names>
<birth-name>Maria Salomea Skłodowska</birth-name>
</birth-names>
<given-names>
<given-name>Maria</given-name>
<given-name>Marie</given-name>
</given-names>
</name>
<gender>Female</gender>
<anniversaries>
<birth-date>7 November 1867</birth-date>
<death-date>4 July 1934</death-date>
</anniversaries>
<places>
<place-of-birth>
<city>Warsaw</city>
<country>Poland</country>
<geo-coordinates>52°13'N, 21°2'E</geo-coordinates><!-- Can be used with google maps API -->
</place-of-birth>
<place-of-death>
<city>Sancellemoz</city>
<country>France</country>
<geo-coordinates>45°56'17"N, 6°42'21"E</geo-coordinates>
</place-of-death>
<place-of-burial>
<place>Panthéon</place>
<city>Paris</city>
<country>France</country>
<geo-coordinates>48°50'46"N, 2°20'45"E</geo-coordinates>
</place-of-burial>
</places>
<citizenships>
<country>Russian Empire</country>
<country>France</country>
<country>Poland</country>
</citizenships>
<spouses>
<spouse>
<name>Pierre Curie</name>
<start-date>26 July 1895</start-date>
<end-date>1906</end-date>
</spouse>
</spouses>
<family>
<fathers-name>Władysław Skłodowski</fathers-name>
<mothers-name></mothers-name>
<brothers-name></brothers-name>
<sisters-name>Bronisława Dłuska</sisters-name>
<childern>
<child-name>Irène Joliot-Curie</child-name>
<child-name>Ève Curie</child-name>
</childern>
</family>
<educated-at>
<institute-name>Science Faculty of Paris</institute-name>
<institute-name>Flying University</institute-name>
</educated-at>
<occupations>
<occupation>Physicist</occupation>
<occupation>Chemist</occupation>
<occupation>University Teacher</occupation>
</occupations>
<fields-of-work>
<field>Radioactivity</field>
<field>Chemistry</field>
</fields-of-work>
<awards-received>
<award>
<name>Nobel Prize in Chemistry</name>
<time>1911</time>
</award>
<award>
<name>Nobel Prize in Physics</name>
<time>1903</time>
</award>
</awards-received>
<person-image-link>
https://upload.wikimedia.org/wikipedia/commons/7/71/Marie_Curie_c1920.png
</person-image-link>
<signature-image-link>
https://upload.wikimedia.org/wikipedia/commons/c/c2/Marie_Curie_Sk%C5%82odowska_Signature_Polish.svg
</signature-image-link>
</person>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment