Carl Goresky

Carl Arthur Goresky, OC (August 25, 1932 – March 21, 1996) was a Canadian physician and scientist at the Montreal General Hospital. His theoretical treatment of the transport of substances through intact organs, which formed the basis of his PhD thesis, led the basis for the understanding of events within the microvasculature.

In November 1995, Goresky was inducted into the Order of Canada as Officer.

Selected publications

  • Goresky, Carl Arthur (1963). "A linear method for determining liver sinusoidal and extravascular volumes". American Journal of Physiology. 204: 626–40. PMID 13949263.
  • Goresky, Carl Arthur (1995). "Biological barriers and medicine". Clinical and Investigative Medicine. 18 (6): 484–501. PMID 8714792.
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.
gollark: It does not avoid those. You just reimplement them oddly.

References

  • Goldsmith HL, Schwab AJ, Gold P (1996). "Carl Arthur Goresky. August 25, 1932 to March 21, 1996". Clinical and Investigative Medicine. 19 (3): 144–148. PMID 8724817.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.