Bugs Bunny's Thanksgiving Diet

Bugs Bunny's Thanksgiving Diet is an animated television special released on November 15, 1979; it stars Bugs Bunny and incorporated parts of several Looney Tunes cartoons.[1] The special followed up on the successful Looney Tunes special Bugs and Daffy's Carnival of the Animals that had aired in 1976, which reintroduced the character of Bugs Bunny in his first new material since 1964.

In the special, Bugs is a doctor, prescribing cartoons for the viewers to watch.[2] The special includes two complete cartoons, Bedeviled Rabbit and Rabbit Every Monday, and clips from eight others.[3]

Cast

Credits

Directed by David Detiege, Friz Freleng, Chuck Jones and Robert McKimson. Produced by Hal Geer.

gollark: I think they're overused and not actually very good synchronization primitives. Please explain how you would use them.
gollark: Really? Hmm. Explain.
gollark: And it mutates some shared state.
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.

References

  1. Woolery, George W. (1989). Animated TV Specials: The Complete Directory to the First Twenty-Five Years, 1962-1987. Scarecrow Press. pp. 47–48. ISBN 0-8108-2198-2. Retrieved 27 March 2020.
  2. Beck, Jerry; Friedwald, Will (1989). Looney Tunes and Merrie Melodies: A Complete Illustrated Guide to the Warner Bros. Cartoons. Henry Holt and Co. p. 370. ISBN 0-8050-0894-2.
  3. Lenburg, Jeff (2009). The Encyclopedia of Animated Cartoons (3rd ed.). New York: Checkmark Books. p. 269. ISBN 978-0-8160-6600-1.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.