Super Sucker

Super Sucker is a 2002 film featuring Jeff Daniels, Harve Presnell, and Kate Peckham.

Super Sucker
Film poster
Directed byJeff Daniels
Produced byBob Brown
Jeff Daniels
Tom Spiroff
Written byJeff Daniels
Guy Sanville
StarringJeff Daniels
Dawn Wells
Harve Presnell
Matt Letscher
Distributed byPurple Rose Films
Release date
February 24, 2002 (Jackson, MI premiere)
January 24, 2003
(US release)
Running time
95 minutes
CountryUnited States
LanguageEnglish

Filmed in Jackson, Michigan, Daniels and Presnell play Fred Barlow and Winslow Schnaebelt, the heads of two different groups of door-to-door vacuum cleaner salesmen who are competing for the same territory. Their rivalry becomes so fierce that the president of the manufacturer of the product, Mr. Suckerton, decides that for the good of the company, the town will have only one group of sales representatives. Desperate, and always the underdog, Barlow suggests a winner-take-all sales contest to determine who gets the territory. Well behind Schnaebelt from the very start, Barlow's sales surge when he learns of his wife's non-traditional use of a long forgotten vacuum attachment.

The film, written by Daniels, won the 2002 U.S. Comedy Arts Festival audience award for Best Feature but never obtained national distribution.

Cast

gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.


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