Stanisław Zawadzki

Stanisław Zawadzki (1743–1806) was a Polish architect, representative of late-baroque and classicism, inclined towards Palladian architecture and precursor of the empire style in Polish architecture, Major General of the Army of Polish-Lithuanian Commonwealth.[1]

Palace in Lubostroń
Palace in Dobrzyca
Palace in Śmiełów

Author of palaces in Śmiełów (1797), Dobrzyca (1799), Lubostroń (1800), defensive buildings, military buildings in Kamieniec Podolski and Warsaw.

Biography

Zawadzki was born in 1743 in Warsaw. He graduated in St. Luke Academy in Rome. In 1769 he became a professor and in 1776 an honorable member of the academy.

He died on October 19, 1806 in Warsaw.

gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.

References

  • "Zawadzki Stanisław". Internetowa encyklopedia PWN (in Polish). Wydawnictwo Naukowe PWN. Retrieved 2007-12-04.
  • "Zawadzki Stanisław". WIEM Encyklopedia (in Polish). Retrieved 2007-12-04.
  1. Henryk P. Kosk, Generalicja polska t. II, Pruszków, 2001 p. 278.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.