Waitresses Wanted

Waitresses Wanted (French: Serveuses demandées) is a 2008 Canadian drama film starring Clara Furey, Janaina Suaudeau and Colm Feore. It was written and directed by Guylaine Dionne.[1]

Waitresses Wanted
Serveuses demandées
Directed byGuylaine Dionne
Produced byKevin Tierney
Written byGuylaine Dionne
StarringClara Furey
Janaina Suaudeau
Colm Feore
Release date
  • December 5, 2008 (2008-12-05)
Running time
110 minutes
CountryCanada
LanguageFrench

Plot

Priscilla Paredes, a Brazilian native takes a job as a stripper in order to stay in Montreal after her student visa expires.

Cast

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. "Serveuses demandées – Film de Guylaine Dionne". Films du Québec, December 16, 2008.


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