Moritz Kaposi

Moritz Kaposi (Hungarian: Kaposi Mór, pronounced [ˈkɒpoʃi ˈmoːr]; 23 October 1837 in Kaposvár, Hungary – 6 March 1902 in Vienna, Austria-Hungary) was a Hungarian physician and dermatologist who discovered the skin tumor that received his name (Kaposi's sarcoma).

Moritz Kaposi

Biography

Early life and name

Born to a Jewish family, originally his surname was Kohn; but, with his conversion to the Catholic faith, he changed it to Kaposi in 1871, in reference to his town of birth. One purported reason behind this is that he wanted to marry a daughter of current dermatology chairman, Ferdinand Ritter von Hebra, and advance in the society, which he could not have done being of Jewish faith. This seems unlikely because he married Martha Hebra and converted to Catholicism several years prior to changing his name, by which time he was already well established in the Vienna University faculty and a close associate of her father, Ferdinand. A more plausible explanation is based on his own comments to colleagues that he changed his name to avoid confusion with five other similarly named physicians on the Vienna faculty. Rumors about the sincerity of both his marriage and his concerns about his Jewish ancestry may have arisen through professional jealousy (William Dubreuilh (1857–1935), first professor and chairman of dermatology in Bordeaux: "On disait de Kaposi qu´il avait pris la fille de Hebra, sa maison, sa chaire et sa clientèle, laissant le reste à son beau-frère Hans Hebra." - "It was said of Kaposi that he had taken the daughter of Hebra, his home, his chair and his clientele, leaving the rest to his brother-in-law, Hans Hebra.")

Education and career

In 1855, Kaposi began to study medicine at the University of Vienna and attained a doctorate in 1861. In his dissertation, titled Dermatologie und Syphilis (1866) he made an important contribution to the field. Kaposi was appointed as professor at the University of Vienna in 1875, and in 1881 he became a member of the board of the Vienna General Hospital and director of its clinic of skin diseases.

Together with his mentor, Ferdinand Ritter von Hebra, he authored the book Lehrbuch der Hautkrankheiten (Textbook of Skin Diseases) in 1878. Kaposi’s main work, however, was Pathologie und Therapie der Hautkrankheiten in Vorlesungen für praktische Ärzte und Studierende (Pathology and Therapy of the Skin Diseases in Lectures for Practical Physicians and Students), published in 1880, which became one of the most significant books in the history of dermatology, being translated to several languages. He is credited with the description of xeroderma pigmentosum, a rare genetic disorder now known to be caused by defects in nucleotide excision repair ("Ueber Xeroderma pigmentosum. Medizinische Jahrbücher, Wien, 1882: 619–633"). Among other diseases, Kaposi was the first to study Lichen scrofolosorum and Lupus erythematosus. In all, he published over 150 books and papers. He is widely credited with advancing the use of pathologic examination in the diagnosis of dermatologic diseases.

Kaposi's sarcoma

His name entered into the history of medicine in 1872, when he described for the first time Kaposi's sarcoma, a cancer of the skin, which he had discovered in five elderly male patients and which he initially named "idiopathic multiple pigmented sarcoma". More than a century later, the appearance of this disease in young gay men in New York City, San Francisco and other coastal cities in the United States was one of the first indications that a new disease, now called AIDS, had appeared. Kaposi's sarcoma is a tumor that is caused by a virus, Kaposi's sarcoma-associated herpesvirus or KSHV, discovered in 1993. Kaposi's sarcoma is now the most commonly reported cancer in parts of sub-Saharan Africa.

According to his biographer, Dr. J.D. Oriel, "in his lifetime, Moritz Kaposi was acknowledged as one of the great masters of the Vienna School of Dermatology, a superb clinician and renowned teacher". While his mentor, Ferdinand von Hebra, is considered the "father of dermatology", Kaposi was one of the first to establish dermatology on its anatomical pathology scientific basis. He became the chairman of the Vienna School of Dermatology, after Hebra's death in 1880.

Works

  • Lehrbuch der Hautkrankheiten (1878 with Ferdinand von Hebra)
  • Pathologie und Therapie der Hautkrankheiten in Vorlesungen für praktische Ärzte und Studierende (1880)
  • Pathologie und Therapie der Syphilis (1881)
  • Handatlas der Hautkrankenheiten (1879)
  • Idiopathisches multiples Pigmentsarkom der Haut (1872) Arch Dermatol Syph 4:265-73 (original article describing Kaposi's sarcoma)
  • English translation of article describing Kaposi's sarcoma: Kaposi M. Idiopathic multiple pigmented sarcoma of the skin. CA Cancer J Clin 1982;1982(32):342-7.
gollark: ```perl -wlne'END{print$n}eof&&$n++;/<title>([^<]+)/i&&$n--' *Contents 1 Interpretation 2 Implementations 2.1 In Perl 2.2 In shell scriptsInterpretationThe code in question (from the collection "The road to Perligata") is a lament over the coming apocalypse, an expression of the author's Weltschmerz and the futility of all human endeavors. Let us take it step by step:-wlne' The world is near its end.END{print$n} At the end the sum of all our sins and virtues will be reckoned and the judgement revealed.eof&&$n++; As the evil of mankind ends, perhaps the end itself is a positive thing./<title>([^<]+)/ We are preoccupied with fame and titlesi And insensitive to the suffering of others.&&$n-- All this is for nought, and only hastens our demise.' * For in the end, we are but stardust. ```
gollark: They'll probably say "lambdas are evil" because python hates functional programming a lot of the time.
gollark: *considers creating an esowiki page for haskell and golang*
gollark: ``` func AddInt32(addr *int32, delta int32) (new int32) func AddInt64(addr *int64, delta int64) (new int64) func AddUint32(addr *uint32, delta uint32) (new uint32) func AddUint64(addr *uint64, delta uint64) (new uint64) func AddUintptr(addr *uintptr, delta uintptr) (new uintptr) func CompareAndSwapInt32(addr *int32, old, new int32) (swapped bool) func CompareAndSwapInt64(addr *int64, old, new int64) (swapped bool) func CompareAndSwapPointer(addr *unsafe.Pointer, old, new unsafe.Pointer) (swapped bool) func CompareAndSwapUint32(addr *uint32, old, new uint32) (swapped bool) func CompareAndSwapUint64(addr *uint64, old, new uint64) (swapped bool) func CompareAndSwapUintptr(addr *uintptr, old, new uintptr) (swapped bool) func LoadInt32(addr *int32) (val int32) func LoadInt64(addr *int64) (val int64) func LoadPointer(addr *unsafe.Pointer) (val unsafe.Pointer) func LoadUint32(addr *uint32) (val uint32) func LoadUint64(addr *uint64) (val uint64) func LoadUintptr(addr *uintptr) (val uintptr) func StoreInt32(addr *int32, val int32) func StoreInt64(addr *int64, val int64) func StorePointer(addr *unsafe.Pointer, val unsafe.Pointer) func StoreUint32(addr *uint32, val uint32) func StoreUint64(addr *uint64, val uint64) func StoreUintptr(addr *uintptr, val uintptr) func SwapInt32(addr *int32, new int32) (old int32) func SwapInt64(addr *int64, new int64) (old int64) func SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer) func SwapUint32(addr *uint32, new uint32) (old uint32) func SwapUint64(addr *uint64, new uint64) (old uint64) func SwapUintptr(addr *uintptr, new uintptr) (old uintptr)```Seen in standard library docs.
gollark: Fun fact: that function cannot be written with a sane type in Go.

References

  • Oriel JD. Moritz Kaposi (1837–1902). Int J STD AIDS. 1997 Nov;8(11):715-7. Medline abstract
  • Holubar, Karl; Fatovic-Ferencic, Stella (2001). "Moriz Kaposi 1837–1902: a historical reappraisal". Wiener klinische Wochenschrift. Springer Vienna. 113: 885–893. Archived from the original on 2007-05-07. also available at http://www.bium.univ-paris5.fr/sfhd/ecrits/kaposi2.htm
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.