Image | ![]() |
EAN-13 | 0025192356681 ![]() |
UPC-A | 025192356681 ![]() |
Product Name | Bad Santa |
Category | Electronics / Photography: A/V Media: Movie / TV |
Web Link | www.miramax.com |
Amazon.com | ![]() |
Model | 43448768 |
Price New | 8.97 US Dollars (curriencies) |
Price Used | 2.84 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 91 minutes |
Cast | Billy Bob Thornton, Tony Cox, Brett Kelly, Lauren Graham |
Director | Terry Zwigoff |
Genre | COMEDY,CRIME,DRAMA |
Run Time | 92 minutes |
Width | 5.5 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 2003 |
Format | Color, Dubbed, NTSC, Subtitled, Widescreen |
Published | 05/05/2018 |
Run Time | 92 minutes |
Features | Shrink-wrapped |
Long Description | Willie T. Stokes is a convicted con man who's led a miserable life. He drinks heavily and constantly embarrasses himself publicly. He only works once a year dressed as Santa. But then come Christmas Eve, he and his pint-sized helper dwarf Marcus stage elaborate robberies and take their department stores for everything they got. This year, they hit a mall in suburban Phoenix, Arizona. This time around, Willie gets distracted by having sex with large women, a bartender who is attracted to Santas, and a kid who's convinced he's the real deal. However, this time around Marcus must once again put up with Willie's heavy drinking and a series of incidents that constantly shoot themselves in the foot. Not to mention a nosy department store security guard who's onto them and wants his cut of the loot. Will Willie and Marcus make it to next Christmas? Or will this be the year the dynamic duo finally face justice? |
Similar Items | 0883929304851: Surviving Christmas 0191329021064: A Bad Moms Christmas 0043396462878: Night Before 0031398244080: Dirty Grandpa 0031398137207: Bad Santa - Unrated 0025192360572: Bad Moms 0025192335624: Infiltrator 0024543317630: Why Him? 0024543034032: Masterminds 0003139813718: Bad Santa |
Created | 04-12-2018 1:14:50am |
Modified | 05-26-2018 10:41:26pm |
MD5 | 71ca56ea5d06f5ed002c432767b3861c |
SHA256 | 43fcfe49f0bf285677bac18da3cd25e60e44d8faa683237bdc5a65ee4ff746ca |
Search Google | by EAN or by Title |
Query Time | 0.0294600 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.